blob: f131ebff886b5494546aeeb652f07fe5a1f1b11a [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 */
ola.soder@axis.come1314962022-02-13 12:13:38 +000040# if defined(VMS) || defined(AMIGA)
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))
Bram Moolenaar8d5daf22022-03-02 17:16:39 +0000200static int focus_state = MAYBE; // TRUE if the Vim window has focus
Bram Moolenaar681fc3f2021-01-14 17:35:21 +0100201#endif
202
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200203#ifdef FEAT_TERMRESPONSE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100204// When the cursor shape was detected these values are used:
205// 1: block, 2: underline, 3: vertical bar
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200206static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200207
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100208// The blink flag from the style response may be inverted from the actual
209// blinking state, xterm XORs the flags.
Bram Moolenaar4db25542017-08-28 22:43:05 +0200210static int initial_cursor_shape_blink = FALSE;
211
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100212// The blink flag from the blinking-cursor mode response
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200213static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200214#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200215
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000216static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217{
218
219#if defined(FEAT_GUI)
220/*
221 * GUI pseudo term-cap.
222 */
223 {(int)KS_NAME, "gui"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000224 {(int)KS_CE, "\033|$"},
225 {(int)KS_AL, "\033|i"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000227 {(int)KS_CAL, "\033|%p1%dI"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000229 {(int)KS_CAL, "\033|%dI"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000231 {(int)KS_DL, "\033|d"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000233 {(int)KS_CDL, "\033|%p1%dD"},
234 {(int)KS_CS, "\033|%p1%d;%p2%dR"},
235 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000237 {(int)KS_CDL, "\033|%dD"},
238 {(int)KS_CS, "\033|%d;%dR"},
239 {(int)KS_CSV, "\033|%d;%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000241 {(int)KS_CL, "\033|C"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100242 // attributes switched on with 'h', off with * 'H'
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000243 {(int)KS_ME, "\033|31H"}, // HL_ALL
244 {(int)KS_MR, "\033|1h"}, // HL_INVERSE
245 {(int)KS_MD, "\033|2h"}, // HL_BOLD
246 {(int)KS_SE, "\033|16H"}, // HL_STANDOUT
247 {(int)KS_SO, "\033|16h"}, // HL_STANDOUT
248 {(int)KS_UE, "\033|8H"}, // HL_UNDERLINE
249 {(int)KS_US, "\033|8h"}, // HL_UNDERLINE
250 {(int)KS_UCE, "\033|8C"}, // HL_UNDERCURL
251 {(int)KS_UCS, "\033|8c"}, // HL_UNDERCURL
252 {(int)KS_STE, "\033|4C"}, // HL_STRIKETHROUGH
253 {(int)KS_STS, "\033|4c"}, // HL_STRIKETHROUGH
254 {(int)KS_CZR, "\033|4H"}, // HL_ITALIC
255 {(int)KS_CZH, "\033|4h"}, // HL_ITALIC
256 {(int)KS_VB, "\033|f"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 {(int)KS_MS, "y"},
258 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100259 {(int)KS_XN, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100260 {(int)KS_LE, "\b"}, // cursor-left = BS
261 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000263 {(int)KS_CM, "\033|%p1%d;%p2%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000265 {(int)KS_CM, "\033|%d;%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100267 // there are no key sequences here, the GUI sequences are recognized
268 // in check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269#endif
270
271#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272
273# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
274/*
275 * Amiga console window, default for Amiga
276 */
277 {(int)KS_NAME, "amiga"},
278 {(int)KS_CE, "\033[K"},
279 {(int)KS_CD, "\033[J"},
280 {(int)KS_AL, "\033[L"},
281# ifdef TERMINFO
282 {(int)KS_CAL, "\033[%p1%dL"},
283# else
284 {(int)KS_CAL, "\033[%dL"},
285# endif
286 {(int)KS_DL, "\033[M"},
287# ifdef TERMINFO
288 {(int)KS_CDL, "\033[%p1%dM"},
289# else
290 {(int)KS_CDL, "\033[%dM"},
291# endif
292 {(int)KS_CL, "\014"},
293 {(int)KS_VI, "\033[0 p"},
294 {(int)KS_VE, "\033[1 p"},
295 {(int)KS_ME, "\033[0m"},
296 {(int)KS_MR, "\033[7m"},
297 {(int)KS_MD, "\033[1m"},
298 {(int)KS_SE, "\033[0m"},
299 {(int)KS_SO, "\033[33m"},
300 {(int)KS_US, "\033[4m"},
301 {(int)KS_UE, "\033[0m"},
302 {(int)KS_CZH, "\033[3m"},
303 {(int)KS_CZR, "\033[0m"},
Bram Moolenaar2d718262020-11-21 12:44:56 +0100304#if defined(__amigaos4__) || defined(__MORPHOS__) || defined(__AROS__)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100305 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100307 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
308 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100310 {(int)KS_CAB, "\033[4%dm"}, // set background color
311 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100313 {(int)KS_OP, "\033[m"}, // reset colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#endif
315 {(int)KS_MS, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100316 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 {(int)KS_LE, "\b"},
318# ifdef TERMINFO
319 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
320# else
321 {(int)KS_CM, "\033[%i%d;%dH"},
322# endif
323#if defined(__MORPHOS__)
324 {(int)KS_SR, "\033M"},
325#endif
326# ifdef TERMINFO
327 {(int)KS_CRI, "\033[%p1%dC"},
328# else
329 {(int)KS_CRI, "\033[%dC"},
330# endif
331 {K_UP, "\233A"},
332 {K_DOWN, "\233B"},
333 {K_LEFT, "\233D"},
334 {K_RIGHT, "\233C"},
335 {K_S_UP, "\233T"},
336 {K_S_DOWN, "\233S"},
337 {K_S_LEFT, "\233 A"},
338 {K_S_RIGHT, "\233 @"},
339 {K_S_TAB, "\233Z"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100340 {K_F1, "\233\060~"},// some compilers don't dig "\2330"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 {K_F2, "\233\061~"},
342 {K_F3, "\233\062~"},
343 {K_F4, "\233\063~"},
344 {K_F5, "\233\064~"},
345 {K_F6, "\233\065~"},
346 {K_F7, "\233\066~"},
347 {K_F8, "\233\067~"},
348 {K_F9, "\233\070~"},
349 {K_F10, "\233\071~"},
350 {K_S_F1, "\233\061\060~"},
351 {K_S_F2, "\233\061\061~"},
352 {K_S_F3, "\233\061\062~"},
353 {K_S_F4, "\233\061\063~"},
354 {K_S_F5, "\233\061\064~"},
355 {K_S_F6, "\233\061\065~"},
356 {K_S_F7, "\233\061\066~"},
357 {K_S_F8, "\233\061\067~"},
358 {K_S_F9, "\233\061\070~"},
359 {K_S_F10, "\233\061\071~"},
360 {K_HELP, "\233?~"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100361 {K_INS, "\233\064\060~"}, // 101 key keyboard
362 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard
363 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard
364 {K_HOME, "\233\064\064~"}, // 101 key keyboard
365 {K_END, "\233\064\065~"}, // 101 key keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366
367 {BT_EXTRA_KEYS, ""},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100368 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key
369 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key
370 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371# endif
372
Bram Moolenaar041c7102020-05-30 18:14:57 +0200373# ifdef ALL_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374/*
Bram Moolenaar041c7102020-05-30 18:14:57 +0200375 * almost standard ANSI terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 {(int)KS_CE, "\033[K"},
378 {(int)KS_CD, "\033[J"},
379 {(int)KS_AL, "\033[L"},
380# ifdef TERMINFO
381 {(int)KS_CAL, "\033[%p1%dL"},
382# else
383 {(int)KS_CAL, "\033[%dL"},
384# endif
385 {(int)KS_DL, "\033[M"},
386# ifdef TERMINFO
387 {(int)KS_CDL, "\033[%p1%dM"},
388# else
389 {(int)KS_CDL, "\033[%dM"},
390# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 {(int)KS_CL, "\033[H\033[2J"},
392#ifdef notyet
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100393 {(int)KS_VI, "[VI]"}, // cursor invisible, VT320: CSI ? 25 l
394 {(int)KS_VE, "[VE]"}, // cursor visible, VT320: CSI ? 25 h
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100396 {(int)KS_ME, "\033[m"}, // normal mode
397 {(int)KS_MR, "\033[7m"}, // reverse
398 {(int)KS_MD, "\033[1m"}, // bold
399 {(int)KS_SO, "\033[31m"}, // standout mode: red
400 {(int)KS_SE, "\033[m"}, // standout end
401 {(int)KS_CZH, "\033[35m"}, // italic: purple
402 {(int)KS_CZR, "\033[m"}, // italic end
403 {(int)KS_US, "\033[4m"}, // underscore mode
404 {(int)KS_UE, "\033[m"}, // underscore end
405 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100407 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
408 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100410 {(int)KS_CAB, "\033[4%dm"}, // set background color
411 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100413 {(int)KS_OP, "\033[m"}, // reset colors
414 {(int)KS_MS, "y"}, // safe to move cur in reverse mode
415 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 {(int)KS_LE, "\b"},
417# ifdef TERMINFO
418 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
419# else
420 {(int)KS_CM, "\033[%i%d;%dH"},
421# endif
422 {(int)KS_SR, "\033M"},
423# ifdef TERMINFO
424 {(int)KS_CRI, "\033[%p1%dC"},
425# else
426 {(int)KS_CRI, "\033[%dC"},
427# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428
429 {K_UP, "\033[A"},
430 {K_DOWN, "\033[B"},
431 {K_LEFT, "\033[D"},
432 {K_RIGHT, "\033[C"},
433# endif
434
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200435# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436/*
437 * standard ANSI terminal, default for unix
438 */
439 {(int)KS_NAME, "ansi"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000440 {(int)KS_CE, "\033[K"},
441 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000443 {(int)KS_CAL, "\033[%p1%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000445 {(int)KS_CAL, "\033[%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000447 {(int)KS_DL, "\033[M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000449 {(int)KS_CDL, "\033[%p1%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000451 {(int)KS_CDL, "\033[%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000453 {(int)KS_CL, "\033[H\033[2J"},
454 {(int)KS_ME, "\033[0m"},
455 {(int)KS_MR, "\033[7m"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 {(int)KS_MS, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100457 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {(int)KS_LE, "\b"},
459# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000460 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000462 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463# endif
464# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000465 {(int)KS_CRI, "\033[%p1%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000467 {(int)KS_CRI, "\033[%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468# endif
469# endif
470
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200471# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472/*
473 * These codes are valid when nansi.sys or equivalent has been installed.
474 * Function keys on a PC are preceded with a NUL. These are converted into
475 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
476 * CTRL-arrow is used instead of SHIFT-arrow.
477 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 {(int)KS_NAME, "pcansi"},
479 {(int)KS_DL, "\033[M"},
480 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 {(int)KS_CE, "\033[K"},
482 {(int)KS_CL, "\033[2J"},
483 {(int)KS_ME, "\033[0m"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100484 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey
485 {(int)KS_MD, "\033[1m"}, // bold: white text
486 {(int)KS_SE, "\033[0m"}, // standout end
487 {(int)KS_SO, "\033[31m"}, // standout: white on blue
488 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
489 {(int)KS_CZR, "\033[0m"}, // italic mode end
490 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red
491 {(int)KS_UE, "\033[0m"}, // underscore mode end
492 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100494 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
495 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100497 {(int)KS_CAB, "\033[4%dm"}, // set background color
498 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100500 {(int)KS_OP, "\033[0m"}, // reset colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 {(int)KS_MS, "y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100502 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 {(int)KS_LE, "\b"},
504# ifdef TERMINFO
505 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
506# else
507 {(int)KS_CM, "\033[%i%d;%dH"},
508# endif
509# ifdef TERMINFO
510 {(int)KS_CRI, "\033[%p1%dC"},
511# else
512 {(int)KS_CRI, "\033[%dC"},
513# endif
514 {K_UP, "\316H"},
515 {K_DOWN, "\316P"},
516 {K_LEFT, "\316K"},
517 {K_RIGHT, "\316M"},
518 {K_S_LEFT, "\316s"},
519 {K_S_RIGHT, "\316t"},
520 {K_F1, "\316;"},
521 {K_F2, "\316<"},
522 {K_F3, "\316="},
523 {K_F4, "\316>"},
524 {K_F5, "\316?"},
525 {K_F6, "\316@"},
526 {K_F7, "\316A"},
527 {K_F8, "\316B"},
528 {K_F9, "\316C"},
529 {K_F10, "\316D"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100530 {K_F11, "\316\205"}, // guessed
531 {K_F12, "\316\206"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 {K_S_F1, "\316T"},
533 {K_S_F2, "\316U"},
534 {K_S_F3, "\316V"},
535 {K_S_F4, "\316W"},
536 {K_S_F5, "\316X"},
537 {K_S_F6, "\316Y"},
538 {K_S_F7, "\316Z"},
539 {K_S_F8, "\316["},
540 {K_S_F9, "\316\\"},
541 {K_S_F10, "\316]"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100542 {K_S_F11, "\316\207"}, // guessed
543 {K_S_F12, "\316\210"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 {K_INS, "\316R"},
545 {K_DEL, "\316S"},
546 {K_HOME, "\316G"},
547 {K_END, "\316O"},
548 {K_PAGEDOWN, "\316Q"},
549 {K_PAGEUP, "\316I"},
550# endif
551
Bram Moolenaar4f974752019-02-17 17:44:42 +0100552# if defined(MSWIN) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553/*
554 * These codes are valid for the Win32 Console . The entries that start with
555 * ESC | are translated into console calls in os_win32.c. The function keys
556 * are also translated in os_win32.c.
557 */
558 {(int)KS_NAME, "win32"},
Bram Moolenaar6982f422019-02-16 16:48:01 +0100559 {(int)KS_CE, "\033|K"}, // clear to end of line
560 {(int)KS_AL, "\033|L"}, // add new blank line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100562 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100564 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100566 {(int)KS_DL, "\033|M"}, // delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100568 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines
569 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100571 {(int)KS_CDL, "\033|%dM"}, // delete number of lines
572 {(int)KS_CSV, "\033|%d;%dV"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100574 {(int)KS_CL, "\033|J"}, // clear screen
575 {(int)KS_CD, "\033|j"}, // clear to end of display
576 {(int)KS_VI, "\033|v"}, // cursor invisible
577 {(int)KS_VE, "\033|V"}, // cursor visible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
Bram Moolenaar6982f422019-02-16 16:48:01 +0100579 {(int)KS_ME, "\033|0m"}, // normal
580 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray
581 {(int)KS_MD, "\033|15m"}, // bold: white on black
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582#if 1
Bram Moolenaar6982f422019-02-16 16:48:01 +0100583 {(int)KS_SO, "\033|31m"}, // standout: white on blue
584 {(int)KS_SE, "\033|0m"}, // standout end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585#else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100586 {(int)KS_SO, "\033|F"}, // standout: high intensity
587 {(int)KS_SE, "\033|f"}, // standout end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588#endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100589 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow
590 {(int)KS_CZR, "\033|0m"}, // italic end
591 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red
592 {(int)KS_UE, "\033|0m"}, // underscore end
593 {(int)KS_CCO, "16"}, // allow 16 colors
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100595 {(int)KS_CAB, "\033|%p1%db"}, // set background color
596 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100598 {(int)KS_CAB, "\033|%db"}, // set background color
599 {(int)KS_CAF, "\033|%df"}, // set foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600# endif
601
Bram Moolenaar6982f422019-02-16 16:48:01 +0100602 {(int)KS_MS, "y"}, // save to move cur in reverse mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100604 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 {(int)KS_LE, "\b"},
606# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100607 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100609 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610# endif
Bram Moolenaar6982f422019-02-16 16:48:01 +0100611 {(int)KS_VB, "\033|B"}, // visual bell
612 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode
613 {(int)KS_TE, "\033|E"}, // out of termcap mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614# ifdef TERMINFO
Bram Moolenaar6982f422019-02-16 16:48:01 +0100615 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616# else
Bram Moolenaar6982f422019-02-16 16:48:01 +0100617 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100619# ifdef FEAT_TERMGUICOLORS
620 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
621 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
622# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
624 {K_UP, "\316H"},
625 {K_DOWN, "\316P"},
626 {K_LEFT, "\316K"},
627 {K_RIGHT, "\316M"},
628 {K_S_UP, "\316\304"},
629 {K_S_DOWN, "\316\317"},
630 {K_S_LEFT, "\316\311"},
631 {K_C_LEFT, "\316s"},
632 {K_S_RIGHT, "\316\313"},
633 {K_C_RIGHT, "\316t"},
634 {K_S_TAB, "\316\017"},
635 {K_F1, "\316;"},
636 {K_F2, "\316<"},
637 {K_F3, "\316="},
638 {K_F4, "\316>"},
639 {K_F5, "\316?"},
640 {K_F6, "\316@"},
641 {K_F7, "\316A"},
642 {K_F8, "\316B"},
643 {K_F9, "\316C"},
644 {K_F10, "\316D"},
645 {K_F11, "\316\205"},
646 {K_F12, "\316\206"},
647 {K_S_F1, "\316T"},
648 {K_S_F2, "\316U"},
649 {K_S_F3, "\316V"},
650 {K_S_F4, "\316W"},
651 {K_S_F5, "\316X"},
652 {K_S_F6, "\316Y"},
653 {K_S_F7, "\316Z"},
654 {K_S_F8, "\316["},
655 {K_S_F9, "\316\\"},
656 {K_S_F10, "\316]"},
657 {K_S_F11, "\316\207"},
658 {K_S_F12, "\316\210"},
659 {K_INS, "\316R"},
660 {K_DEL, "\316S"},
661 {K_HOME, "\316G"},
662 {K_S_HOME, "\316\302"},
663 {K_C_HOME, "\316w"},
664 {K_END, "\316O"},
665 {K_S_END, "\316\315"},
666 {K_C_END, "\316u"},
667 {K_PAGEDOWN, "\316Q"},
668 {K_PAGEUP, "\316I"},
669 {K_KPLUS, "\316N"},
670 {K_KMINUS, "\316J"},
671 {K_KMULTIPLY, "\316\067"},
672 {K_K0, "\316\332"},
673 {K_K1, "\316\336"},
674 {K_K2, "\316\342"},
675 {K_K3, "\316\346"},
676 {K_K4, "\316\352"},
677 {K_K5, "\316\356"},
678 {K_K6, "\316\362"},
679 {K_K7, "\316\366"},
680 {K_K8, "\316\372"},
681 {K_K9, "\316\376"},
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100682 {K_BS, "\316x"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683# endif
684
685# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
686/*
687 * VT320 is working as an ANSI terminal compatible DEC terminal.
688 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 * TODO:- rewrite ESC[ codes to CSI
690 * - keyboard languages (CSI ? 26 n)
691 */
692 {(int)KS_NAME, "vt320"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000693 {(int)KS_CE, "\033[K"},
694 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000696 {(int)KS_CAL, "\033[%p1%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000698 {(int)KS_CAL, "\033[%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000700 {(int)KS_DL, "\033[M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000702 {(int)KS_CDL, "\033[%p1%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000704 {(int)KS_CDL, "\033[%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000706 {(int)KS_CL, "\033[H\033[2J"},
707 {(int)KS_CD, "\033[J"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100708 {(int)KS_CCO, "8"}, // allow 8 colors
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000709 {(int)KS_ME, "\033[0m"},
710 {(int)KS_MR, "\033[7m"},
711 {(int)KS_MD, "\033[1m"}, // bold mode
712 {(int)KS_SE, "\033[22m"},// normal mode
713 {(int)KS_UE, "\033[24m"},// exit underscore mode
714 {(int)KS_US, "\033[4m"}, // underscore mode
715 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
716 {(int)KS_CZR, "\033[0m"}, // italic mode end
717 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI)
718 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI)
719 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color
720 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 {(int)KS_MS, "y"},
722 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100723 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 {(int)KS_LE, "\b"},
725# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000726 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000728 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729# endif
730# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000731 {(int)KS_CRI, "\033[%p1%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000733 {(int)KS_CRI, "\033[%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000735 {K_UP, "\033[A"},
736 {K_DOWN, "\033[B"},
737 {K_RIGHT, "\033[C"},
738 {K_LEFT, "\033[D"},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200739 // Note: cursor key sequences for application cursor mode are omitted,
740 // because they interfere with typed commands: <Esc>OA.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000741 {K_F1, "\033[11~"},
742 {K_F2, "\033[12~"},
743 {K_F3, "\033[13~"},
744 {K_F4, "\033[14~"},
745 {K_F5, "\033[15~"},
746 {K_F6, "\033[17~"},
747 {K_F7, "\033[18~"},
748 {K_F8, "\033[19~"},
749 {K_F9, "\033[20~"},
750 {K_F10, "\033[21~"},
751 {K_F11, "\033[23~"},
752 {K_F12, "\033[24~"},
753 {K_F13, "\033[25~"},
754 {K_F14, "\033[26~"},
755 {K_F15, "\033[28~"}, // Help
756 {K_F16, "\033[29~"}, // Select
757 {K_F17, "\033[31~"},
758 {K_F18, "\033[32~"},
759 {K_F19, "\033[33~"},
760 {K_F20, "\033[34~"},
761 {K_INS, "\033[2~"},
762 {K_DEL, "\033[3~"},
763 {K_HOME, "\033[1~"},
764 {K_END, "\033[4~"},
765 {K_PAGEUP, "\033[5~"},
766 {K_PAGEDOWN, "\033[6~"},
Bram Moolenaare6882bd2018-07-03 17:16:59 +0200767 // These sequences starting with <Esc> O may interfere with what the user
768 // is typing. Remove these if that bothers you.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000769 {K_KPLUS, "\033Ok"}, // keypad plus
770 {K_KMINUS, "\033Om"}, // keypad minus
771 {K_KDIVIDE, "\033Oo"}, // keypad /
772 {K_KMULTIPLY, "\033Oj"}, // keypad *
773 {K_KENTER, "\033OM"}, // keypad Enter
774 {K_K0, "\033Op"}, // keypad 0
775 {K_K1, "\033Oq"}, // keypad 1
776 {K_K2, "\033Or"}, // keypad 2
777 {K_K3, "\033Os"}, // keypad 3
778 {K_K4, "\033Ot"}, // keypad 4
779 {K_K5, "\033Ou"}, // keypad 5
780 {K_K6, "\033Ov"}, // keypad 6
781 {K_K7, "\033Ow"}, // keypad 7
782 {K_K8, "\033Ox"}, // keypad 8
783 {K_K9, "\033Oy"}, // keypad 9
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100784 {K_BS, "\x7f"}, // for some reason 0177 doesn't work
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785# endif
786
Bram Moolenaare3f915d2020-07-14 23:02:44 +0200787# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788/*
789 * Ordinary vt52
790 */
791 {(int)KS_NAME, "vt52"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000792 {(int)KS_CE, "\033K"},
793 {(int)KS_CD, "\033J"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100794# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000795 {(int)KS_CM, "\033Y%p1%' '%+%c%p2%' '%+%c"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100796# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000797 {(int)KS_CM, "\033Y%+ %+ "},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100798# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 {(int)KS_LE, "\b"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000800 {(int)KS_SR, "\033I"},
801 {(int)KS_AL, "\033L"},
802 {(int)KS_DL, "\033M"},
803 {K_UP, "\033A"},
804 {K_DOWN, "\033B"},
805 {K_LEFT, "\033D"},
806 {K_RIGHT, "\033C"},
807 {K_F1, "\033P"},
808 {K_F2, "\033Q"},
809 {K_F3, "\033R"},
810 {(int)KS_CL, "\033H\033J"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 {(int)KS_MS, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812# endif
813
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200814# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200815 {(int)KS_NAME, "xterm"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000816 {(int)KS_CE, "\033[K"},
817 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000819 {(int)KS_CAL, "\033[%p1%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000821 {(int)KS_CAL, "\033[%dL"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000823 {(int)KS_DL, "\033[M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000825 {(int)KS_CDL, "\033[%p1%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000827 {(int)KS_CDL, "\033[%dM"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828# endif
829# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000830 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000832 {(int)KS_CS, "\033[%i%d;%dr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000834 {(int)KS_CL, "\033[H\033[2J"},
835 {(int)KS_CD, "\033[J"},
836 {(int)KS_ME, "\033[m"},
837 {(int)KS_MR, "\033[7m"},
838 {(int)KS_MD, "\033[1m"},
839 {(int)KS_UE, "\033[m"},
840 {(int)KS_US, "\033[4m"},
841 {(int)KS_STE, "\033[29m"},
842 {(int)KS_STS, "\033[9m"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 {(int)KS_MS, "y"},
844 {(int)KS_UT, "y"},
845 {(int)KS_LE, "\b"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000846 {(int)KS_VI, "\033[?25l"},
847 {(int)KS_VE, "\033[?25h"},
848 {(int)KS_VS, "\033[?12h"},
849 {(int)KS_CVS, "\033[?12l"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200850# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000851 {(int)KS_CSH, "\033[%p1%d q"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200852# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000853 {(int)KS_CSH, "\033[%d q"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200854# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000855 {(int)KS_CRC, "\033[?12$p"},
856 {(int)KS_CRS, "\033P$q q\033\\"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000858 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000860 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000862 {(int)KS_SR, "\033M"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000864 {(int)KS_CRI, "\033[%p1%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000866 {(int)KS_CRI, "\033[%dC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000868 {(int)KS_KS, "\033[?1h\033="},
869 {(int)KS_KE, "\033[?1l\033>"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870# ifdef FEAT_XTERM_SAVE
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000871 {(int)KS_TI, "\0337\033[?47h"},
872 {(int)KS_TE, "\033[?47l\0338"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000874 {(int)KS_CTI, "\033[>4;2m"},
875 {(int)KS_CTE, "\033[>4;m"},
876 {(int)KS_CIS, "\033]1;"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 {(int)KS_CIE, "\007"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000878 {(int)KS_TS, "\033]2;"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 {(int)KS_FS, "\007"},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000880 {(int)KS_CSC, "\033]12;"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200881 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882# ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000883 {(int)KS_CWS, "\033[8;%p1%d;%p2%dt"},
884 {(int)KS_CWP, "\033[3;%p1%d;%p2%dt"},
885 {(int)KS_CGP, "\033[13t"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886# else
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000887 {(int)KS_CWS, "\033[8;%d;%dt"},
888 {(int)KS_CWP, "\033[3;%d;%dt"},
889 {(int)KS_CGP, "\033[13t"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000891 {(int)KS_CRV, "\033[>c"},
892 {(int)KS_RFG, "\033]10;?\007"},
893 {(int)KS_RBG, "\033]11;?\007"},
894 {(int)KS_U7, "\033[6n"},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200895# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100896 // These are printf strings, not terminal codes.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000897 {(int)KS_8F, "\033[38;2;%lu;%lu;%lum"},
898 {(int)KS_8B, "\033[48;2;%lu;%lu;%lum"},
899 {(int)KS_8U, "\033[58;2;%lu;%lu;%lum"},
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200900# endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000901 {(int)KS_CAU, "\033[58;5;%dm"},
902 {(int)KS_CBE, "\033[?2004h"},
903 {(int)KS_CBD, "\033[?2004l"},
904 {(int)KS_CST, "\033[22;2t"},
905 {(int)KS_CRT, "\033[23;2t"},
906 {(int)KS_SSI, "\033[22;1t"},
907 {(int)KS_SRI, "\033[23;1t"},
Bram Moolenaar681fc3f2021-01-14 17:35:21 +0100908# if (defined(UNIX) || defined(VMS))
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000909 {(int)KS_FD, "\033[?1004l"},
910 {(int)KS_FE, "\033[?1004h"},
Bram Moolenaar681fc3f2021-01-14 17:35:21 +0100911# endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000912
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000913 {K_UP, "\033O*A"},
914 {K_DOWN, "\033O*B"},
915 {K_RIGHT, "\033O*C"},
916 {K_LEFT, "\033O*D"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100917 // An extra set of cursor keys for vt100 mode
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000918 {K_XUP, "\033[@;*A"},
919 {K_XDOWN, "\033[@;*B"},
920 {K_XRIGHT, "\033[@;*C"},
921 {K_XLEFT, "\033[@;*D"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100922 // An extra set of function keys for vt100 mode
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000923 {K_XF1, "\033O*P"},
924 {K_XF2, "\033O*Q"},
925 {K_XF3, "\033O*R"},
926 {K_XF4, "\033O*S"},
927 {K_F1, "\033[11;*~"},
928 {K_F2, "\033[12;*~"},
929 {K_F3, "\033[13;*~"},
930 {K_F4, "\033[14;*~"},
931 {K_F5, "\033[15;*~"},
932 {K_F6, "\033[17;*~"},
933 {K_F7, "\033[18;*~"},
934 {K_F8, "\033[19;*~"},
935 {K_F9, "\033[20;*~"},
936 {K_F10, "\033[21;*~"},
937 {K_F11, "\033[23;*~"},
938 {K_F12, "\033[24;*~"},
939 {K_S_TAB, "\033[Z"},
940 {K_HELP, "\033[28;*~"},
941 {K_UNDO, "\033[26;*~"},
942 {K_INS, "\033[2;*~"},
943 {K_HOME, "\033[1;*H"},
944 // {K_S_HOME, "\033O2H"},
945 // {K_C_HOME, "\033O5H"},
946 {K_KHOME, "\033[1;*~"},
947 {K_XHOME, "\033O*H"}, // other Home
948 {K_ZHOME, "\033[7;*~"}, // other Home
949 {K_END, "\033[1;*F"},
950 // {K_S_END, "\033O2F"},
951 // {K_C_END, "\033O5F"},
952 {K_KEND, "\033[4;*~"},
953 {K_XEND, "\033O*F"}, // other End
954 {K_ZEND, "\033[8;*~"},
955 {K_PAGEUP, "\033[5;*~"},
956 {K_PAGEDOWN, "\033[6;*~"},
957 {K_KPLUS, "\033O*k"}, // keypad plus
958 {K_KMINUS, "\033O*m"}, // keypad minus
959 {K_KDIVIDE, "\033O*o"}, // keypad /
960 {K_KMULTIPLY, "\033O*j"}, // keypad *
961 {K_KENTER, "\033O*M"}, // keypad Enter
962 {K_KPOINT, "\033O*n"}, // keypad .
963 {K_K0, "\033O*p"}, // keypad 0
964 {K_K1, "\033O*q"}, // keypad 1
965 {K_K2, "\033O*r"}, // keypad 2
966 {K_K3, "\033O*s"}, // keypad 3
967 {K_K4, "\033O*t"}, // keypad 4
968 {K_K5, "\033O*u"}, // keypad 5
969 {K_K6, "\033O*v"}, // keypad 6
970 {K_K7, "\033O*w"}, // keypad 7
971 {K_K8, "\033O*x"}, // keypad 8
972 {K_K9, "\033O*y"}, // keypad 9
973 {K_KDEL, "\033[3;*~"}, // keypad Del
974 {K_PS, "\033[200~"}, // paste start
975 {K_PE, "\033[201~"}, // paste end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976
977 {BT_EXTRA_KEYS, ""},
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000978 {TERMCAP2KEY('k', '0'), "\033[10;*~"}, // F0
979 {TERMCAP2KEY('F', '3'), "\033[25;*~"}, // F13
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100980 // F14 and F15 are missing, because they send the same codes as the undo
981 // and help key, although they don't work on all keyboards.
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000982 {TERMCAP2KEY('F', '6'), "\033[29;*~"}, // F16
983 {TERMCAP2KEY('F', '7'), "\033[31;*~"}, // F17
984 {TERMCAP2KEY('F', '8'), "\033[32;*~"}, // F18
985 {TERMCAP2KEY('F', '9'), "\033[33;*~"}, // F19
986 {TERMCAP2KEY('F', 'A'), "\033[34;*~"}, // F20
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000987
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000988 {TERMCAP2KEY('F', 'B'), "\033[42;*~"}, // F21
989 {TERMCAP2KEY('F', 'C'), "\033[43;*~"}, // F22
990 {TERMCAP2KEY('F', 'D'), "\033[44;*~"}, // F23
991 {TERMCAP2KEY('F', 'E'), "\033[45;*~"}, // F24
992 {TERMCAP2KEY('F', 'F'), "\033[46;*~"}, // F25
993 {TERMCAP2KEY('F', 'G'), "\033[47;*~"}, // F26
994 {TERMCAP2KEY('F', 'H'), "\033[48;*~"}, // F27
995 {TERMCAP2KEY('F', 'I'), "\033[49;*~"}, // F28
996 {TERMCAP2KEY('F', 'J'), "\033[50;*~"}, // F29
997 {TERMCAP2KEY('F', 'K'), "\033[51;*~"}, // F30
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000998
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000999 {TERMCAP2KEY('F', 'L'), "\033[52;*~"}, // F31
1000 {TERMCAP2KEY('F', 'M'), "\033[53;*~"}, // F32
1001 {TERMCAP2KEY('F', 'N'), "\033[54;*~"}, // F33
1002 {TERMCAP2KEY('F', 'O'), "\033[55;*~"}, // F34
1003 {TERMCAP2KEY('F', 'P'), "\033[56;*~"}, // F35
1004 {TERMCAP2KEY('F', 'Q'), "\033[57;*~"}, // F36
1005 {TERMCAP2KEY('F', 'R'), "\033[58;*~"}, // F37
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006# endif
1007
1008# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
1009/*
1010 * iris-ansi for Silicon Graphics machines.
1011 */
1012 {(int)KS_NAME, "iris-ansi"},
1013 {(int)KS_CE, "\033[K"},
1014 {(int)KS_CD, "\033[J"},
1015 {(int)KS_AL, "\033[L"},
1016# ifdef TERMINFO
1017 {(int)KS_CAL, "\033[%p1%dL"},
1018# else
1019 {(int)KS_CAL, "\033[%dL"},
1020# endif
1021 {(int)KS_DL, "\033[M"},
1022# ifdef TERMINFO
1023 {(int)KS_CDL, "\033[%p1%dM"},
1024# else
1025 {(int)KS_CDL, "\033[%dM"},
1026# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001027#if 0 // The scroll region is not working as Vim expects.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028# ifdef TERMINFO
1029 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1030# else
1031 {(int)KS_CS, "\033[%i%d;%dr"},
1032# endif
1033#endif
1034 {(int)KS_CL, "\033[H\033[2J"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001035 {(int)KS_VE, "\033[9/y\033[12/y"}, // These aren't documented
1036 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, // These aren't documented
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 {(int)KS_TI, "\033[=6h"},
1038 {(int)KS_TE, "\033[=6l"},
1039 {(int)KS_SE, "\033[21;27m"},
1040 {(int)KS_SO, "\033[1;7m"},
1041 {(int)KS_ME, "\033[m"},
1042 {(int)KS_MR, "\033[7m"},
1043 {(int)KS_MD, "\033[1m"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001044 {(int)KS_CCO, "8"}, // allow 8 colors
1045 {(int)KS_CZH, "\033[3m"}, // italic mode on
1046 {(int)KS_CZR, "\033[23m"}, // italic mode off
1047 {(int)KS_US, "\033[4m"}, // underline on
1048 {(int)KS_UE, "\033[24m"}, // underline off
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049# ifdef TERMINFO
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001050 {(int)KS_CAB, "\033[4%p1%dm"}, // set background color (ANSI)
1051 {(int)KS_CAF, "\033[3%p1%dm"}, // set foreground color (ANSI)
1052 {(int)KS_CSB, "\033[102;%p1%dm"}, // set screen background color
1053 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001055 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI)
1056 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI)
1057 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color
1058 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059# endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001060 {(int)KS_MS, "y"}, // guessed
1061 {(int)KS_UT, "y"}, // guessed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 {(int)KS_LE, "\b"},
1063# ifdef TERMINFO
1064 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1065# else
1066 {(int)KS_CM, "\033[%i%d;%dH"},
1067# endif
1068 {(int)KS_SR, "\033M"},
1069# ifdef TERMINFO
1070 {(int)KS_CRI, "\033[%p1%dC"},
1071# else
1072 {(int)KS_CRI, "\033[%dC"},
1073# endif
1074 {(int)KS_CIS, "\033P3.y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001075 {(int)KS_CIE, "\234"}, // ST "String Terminator"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 {(int)KS_TS, "\033P1.y"},
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001077 {(int)KS_FS, "\234"}, // ST "String Terminator"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078# ifdef TERMINFO
1079 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1080 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1081# else
1082 {(int)KS_CWS, "\033[203;%d;%d/y"},
1083 {(int)KS_CWP, "\033[205;%d;%d/y"},
1084# endif
1085 {K_UP, "\033[A"},
1086 {K_DOWN, "\033[B"},
1087 {K_LEFT, "\033[D"},
1088 {K_RIGHT, "\033[C"},
1089 {K_S_UP, "\033[161q"},
1090 {K_S_DOWN, "\033[164q"},
1091 {K_S_LEFT, "\033[158q"},
1092 {K_S_RIGHT, "\033[167q"},
1093 {K_F1, "\033[001q"},
1094 {K_F2, "\033[002q"},
1095 {K_F3, "\033[003q"},
1096 {K_F4, "\033[004q"},
1097 {K_F5, "\033[005q"},
1098 {K_F6, "\033[006q"},
1099 {K_F7, "\033[007q"},
1100 {K_F8, "\033[008q"},
1101 {K_F9, "\033[009q"},
1102 {K_F10, "\033[010q"},
1103 {K_F11, "\033[011q"},
1104 {K_F12, "\033[012q"},
1105 {K_S_F1, "\033[013q"},
1106 {K_S_F2, "\033[014q"},
1107 {K_S_F3, "\033[015q"},
1108 {K_S_F4, "\033[016q"},
1109 {K_S_F5, "\033[017q"},
1110 {K_S_F6, "\033[018q"},
1111 {K_S_F7, "\033[019q"},
1112 {K_S_F8, "\033[020q"},
1113 {K_S_F9, "\033[021q"},
1114 {K_S_F10, "\033[022q"},
1115 {K_S_F11, "\033[023q"},
1116 {K_S_F12, "\033[024q"},
1117 {K_INS, "\033[139q"},
1118 {K_HOME, "\033[H"},
1119 {K_END, "\033[146q"},
1120 {K_PAGEUP, "\033[150q"},
1121 {K_PAGEDOWN, "\033[154q"},
1122# endif
1123
1124# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1125/*
1126 * for debugging
1127 */
1128 {(int)KS_NAME, "debug"},
1129 {(int)KS_CE, "[CE]"},
1130 {(int)KS_CD, "[CD]"},
1131 {(int)KS_AL, "[AL]"},
1132# ifdef TERMINFO
1133 {(int)KS_CAL, "[CAL%p1%d]"},
1134# else
1135 {(int)KS_CAL, "[CAL%d]"},
1136# endif
1137 {(int)KS_DL, "[DL]"},
1138# ifdef TERMINFO
1139 {(int)KS_CDL, "[CDL%p1%d]"},
1140# else
1141 {(int)KS_CDL, "[CDL%d]"},
1142# endif
1143# ifdef TERMINFO
1144 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1145# else
1146 {(int)KS_CS, "[%dCS%d]"},
1147# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001148# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001150# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152# endif
1153# ifdef TERMINFO
1154 {(int)KS_CAB, "[CAB%p1%d]"},
1155 {(int)KS_CAF, "[CAF%p1%d]"},
1156 {(int)KS_CSB, "[CSB%p1%d]"},
1157 {(int)KS_CSF, "[CSF%p1%d]"},
1158# else
1159 {(int)KS_CAB, "[CAB%d]"},
1160 {(int)KS_CAF, "[CAF%d]"},
1161 {(int)KS_CSB, "[CSB%d]"},
1162 {(int)KS_CSF, "[CSF%d]"},
1163# endif
Bram Moolenaare023e882020-05-31 16:42:30 +02001164 {(int)KS_CAU, "[CAU%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 {(int)KS_OP, "[OP]"},
1166 {(int)KS_LE, "[LE]"},
1167 {(int)KS_CL, "[CL]"},
1168 {(int)KS_VI, "[VI]"},
1169 {(int)KS_VE, "[VE]"},
1170 {(int)KS_VS, "[VS]"},
1171 {(int)KS_ME, "[ME]"},
1172 {(int)KS_MR, "[MR]"},
1173 {(int)KS_MB, "[MB]"},
1174 {(int)KS_MD, "[MD]"},
1175 {(int)KS_SE, "[SE]"},
1176 {(int)KS_SO, "[SO]"},
1177 {(int)KS_UE, "[UE]"},
1178 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001179 {(int)KS_UCE, "[UCE]"},
1180 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001181 {(int)KS_STE, "[STE]"},
1182 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 {(int)KS_MS, "[MS]"},
1184 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001185 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186# ifdef TERMINFO
1187 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1188# else
1189 {(int)KS_CM, "[%dCM%d]"},
1190# endif
1191 {(int)KS_SR, "[SR]"},
1192# ifdef TERMINFO
1193 {(int)KS_CRI, "[CRI%p1%d]"},
1194# else
1195 {(int)KS_CRI, "[CRI%d]"},
1196# endif
1197 {(int)KS_VB, "[VB]"},
1198 {(int)KS_KS, "[KS]"},
1199 {(int)KS_KE, "[KE]"},
1200 {(int)KS_TI, "[TI]"},
1201 {(int)KS_TE, "[TE]"},
1202 {(int)KS_CIS, "[CIS]"},
1203 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001204 {(int)KS_CSC, "[CSC]"},
1205 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 {(int)KS_TS, "[TS]"},
1207 {(int)KS_FS, "[FS]"},
1208# ifdef TERMINFO
1209 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1210 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1211# else
1212 {(int)KS_CWS, "[%dCWS%d]"},
1213 {(int)KS_CWP, "[%dCWP%d]"},
1214# endif
1215 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001216 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001217 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001218 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 {K_UP, "[KU]"},
1220 {K_DOWN, "[KD]"},
1221 {K_LEFT, "[KL]"},
1222 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001223 {K_XUP, "[xKU]"},
1224 {K_XDOWN, "[xKD]"},
1225 {K_XLEFT, "[xKL]"},
1226 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 {K_S_UP, "[S-KU]"},
1228 {K_S_DOWN, "[S-KD]"},
1229 {K_S_LEFT, "[S-KL]"},
1230 {K_C_LEFT, "[C-KL]"},
1231 {K_S_RIGHT, "[S-KR]"},
1232 {K_C_RIGHT, "[C-KR]"},
1233 {K_F1, "[F1]"},
1234 {K_XF1, "[xF1]"},
1235 {K_F2, "[F2]"},
1236 {K_XF2, "[xF2]"},
1237 {K_F3, "[F3]"},
1238 {K_XF3, "[xF3]"},
1239 {K_F4, "[F4]"},
1240 {K_XF4, "[xF4]"},
1241 {K_F5, "[F5]"},
1242 {K_F6, "[F6]"},
1243 {K_F7, "[F7]"},
1244 {K_F8, "[F8]"},
1245 {K_F9, "[F9]"},
1246 {K_F10, "[F10]"},
1247 {K_F11, "[F11]"},
1248 {K_F12, "[F12]"},
1249 {K_S_F1, "[S-F1]"},
1250 {K_S_XF1, "[S-xF1]"},
1251 {K_S_F2, "[S-F2]"},
1252 {K_S_XF2, "[S-xF2]"},
1253 {K_S_F3, "[S-F3]"},
1254 {K_S_XF3, "[S-xF3]"},
1255 {K_S_F4, "[S-F4]"},
1256 {K_S_XF4, "[S-xF4]"},
1257 {K_S_F5, "[S-F5]"},
1258 {K_S_F6, "[S-F6]"},
1259 {K_S_F7, "[S-F7]"},
1260 {K_S_F8, "[S-F8]"},
1261 {K_S_F9, "[S-F9]"},
1262 {K_S_F10, "[S-F10]"},
1263 {K_S_F11, "[S-F11]"},
1264 {K_S_F12, "[S-F12]"},
1265 {K_HELP, "[HELP]"},
1266 {K_UNDO, "[UNDO]"},
1267 {K_BS, "[BS]"},
1268 {K_INS, "[INS]"},
1269 {K_KINS, "[KINS]"},
1270 {K_DEL, "[DEL]"},
1271 {K_KDEL, "[KDEL]"},
1272 {K_HOME, "[HOME]"},
1273 {K_S_HOME, "[C-HOME]"},
1274 {K_C_HOME, "[C-HOME]"},
1275 {K_KHOME, "[KHOME]"},
1276 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001277 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 {K_END, "[END]"},
1279 {K_S_END, "[C-END]"},
1280 {K_C_END, "[C-END]"},
1281 {K_KEND, "[KEND]"},
1282 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001283 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 {K_PAGEUP, "[PAGEUP]"},
1285 {K_PAGEDOWN, "[PAGEDOWN]"},
1286 {K_KPAGEUP, "[KPAGEUP]"},
1287 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1288 {K_MOUSE, "[MOUSE]"},
1289 {K_KPLUS, "[KPLUS]"},
1290 {K_KMINUS, "[KMINUS]"},
1291 {K_KDIVIDE, "[KDIVIDE]"},
1292 {K_KMULTIPLY, "[KMULTIPLY]"},
1293 {K_KENTER, "[KENTER]"},
1294 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001295 {K_PS, "[PASTE-START]"},
1296 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 {K_K0, "[K0]"},
1298 {K_K1, "[K1]"},
1299 {K_K2, "[K2]"},
1300 {K_K3, "[K3]"},
1301 {K_K4, "[K4]"},
1302 {K_K5, "[K5]"},
1303 {K_K6, "[K6]"},
1304 {K_K7, "[K7]"},
1305 {K_K8, "[K8]"},
1306 {K_K9, "[K9]"},
1307# endif
1308
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001309#endif // NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310
1311/*
1312 * The most minimal terminal: only clear screen and cursor positioning
1313 * Always included.
1314 */
1315 {(int)KS_NAME, "dumb"},
1316 {(int)KS_CL, "\014"},
1317#ifdef TERMINFO
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001318 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319#else
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001320 {(int)KS_CM, "\033[%i%d;%dH"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321#endif
1322
1323/*
1324 * end marker
1325 */
1326 {(int)KS_NAME, NULL}
1327
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001328}; // end of builtin_termcaps
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001330#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001331 static guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001332termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001333{
Bram Moolenaarab302212016-04-26 20:59:29 +02001334 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001335}
1336
1337 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001338termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001339{
1340 guicolor_T t;
1341
1342 if (*name == NUL)
1343 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001344 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001345
1346 if (t == INVALCOLOR)
Drew Vogele30d1022021-10-24 20:35:07 +01001347 semsg(_(e_cannot_allocate_color_str), name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001348 return t;
1349}
1350
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001351 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001352termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001353{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001354 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001355}
1356#endif
1357
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358/*
1359 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361#ifdef AMIGA
1362# define DEFAULT_TERM (char_u *)"amiga"
1363#endif
1364
1365#ifdef MSWIN
1366# define DEFAULT_TERM (char_u *)"win32"
1367#endif
1368
Bram Moolenaare3f915d2020-07-14 23:02:44 +02001369#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370# define DEFAULT_TERM (char_u *)"ansi"
1371#endif
1372
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373#ifdef VMS
1374# define DEFAULT_TERM (char_u *)"vt320"
1375#endif
1376
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001377#ifdef __HAIKU__
1378# undef DEFAULT_TERM
1379# define DEFAULT_TERM (char_u *)"xterm"
1380#endif
1381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382#ifndef DEFAULT_TERM
1383# define DEFAULT_TERM (char_u *)"dumb"
1384#endif
1385
1386/*
1387 * Term_strings contains currently used terminal output strings.
1388 * It is initialized with the default values by parse_builtin_tcap().
1389 * The values can be changed by setting the option with the same name.
1390 */
1391char_u *(term_strings[(int)KS_LAST + 1]);
1392
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001393static int need_gather = FALSE; // need to fill termleader[]
1394static char_u termleader[256 + 1]; // for check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395#ifdef FEAT_TERMRESPONSE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001396static int check_for_codes = FALSE; // check for key code response
Bram Moolenaar517f00f2020-06-10 12:15:51 +02001397
1398/*
1399 * Structure and table to store terminal features that can be detected by
1400 * querying the terminal. Either by inspecting the termresponse or a more
1401 * specific request. Besides this there are:
1402 * t_colors - number of colors supported
1403 */
1404typedef struct {
1405 char *tpr_name;
1406 int tpr_set_by_termresponse;
1407 int tpr_status;
1408} termprop_T;
1409
1410// Values for tpr_status.
1411#define TPR_UNKNOWN 'u'
1412#define TPR_YES 'y'
1413#define TPR_NO 'n'
1414#define TPR_MOUSE_XTERM 'x' // use "xterm" for 'ttymouse'
1415#define TPR_MOUSE_XTERM2 '2' // use "xterm2" for 'ttymouse'
1416#define TPR_MOUSE_SGR 's' // use "sgr" for 'ttymouse'
1417
1418// can request the cursor style without messing up the display
1419#define TPR_CURSOR_STYLE 0
1420// can request the cursor blink mode without messing up the display
1421#define TPR_CURSOR_BLINK 1
1422// can set the underline color with t_8u without resetting other colors
1423#define TPR_UNDERLINE_RGB 2
1424// mouse support - TPR_MOUSE_XTERM, TPR_MOUSE_XTERM2 or TPR_MOUSE_SGR
1425#define TPR_MOUSE 3
1426// table size
1427#define TPR_COUNT 4
1428
1429static termprop_T term_props[TPR_COUNT];
1430
1431/*
1432 * Initialize the term_props table.
1433 * When "all" is FALSE only set those that are detected from the version
1434 * response.
1435 */
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001436 void
Bram Moolenaar517f00f2020-06-10 12:15:51 +02001437init_term_props(int all)
1438{
1439 int i;
1440
1441 term_props[TPR_CURSOR_STYLE].tpr_name = "cursor_style";
1442 term_props[TPR_CURSOR_STYLE].tpr_set_by_termresponse = FALSE;
1443 term_props[TPR_CURSOR_BLINK].tpr_name = "cursor_blink_mode";
1444 term_props[TPR_CURSOR_BLINK].tpr_set_by_termresponse = FALSE;
1445 term_props[TPR_UNDERLINE_RGB].tpr_name = "underline_rgb";
1446 term_props[TPR_UNDERLINE_RGB].tpr_set_by_termresponse = TRUE;
1447 term_props[TPR_MOUSE].tpr_name = "mouse";
1448 term_props[TPR_MOUSE].tpr_set_by_termresponse = TRUE;
1449
1450 for (i = 0; i < TPR_COUNT; ++i)
1451 if (all || term_props[i].tpr_set_by_termresponse)
1452 term_props[i].tpr_status = TPR_UNKNOWN;
1453}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454#endif
1455
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001456#if defined(FEAT_EVAL) || defined(PROTO)
1457 void
1458f_terminalprops(typval_T *argvars UNUSED, typval_T *rettv)
1459{
1460# ifdef FEAT_TERMRESPONSE
1461 int i;
1462# endif
1463
1464 if (rettv_dict_alloc(rettv) != OK)
1465 return;
1466# ifdef FEAT_TERMRESPONSE
1467 for (i = 0; i < TPR_COUNT; ++i)
1468 {
1469 char_u value[2];
1470
1471 value[0] = term_props[i].tpr_status;
1472 value[1] = NUL;
1473 dict_add_string(rettv->vval.v_dict, term_props[i].tpr_name, value);
1474 }
1475# endif
1476}
1477#endif
1478
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001480find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481{
1482 struct builtin_term *p;
1483
1484 p = builtin_termcaps;
1485 while (p->bt_string != NULL)
1486 {
1487 if (p->bt_entry == (int)KS_NAME)
1488 {
1489#ifdef UNIX
1490 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1491 return p;
1492 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1493 return p;
1494 else
1495#endif
1496#ifdef VMS
1497 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1498 return p;
1499 else
1500#endif
1501 if (STRCMP(term, p->bt_string) == 0)
1502 return p;
1503 }
1504 ++p;
1505 }
1506 return p;
1507}
1508
1509/*
1510 * Parsing of the builtin termcap entries.
1511 * Caller should check if 'name' is a valid builtin term.
1512 * The terminal's name is not set, as this is already done in termcapinit().
1513 */
1514 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001515parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516{
1517 struct builtin_term *p;
1518 char_u name[2];
1519 int term_8bit;
1520
1521 p = find_builtin_term(term);
1522 term_8bit = term_is_8bit(term);
1523
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001524 // Do not parse if builtin term not found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 if (p->bt_string == NULL)
1526 return;
1527
1528 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1529 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001530 if ((int)p->bt_entry >= 0) // KS_xx entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001532 // Only set the value if it wasn't set yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (term_strings[p->bt_entry] == NULL
1534 || term_strings[p->bt_entry] == empty_option)
1535 {
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001536#ifdef FEAT_EVAL
1537 int opt_idx = -1;
1538#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001539 // 8bit terminal: use CSI instead of <Esc>[
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1541 {
1542 char_u *s, *t;
1543
1544 s = vim_strsave((char_u *)p->bt_string);
1545 if (s != NULL)
1546 {
1547 for (t = s; *t; ++t)
1548 if (term_7to8bit(t))
1549 {
1550 *t = term_7to8bit(t);
Bram Moolenaar18085fa2018-07-10 17:33:45 +02001551 STRMOVE(t + 1, t + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 }
1553 term_strings[p->bt_entry] = s;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001554#ifdef FEAT_EVAL
1555 opt_idx =
1556#endif
1557 set_term_option_alloced(
1558 &term_strings[p->bt_entry]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 }
1560 }
1561 else
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001562 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 term_strings[p->bt_entry] = (char_u *)p->bt_string;
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001564#ifdef FEAT_EVAL
1565 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]);
1566#endif
1567 }
1568#ifdef FEAT_EVAL
1569 set_term_option_sctx_idx(NULL, opt_idx);
1570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 }
1572 }
1573 else
1574 {
1575 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1576 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1577 if (find_termcode(name) == NULL)
1578 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1579 }
1580 }
1581}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001582
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583/*
1584 * Set number of colors.
1585 * Store it as a number in t_colors.
1586 * Store it as a string in T_CCO (using nr_colors[]).
1587 */
Bram Moolenaaracc770a2020-04-12 15:11:06 +02001588 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001589set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001591 char_u nr_colors[20]; // string for number of colors
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592
1593 t_colors = nr;
1594 if (t_colors > 1)
1595 sprintf((char *)nr_colors, "%d", t_colors);
1596 else
1597 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001598 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001600
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001601#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001602/*
1603 * Set the color count to "val" and redraw if it changed.
1604 */
1605 static void
1606may_adjust_color_count(int val)
1607{
1608 if (val != t_colors)
1609 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001610 // Nr of colors changed, initialize highlighting and
1611 // redraw everything. This causes a redraw, which usually
1612 // clears the message. Try keeping the message if it
1613 // might work.
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001614 set_keep_msg_from_hist();
1615 set_color_count(val);
1616 init_highlight(TRUE, FALSE);
1617# ifdef DEBUG_TERMRESPONSE
1618 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02001619 int r = redraw_asap(CLEAR);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001620
Bram Moolenaarb255b902018-04-24 21:40:10 +02001621 log_tr("Received t_Co, redraw_asap(): %d", r);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001622 }
Bram Moolenaar87202262020-05-24 17:23:45 +02001623# else
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001624 redraw_asap(CLEAR);
Bram Moolenaar87202262020-05-24 17:23:45 +02001625# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001626 }
1627}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628#endif
1629
1630#ifdef HAVE_TGETENT
1631static char *(key_names[]) =
1632{
Bram Moolenaar87202262020-05-24 17:23:45 +02001633# ifdef FEAT_TERMRESPONSE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001634 // Do this one first, it may cause a screen redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 "Co",
Bram Moolenaar87202262020-05-24 17:23:45 +02001636# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 "#2", "#4", "%i", "*7",
1639 "k1", "k2", "k3", "k4", "k5", "k6",
1640 "k7", "k8", "k9", "k;", "F1", "F2",
1641 "%1", "&8", "kb", "kI", "kD", "kh",
1642 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1643 NULL
1644};
1645#endif
1646
Bram Moolenaar9289df52018-05-10 14:40:57 +02001647#ifdef HAVE_TGETENT
Bram Moolenaar69e05692018-05-10 14:11:52 +02001648 static void
1649get_term_entries(int *height, int *width)
1650{
1651 static struct {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001652 enum SpecialKey dest; // index in term_strings[]
1653 char *name; // termcap name for string
Bram Moolenaar69e05692018-05-10 14:11:52 +02001654 } string_names[] =
1655 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1656 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1657 {KS_CL, "cl"}, {KS_CD, "cd"},
1658 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1659 {KS_ME, "me"}, {KS_MR, "mr"},
1660 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1661 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
1662 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1663 {KS_STE,"Te"}, {KS_STS,"Ts"},
1664 {KS_CM, "cm"}, {KS_SR, "sr"},
1665 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1666 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
Bram Moolenaar171a9212019-10-12 21:08:59 +02001667 {KS_CTI, "TI"}, {KS_CTE, "TE"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001668 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
Bram Moolenaare023e882020-05-31 16:42:30 +02001669 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_CAU,"AU"},
1670 {KS_LE, "le"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001671 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1672 {KS_VS, "vs"}, {KS_CVS, "VS"},
1673 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1674 {KS_CSC, "SC"}, {KS_CEC, "EC"},
1675 {KS_TS, "ts"}, {KS_FS, "fs"},
1676 {KS_CWP, "WP"}, {KS_CWS, "WS"},
1677 {KS_CSI, "SI"}, {KS_CEI, "EI"},
1678 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
Bram Moolenaare023e882020-05-31 16:42:30 +02001679 {KS_8F, "8f"}, {KS_8B, "8b"}, {KS_8U, "8u"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001680 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1681 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar40385db2018-08-07 22:31:44 +02001682 {KS_CST, "ST"}, {KS_CRT, "RT"},
1683 {KS_SSI, "Si"}, {KS_SRI, "Ri"},
Bram Moolenaar69e05692018-05-10 14:11:52 +02001684 {(enum SpecialKey)0, NULL}
1685 };
1686 int i;
1687 char_u *p;
1688 static char_u tstrbuf[TBUFSZ];
1689 char_u *tp = tstrbuf;
1690
1691 /*
1692 * get output strings
1693 */
1694 for (i = 0; string_names[i].name != NULL; ++i)
1695 {
1696 if (TERM_STR(string_names[i].dest) == NULL
1697 || TERM_STR(string_names[i].dest) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001698 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001699 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp);
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001700#ifdef FEAT_EVAL
1701 set_term_option_sctx_idx(string_names[i].name, -1);
1702#endif
1703 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001704 }
1705
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001706 // tgetflag() returns 1 if the flag is present, 0 if not and
1707 // possibly -1 if the flag doesn't exist.
Bram Moolenaar69e05692018-05-10 14:11:52 +02001708 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0)
1709 T_MS = (char_u *)"y";
1710 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0)
1711 T_XS = (char_u *)"y";
1712 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0)
1713 T_XN = (char_u *)"y";
1714 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0)
1715 T_DB = (char_u *)"y";
1716 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0)
1717 T_DA = (char_u *)"y";
1718 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0)
1719 T_UT = (char_u *)"y";
1720
1721 /*
1722 * get key codes
1723 */
1724 for (i = 0; key_names[i] != NULL; ++i)
1725 if (find_termcode((char_u *)key_names[i]) == NULL)
1726 {
1727 p = TGETSTR(key_names[i], &tp);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001728 // if cursor-left == backspace, ignore it (televideo 925)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001729 if (p != NULL
1730 && (*p != Ctrl_H
1731 || key_names[i][0] != 'k'
1732 || key_names[i][1] != 'l'))
1733 add_termcode((char_u *)key_names[i], p, FALSE);
1734 }
1735
1736 if (*height == 0)
1737 *height = tgetnum("li");
1738 if (*width == 0)
1739 *width = tgetnum("co");
1740
1741 /*
1742 * Get number of colors (if not done already).
1743 */
1744 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001745 {
Bram Moolenaar69e05692018-05-10 14:11:52 +02001746 set_color_count(tgetnum("Co"));
Bram Moolenaar35bc7d62018-10-02 14:45:10 +02001747#ifdef FEAT_EVAL
1748 set_term_option_sctx_idx("Co", -1);
1749#endif
1750 }
Bram Moolenaar69e05692018-05-10 14:11:52 +02001751
1752# ifndef hpux
1753 BC = (char *)TGETSTR("bc", &tp);
1754 UP = (char *)TGETSTR("up", &tp);
1755 p = TGETSTR("pc", &tp);
1756 if (p)
1757 PC = *p;
1758# endif
1759}
Bram Moolenaar9289df52018-05-10 14:40:57 +02001760#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001761
1762 static void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001763report_term_error(char *error_msg, char_u *term)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001764{
1765 struct builtin_term *termp;
Bram Moolenaarecd34bf2020-08-04 20:17:31 +02001766 int i;
Bram Moolenaar69e05692018-05-10 14:11:52 +02001767
1768 mch_errmsg("\r\n");
1769 if (error_msg != NULL)
1770 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001771 mch_errmsg(error_msg);
Bram Moolenaar69e05692018-05-10 14:11:52 +02001772 mch_errmsg("\r\n");
1773 }
1774 mch_errmsg("'");
1775 mch_errmsg((char *)term);
1776 mch_errmsg(_("' not known. Available builtin terminals are:"));
1777 mch_errmsg("\r\n");
1778 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; ++termp)
1779 {
Bram Moolenaar0f5575d2021-07-30 21:18:03 +02001780 if (termp->bt_entry == (int)KS_NAME
1781 && STRCMP(termp->bt_string, "gui") != 0)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001782 {
1783#ifdef HAVE_TGETENT
1784 mch_errmsg(" builtin_");
1785#else
1786 mch_errmsg(" ");
1787#endif
1788 mch_errmsg(termp->bt_string);
1789 mch_errmsg("\r\n");
1790 }
1791 }
Bram Moolenaarecd34bf2020-08-04 20:17:31 +02001792 // Output extra 'cmdheight' line breaks to avoid that the following error
1793 // message overwrites the last terminal name.
1794 for (i = 1; i < p_ch; ++i)
1795 mch_errmsg("\r\n");
Bram Moolenaar69e05692018-05-10 14:11:52 +02001796}
1797
1798 static void
1799report_default_term(char_u *term)
1800{
1801 mch_errmsg(_("defaulting to '"));
1802 mch_errmsg((char *)term);
1803 mch_errmsg("'\r\n");
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001804 if (emsg_silent == 0 && !in_assert_fails)
Bram Moolenaar69e05692018-05-10 14:11:52 +02001805 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001806 screen_start(); // don't know where cursor is now
Bram Moolenaar69e05692018-05-10 14:11:52 +02001807 out_flush();
1808 if (!is_not_a_term())
Bram Moolenaareda1da02019-11-17 17:06:33 +01001809 ui_delay(2007L, TRUE);
Bram Moolenaar69e05692018-05-10 14:11:52 +02001810 }
1811}
1812
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813/*
1814 * Set terminal options for terminal "term".
1815 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1816 *
1817 * While doing this, until ttest(), some options may be NULL, be careful.
1818 */
1819 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001820set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821{
1822 struct builtin_term *termp;
1823#ifdef HAVE_TGETENT
1824 int builtin_first = p_tbi;
1825 int try;
1826 int termcap_cleared = FALSE;
1827#endif
1828 int width = 0, height = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001829 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 char_u *bs_p, *del_p;
1831
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001832 // In silect mode (ex -s) we don't use the 'term' option.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001833 if (silent_mode)
1834 return OK;
1835
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001836 detected_8bit = FALSE; // reset 8-bit detection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837
1838 if (term_is_builtin(term))
1839 {
1840 term += 8;
1841#ifdef HAVE_TGETENT
1842 builtin_first = 1;
1843#endif
1844 }
1845
1846/*
1847 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1848 * If builtin_first is TRUE:
1849 * 0. try builtin termcap
1850 * 1. try external termcap
1851 * 2. if both fail default to a builtin terminal
1852 * If builtin_first is FALSE:
1853 * 1. try external termcap
1854 * 2. try builtin termcap, if both fail default to a builtin terminal
1855 */
1856#ifdef HAVE_TGETENT
1857 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1858 {
1859 /*
1860 * Use external termcap
1861 */
1862 if (try == 1)
1863 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 char_u tbuf[TBUFSZ];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
1866 /*
1867 * If the external termcap does not have a matching entry, try the
1868 * builtin ones.
1869 */
1870 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1871 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 if (!termcap_cleared)
1873 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001874 clear_termoptions(); // clear old options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 termcap_cleared = TRUE;
1876 }
1877
Bram Moolenaar69e05692018-05-10 14:11:52 +02001878 get_term_entries(&height, &width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 }
1880 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001881 else // try == 0 || try == 2
1882#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 /*
1884 * Use builtin termcap
1885 */
1886 {
1887#ifdef HAVE_TGETENT
1888 /*
1889 * If builtin termcap was already used, there is no need to search
1890 * for the builtin termcap again, quit now.
1891 */
1892 if (try == 2 && builtin_first && termcap_cleared)
1893 break;
1894#endif
1895 /*
1896 * search for 'term' in builtin_termcaps[]
1897 */
1898 termp = find_builtin_term(term);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001899 if (termp->bt_string == NULL) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 {
1901#ifdef HAVE_TGETENT
1902 /*
1903 * If try == 0, first try the external termcap. If that is not
1904 * found we'll get back here with try == 2.
1905 * If termcap_cleared is set we used the external termcap,
1906 * don't complain about not finding the term in the builtin
1907 * termcap.
1908 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001909 if (try == 0) // try external one
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 continue;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001911 if (termcap_cleared) // found in external termcap
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 break;
1913#endif
Bram Moolenaar69e05692018-05-10 14:11:52 +02001914 report_term_error(error_msg, term);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001916 // when user typed :set term=xxx, quit here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 if (starting != NO_SCREEN)
1918 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001919 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 wait_return(TRUE);
1921 return FAIL;
1922 }
1923 term = DEFAULT_TERM;
Bram Moolenaar69e05692018-05-10 14:11:52 +02001924 report_default_term(term);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001925 set_string_option_direct((char_u *)"term", -1, term,
1926 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 display_errors();
1928 }
1929 out_flush();
1930#ifdef HAVE_TGETENT
1931 if (!termcap_cleared)
1932 {
1933#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001934 clear_termoptions(); // clear old options
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935#ifdef HAVE_TGETENT
1936 termcap_cleared = TRUE;
1937 }
1938#endif
1939 parse_builtin_tcap(term);
1940#ifdef FEAT_GUI
1941 if (term_is_gui(term))
1942 {
1943 out_flush();
1944 gui_init();
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001945 // If starting the GUI failed, don't do any of the other
1946 // things for this terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 if (!gui.in_use)
1948 return FAIL;
1949#ifdef HAVE_TGETENT
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001950 break; // don't try using external termcap
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951#endif
1952 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001953#endif // FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 }
1955#ifdef HAVE_TGETENT
1956 }
1957#endif
1958
1959/*
1960 * special: There is no info in the termcap about whether the cursor
1961 * positioning is relative to the start of the screen or to the start of the
1962 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1963 * relative.
1964 */
1965 if (STRCMP(term, "pcterm") == 0)
1966 T_CCS = (char_u *)"yes";
1967 else
1968 T_CCS = empty_option;
1969
1970#ifdef UNIX
1971/*
1972 * Any "stty" settings override the default for t_kb from the termcap.
1973 * This is in os_unix.c, because it depends a lot on the version of unix that
1974 * is being used.
1975 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1976 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001977# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001979# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 get_stty();
1981#endif
1982
1983/*
1984 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1985 * didn't work, use the default CTRL-H
1986 * The default for t_kD is DEL, unless t_kb is DEL.
1987 * The vim_strsave'd strings are probably lost forever, well it's only two
1988 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1989 * directly.
1990 */
1991#ifdef FEAT_GUI
1992 if (!gui.in_use)
1993#endif
1994 {
1995 bs_p = find_termcode((char_u *)"kb");
1996 del_p = find_termcode((char_u *)"kD");
1997 if (bs_p == NULL || *bs_p == NUL)
1998 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1999 if ((del_p == NULL || *del_p == NUL) &&
2000 (bs_p == NULL || *bs_p != DEL))
2001 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
2002 }
2003
2004#if defined(UNIX) || defined(VMS)
2005 term_is_xterm = vim_is_xterm(term);
2006#endif
Bram Moolenaar0d2c4bf2019-10-17 22:17:02 +02002007#ifdef FEAT_TERMRESPONSE
Bram Moolenaar517f00f2020-06-10 12:15:51 +02002008 // Reset terminal properties that are set based on the termresponse, which
2009 // will be sent out soon.
2010 init_term_props(FALSE);
Bram Moolenaar0d2c4bf2019-10-17 22:17:02 +02002011#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002013#if defined(UNIX) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 /*
2015 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
2016 * The termcode for the mouse is added as a side effect in option.c.
2017 */
2018 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002019 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002021# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00002022 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 {
2024 if (use_xterm_mouse())
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002025 p = NULL; // keep existing value, might be "xterm2"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 else
2027 p = (char_u *)"xterm";
2028 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002029# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01002031 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002033 // Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
2034 // "xterm2" in check_termcode().
Bram Moolenaar15d55de2012-12-05 14:43:02 +01002035 reset_option_was_set((char_u *)"ttym");
2036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 if (p == NULL
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002038# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 || gui.in_use
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002040# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 )
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002042 check_mouse_termcode(); // set mouse termcode anyway
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002044#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047
Bram Moolenaarbf789742021-01-16 11:21:40 +01002048#ifdef FEAT_MOUSE_XTERM
Bram Moolenaar8d5daf22022-03-02 17:16:39 +00002049 // Focus reporting is supported by xterm compatible terminals and tmux.
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002050 if (use_xterm_like_mouse(term))
2051 {
2052 char_u name[3];
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002053
2054 // handle focus in event
Bram Moolenaarbf789742021-01-16 11:21:40 +01002055 name[0] = KS_EXTRA;
2056 name[1] = KE_FOCUSGAINED;
2057 name[2] = NUL;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002058 add_termcode(name, (char_u *)"\033[I", FALSE);
2059
2060 // handle focus out event
Bram Moolenaarbf789742021-01-16 11:21:40 +01002061 name[1] = KE_FOCUSLOST;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002062 add_termcode(name, (char_u *)"\033[O", FALSE);
2063
Bram Moolenaar51b477f2021-03-03 15:24:28 +01002064 need_gather = TRUE;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002065 }
2066#endif
Bram Moolenaar8d5daf22022-03-02 17:16:39 +00002067#if (defined(UNIX) || defined(VMS))
2068 // First time after setting 'term' a focus event is always reported.
2069 focus_state = MAYBE;
2070#endif
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002071
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072#ifdef USE_TERM_CONSOLE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002073 // DEFAULT_TERM indicates that it is the machine console.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 if (STRCMP(term, DEFAULT_TERM) != 0)
2075 term_console = FALSE;
2076 else
2077 {
2078 term_console = TRUE;
2079# ifdef AMIGA
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002080 win_resize_on(); // enable window resizing reports
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081# endif
2082 }
2083#endif
2084
2085#if defined(UNIX) || defined(VMS)
2086 /*
2087 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
2088 */
2089 if (vim_is_fastterm(term))
2090 p_tf = TRUE;
2091#endif
2092#ifdef USE_TERM_CONSOLE
2093 /*
2094 * 'ttyfast' is default on consoles
2095 */
2096 if (term_console)
2097 p_tf = TRUE;
2098#endif
2099
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002100 ttest(TRUE); // make sure we have a valid set of terminal codes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002102 full_screen = TRUE; // we can use termcap codes from now on
2103 set_term_defaults(); // use current values as defaults
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02002105 LOG_TR(("setting crv_status to STATUS_GET"));
Bram Moolenaarafd78262019-05-10 23:10:31 +02002106 crv_status.tr_progress = STATUS_GET; // Get terminal version later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107#endif
2108
2109 /*
2110 * Initialize the terminal with the appropriate termcap codes.
2111 * Set the mouse and window title if possible.
2112 * Don't do this when starting, need to parse the .vimrc first, because it
2113 * may redefine t_TI etc.
2114 */
2115 if (starting != NO_SCREEN)
2116 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002117 starttermcap(); // may change terminal mode
2118 setmouse(); // may start using the mouse
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002119 maketitle(); // may display window title
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 }
2121
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002122 // display initial screen after ttest() checking. jw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 if (width <= 0 || height <= 0)
2124 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002125 // termcap failed to report size
2126 // set defaults, in case ui_get_shellsize() also fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 width = 80;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002128#if defined(MSWIN)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002129 height = 25; // console is often 25 lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002131 height = 24; // most terminals are 24 lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132#endif
2133 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002134 set_shellsize(width, height, FALSE); // may change Rows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if (starting != NO_SCREEN)
2136 {
2137 if (scroll_region)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002138 scroll_region_reset(); // In case Rows changed
2139 check_map_keycodes(); // check mappings for terminal codes used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 {
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002142 buf_T *buf;
2143 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144
2145 /*
2146 * Execute the TermChanged autocommands for each buffer that is
2147 * loaded.
2148 */
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002149 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 {
2151 if (curbuf->b_ml.ml_mfp != NULL)
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002152 {
2153 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2155 curbuf);
Bram Moolenaar0c81d1b2020-02-22 22:45:55 +01002156 // restore curwin/curbuf and a few other things
2157 aucmd_restbuf(&aco);
2158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 }
2162
2163#ifdef FEAT_TERMRESPONSE
2164 may_req_termresponse();
2165#endif
2166
2167 return OK;
2168}
2169
Bram Moolenaarb3a29552021-11-19 11:28:04 +00002170#if defined(EXITFREE) || defined(PROTO)
2171
2172# ifdef HAVE_DEL_CURTERM
2173# undef TERMINAL // name clash in term.h
2174# include <term.h> // declares cur_term
2175# endif
2176
2177/*
2178 * If supported, delete "cur_term", which caches terminal related entries.
2179 * Avoids that valgrind reports possibly lost memory.
2180 */
2181 void
2182free_cur_term()
2183{
2184# ifdef HAVE_DEL_CURTERM
2185 if (cur_term)
2186 del_curterm(cur_term);
2187# endif
2188}
2189
2190#endif
2191
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192#ifdef HAVE_TGETENT
2193/*
2194 * Call tgetent()
2195 * Return error message if it fails, NULL if it's OK.
2196 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002197 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002198tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199{
2200 int i;
2201
Bram Moolenaar6b649ac2019-12-07 17:47:22 +01002202 // Note: Valgrind may report a leak here, because the library keeps one
2203 // buffer around that we can't ever free.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 i = TGETENT(tbuf, term);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002205 if (i < 0 // -1 is always an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206# ifdef TGETENT_ZERO_ERR
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002207 || i == 0 // sometimes zero is also an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208# endif
2209 )
2210 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002211 // On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2212 // tgetent() with the always existing "dumb" entry to avoid a crash or
2213 // hang.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 (void)TGETENT(tbuf, "dumb");
2215
2216 if (i < 0)
2217# ifdef TGETENT_ZERO_ERR
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00002218 return _(e_cannot_open_termcap_file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 if (i == 0)
2220# endif
2221#ifdef TERMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00002222 return _(e_terminal_entry_not_found_in_terminfo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223#else
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00002224 return _(e_terminal_entry_not_found_in_termcap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225#endif
2226 }
2227 return NULL;
2228}
2229
2230/*
2231 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2232 * Fix that here.
2233 */
2234 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002235vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236{
2237 char *p;
2238
2239 p = tgetstr(s, (char **)pp);
2240 if (p == (char *)-1)
2241 p = NULL;
2242 return (char_u *)p;
2243}
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002244#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002246#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247/*
2248 * Get Columns and Rows from the termcap. Used after a window signal if the
2249 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2250 * and "li" entries never change. But on some systems this works.
2251 * Errors while getting the entries are ignored.
2252 */
2253 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002254getlinecol(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002255 long *cp, // pointer to columns
2256 long *rp) // pointer to rows
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257{
2258 char_u tbuf[TBUFSZ];
2259
2260 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2261 {
2262 if (*cp == 0)
2263 *cp = tgetnum("co");
2264 if (*rp == 0)
2265 *rp = tgetnum("li");
2266 }
2267}
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002268#endif // defined(HAVE_TGETENT) && defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269
2270/*
2271 * Get a string entry from the termcap and add it to the list of termcodes.
2272 * Used for <t_xx> special keys.
2273 * Give an error message for failure when not sourcing.
2274 * If force given, replace an existing entry.
2275 * Return FAIL if the entry was not found, OK if the entry was added.
2276 */
2277 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002278add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279{
2280 char_u *term;
2281 int key;
2282 struct builtin_term *termp;
2283#ifdef HAVE_TGETENT
2284 char_u *string;
2285 int i;
2286 int builtin_first;
2287 char_u tbuf[TBUFSZ];
2288 char_u tstrbuf[TBUFSZ];
2289 char_u *tp = tstrbuf;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002290 char *error_msg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291#endif
2292
2293/*
2294 * If the GUI is running or will start in a moment, we only support the keys
2295 * that the GUI can produce.
2296 */
2297#ifdef FEAT_GUI
2298 if (gui.in_use || gui.starting)
2299 return gui_mch_haskey(name);
2300#endif
2301
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002302 if (!force && find_termcode(name) != NULL) // it's already there
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 return OK;
2304
2305 term = T_NAME;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002306 if (term == NULL || *term == NUL) // 'term' not defined yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 return FAIL;
2308
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002309 if (term_is_builtin(term)) // name starts with "builtin_"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 {
2311 term += 8;
2312#ifdef HAVE_TGETENT
2313 builtin_first = TRUE;
2314#endif
2315 }
2316#ifdef HAVE_TGETENT
2317 else
2318 builtin_first = p_tbi;
2319#endif
2320
2321#ifdef HAVE_TGETENT
2322/*
2323 * We can get the entry from the builtin termcap and from the external one.
2324 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2325 * builtin termcap first.
2326 * If 'ttybuiltin' is off, try external termcap first.
2327 */
2328 for (i = 0; i < 2; ++i)
2329 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002330 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331#endif
2332 /*
2333 * Search in builtin termcap
2334 */
2335 {
2336 termp = find_builtin_term(term);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002337 if (termp->bt_string != NULL) // found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 {
2339 key = TERMCAP2KEY(name[0], name[1]);
Bram Moolenaare7808482018-03-06 13:17:23 +01002340 ++termp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 while (termp->bt_entry != (int)KS_NAME)
2342 {
2343 if ((int)termp->bt_entry == key)
2344 {
2345 add_termcode(name, (char_u *)termp->bt_string,
2346 term_is_8bit(term));
2347 return OK;
2348 }
2349 ++termp;
2350 }
2351 }
2352 }
2353#ifdef HAVE_TGETENT
2354 else
2355 /*
2356 * Search in external termcap
2357 */
2358 {
2359 error_msg = tgetent_error(tbuf, term);
2360 if (error_msg == NULL)
2361 {
2362 string = TGETSTR((char *)name, &tp);
2363 if (string != NULL && *string != NUL)
2364 {
2365 add_termcode(name, string, FALSE);
2366 return OK;
2367 }
2368 }
2369 }
2370 }
2371#endif
2372
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002373 if (SOURCING_NAME == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 {
2375#ifdef HAVE_TGETENT
2376 if (error_msg != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002377 emsg(error_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 else
2379#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00002380 semsg(_(e_no_str_entry_in_termcap), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 }
2382 return FAIL;
2383}
2384
2385 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002386term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387{
2388 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2389}
2390
2391/*
2392 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2393 * Assume that the terminal is using 8-bit controls when the name contains
2394 * "8bit", like in "xterm-8bit".
2395 */
2396 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002397term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398{
2399 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2400}
2401
2402/*
2403 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002404 * <Esc>[ -> CSI <M_C_[>
2405 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 * <Esc>O -> <M-C-O>
2407 */
2408 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002409term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
2411 if (*p == ESC)
2412 {
2413 if (p[1] == '[')
2414 return CSI;
2415 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002416 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 if (p[1] == 'O')
2418 return 0x8f;
2419 }
2420 return 0;
2421}
2422
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002423#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002425term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426{
2427 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2428}
2429#endif
2430
2431#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2432
2433 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002434tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435{
2436 static char_u buf[16];
2437 char_u *p;
2438
2439 p = buf + 15;
2440 *p = '\0';
2441 do
2442 {
2443 --p;
2444 *p = (char_u) (i % 10 + '0');
2445 i /= 10;
2446 }
2447 while (i > 0 && p > buf);
2448 return p;
2449}
2450#endif
2451
2452#ifndef HAVE_TGETENT
2453
2454/*
2455 * minimal tgoto() implementation.
2456 * no padding and we only parse for %i %d and %+char
2457 */
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002458 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002459tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460{
2461 static char buf[30];
2462 char *p, *s, *e;
2463
2464 if (!cm)
2465 return "OOPS";
2466 e = buf + 29;
2467 for (s = buf; s < e && *cm; cm++)
2468 {
2469 if (*cm != '%')
2470 {
2471 *s++ = *cm;
2472 continue;
2473 }
2474 switch (*++cm)
2475 {
2476 case 'd':
2477 p = (char *)tltoa((unsigned long)y);
2478 y = x;
2479 while (*p)
2480 *s++ = *p++;
2481 break;
2482 case 'i':
2483 x++;
2484 y++;
2485 break;
2486 case '+':
2487 *s++ = (char)(*++cm + y);
2488 y = x;
2489 break;
2490 case '%':
2491 *s++ = *cm;
2492 break;
2493 default:
2494 return "OOPS";
2495 }
2496 }
2497 *s = '\0';
2498 return buf;
2499}
2500
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002501#endif // HAVE_TGETENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
2503/*
2504 * Set the terminal name and initialize the terminal options.
2505 * If "name" is NULL or empty, get the terminal name from the environment.
2506 * If that fails, use the default terminal name.
2507 */
2508 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002509termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510{
2511 char_u *term;
2512
2513 if (name != NULL && *name == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002514 name = NULL; // empty name is equal to no name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 term = name;
2516
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517#ifndef MSWIN
2518 if (term == NULL)
2519 term = mch_getenv((char_u *)"TERM");
2520#endif
2521 if (term == NULL || *term == NUL)
2522 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002523 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002525 // Set the default terminal name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 set_string_default("term", term);
2527 set_string_default("ttytype", term);
2528
2529 /*
2530 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2531 */
2532 set_termname(T_NAME != NULL ? T_NAME : term);
2533}
2534
2535/*
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002536 * The number of calls to ui_write is reduced by using "out_buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002538#define OUT_SIZE 2047
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002539
2540// add one to allow mch_write() in os_win32.c to append a NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541static char_u out_buf[OUT_SIZE + 1];
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002542
2543static int out_pos = 0; // number of chars in out_buf
2544
2545// Since the maximum number of SGR parameters shown as a normal value range is
2546// 16, the escape sequence length can be 4 * 16 + lead + tail.
2547#define MAX_ESC_SEQ_LEN 80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548
2549/*
2550 * out_flush(): flush the output buffer
2551 */
2552 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002553out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
2555 int len;
2556
2557 if (out_pos != 0)
2558 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002559 // set out_pos to 0 before ui_write, to avoid recursiveness
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 len = out_pos;
2561 out_pos = 0;
Bram Moolenaar4c868302021-03-22 16:19:45 +01002562 ui_write(out_buf, len, FALSE);
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002563#ifdef FEAT_JOB_CHANNEL
2564 if (ch_log_output)
2565 {
2566 out_buf[len] = NUL;
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002567 ch_log(NULL, "raw %s output: \"%s\"",
Bram Moolenaare1ee58a2021-01-14 19:04:44 +01002568# ifdef FEAT_GUI
2569 (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
2570# endif
2571 "terminal",
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01002572 out_buf);
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002573 ch_log_output = FALSE;
2574 }
2575#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 }
2577}
2578
Bram Moolenaara338adc2018-01-31 20:51:47 +01002579/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002580 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2581 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002582 */
2583 void
2584out_flush_cursor(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002585 int force UNUSED, // when TRUE, update cursor even when not moved
2586 int clear_selection UNUSED) // clear selection under cursor
Bram Moolenaara338adc2018-01-31 20:51:47 +01002587{
2588 mch_disable_flush();
2589 out_flush();
2590 mch_enable_flush();
2591#ifdef FEAT_GUI
2592 if (gui.in_use)
2593 {
2594 gui_update_cursor(force, clear_selection);
2595 gui_may_flush();
2596 }
2597#endif
2598}
2599
2600
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601/*
2602 * Sometimes a byte out of a multi-byte character is written with out_char().
2603 * To avoid flushing half of the character, call this function first.
2604 */
2605 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002606out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607{
2608 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2609 out_flush();
2610}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611
2612#ifdef FEAT_GUI
2613/*
2614 * out_trash(): Throw away the contents of the output buffer
2615 */
2616 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002617out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618{
2619 out_pos = 0;
2620}
2621#endif
2622
2623/*
2624 * out_char(c): put a byte into the output buffer.
2625 * Flush it if it becomes full.
2626 * This should not be used for outputting text on the screen (use functions
2627 * like msg_puts() and screen_putchar() for that).
2628 */
2629 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002630out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631{
Bram Moolenaard0573012017-10-28 21:11:06 +02002632#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002633 if (c == '\n') // turn LF into CR-LF (CRMOD doesn't seem to do this)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 out_char('\r');
2635#endif
2636
2637 out_buf[out_pos++] = c;
2638
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002639 // For testing we flush each time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 if (out_pos >= OUT_SIZE || p_wd)
2641 out_flush();
2642}
2643
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644/*
Bram Moolenaarec6f7352019-10-24 17:49:27 +02002645 * Output "c" like out_char(), but don't flush when p_wd is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 */
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002647 static int
2648out_char_nf(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649{
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002650 out_buf[out_pos++] = (unsigned)c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651
2652 if (out_pos >= OUT_SIZE)
2653 out_flush();
Bram Moolenaar86394aa2020-09-05 14:27:24 +02002654 return (unsigned)c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655}
2656
2657/*
Bram Moolenaarec6f7352019-10-24 17:49:27 +02002658 * A never-padding out_str().
2659 * Use this whenever you don't want to run the string through tputs().
2660 * tputs() above is harmless, but tputs() from the termcap library
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 * is likely to strip off leading digits, that it mistakes for padding
2662 * information, and "%i", "%d", etc.
2663 * This should only be used for writing terminal codes, not for outputting
2664 * normal text (use functions like msg_puts() and screen_putchar() for that).
2665 */
2666 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002667out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002669 // avoid terminal strings being split up
2670 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 out_flush();
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002672
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 while (*s)
2674 out_char_nf(*s++);
2675
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002676 // For testing we write one string at a time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 if (p_wd)
2678 out_flush();
2679}
2680
2681/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002682 * A conditional-flushing out_str, mainly for visualbell.
2683 * Handles a delay internally, because termlib may not respect the delay or do
2684 * it at the wrong time.
2685 * Note: Only for terminal strings.
2686 */
2687 void
2688out_str_cf(char_u *s)
2689{
2690 if (s != NULL && *s)
2691 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002692#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002693 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002694#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002695
2696#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002697 // Don't use tputs() when GUI is used, ncurses crashes.
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002698 if (gui.in_use)
2699 {
2700 out_str_nf(s);
2701 return;
2702 }
2703#endif
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002704 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002705 out_flush();
2706#ifdef HAVE_TGETENT
2707 for (p = s; *s; ++s)
2708 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002709 // flush just before delay command
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002710 if (*s == '$' && *(s + 1) == '<')
2711 {
2712 char_u save_c = *s;
2713 int duration = atoi((char *)s + 2);
2714
2715 *s = NUL;
2716 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2717 *s = save_c;
2718 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002719# ifdef ELAPSED_FUNC
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002720 // Only sleep here if we can limit this happening in
2721 // vim_beep().
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002722 p = vim_strchr(s, '>');
2723 if (p == NULL || duration <= 0)
2724 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002725 // can't parse the time, don't sleep here
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002726 p = s;
2727 }
2728 else
2729 {
2730 ++p;
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01002731 do_sleep(duration, FALSE);
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002732 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002733# else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002734 // Rely on the terminal library to sleep.
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002735 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002736# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002737 break;
2738 }
2739 }
2740 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2741#else
2742 while (*s)
2743 out_char_nf(*s++);
2744#endif
2745
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002746 // For testing we write one string at a time.
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002747 if (p_wd)
2748 out_flush();
2749 }
2750}
2751
2752/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 * out_str(s): Put a character string a byte at a time into the output buffer.
Bram Moolenaarec6f7352019-10-24 17:49:27 +02002754 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 * This should only be used for writing terminal codes, not for outputting
2756 * normal text (use functions like msg_puts() and screen_putchar() for that).
2757 */
2758 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002759out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760{
2761 if (s != NULL && *s)
2762 {
2763#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002764 // Don't use tputs() when GUI is used, ncurses crashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 if (gui.in_use)
2766 {
2767 out_str_nf(s);
2768 return;
2769 }
2770#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002771 // avoid terminal strings being split up
Bram Moolenaar5da04ef2019-04-03 21:15:58 +02002772 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 out_flush();
2774#ifdef HAVE_TGETENT
2775 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2776#else
2777 while (*s)
2778 out_char_nf(*s++);
2779#endif
2780
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002781 // For testing we write one string at a time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 if (p_wd)
2783 out_flush();
2784 }
2785}
2786
2787/*
2788 * cursor positioning using termcap parser. (jw)
2789 */
2790 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002791term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792{
2793 OUT_STR(tgoto((char *)T_CM, col, row));
2794}
2795
2796 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002797term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798{
2799 OUT_STR(tgoto((char *)T_CRI, 0, i));
2800}
2801
2802 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002803term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804{
2805 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2806}
2807
2808 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002809term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810{
2811 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2812}
2813
2814#if defined(HAVE_TGETENT) || defined(PROTO)
2815 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002816term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002818 // Can't handle a negative value here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 if (x < 0)
2820 x = 0;
2821 if (y < 0)
2822 y = 0;
2823 OUT_STR(tgoto((char *)T_CWP, y, x));
2824}
2825
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002826# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2827/*
2828 * Return TRUE if we can request the terminal for a response.
2829 */
2830 static int
2831can_get_termresponse()
2832{
2833 return cur_tmode == TMODE_RAW
2834 && termcap_active
Bram Moolenaarafd78262019-05-10 23:10:31 +02002835# ifdef UNIX
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002836 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
Bram Moolenaarafd78262019-05-10 23:10:31 +02002837# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002838 && p_ek;
2839}
2840
Bram Moolenaarafd78262019-05-10 23:10:31 +02002841/*
2842 * Set "status" to STATUS_SENT.
2843 */
2844 static void
2845termrequest_sent(termrequest_T *status)
2846{
2847 status->tr_progress = STATUS_SENT;
2848 status->tr_start = time(NULL);
2849}
2850
2851/*
2852 * Return TRUE if any of the requests are in STATUS_SENT.
2853 */
2854 static int
2855termrequest_any_pending()
2856{
2857 int i;
2858 time_t now = time(NULL);
2859
2860 for (i = 0; all_termrequests[i] != NULL; ++i)
2861 {
2862 if (all_termrequests[i]->tr_progress == STATUS_SENT)
2863 {
2864 if (all_termrequests[i]->tr_start > 0 && now > 0
2865 && all_termrequests[i]->tr_start + 2 < now)
2866 // Sent the request more than 2 seconds ago and didn't get a
2867 // response, assume it failed.
2868 all_termrequests[i]->tr_progress = STATUS_FAIL;
2869 else
2870 return TRUE;
2871 }
2872 }
2873 return FALSE;
2874}
2875
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002876static int winpos_x = -1;
2877static int winpos_y = -1;
2878static int did_request_winpos = 0;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002879
Bram Moolenaar6bc93052019-04-06 20:00:19 +02002880# if defined(FEAT_EVAL) || defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002881/*
2882 * Try getting the Vim window position from the terminal.
2883 * Returns OK or FAIL.
2884 */
2885 int
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002886term_get_winpos(int *x, int *y, varnumber_T timeout)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002887{
2888 int count = 0;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002889 int prev_winpos_x = winpos_x;
2890 int prev_winpos_y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002891
2892 if (*T_CGP == NUL || !can_get_termresponse())
2893 return FAIL;
2894 winpos_x = -1;
2895 winpos_y = -1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002896 ++did_request_winpos;
Bram Moolenaarafd78262019-05-10 23:10:31 +02002897 termrequest_sent(&winpos_status);
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002898 OUT_STR(T_CGP);
2899 out_flush();
2900
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002901 // Try reading the result for "timeout" msec.
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002902 while (count++ <= timeout / 10 && !got_int)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002903 {
2904 (void)vpeekc_nomap();
2905 if (winpos_x >= 0 && winpos_y >= 0)
2906 {
2907 *x = winpos_x;
2908 *y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002909 return OK;
2910 }
Bram Moolenaareda1da02019-11-17 17:06:33 +01002911 ui_delay(10L, FALSE);
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002912 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002913 // Do not reset "did_request_winpos", if we timed out the response might
2914 // still come later and we must consume it.
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002915
2916 winpos_x = prev_winpos_x;
2917 winpos_y = prev_winpos_y;
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002918 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002919 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002920 // Polling: return previous values if we have them.
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002921 *x = winpos_x;
2922 *y = winpos_y;
2923 return OK;
2924 }
2925
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002926 return FALSE;
2927}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002928# endif
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002929# endif
2930
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002932term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002934 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935}
2936#endif
2937
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002939term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940{
2941 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002942 int i = *s == CSI ? 1 : 2;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002943 // index in s[] just after <Esc>[ or CSI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002945 // Special handling of 16 colors, because termcap can't handle it
2946 // Also accept "\e[3%dm" for TERMINFO, it is sometimes used
2947 // Also accept CSI instead of <Esc>[
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 if (n >= 8 && t_colors >= 16
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002949 && ((s[0] == ESC && s[1] == '[')
2950#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
2951 || (s[0] == ESC && s[1] == '|')
2952#endif
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02002953 || (s[0] == CSI && (i = 1) == 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 && s[i] != NUL
2955 && (STRCMP(s + i + 1, "%p1%dm") == 0
2956 || STRCMP(s + i + 1, "%dm") == 0)
2957 && (s[i] == '3' || s[i] == '4'))
2958 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002960 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002962 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963#endif
Bram Moolenaard315cf52018-05-23 20:30:56 +02002964 char *lead = i == 2 ? (
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002965#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
Bram Moolenaar424bcae2022-01-31 14:59:41 +00002966 s[1] == '|' ? "\033|" :
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002967#endif
Bram Moolenaar424bcae2022-01-31 14:59:41 +00002968 "\033[") : "\233";
Bram Moolenaard315cf52018-05-23 20:30:56 +02002969 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2970 : (n >= 16 ? "48;5;" : "10");
2971
2972 sprintf(buf, format, lead, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2974 }
2975 else
2976 OUT_STR(tgoto((char *)s, 0, n));
2977}
2978
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002979 void
2980term_fg_color(int n)
2981{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002982 // Use "AF" termcap entry if present, "Sf" entry otherwise
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002983 if (*T_CAF)
2984 term_color(T_CAF, n);
2985 else if (*T_CSF)
2986 term_color(T_CSF, n);
2987}
2988
2989 void
2990term_bg_color(int n)
2991{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002992 // Use "AB" termcap entry if present, "Sb" entry otherwise
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002993 if (*T_CAB)
2994 term_color(T_CAB, n);
2995 else if (*T_CSB)
2996 term_color(T_CSB, n);
2997}
2998
Bram Moolenaare023e882020-05-31 16:42:30 +02002999 void
3000term_ul_color(int n)
3001{
3002 if (*T_CAU)
3003 term_color(T_CAU, n);
3004}
3005
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01003006/*
3007 * Return "dark" or "light" depending on the kind of terminal.
3008 * This is just guessing! Recognized are:
3009 * "linux" Linux console
3010 * "screen.linux" Linux console with screen
3011 * "cygwin.*" Cygwin shell
3012 * "putty.*" Putty program
3013 * We also check the COLORFGBG environment variable, which is set by
3014 * rxvt and derivatives. This variable contains either two or three
3015 * values separated by semicolons; we want the last value in either
3016 * case. If this value is 0-6 or 8, our background is dark.
3017 */
3018 char_u *
3019term_bg_default(void)
3020{
3021#if defined(MSWIN)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003022 // DOS console is nearly always black
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01003023 return (char_u *)"dark";
3024#else
3025 char_u *p;
3026
3027 if (STRCMP(T_NAME, "linux") == 0
3028 || STRCMP(T_NAME, "screen.linux") == 0
3029 || STRNCMP(T_NAME, "cygwin", 6) == 0
3030 || STRNCMP(T_NAME, "putty", 5) == 0
3031 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
3032 && (p = vim_strrchr(p, ';')) != NULL
3033 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
3034 && p[2] == NUL))
3035 return (char_u *)"dark";
3036 return (char_u *)"light";
3037#endif
3038}
3039
Bram Moolenaar61be73b2016-04-29 22:59:22 +02003040#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003041
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003042#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
3043#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
3044#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003045
3046 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003047term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003048{
Bram Moolenaar380130f2016-04-22 11:24:43 +02003049#define MAX_COLOR_STR_LEN 100
3050 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003051
Bram Moolenaara1c487e2016-04-22 20:20:19 +02003052 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02003053 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar06b7b582020-05-30 17:49:25 +02003054#ifdef FEAT_VTP
3055 if (use_wt())
3056 {
3057 out_flush();
3058 buf[1] = '[';
3059 vtp_printf(buf);
3060 }
3061 else
3062#endif
3063 OUT_STR(buf);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003064}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003065
3066 void
3067term_fg_rgb_color(guicolor_T rgb)
3068{
3069 term_rgb_color(T_8F, rgb);
3070}
3071
3072 void
3073term_bg_rgb_color(guicolor_T rgb)
3074{
3075 term_rgb_color(T_8B, rgb);
3076}
Bram Moolenaare023e882020-05-31 16:42:30 +02003077
3078 void
3079term_ul_rgb_color(guicolor_T rgb)
3080{
3081 term_rgb_color(T_8U, rgb);
3082}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02003083#endif
3084
Bram Moolenaar651fca82021-11-29 20:39:38 +00003085#if (defined(UNIX) || defined(VMS) || defined(MACOS_X)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086/*
3087 * Generic function to set window title, using t_ts and t_fs.
3088 */
3089 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003090term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091{
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003092#ifdef FEAT_JOB_CHANNEL
3093 ch_log_output = TRUE;
3094#endif
Bram Moolenaarec6f7352019-10-24 17:49:27 +02003095 // t_ts takes one argument: column in status line
3096 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 out_str_nf(title);
Bram Moolenaarec6f7352019-10-24 17:49:27 +02003098 out_str(T_FS); // set title end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 out_flush();
3100}
Bram Moolenaar40385db2018-08-07 22:31:44 +02003101
3102/*
3103 * Tell the terminal to push (save) the title and/or icon, so that it can be
3104 * popped (restored) later.
3105 */
3106 void
3107term_push_title(int which)
3108{
Bram Moolenaar27821262019-05-08 16:41:09 +02003109 if ((which & SAVE_RESTORE_TITLE) && T_CST != NULL && *T_CST != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003110 {
3111 OUT_STR(T_CST);
3112 out_flush();
3113 }
3114
Bram Moolenaar27821262019-05-08 16:41:09 +02003115 if ((which & SAVE_RESTORE_ICON) && T_SSI != NULL && *T_SSI != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003116 {
3117 OUT_STR(T_SSI);
3118 out_flush();
3119 }
3120}
3121
3122/*
3123 * Tell the terminal to pop the title and/or icon.
3124 */
3125 void
3126term_pop_title(int which)
3127{
Bram Moolenaar27821262019-05-08 16:41:09 +02003128 if ((which & SAVE_RESTORE_TITLE) && T_CRT != NULL && *T_CRT != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003129 {
3130 OUT_STR(T_CRT);
3131 out_flush();
3132 }
3133
Bram Moolenaar27821262019-05-08 16:41:09 +02003134 if ((which & SAVE_RESTORE_ICON) && T_SRI != NULL && *T_SRI != NUL)
Bram Moolenaar40385db2018-08-07 22:31:44 +02003135 {
3136 OUT_STR(T_SRI);
3137 out_flush();
3138 }
3139}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140#endif
3141
3142/*
3143 * Make sure we have a valid set or terminal options.
3144 * Replace all entries that are NULL by empty_option
3145 */
3146 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003147ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003149 char_u *env_colors;
3150
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003151 check_options(); // make sure no options are NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152
3153 /*
3154 * MUST have "cm": cursor motion.
3155 */
3156 if (*T_CM == NUL)
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003157 emsg(_(e_terminal_capability_cm_required));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158
3159 /*
3160 * if "cs" defined, use a scroll region, it's faster.
3161 */
3162 if (*T_CS != NUL)
3163 scroll_region = TRUE;
3164 else
3165 scroll_region = FALSE;
3166
3167 if (pairs)
3168 {
3169 /*
3170 * optional pairs
3171 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003172 // TP goes to normal mode for TI (invert) and TB (bold)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 if (*T_ME == NUL)
3174 T_ME = T_MR = T_MD = T_MB = empty_option;
3175 if (*T_SO == NUL || *T_SE == NUL)
3176 T_SO = T_SE = empty_option;
3177 if (*T_US == NUL || *T_UE == NUL)
3178 T_US = T_UE = empty_option;
3179 if (*T_CZH == NUL || *T_CZR == NUL)
3180 T_CZH = T_CZR = empty_option;
3181
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003182 // T_VE is needed even though T_VI is not defined
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 if (*T_VE == NUL)
3184 T_VI = empty_option;
3185
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003186 // if 'mr' or 'me' is not defined use 'so' and 'se'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 if (*T_ME == NUL)
3188 {
3189 T_ME = T_SE;
3190 T_MR = T_SO;
3191 T_MD = T_SO;
3192 }
3193
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003194 // if 'so' or 'se' is not defined use 'mr' and 'me'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 if (*T_SO == NUL)
3196 {
3197 T_SE = T_ME;
3198 if (*T_MR == NUL)
3199 T_SO = T_MD;
3200 else
3201 T_SO = T_MR;
3202 }
3203
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003204 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 if (*T_CZH == NUL)
3206 {
3207 T_CZR = T_ME;
3208 if (*T_MR == NUL)
3209 T_CZH = T_MD;
3210 else
3211 T_CZH = T_MR;
3212 }
3213
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003214 // "Sb" and "Sf" come in pairs
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 if (*T_CSB == NUL || *T_CSF == NUL)
3216 {
3217 T_CSB = empty_option;
3218 T_CSF = empty_option;
3219 }
3220
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003221 // "AB" and "AF" come in pairs
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 if (*T_CAB == NUL || *T_CAF == NUL)
3223 {
3224 T_CAB = empty_option;
3225 T_CAF = empty_option;
3226 }
3227
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003228 // if 'Sb' and 'AB' are not defined, reset "Co"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003230 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003232 // Set 'weirdinvert' according to value of 't_xs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 p_wiv = (*T_XS != NUL);
3234 }
3235 need_gather = TRUE;
3236
Bram Moolenaar759d8152020-04-26 16:52:49 +02003237 // Set t_colors to the value of $COLORS or t_Co. Ignore $COLORS in the
3238 // GUI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 t_colors = atoi((char *)T_CCO);
Bram Moolenaar759d8152020-04-26 16:52:49 +02003240#ifdef FEAT_GUI
3241 if (!gui.in_use)
3242#endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003243 {
Bram Moolenaar759d8152020-04-26 16:52:49 +02003244 env_colors = mch_getenv((char_u *)"COLORS");
3245 if (env_colors != NULL && isdigit(*env_colors))
3246 {
3247 int colors = atoi((char *)env_colors);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003248
Bram Moolenaar759d8152020-04-26 16:52:49 +02003249 if (colors != t_colors)
3250 set_color_count(colors);
3251 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253}
3254
3255#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3256 || defined(PROTO)
3257/*
3258 * Represent the given long_u as individual bytes, with the most significant
3259 * byte first, and store them in dst.
3260 */
3261 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003262add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263{
3264 int i;
3265 int shift;
3266
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003267 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 {
3269 shift = 8 * (sizeof(long_u) - i);
3270 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3271 }
3272}
3273
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274/*
3275 * Interpret the next string of bytes in buf as a long integer, with the most
3276 * significant byte first. Note that it is assumed that buf has been through
3277 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3278 * Puts result in val, and returns the number of bytes read from buf
3279 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3280 * were present.
3281 */
3282 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003283get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284{
3285 int len;
3286 char_u bytes[sizeof(long_u)];
3287 int i;
3288 int shift;
3289
3290 *val = 0;
3291 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3292 if (len != -1)
3293 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003294 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 {
3296 shift = 8 * (sizeof(long_u) - 1 - i);
3297 *val += (long_u)bytes[i] << shift;
3298 }
3299 }
3300 return len;
3301}
3302#endif
3303
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304/*
3305 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3306 * that buf has been through inchar(). Returns the actual number of bytes used
3307 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3308 * available.
3309 */
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02003310 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003311get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312{
3313 int len = 0;
3314 int i;
3315 char_u c;
3316
3317 for (i = 0; i < num_bytes; i++)
3318 {
3319 if ((c = buf[len++]) == NUL)
3320 return -1;
3321 if (c == K_SPECIAL)
3322 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003323 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 return -1;
3325 if (buf[len++] == (int)KS_ZERO)
3326 c = NUL;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003327 // else it should be KS_SPECIAL; when followed by KE_FILLER c is
3328 // K_SPECIAL, or followed by KE_CSI and c must be CSI.
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003329 if (buf[len++] == (int)KE_CSI)
3330 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003332 else if (c == CSI && buf[len] == KS_EXTRA
3333 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003334 // CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3335 // the start of a special key, see add_to_input_buf_csi().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003336 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 bytes[i] = c;
3338 }
3339 return len;
3340}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341
3342/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003343 * Check if the new shell size is valid, correct it if it's too small or way
3344 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 */
3346 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003347check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003349 if (Rows < min_rows()) // need room for one window and command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003351 limit_screen_size();
3352}
3353
3354/*
3355 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3356 */
3357 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003358limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003359{
3360 if (Columns < MIN_COLUMNS)
3361 Columns = MIN_COLUMNS;
3362 else if (Columns > 10000)
3363 Columns = 10000;
3364 if (Rows > 1000)
3365 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366}
3367
Bram Moolenaar86b68352004-12-27 21:59:20 +00003368/*
3369 * Invoked just before the screen structures are going to be (re)allocated.
3370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003372win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 static int old_Rows = 0;
3375 static int old_Columns = 0;
3376
3377 if (old_Rows != Rows || old_Columns != Columns)
3378 ui_new_shellsize();
3379 if (old_Rows != Rows)
3380 {
Bram Moolenaar0a1a6a12021-03-26 14:14:18 +01003381 // If 'window' uses the whole screen, keep it using that.
3382 // Don't change it when set with "-w size" on the command line.
3383 if (p_window == old_Rows - 1 || (old_Rows == 0 && p_window == 0))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003384 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 old_Rows = Rows;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003386 shell_new_rows(); // update window sizes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 }
3388 if (old_Columns != Columns)
3389 {
3390 old_Columns = Columns;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003391 shell_new_columns(); // update window sizes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 }
3393}
3394
3395/*
3396 * Call this function when the Vim shell has been resized in any way.
3397 * Will obtain the current size and redraw (also when size didn't change).
3398 */
3399 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003400shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401{
3402 set_shellsize(0, 0, FALSE);
3403}
3404
3405/*
3406 * Check if the shell size changed. Handle a resize.
3407 * When the size didn't change, nothing happens.
3408 */
3409 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003410shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411{
3412 int old_Rows = Rows;
3413 int old_Columns = Columns;
3414
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003415 if (!exiting
3416#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003417 // Do not get the size when executing a shell command during
3418 // startup.
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003419 && !gui.starting
3420#endif
3421 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003422 {
3423 (void)ui_get_shellsize();
3424 check_shellsize();
3425 if (old_Rows != Rows || old_Columns != Columns)
3426 shell_resized();
3427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428}
3429
3430/*
3431 * Set size of the Vim shell.
3432 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3433 * window size (this is used for the :win command).
3434 * If 'mustset' is FALSE, we may try to get the real window size and if
3435 * it fails use 'width' and 'height'.
3436 */
3437 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003438set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439{
3440 static int busy = FALSE;
3441
3442 /*
3443 * Avoid recursiveness, can happen when setting the window size causes
3444 * another window-changed signal.
3445 */
3446 if (busy)
3447 return;
3448
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003449 if (width < 0 || height < 0) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 return;
3451
Bram Moolenaara971b822011-09-14 14:43:25 +02003452 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 {
Bram Moolenaar847a5d62019-07-12 15:37:13 +02003454 // postpone the resizing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 State = SETWSIZE;
3456 return;
3457 }
3458
Bram Moolenaar847a5d62019-07-12 15:37:13 +02003459 if (updating_screen)
3460 // resizing while in update_screen() may cause a crash
3461 return;
3462
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003463 // curwin->w_buffer can be NULL when we are closing a window and the
Bram Moolenaar2808da32020-12-30 14:08:35 +01003464 // buffer (or window) has already been closed and removing a scrollbar
3465 // causes a resize event. Don't resize then, it will happen after entering
3466 // another buffer.
3467 if (curwin->w_buffer == NULL || curwin->w_lines == NULL)
Bram Moolenaara971b822011-09-14 14:43:25 +02003468 return;
3469
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 ++busy;
3471
3472#ifdef AMIGA
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003473 out_flush(); // must do this before mch_get_shellsize() for
3474 // some obscure reason
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475#endif
3476
3477 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3478 {
3479 Rows = height;
3480 Columns = width;
3481 check_shellsize();
3482 ui_set_shellsize(mustset);
3483 }
3484 else
3485 check_shellsize();
3486
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003487 // The window layout used to be adjusted here, but it now happens in
3488 // screenalloc() (also invoked from screenclear()). That is because the
3489 // "busy" check above may skip this, but not screenalloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490
3491 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3492 screenclear();
3493 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003494 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495
3496 if (starting != NO_SCREEN)
3497 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 maketitle();
Bram Moolenaar651fca82021-11-29 20:39:38 +00003499
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 changed_line_abv_curs();
3501 invalidate_botline();
3502
3503 /*
3504 * We only redraw when it's needed:
3505 * - While at the more prompt or executing an external command, don't
3506 * redraw, but position the cursor.
3507 * - While editing the command line, only redraw that.
3508 * - in Ex mode, don't redraw anything.
3509 * - Otherwise, redraw right now, and position the cursor.
3510 * Always need to call update_screen() or screenalloc(), to make
3511 * sure Rows/Columns and the size of ScreenLines[] is correct!
3512 */
3513 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3514 || exmode_active)
3515 {
3516 screenalloc(FALSE);
3517 repeat_message();
3518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 else
3520 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003521 if (curwin->w_p_scb)
3522 do_check_scrollbind(TRUE);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003523 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003524 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003525 update_screen(NOT_VALID);
3526 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003527 }
3528 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003529 {
3530 update_topline();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003531 if (pum_visible())
3532 {
3533 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003534 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003535 }
Bram Moolenaara5e66212017-09-29 22:42:33 +02003536 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003537 if (redrawing())
3538 setcursor();
3539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003541 cursor_on(); // redrawing may have switched it off
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 }
3543 out_flush();
3544 --busy;
3545}
3546
3547/*
3548 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3549 * commands and Ex mode).
3550 */
3551 void
Bram Moolenaarf4e16ae2020-05-17 16:10:11 +02003552settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553{
3554#ifdef FEAT_GUI
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003555 // don't set the term where gvim was started to any mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 if (gui.in_use)
3557 return;
3558#endif
3559
3560 if (full_screen)
3561 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 /*
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02003563 * When returning after calling a shell cur_tmode is TMODE_UNKNOWN,
3564 * set the terminal to raw mode, even though we think it already is,
3565 * because the shell program may have reset the terminal mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 * When we think the terminal is normal, don't try to set it to
3567 * normal again, because that causes problems (logout!) on some
3568 * machines.
3569 */
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02003570 if (tmode != cur_tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 {
3572#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003573# ifdef FEAT_GUI
3574 if (!gui.in_use && !gui.starting)
3575# endif
3576 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003577 // May need to check for T_CRV response and termcodes, it
3578 // doesn't work in Cooked mode, an external program may get
3579 // them.
3580 if (tmode != TMODE_RAW && termrequest_any_pending())
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003581 (void)vpeekc_nomap();
3582 check_for_codes_from_term();
3583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 if (tmode != TMODE_RAW)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003586 mch_setmouse(FALSE); // switch mouse off
Bram Moolenaar26e86442020-05-17 14:06:16 +02003587
3588 // Disable bracketed paste and modifyOtherKeys in cooked mode.
3589 // Avoid doing this too often, on some terminals the codes are not
3590 // handled properly.
3591 if (termcap_active && tmode != TMODE_SLEEP
3592 && cur_tmode != TMODE_SLEEP)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003593 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003594#ifdef FEAT_JOB_CHANNEL
3595 ch_log_output = TRUE;
3596#endif
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003597 if (tmode != TMODE_RAW)
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003598 {
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003599 out_str(T_BD); // disable bracketed paste mode
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003600 out_str(T_CTE); // possibly disables modifyOtherKeys
3601 }
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003602 else
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003603 {
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003604 out_str(T_BE); // enable bracketed paste mode (should
3605 // be before mch_settmode().
Bram Moolenaar645e3fe2020-05-16 15:05:04 +02003606 out_str(T_CTI); // possibly enables modifyOtherKeys
3607 }
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 out_flush();
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003610 mch_settmode(tmode); // machine specific function
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 cur_tmode = tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 if (tmode == TMODE_RAW)
Bram Moolenaar958eabe2019-04-21 17:22:33 +02003613 setmouse(); // may switch mouse on
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 out_flush();
3615 }
3616#ifdef FEAT_TERMRESPONSE
3617 may_req_termresponse();
3618#endif
3619 }
3620}
3621
3622 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003623starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624{
3625 if (full_screen && !termcap_active)
3626 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003627#ifdef FEAT_JOB_CHANNEL
3628 ch_log_output = TRUE;
3629#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003630 out_str(T_TI); // start termcap mode
3631 out_str(T_CTI); // start "raw" mode
3632 out_str(T_KS); // start "keypad transmit" mode
3633 out_str(T_BE); // enable bracketed paste mode
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003634
Bram Moolenaar51b477f2021-03-03 15:24:28 +01003635#if defined(UNIX) || defined(VMS)
3636 // Enable xterm's focus reporting mode when 'esckeys' is set.
Bram Moolenaar8d5daf22022-03-02 17:16:39 +00003637 if (p_ek && *T_FE != NUL)
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003638 out_str(T_FE);
3639#endif
3640
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 out_flush();
3642 termcap_active = TRUE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003643 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003645# ifdef FEAT_GUI
3646 if (!gui.in_use && !gui.starting)
3647# endif
3648 {
3649 may_req_termresponse();
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003650 // Immediately check for a response. If t_Co changes, we don't
3651 // want to redraw with wrong colors first.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003652 if (crv_status.tr_progress == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003653 check_for_codes_from_term();
3654 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655#endif
3656 }
3657}
3658
3659 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003660stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661{
3662 screen_stop_highlight();
3663 reset_cterm_colors();
3664 if (termcap_active)
3665 {
3666#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003667# ifdef FEAT_GUI
3668 if (!gui.in_use && !gui.starting)
3669# endif
3670 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003671 // May need to discard T_CRV, T_U7 or T_RBG response.
3672 if (termrequest_any_pending())
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003673 {
3674# ifdef UNIX
Bram Moolenaarafd78262019-05-10 23:10:31 +02003675 // Give the terminal a chance to respond.
Bram Moolenaar0981c872020-08-23 14:28:37 +02003676 mch_delay(100L, 0);
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003677# endif
3678# ifdef TCIFLUSH
Bram Moolenaarafd78262019-05-10 23:10:31 +02003679 // Discard data received but not read.
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003680 if (exiting)
3681 tcflush(fileno(stdin), TCIFLUSH);
3682# endif
3683 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003684 // Check for termcodes first, otherwise an external program may
3685 // get them.
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003686 check_for_codes_from_term();
3687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688#endif
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003689#ifdef FEAT_JOB_CHANNEL
3690 ch_log_output = TRUE;
3691#endif
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003692
Bram Moolenaar51b477f2021-03-03 15:24:28 +01003693#if defined(UNIX) || defined(VMS)
3694 // Disable xterm's focus reporting mode if 'esckeys' is set.
Bram Moolenaar8d5daf22022-03-02 17:16:39 +00003695 if (p_ek && *T_FD != NUL)
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01003696 out_str(T_FD);
3697#endif
3698
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003699 out_str(T_BD); // disable bracketed paste mode
3700 out_str(T_KE); // stop "keypad transmit" mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 out_flush();
3702 termcap_active = FALSE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003703 cursor_on(); // just in case it is still off
3704 out_str(T_CTE); // stop "raw" mode
3705 out_str(T_TE); // stop termcap mode
3706 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 out_flush();
3708 }
3709}
3710
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003711#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712/*
3713 * Request version string (for xterm) when needed.
3714 * Only do this after switching to raw mode, otherwise the result will be
3715 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003716 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003717 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 * Only do this after termcap mode has been started, otherwise the codes for
3719 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003720 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3721 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003722 * On Unix only do it when both output and input are a tty (avoid writing
3723 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 * The result is caught in check_termcode().
3725 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003726 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003727may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728{
Bram Moolenaarafd78262019-05-10 23:10:31 +02003729 if (crv_status.tr_progress == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003730 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003731 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 && *T_CRV != NUL)
3733 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003734#ifdef FEAT_JOB_CHANNEL
3735 ch_log_output = TRUE;
3736#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02003737 LOG_TR(("Sending CRV request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 out_str(T_CRV);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003739 termrequest_sent(&crv_status);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003740 // check for the characters now, otherwise they might be eaten by
3741 // get_keystroke()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 out_flush();
3743 (void)vpeekc_nomap();
3744 }
3745}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003746
Bram Moolenaar9584b312013-03-13 19:29:28 +01003747/*
Bram Moolenaara45551a2020-06-09 15:57:37 +02003748 * Send sequences to the terminal and check with t_u7 how the cursor moves, to
3749 * find out properties of the terminal.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02003750 * Note that this goes out before T_CRV, so that the result can be used when
3751 * the termresponse arrives.
Bram Moolenaar9584b312013-03-13 19:29:28 +01003752 */
3753 void
Bram Moolenaara45551a2020-06-09 15:57:37 +02003754check_terminal_behavior(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003755{
Bram Moolenaara45551a2020-06-09 15:57:37 +02003756 int did_send = FALSE;
3757
3758 if (!can_get_termresponse() || starting != 0 || *T_U7 == NUL)
3759 return;
3760
Bram Moolenaarafd78262019-05-10 23:10:31 +02003761 if (u7_status.tr_progress == STATUS_GET
Bram Moolenaar9584b312013-03-13 19:29:28 +01003762 && !option_was_set((char_u *)"ambiwidth"))
3763 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003764 char_u buf[16];
Bram Moolenaar9584b312013-03-13 19:29:28 +01003765
Bram Moolenaara45551a2020-06-09 15:57:37 +02003766 // Ambiguous width check.
3767 // Check how the terminal treats ambiguous character width (UAX #11).
3768 // First, we move the cursor to (1, 0) and print a test ambiguous
3769 // character \u25bd (WHITE DOWN-POINTING TRIANGLE) and then query
3770 // the current cursor position. If the terminal treats \u25bd as
3771 // single width, the position is (1, 1), or if it is treated as double
3772 // width, that will be (1, 2). This function has the side effect that
3773 // changes cursor position, so it must be called immediately after
3774 // entering termcap mode.
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003775#ifdef FEAT_JOB_CHANNEL
3776 ch_log_output = TRUE;
3777#endif
Bram Moolenaara45551a2020-06-09 15:57:37 +02003778 LOG_TR(("Sending request for ambiwidth check"));
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003779 // Do this in the second row. In the first row the returned sequence
3780 // may be CSI 1;2R, which is the same as <S-F3>.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003781 term_windgoto(1, 0);
Bram Moolenaara45551a2020-06-09 15:57:37 +02003782 buf[mb_char2bytes(0x25bd, buf)] = NUL;
Bram Moolenaarafd78262019-05-10 23:10:31 +02003783 out_str(buf);
3784 out_str(T_U7);
3785 termrequest_sent(&u7_status);
3786 out_flush();
Bram Moolenaara45551a2020-06-09 15:57:37 +02003787 did_send = TRUE;
Bram Moolenaar976787d2017-06-04 15:45:50 +02003788
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003789 // This overwrites a few characters on the screen, a redraw is needed
3790 // after this. Clear them out for now.
Bram Moolenaar06029a82019-07-24 14:25:26 +02003791 screen_stop_highlight();
Bram Moolenaarafd78262019-05-10 23:10:31 +02003792 term_windgoto(1, 0);
3793 out_str((char_u *)" ");
Bram Moolenaar96916ac2020-07-08 23:09:28 +02003794 line_was_clobbered(1);
Bram Moolenaara45551a2020-06-09 15:57:37 +02003795 }
3796
Bram Moolenaard1f34e62022-01-07 19:24:20 +00003797 if (xcc_status.tr_progress == STATUS_GET && Rows > 2)
Bram Moolenaara45551a2020-06-09 15:57:37 +02003798 {
3799 // 2. Check compatibility with xterm.
3800 // We move the cursor to (2, 0), print a test sequence and then query
3801 // the current cursor position. If the terminal properly handles
3802 // unknown DCS string and CSI sequence with intermediate byte, the test
3803 // sequence is ignored and the cursor does not move. If the terminal
3804 // handles test sequence incorrectly, a garbage string is displayed and
3805 // the cursor does move.
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003806#ifdef FEAT_JOB_CHANNEL
3807 ch_log_output = TRUE;
3808#endif
Bram Moolenaara45551a2020-06-09 15:57:37 +02003809 LOG_TR(("Sending xterm compatibility test sequence."));
3810 // Do this in the third row. Second row is used by ambiguous
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01003811 // character width check.
Bram Moolenaara45551a2020-06-09 15:57:37 +02003812 term_windgoto(2, 0);
3813 // send the test DCS string.
3814 out_str((char_u *)"\033Pzz\033\\");
3815 // send the test CSI sequence with intermediate byte.
3816 out_str((char_u *)"\033[0%m");
3817 out_str(T_U7);
3818 termrequest_sent(&xcc_status);
3819 out_flush();
3820 did_send = TRUE;
3821
3822 // If the terminal handles test sequence incorrectly, garbage text is
3823 // displayed. Clear them out for now.
3824 screen_stop_highlight();
3825 term_windgoto(2, 0);
3826 out_str((char_u *)" ");
Bram Moolenaar96916ac2020-07-08 23:09:28 +02003827 line_was_clobbered(2);
Bram Moolenaara45551a2020-06-09 15:57:37 +02003828 }
3829
3830 if (did_send)
3831 {
Bram Moolenaarafd78262019-05-10 23:10:31 +02003832 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003833
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003834 // Need to reset the known cursor position.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003835 screen_start();
Bram Moolenaar05684312017-12-09 15:11:24 +01003836
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003837 // check for the characters now, otherwise they might be eaten by
3838 // get_keystroke()
Bram Moolenaarafd78262019-05-10 23:10:31 +02003839 out_flush();
3840 (void)vpeekc_nomap();
Bram Moolenaar9584b312013-03-13 19:29:28 +01003841 }
3842}
Bram Moolenaar2951b772013-07-03 12:45:31 +02003843
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003844/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003845 * Similar to requesting the version string: Request the terminal background
3846 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003847 */
3848 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003849may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003850{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003851 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003852 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003853 int didit = FALSE;
3854
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003855# ifdef FEAT_TERMINAL
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003856 // Only request foreground if t_RF is set.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003857 if (rfg_status.tr_progress == STATUS_GET && *T_RFG != NUL)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003858 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003859#ifdef FEAT_JOB_CHANNEL
3860 ch_log_output = TRUE;
3861#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02003862 LOG_TR(("Sending FG request"));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003863 out_str(T_RFG);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003864 termrequest_sent(&rfg_status);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003865 didit = TRUE;
3866 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003867# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003868
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003869 // Only request background if t_RB is set.
Bram Moolenaarafd78262019-05-10 23:10:31 +02003870 if (rbg_status.tr_progress == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003871 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003872#ifdef FEAT_JOB_CHANNEL
3873 ch_log_output = TRUE;
3874#endif
Bram Moolenaarb255b902018-04-24 21:40:10 +02003875 LOG_TR(("Sending BG request"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003876 out_str(T_RBG);
Bram Moolenaarafd78262019-05-10 23:10:31 +02003877 termrequest_sent(&rbg_status);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003878 didit = TRUE;
3879 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003880
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003881 if (didit)
3882 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003883 // check for the characters now, otherwise they might be eaten by
3884 // get_keystroke()
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003885 out_flush();
3886 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003887 }
3888 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003889}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003890
Bram Moolenaar2951b772013-07-03 12:45:31 +02003891# ifdef DEBUG_TERMRESPONSE
3892 static void
Bram Moolenaarb255b902018-04-24 21:40:10 +02003893log_tr(const char *fmt, ...)
Bram Moolenaar2951b772013-07-03 12:45:31 +02003894{
3895 static FILE *fd_tr = NULL;
3896 static proftime_T start;
3897 proftime_T now;
Bram Moolenaarb255b902018-04-24 21:40:10 +02003898 va_list ap;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003899
3900 if (fd_tr == NULL)
3901 {
3902 fd_tr = fopen("termresponse.log", "w");
3903 profile_start(&start);
3904 }
3905 now = start;
3906 profile_end(&now);
Bram Moolenaarb255b902018-04-24 21:40:10 +02003907 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
3908 must_redraw == NOT_VALID ? "NV"
3909 : must_redraw == CLEAR ? "CL" : " ");
3910 va_start(ap, fmt);
3911 vfprintf(fd_tr, fmt, ap);
3912 va_end(ap);
3913 fputc('\n', fd_tr);
3914 fflush(fd_tr);
Bram Moolenaar2951b772013-07-03 12:45:31 +02003915}
3916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917#endif
3918
3919/*
3920 * Return TRUE when saving and restoring the screen.
3921 */
3922 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003923swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924{
3925 return (full_screen && *T_TI != NUL);
3926}
3927
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928/*
3929 * By outputting the 'cursor very visible' termcap code, for some windowed
3930 * terminals this makes the screen scrolled to the correct position.
3931 * Used when starting Vim or returning from a shell.
3932 */
3933 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003934scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003936 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003938#ifdef FEAT_JOB_CHANNEL
3939 ch_log_output = TRUE;
3940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003942 out_str(T_CVS);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003943 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 }
3945}
3946
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003947// True if cursor is not visible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948static int cursor_is_off = FALSE;
3949
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003950// True if cursor is not visible due to an ongoing cursor-less sleep
3951static int cursor_is_asleep = FALSE;
3952
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02003954 * Enable the cursor without checking if it's already enabled.
3955 */
3956 void
3957cursor_on_force(void)
3958{
3959 out_str(T_VE);
3960 cursor_is_off = FALSE;
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003961 cursor_is_asleep = FALSE;
Bram Moolenaar2e310482018-08-21 13:09:10 +02003962}
3963
3964/*
3965 * Enable the cursor if it's currently off.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 */
3967 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003968cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969{
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003970 if (cursor_is_off && !cursor_is_asleep)
Bram Moolenaar2e310482018-08-21 13:09:10 +02003971 cursor_on_force();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972}
3973
3974/*
3975 * Disable the cursor.
3976 */
3977 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003978cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003980 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003982 out_str(T_VI); // disable cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 cursor_is_off = TRUE;
3984 }
3985}
3986
Dominique Pelle748b3082022-01-08 12:41:16 +00003987#ifdef FEAT_GUI
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003988/*
3989 * Check whether the cursor is invisible due to an ongoing cursor-less sleep
3990 */
3991 int
3992cursor_is_sleeping(void)
3993{
3994 return cursor_is_asleep;
3995}
Dominique Pelle748b3082022-01-08 12:41:16 +00003996#endif
Bram Moolenaar09f067f2021-04-11 13:29:18 +02003997
3998/*
3999 * Disable the cursor and mark it disabled by cursor-less sleep
4000 */
4001 void
4002cursor_sleep(void)
4003{
4004 cursor_is_asleep = TRUE;
4005 cursor_off();
4006}
4007
4008/*
4009 * Enable the cursor and mark it not disabled by cursor-less sleep
4010 */
4011 void
4012cursor_unsleep(void)
4013{
4014 cursor_is_asleep = FALSE;
4015 cursor_on();
4016}
4017
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004018#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004020 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004021 */
4022 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004023term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004024{
Bram Moolenaarc9770922017-08-12 20:11:53 +02004025 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004026 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004027
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004028 // Only do something when redrawing the screen and we can restore the
4029 // mode.
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004030 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004031 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02004032# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004033 if (forced && initial_cursor_shape > 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004034 // Restore to initial values.
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004035 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02004036# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004037 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004038 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004039
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004040 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004041 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004042 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004043 {
4044 if (*T_CSR != NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004045 p = T_CSR; // Replace mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004046 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004047 p = T_CSI; // fall back to Insert mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004048 if (*p != NUL)
4049 {
4050 out_str(p);
4051 showing_mode = REPLACE;
4052 }
4053 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004054 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004055 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004056 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004057 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004058 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004059 out_str(T_CSI); // Insert mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004060 showing_mode = INSERT;
4061 }
4062 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004063 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004064 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004065 out_str(T_CEI); // non-Insert mode cursor
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02004066 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004067 }
4068}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004069
4070# if defined(FEAT_TERMINAL) || defined(PROTO)
4071 void
4072term_cursor_color(char_u *color)
4073{
4074 if (*T_CSC != NUL)
4075 {
Bram Moolenaarec6f7352019-10-24 17:49:27 +02004076 out_str(T_CSC); // set cursor color start
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004077 out_str_nf(color);
Bram Moolenaarec6f7352019-10-24 17:49:27 +02004078 out_str(T_CEC); // set cursor color end
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004079 out_flush();
4080 }
4081}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02004082# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004083
Bram Moolenaar4db25542017-08-28 22:43:05 +02004084 int
4085blink_state_is_inverted()
4086{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02004087#ifdef FEAT_TERMRESPONSE
Bram Moolenaar66761db2019-06-05 22:07:51 +02004088 return rbm_status.tr_progress == STATUS_GOT
4089 && rcs_status.tr_progress == STATUS_GOT
Bram Moolenaar4db25542017-08-28 22:43:05 +02004090 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02004091#else
4092 return FALSE;
4093#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004094}
4095
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004096/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004097 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004098 */
4099 void
4100term_cursor_shape(int shape, int blink)
4101{
4102 if (*T_CSH != NUL)
4103 {
4104 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
4105 out_flush();
4106 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02004107 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004108 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02004109 int do_blink = blink;
4110
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004111 // t_SH is empty: try setting just the blink state.
4112 // The blink flags are XORed together, if the initial blinking from
4113 // style and shape differs, we need to invert the flag here.
Bram Moolenaar4db25542017-08-28 22:43:05 +02004114 if (blink_state_is_inverted())
4115 do_blink = !blink;
4116
4117 if (do_blink && *T_VS != NUL)
4118 {
4119 out_str(T_VS);
4120 out_flush();
4121 }
4122 else if (!do_blink && *T_CVS != NUL)
4123 {
4124 out_str(T_CVS);
4125 out_flush();
4126 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004127 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02004128}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004129#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004130
4131/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 * Set scrolling region for window 'wp'.
4133 * The region starts 'off' lines from the start of the window.
4134 * Also set the vertical scroll region for a vertically split window. Always
4135 * the full width of the window, excluding the vertical separator.
4136 */
4137 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004138scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139{
4140 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
4141 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02004143 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
4144 wp->w_wincol));
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004145 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146}
4147
4148/*
4149 * Reset scrolling region to the whole screen.
4150 */
4151 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004152scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153{
4154 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 if (*T_CSV != NUL)
4156 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004157 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158}
4159
4160
4161/*
4162 * List of terminal codes that are currently recognized.
4163 */
4164
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00004165static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004167 char_u name[2]; // termcap name of entry
4168 char_u *code; // terminal code (in allocated memory)
4169 int len; // STRLEN(code)
4170 int modlen; // length of part before ";*~".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171} *termcodes = NULL;
4172
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004173static int tc_max_len = 0; // number of entries that termcodes[] can hold
4174static int tc_len = 0; // current number of entries in termcodes[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004176static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004177
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004179clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180{
4181 while (tc_len > 0)
4182 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01004183 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 tc_max_len = 0;
4185
4186#ifdef HAVE_TGETENT
4187 BC = (char *)empty_option;
4188 UP = (char *)empty_option;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004189 PC = NUL; // set pad character to NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 ospeed = 0;
4191#endif
4192
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004193 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194}
4195
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004196#define ATC_FROM_TERM 55
4197
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198/*
4199 * Add a new entry to the list of terminal codes.
4200 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004201 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
4202 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 */
4204 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004205add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206{
4207 struct termcode *new_tc;
4208 int i, j;
4209 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004210 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211
4212 if (string == NULL || *string == NUL)
4213 {
4214 del_termcode(name);
4215 return;
4216 }
4217
Bram Moolenaar4f974752019-02-17 17:44:42 +01004218#if defined(MSWIN) && !defined(FEAT_GUI)
Bram Moolenaar71ccd032020-06-12 22:59:11 +02004219 s = vim_strnsave(string, STRLEN(string) + 1);
Bram Moolenaar45500912014-07-09 20:51:07 +02004220#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004221# ifdef VIMDLL
4222 if (!gui.in_use)
Bram Moolenaar71ccd032020-06-12 22:59:11 +02004223 s = vim_strnsave(string, STRLEN(string) + 1);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004224 else
4225# endif
4226 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02004227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 if (s == NULL)
4229 return;
4230
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004231 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004232 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004234 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 s[0] = term_7to8bit(string);
4236 }
Bram Moolenaar45500912014-07-09 20:51:07 +02004237
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004238#if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
4239# ifdef VIMDLL
4240 if (!gui.in_use)
4241# endif
Bram Moolenaar45500912014-07-09 20:51:07 +02004242 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004243 if (s[0] == K_NUL)
4244 {
4245 STRMOVE(s + 1, s);
4246 s[1] = 3;
4247 }
Bram Moolenaar45500912014-07-09 20:51:07 +02004248 }
4249#endif
4250
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004251 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004253 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254
4255 /*
4256 * need to make space for more entries
4257 */
4258 if (tc_len == tc_max_len)
4259 {
4260 tc_max_len += 20;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004261 new_tc = ALLOC_MULT(struct termcode, tc_max_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 if (new_tc == NULL)
4263 {
4264 tc_max_len -= 20;
Dominique Pelle28cf44f2021-05-29 22:34:19 +02004265 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 return;
4267 }
4268 for (i = 0; i < tc_len; ++i)
4269 new_tc[i] = termcodes[i];
4270 vim_free(termcodes);
4271 termcodes = new_tc;
4272 }
4273
4274 /*
4275 * Look for existing entry with the same name, it is replaced.
4276 * Look for an existing entry that is alphabetical higher, the new entry
4277 * is inserted in front of it.
4278 */
4279 for (i = 0; i < tc_len; ++i)
4280 {
4281 if (termcodes[i].name[0] < name[0])
4282 continue;
4283 if (termcodes[i].name[0] == name[0])
4284 {
4285 if (termcodes[i].name[1] < name[1])
4286 continue;
4287 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004288 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 */
4290 if (termcodes[i].name[1] == name[1])
4291 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004292 if (flags == ATC_FROM_TERM && (j = termcode_star(
4293 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004294 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004295 // Don't replace ESC[123;*X or ESC O*X with another when
4296 // invoked from got_code_from_term().
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004297 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004298 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004299 && s[len - 1]
4300 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004301 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004302 // They are equal but for the ";*": don't add it.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004303 vim_free(s);
4304 return;
4305 }
4306 }
4307 else
4308 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004309 // Replace old code.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004310 vim_free(termcodes[i].code);
4311 --tc_len;
4312 break;
4313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 }
4315 }
4316 /*
4317 * Found alphabetical larger entry, move rest to insert new entry
4318 */
4319 for (j = tc_len; j > i; --j)
4320 termcodes[j] = termcodes[j - 1];
4321 break;
4322 }
4323
4324 termcodes[i].name[0] = name[0];
4325 termcodes[i].name[1] = name[1];
4326 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004327 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004328
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004329 // For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4330 // accept modifiers.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004331 termcodes[i].modlen = 0;
4332 j = termcode_star(s, len);
4333 if (j > 0)
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01004334 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004335 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01004336 // For "CSI[@;X" the "@" is not included in "modlen".
4337 if (termcodes[i].code[termcodes[i].modlen - 1] == '@')
4338 --termcodes[i].modlen;
4339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 ++tc_len;
4341}
4342
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004343/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004344 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004345 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004346 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004347 */
4348 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004349termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004350{
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01004351 // Shortest is <M-O>*X. With ; shortest is <CSI>@;*X
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004352 if (len >= 3 && code[len - 2] == '*')
4353 {
4354 if (len >= 5 && code[len - 3] == ';')
4355 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004356 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004357 return 1;
4358 }
4359 return 0;
4360}
4361
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004363find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364{
4365 int i;
4366
4367 for (i = 0; i < tc_len; ++i)
4368 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4369 return termcodes[i].code;
4370 return NULL;
4371}
4372
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004374get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375{
4376 if (i >= tc_len)
4377 return NULL;
4378 return &termcodes[i].name[0];
4379}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02004381/*
4382 * Returns the length of the terminal code at index 'idx'.
4383 */
4384 int
4385get_termcode_len(int idx)
4386{
4387 return termcodes[idx].len;
4388}
4389
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02004390 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004391del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392{
4393 int i;
4394
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004395 if (termcodes == NULL) // nothing there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 return;
4397
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004398 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399
4400 for (i = 0; i < tc_len; ++i)
4401 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4402 {
4403 del_termcode_idx(i);
4404 return;
4405 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004406 // not found. Give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407}
4408
4409 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004410del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411{
4412 int i;
4413
4414 vim_free(termcodes[idx].code);
4415 --tc_len;
4416 for (i = idx; i < tc_len; ++i)
4417 termcodes[i] = termcodes[i + 1];
4418}
4419
4420#ifdef FEAT_TERMRESPONSE
4421/*
4422 * Called when detected that the terminal sends 8-bit codes.
4423 * Convert all 7-bit codes to their 8-bit equivalent.
4424 */
4425 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004426switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427{
4428 int i;
4429 int c;
4430
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004431 // Only need to do something when not already using 8-bit codes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 if (!term_is_8bit(T_NAME))
4433 {
4434 for (i = 0; i < tc_len; ++i)
4435 {
4436 c = term_7to8bit(termcodes[i].code);
4437 if (c != 0)
4438 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004439 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 termcodes[i].code[0] = c;
4441 }
4442 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004443 need_gather = TRUE; // need to fill termleader[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 }
4445 detected_8bit = TRUE;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004446 LOG_TR(("Switching to 8 bit"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447}
4448#endif
4449
4450#ifdef CHECK_DOUBLE_CLICK
4451static linenr_T orig_topline = 0;
4452# ifdef FEAT_DIFF
4453static int orig_topfill = 0;
4454# endif
4455#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004456#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457/*
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00004458 * Checking for double-clicks ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 * "orig_topline" is used to avoid detecting a double-click when the window
4460 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4461 */
4462/*
4463 * Set orig_topline. Used when jumping to another window, so that a double
4464 * click still works.
4465 */
4466 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004467set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468{
4469 orig_topline = wp->w_topline;
4470# ifdef FEAT_DIFF
4471 orig_topfill = wp->w_topfill;
4472# endif
4473}
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02004474
4475/*
4476 * Returns TRUE if the top line and top fill of window 'wp' matches the saved
4477 * topline and topfill.
4478 */
4479 int
4480is_mouse_topline(win_T *wp)
4481{
4482 return orig_topline == wp->w_topline
4483#ifdef FEAT_DIFF
4484 && orig_topfill == wp->w_topfill
4485#endif
4486 ;
4487}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488#endif
4489
4490/*
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004491 * Put "string[new_slen]" in typebuf, or in "buf[bufsize]" if "buf" is not NULL.
4492 * Remove "slen" bytes.
4493 * Returns FAIL for error.
4494 */
Bram Moolenaar975a8802020-06-06 22:36:24 +02004495 int
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004496put_string_in_typebuf(
4497 int offset,
4498 int slen,
4499 char_u *string,
4500 int new_slen,
4501 char_u *buf,
4502 int bufsize,
4503 int *buflen)
4504{
4505 int extra = new_slen - slen;
4506
4507 string[new_slen] = NUL;
4508 if (buf == NULL)
4509 {
4510 if (extra < 0)
4511 // remove matched chars, taking care of noremap
4512 del_typebuf(-extra, offset);
4513 else if (extra > 0)
4514 // insert the extra space we need
4515 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
4516
4517 // Careful: del_typebuf() and ins_typebuf() may have reallocated
4518 // typebuf.tb_buf[]!
4519 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
4520 (size_t)new_slen);
4521 }
4522 else
4523 {
4524 if (extra < 0)
4525 // remove matched characters
4526 mch_memmove(buf + offset, buf + offset - extra,
4527 (size_t)(*buflen + offset + extra));
4528 else if (extra > 0)
4529 {
4530 // Insert the extra space we need. If there is insufficient
4531 // space return -1.
4532 if (*buflen + extra + new_slen >= bufsize)
4533 return FAIL;
4534 mch_memmove(buf + offset + extra, buf + offset,
4535 (size_t)(*buflen - offset));
4536 }
4537 mch_memmove(buf + offset, string, (size_t)new_slen);
4538 *buflen = *buflen + extra + new_slen;
4539 }
4540 return OK;
4541}
4542
4543/*
4544 * Decode a modifier number as xterm provides it into MOD_MASK bits.
4545 */
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01004546 int
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004547decode_modifiers(int n)
4548{
4549 int code = n - 1;
4550 int modifiers = 0;
4551
4552 if (code & 1)
4553 modifiers |= MOD_MASK_SHIFT;
4554 if (code & 2)
4555 modifiers |= MOD_MASK_ALT;
4556 if (code & 4)
4557 modifiers |= MOD_MASK_CTRL;
4558 if (code & 8)
4559 modifiers |= MOD_MASK_META;
4560 return modifiers;
4561}
4562
4563 static int
4564modifiers2keycode(int modifiers, int *key, char_u *string)
4565{
4566 int new_slen = 0;
4567
4568 if (modifiers != 0)
4569 {
4570 // Some keys have the modifier included. Need to handle that here to
Bram Moolenaar749bc952020-10-31 16:33:47 +01004571 // make mappings work. This may result in a special key, such as
4572 // K_S_TAB.
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02004573 *key = simplify_key(*key, &modifiers);
4574 if (modifiers != 0)
4575 {
4576 string[new_slen++] = K_SPECIAL;
4577 string[new_slen++] = (int)KS_MODIFIER;
4578 string[new_slen++] = modifiers;
4579 }
4580 }
4581 return new_slen;
4582}
4583
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02004584#ifdef FEAT_TERMRESPONSE
4585/*
4586 * Handle a cursor position report.
4587 */
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004588 static void
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02004589handle_u7_response(int *arg, char_u *tp UNUSED, int csi_len UNUSED)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004590{
4591 if (arg[0] == 2 && arg[1] >= 2)
4592 {
4593 char *aw = NULL;
4594
4595 LOG_TR(("Received U7 status: %s", tp));
4596 u7_status.tr_progress = STATUS_GOT;
4597 did_cursorhold = TRUE;
4598 if (arg[1] == 2)
4599 aw = "single";
4600 else if (arg[1] == 3)
4601 aw = "double";
4602 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4603 {
4604 // Setting the option causes a screen redraw. Do
4605 // that right away if possible, keeping any
4606 // messages.
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02004607 set_option_value((char_u *)"ambw", 0L, (char_u *)aw, 0);
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004608# ifdef DEBUG_TERMRESPONSE
4609 {
4610 int r = redraw_asap(CLEAR);
4611
4612 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
4613 }
4614# else
4615 redraw_asap(CLEAR);
4616# endif
4617# ifdef FEAT_EVAL
4618 set_vim_var_string(VV_TERMU7RESP, tp, csi_len);
4619# endif
4620 }
4621 }
4622 else if (arg[0] == 3)
4623 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004624 int value;
4625
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004626 LOG_TR(("Received compatibility test result: %s", tp));
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004627 xcc_status.tr_progress = STATUS_GOT;
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004628
4629 // Third row: xterm compatibility test.
4630 // If the cursor is on the first column then the terminal can handle
4631 // the request for cursor style and blinking.
4632 value = arg[1] == 1 ? TPR_YES : TPR_NO;
4633 term_props[TPR_CURSOR_STYLE].tpr_status = value;
4634 term_props[TPR_CURSOR_BLINK].tpr_status = value;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004635 }
4636}
4637
4638/*
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004639 * Handle a response to T_CRV: {lead}{first}{x};{vers};{y}c
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01004640 * Xterm and alike use '>' for {first}.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004641 * Rxvt sends "{lead}?1;2c".
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004642 */
4643 static void
4644handle_version_response(int first, int *arg, int argc, char_u *tp)
4645{
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004646 // The xterm version. It is set to zero when it can't be an actual xterm
4647 // version.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004648 int version = arg[1];
4649
4650 LOG_TR(("Received CRV response: %s", tp));
4651 crv_status.tr_progress = STATUS_GOT;
4652 did_cursorhold = TRUE;
4653
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004654 // Reset terminal properties that are set based on the termresponse.
4655 // Mainly useful for tests that send the termresponse multiple times.
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02004656 // For testing all props can be reset.
Bram Moolenaar142499d2020-06-13 16:39:31 +02004657 init_term_props(
4658#ifdef FEAT_EVAL
4659 reset_term_props_on_termresponse
4660#else
4661 FALSE
4662#endif
4663 );
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004664
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004665 // If this code starts with CSI, you can bet that the
4666 // terminal uses 8-bit codes.
4667 if (tp[0] == CSI)
4668 switch_to_8bit();
4669
4670 // Screen sends 40500.
4671 // rxvt sends its version number: "20703" is 2.7.3.
4672 // Ignore it for when the user has set 'term' to xterm,
4673 // even though it's an rxvt.
4674 if (version > 20000)
4675 version = 0;
4676
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004677 // Figure out more if the reeponse is CSI > 99 ; 99 ; 99 c
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004678 if (first == '>' && argc == 3)
4679 {
4680 int need_flush = FALSE;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004681
4682 // mintty 2.9.5 sends 77;20905;0c.
4683 // (77 is ASCII 'M' for mintty.)
4684 if (arg[0] == 77)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004685 {
4686 // mintty can do SGR mouse reporting
4687 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4688 }
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004689
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004690 // If xterm version >= 141 try to get termcap codes. For other
4691 // terminals the request should be ignored.
Bram Moolenaar6f79e612021-12-21 09:12:23 +00004692 if (version >= 141 && p_xtermcodes)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004693 {
4694 LOG_TR(("Enable checking for XT codes"));
4695 check_for_codes = TRUE;
4696 need_gather = TRUE;
4697 req_codes_from_term();
4698 }
4699
4700 // libvterm sends 0;100;0
4701 if (version == 100 && arg[0] == 0 && arg[2] == 0)
4702 {
4703 // If run from Vim $COLORS is set to the number of
4704 // colors the terminal supports. Otherwise assume
4705 // 256, libvterm supports even more.
4706 if (mch_getenv((char_u *)"COLORS") == NULL)
4707 may_adjust_color_count(256);
4708 // Libvterm can handle SGR mouse reporting.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004709 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004710 }
4711
4712 if (version == 95)
4713 {
4714 // Mac Terminal.app sends 1;95;0
4715 if (arg[0] == 1 && arg[2] == 0)
4716 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004717 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
4718 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004719 }
4720 // iTerm2 sends 0;95;0
4721 else if (arg[0] == 0 && arg[2] == 0)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004722 {
4723 // iTerm2 can do SGR mouse reporting
4724 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4725 }
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004726 // old iTerm2 sends 0;95;
4727 else if (arg[0] == 0 && arg[2] == -1)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004728 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004729 }
4730
4731 // screen sends 83;40500;0 83 is 'S' in ASCII.
4732 if (arg[0] == 83)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004733 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004734 // screen supports SGR mouse codes since 4.7.0
4735 if (arg[1] >= 40700)
4736 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4737 else
4738 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM;
4739 }
4740
4741 // If no recognized terminal has set mouse behavior, assume xterm.
4742 if (term_props[TPR_MOUSE].tpr_status == TPR_UNKNOWN)
4743 {
4744 // Xterm version 277 supports SGR.
4745 // Xterm version >= 95 supports mouse dragging.
4746 if (version >= 277)
4747 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004748 else if (version >= 95)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004749 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM2;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004750 }
4751
4752 // Detect terminals that set $TERM to something like
4753 // "xterm-256color" but are not fully xterm compatible.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004754 //
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004755 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar8dff4cb2020-06-14 14:34:16 +02004756 // Newer Gnome-terminal sends 65;6001;1.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004757 // xfce4-terminal sends 1;2802;0.
4758 // screen sends 83;40500;0
4759 // Assuming any version number over 2500 is not an
4760 // xterm (without the limit for rxvt and screen).
4761 if (arg[1] >= 2500)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004762 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004763
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004764 else if (version == 136 && arg[2] == 0)
4765 {
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004766 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004767
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004768 // PuTTY sends 0;136;0
4769 if (arg[0] == 0)
4770 {
4771 // supports sgr-like mouse reporting.
4772 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
4773 }
4774 // vandyke SecureCRT sends 1;136;0
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004775 }
4776
4777 // Konsole sends 0;115;0
4778 else if (version == 115 && arg[0] == 0 && arg[2] == 0)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004779 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004780
4781 // GNU screen sends 83;30600;0, 83;40500;0, etc.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004782 // 30600/40500 is a version number of GNU screen. DA2 support is added
4783 // on 3.6. DCS string has a special meaning to GNU screen, but xterm
4784 // compatibility checking does not detect GNU screen.
4785 if (arg[0] == 83 && arg[1] >= 30600)
4786 {
4787 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO;
4788 term_props[TPR_CURSOR_BLINK].tpr_status = TPR_NO;
4789 }
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004790
4791 // Xterm first responded to this request at patch level
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004792 // 95, so assume anything below 95 is not xterm and hopefully supports
4793 // the underline RGB color sequence.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004794 if (version < 95)
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004795 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004796
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004797 // Getting the cursor style is only supported properly by xterm since
4798 // version 279 (otherwise it returns 0x18).
4799 if (version < 279)
4800 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO;
4801
4802 /*
4803 * Take action on the detected properties.
4804 */
4805
4806 // Unless the underline RGB color is expected to work, disable "t_8u".
4807 // It does not work for the real Xterm, it resets the background color.
Bram Moolenaar8dff4cb2020-06-14 14:34:16 +02004808 if (term_props[TPR_UNDERLINE_RGB].tpr_status != TPR_YES && *T_8U != NUL)
Bram Moolenaar8e20f752020-06-14 16:43:47 +02004809 set_string_option_direct((char_u *)"t_8u", -1, (char_u *)"",
4810 OPT_FREE, 0);
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004811
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004812 // Only set 'ttymouse' automatically if it was not set
4813 // by the user already.
4814 if (!option_was_set((char_u *)"ttym")
4815 && (term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_XTERM2
4816 || term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR))
4817 {
4818 set_option_value((char_u *)"ttym", 0L,
4819 term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR
4820 ? (char_u *)"sgr" : (char_u *)"xterm2", 0);
4821 }
4822
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004823 // Only request the cursor style if t_SH and t_RS are
4824 // set. Only supported properly by xterm since version
4825 // 279 (otherwise it returns 0x18).
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004826 // Only when getting the cursor style was detected to work.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004827 // Not for Terminal.app, it can't handle t_RS, it
4828 // echoes the characters to the screen.
4829 if (rcs_status.tr_progress == STATUS_GET
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004830 && term_props[TPR_CURSOR_STYLE].tpr_status == TPR_YES
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004831 && *T_CSH != NUL
4832 && *T_CRS != NUL)
4833 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02004834#ifdef FEAT_JOB_CHANNEL
4835 ch_log_output = TRUE;
4836#endif
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004837 LOG_TR(("Sending cursor style request"));
4838 out_str(T_CRS);
4839 termrequest_sent(&rcs_status);
4840 need_flush = TRUE;
4841 }
4842
4843 // Only request the cursor blink mode if t_RC set. Not
4844 // for Gnome terminal, it can't handle t_RC, it
4845 // echoes the characters to the screen.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004846 // Only when getting the cursor style was detected to work.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004847 if (rbm_status.tr_progress == STATUS_GET
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004848 && term_props[TPR_CURSOR_BLINK].tpr_status == TPR_YES
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004849 && *T_CRC != NUL)
4850 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02004851#ifdef FEAT_JOB_CHANNEL
4852 ch_log_output = TRUE;
4853#endif
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004854 LOG_TR(("Sending cursor blink mode request"));
4855 out_str(T_CRC);
4856 termrequest_sent(&rbm_status);
4857 need_flush = TRUE;
4858 }
4859
4860 if (need_flush)
4861 out_flush();
4862 }
4863}
4864
4865/*
4866 * Handle a sequence with key and modifier, one of:
4867 * {lead}27;{modifier};{key}~
4868 * {lead}{key};{modifier}u
4869 * Returns the difference in length.
4870 */
4871 static int
4872handle_key_with_modifier(
4873 int *arg,
4874 int trail,
4875 int csi_len,
4876 int offset,
4877 char_u *buf,
4878 int bufsize,
4879 int *buflen)
4880{
4881 int key;
4882 int modifiers;
4883 int new_slen;
4884 char_u string[MAX_KEY_CODE_LEN + 1];
4885
4886 seenModifyOtherKeys = TRUE;
4887 if (trail == 'u')
4888 key = arg[0];
4889 else
4890 key = arg[2];
4891
4892 modifiers = decode_modifiers(arg[1]);
4893
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02004894 // Some keys need adjustment when the Ctrl modifier is used.
4895 key = may_adjust_key_for_ctrl(modifiers, key);
4896
Bram Moolenaaref6746f2020-06-20 14:43:23 +02004897 // May remove the shift modifier if it's already included in the key.
4898 modifiers = may_remove_shift_modifier(modifiers, key);
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004899
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004900 // insert modifiers with KS_MODIFIER
4901 new_slen = modifiers2keycode(modifiers, &key, string);
4902
Bram Moolenaar749bc952020-10-31 16:33:47 +01004903 if (IS_SPECIAL(key))
4904 {
4905 string[new_slen++] = K_SPECIAL;
4906 string[new_slen++] = KEY2TERMCAP0(key);
4907 string[new_slen++] = KEY2TERMCAP1(key);
4908 }
4909 else if (has_mbyte)
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004910 new_slen += (*mb_char2bytes)(key, string + new_slen);
4911 else
4912 string[new_slen++] = key;
4913
4914 if (put_string_in_typebuf(offset, csi_len, string, new_slen,
4915 buf, bufsize, buflen) == FAIL)
4916 return -1;
4917 return new_slen - csi_len + offset;
4918}
4919
4920/*
4921 * Handle a CSI escape sequence.
Bram Moolenaar517f00f2020-06-10 12:15:51 +02004922 * - Xterm version string.
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02004923 *
4924 * - Cursor position report: {lead}{row};{col}R
4925 * The final byte must be 'R'. It is used for checking the
4926 * ambiguous-width character state.
4927 *
4928 * - window position reply: {lead}3;{x};{y}t
4929 *
4930 * - key with modifiers when modifyOtherKeys is enabled:
4931 * {lead}27;{modifier};{key}~
4932 * {lead}{key};{modifier}u
4933 * Return 0 for no match, -1 for partial match, > 0 for full match.
4934 */
4935 static int
4936handle_csi(
4937 char_u *tp,
4938 int len,
4939 char_u *argp,
4940 int offset,
4941 char_u *buf,
4942 int bufsize,
4943 int *buflen,
4944 char_u *key_name,
4945 int *slen)
4946{
4947 int first = -1; // optional char right after {lead}
4948 int trail; // char that ends CSI sequence
4949 int arg[3] = {-1, -1, -1}; // argument numbers
4950 int argc; // number of arguments
4951 char_u *ap = argp;
4952 int csi_len;
4953
4954 // Check for non-digit after CSI.
4955 if (!VIM_ISDIGIT(*ap))
4956 first = *ap++;
4957
4958 // Find up to three argument numbers.
4959 for (argc = 0; argc < 3; )
4960 {
4961 if (ap >= tp + len)
4962 return -1;
4963 if (*ap == ';')
4964 arg[argc++] = -1; // omitted number
4965 else if (VIM_ISDIGIT(*ap))
4966 {
4967 arg[argc] = 0;
4968 for (;;)
4969 {
4970 if (ap >= tp + len)
4971 return -1;
4972 if (!VIM_ISDIGIT(*ap))
4973 break;
4974 arg[argc] = arg[argc] * 10 + (*ap - '0');
4975 ++ap;
4976 }
4977 ++argc;
4978 }
4979 if (*ap == ';')
4980 ++ap;
4981 else
4982 break;
4983 }
4984
4985 // mrxvt has been reported to have "+" in the version. Assume
4986 // the escape sequence ends with a letter or one of "{|}~".
4987 while (ap < tp + len
4988 && !(*ap >= '{' && *ap <= '~')
4989 && !ASCII_ISALPHA(*ap))
4990 ++ap;
4991 if (ap >= tp + len)
4992 return -1;
4993 trail = *ap;
4994 csi_len = (int)(ap - tp) + 1;
4995
4996 // Cursor position report: Eat it when there are 2 arguments
4997 // and it ends in 'R'. Also when u7_status is not "sent", it
4998 // may be from a previous Vim that just exited. But not for
4999 // <S-F3>, it sends something similar, check for row and column
5000 // to make sense.
5001 if (first == -1 && argc == 2 && trail == 'R')
5002 {
5003 handle_u7_response(arg, tp, csi_len);
5004
5005 key_name[0] = (int)KS_EXTRA;
5006 key_name[1] = (int)KE_IGNORE;
5007 *slen = csi_len;
5008 }
5009
5010 // Version string: Eat it when there is at least one digit and
5011 // it ends in 'c'
5012 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c')
5013 {
5014 handle_version_response(first, arg, argc, tp);
5015
5016 *slen = csi_len;
5017# ifdef FEAT_EVAL
5018 set_vim_var_string(VV_TERMRESPONSE, tp, *slen);
5019# endif
5020 apply_autocmds(EVENT_TERMRESPONSE,
5021 NULL, NULL, FALSE, curbuf);
5022 key_name[0] = (int)KS_EXTRA;
5023 key_name[1] = (int)KE_IGNORE;
5024 }
5025
5026 // Check blinking cursor from xterm:
5027 // {lead}?12;1$y set
5028 // {lead}?12;2$y not set
5029 //
5030 // {lead} can be <Esc>[ or CSI
5031 else if (rbm_status.tr_progress == STATUS_SENT
5032 && first == '?'
5033 && ap == argp + 6
5034 && arg[0] == 12
5035 && ap[-1] == '$'
5036 && trail == 'y')
5037 {
5038 initial_cursor_blink = (arg[1] == '1');
5039 rbm_status.tr_progress = STATUS_GOT;
5040 LOG_TR(("Received cursor blinking mode response: %s", tp));
5041 key_name[0] = (int)KS_EXTRA;
5042 key_name[1] = (int)KE_IGNORE;
5043 *slen = csi_len;
5044# ifdef FEAT_EVAL
5045 set_vim_var_string(VV_TERMBLINKRESP, tp, *slen);
5046# endif
5047 }
5048
5049 // Check for a window position response from the terminal:
5050 // {lead}3;{x};{y}t
5051 else if (did_request_winpos && argc == 3 && arg[0] == 3
5052 && trail == 't')
5053 {
5054 winpos_x = arg[1];
5055 winpos_y = arg[2];
5056 // got finished code: consume it
5057 key_name[0] = (int)KS_EXTRA;
5058 key_name[1] = (int)KE_IGNORE;
5059 *slen = csi_len;
5060
5061 if (--did_request_winpos <= 0)
5062 winpos_status.tr_progress = STATUS_GOT;
5063 }
5064
5065 // Key with modifier:
5066 // {lead}27;{modifier};{key}~
5067 // {lead}{key};{modifier}u
5068 else if ((arg[0] == 27 && argc == 3 && trail == '~')
5069 || (argc == 2 && trail == 'u'))
5070 {
5071 return len + handle_key_with_modifier(arg, trail,
5072 csi_len, offset, buf, bufsize, buflen);
5073 }
5074
5075 // else: Unknown CSI sequence. We could drop it, but then the
5076 // user can't create a map for it.
5077 return 0;
5078}
5079
5080/*
5081 * Handle an OSC sequence, fore/background color response from the terminal:
5082 *
5083 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
5084 * or {lead}{code};rgb:{rr}/{gg}/{bb}{tail}
5085 *
5086 * {code} is 10 for foreground, 11 for background
5087 * {lead} can be <Esc>] or OSC
5088 * {tail} can be '\007', <Esc>\ or STERM.
5089 *
5090 * Consume any code that starts with "{lead}11;", it's also
5091 * possible that "rgba" is following.
5092 */
5093 static int
5094handle_osc(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen)
5095{
5096 int i, j;
5097
5098 j = 1 + (tp[0] == ESC);
5099 if (len >= j + 3 && (argp[0] != '1'
5100 || (argp[1] != '1' && argp[1] != '0')
5101 || argp[2] != ';'))
5102 i = 0; // no match
5103 else
5104 for (i = j; i < len; ++i)
5105 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
5106 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
5107 {
5108 int is_bg = argp[1] == '1';
5109 int is_4digit = i - j >= 21 && tp[j + 11] == '/'
5110 && tp[j + 16] == '/';
5111
5112 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
5113 && (is_4digit
5114 || (tp[j + 9] == '/' && tp[i + 12 == '/'])))
5115 {
5116 char_u *tp_r = tp + j + 7;
5117 char_u *tp_g = tp + j + (is_4digit ? 12 : 10);
5118 char_u *tp_b = tp + j + (is_4digit ? 17 : 13);
5119# ifdef FEAT_TERMINAL
5120 int rval, gval, bval;
5121
5122 rval = hexhex2nr(tp_r);
5123 gval = hexhex2nr(tp_b);
5124 bval = hexhex2nr(tp_g);
5125# endif
5126 if (is_bg)
5127 {
5128 char *new_bg_val = (3 * '6' < *tp_r + *tp_g +
5129 *tp_b) ? "light" : "dark";
5130
5131 LOG_TR(("Received RBG response: %s", tp));
5132 rbg_status.tr_progress = STATUS_GOT;
5133# ifdef FEAT_TERMINAL
5134 bg_r = rval;
5135 bg_g = gval;
5136 bg_b = bval;
5137# endif
5138 if (!option_was_set((char_u *)"bg")
5139 && STRCMP(p_bg, new_bg_val) != 0)
5140 {
5141 // value differs, apply it
5142 set_option_value((char_u *)"bg", 0L,
5143 (char_u *)new_bg_val, 0);
5144 reset_option_was_set((char_u *)"bg");
5145 redraw_asap(CLEAR);
5146 }
5147 }
5148# ifdef FEAT_TERMINAL
5149 else
5150 {
5151 LOG_TR(("Received RFG response: %s", tp));
5152 rfg_status.tr_progress = STATUS_GOT;
5153 fg_r = rval;
5154 fg_g = gval;
5155 fg_b = bval;
5156 }
5157# endif
5158 }
5159
5160 // got finished code: consume it
5161 key_name[0] = (int)KS_EXTRA;
5162 key_name[1] = (int)KE_IGNORE;
5163 *slen = i + 1 + (tp[i] == ESC);
5164# ifdef FEAT_EVAL
5165 set_vim_var_string(is_bg ? VV_TERMRBGRESP
5166 : VV_TERMRFGRESP, tp, *slen);
5167# endif
5168 break;
5169 }
5170 if (i == len)
5171 {
5172 LOG_TR(("not enough characters for RB"));
5173 return FAIL;
5174 }
5175 return OK;
5176}
5177
5178/*
5179 * Check for key code response from xterm:
5180 * {lead}{flag}+r<hex bytes><{tail}
5181 *
5182 * {lead} can be <Esc>P or DCS
5183 * {flag} can be '0' or '1'
5184 * {tail} can be Esc>\ or STERM
5185 *
5186 * Check for cursor shape response from xterm:
5187 * {lead}1$r<digit> q{tail}
5188 *
5189 * {lead} can be <Esc>P or DCS
5190 * {tail} can be <Esc>\ or STERM
5191 *
5192 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
5193 */
5194 static int
5195handle_dcs(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen)
5196{
5197 int i, j;
5198
5199 j = 1 + (tp[0] == ESC);
5200 if (len < j + 3)
5201 i = len; // need more chars
5202 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
5203 i = 0; // no match
5204 else if (argp[1] == '+')
5205 // key code response
5206 for (i = j; i < len; ++i)
5207 {
5208 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
5209 || tp[i] == STERM)
5210 {
5211 if (i - j >= 3)
5212 got_code_from_term(tp + j, i);
5213 key_name[0] = (int)KS_EXTRA;
5214 key_name[1] = (int)KE_IGNORE;
5215 *slen = i + 1 + (tp[i] == ESC);
5216 break;
5217 }
5218 }
5219 else
5220 {
5221 // Probably the cursor shape response. Make sure that "i"
5222 // is equal to "len" when there are not sufficient
5223 // characters.
5224 for (i = j + 3; i < len; ++i)
5225 {
5226 if (i - j == 3 && !isdigit(tp[i]))
5227 break;
5228 if (i - j == 4 && tp[i] != ' ')
5229 break;
5230 if (i - j == 5 && tp[i] != 'q')
5231 break;
5232 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
5233 break;
5234 if ((i - j == 6 && tp[i] == STERM)
5235 || (i - j == 7 && tp[i] == '\\'))
5236 {
5237 int number = argp[3] - '0';
5238
5239 // 0, 1 = block blink, 2 = block
5240 // 3 = underline blink, 4 = underline
5241 // 5 = vertical bar blink, 6 = vertical bar
5242 number = number == 0 ? 1 : number;
5243 initial_cursor_shape = (number + 1) / 2;
5244 // The blink flag is actually inverted, compared to
5245 // the value set with T_SH.
5246 initial_cursor_shape_blink =
5247 (number & 1) ? FALSE : TRUE;
5248 rcs_status.tr_progress = STATUS_GOT;
5249 LOG_TR(("Received cursor shape response: %s", tp));
5250
5251 key_name[0] = (int)KS_EXTRA;
5252 key_name[1] = (int)KE_IGNORE;
5253 *slen = i + 1;
5254# ifdef FEAT_EVAL
5255 set_vim_var_string(VV_TERMSTYLERESP, tp, *slen);
5256# endif
5257 break;
5258 }
5259 }
5260 }
5261
5262 if (i == len)
5263 {
5264 // These codes arrive many together, each code can be
5265 // truncated at any point.
5266 LOG_TR(("not enough characters for XT"));
5267 return FAIL;
5268 }
5269 return OK;
5270}
Bram Moolenaar0ca8b5b2020-06-09 21:35:36 +02005271#endif // FEAT_TERMRESPONSE
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005272
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005273/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 * Check if typebuf.tb_buf[] contains a terminal key code.
5275 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
Bram Moolenaar975a8802020-06-06 22:36:24 +02005276 * + "max_offset"].
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005278 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 * With a match, the match is removed, the replacement code is inserted in
5280 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
5281 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005282 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
5283 * "buflen" is then the length of the string in buf[] and is updated for
5284 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 */
5286 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005287check_termcode(
5288 int max_offset,
5289 char_u *buf,
5290 int bufsize,
5291 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292{
5293 char_u *tp;
5294 char_u *p;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005295 int slen = 0; // init for GCC
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005296 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005298 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 int offset;
5300 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005301 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02005302 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005303 int key;
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005304 int new_slen; // Length of what will replace the termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 char_u string[MAX_KEY_CODE_LEN + 1];
5306 int i, j;
5307 int idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 int cpo_koffset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309
5310 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
5311
5312 /*
5313 * Speed up the checks for terminal codes by gathering all first bytes
5314 * used in termleader[]. Often this is just a single <Esc>.
5315 */
5316 if (need_gather)
5317 gather_termleader();
5318
5319 /*
5320 * Check at several positions in typebuf.tb_buf[], to catch something like
5321 * "x<Up>" that can be mapped. Stop at max_offset, because characters
5322 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01005323 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 * This is used often, KEEP IT FAST!
5325 */
5326 for (offset = 0; offset < max_offset; ++offset)
5327 {
5328 if (buf == NULL)
5329 {
5330 if (offset >= typebuf.tb_len)
5331 break;
5332 tp = typebuf.tb_buf + typebuf.tb_off + offset;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005333 len = typebuf.tb_len - offset; // length of the input
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 }
5335 else
5336 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005337 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 break;
5339 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005340 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 }
5342
5343 /*
5344 * Don't check characters after K_SPECIAL, those are already
5345 * translated terminal chars (avoid translating ~@^Hx).
5346 */
5347 if (*tp == K_SPECIAL)
5348 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005349 offset += 2; // there are always 2 extra characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 continue;
5351 }
5352
5353 /*
5354 * Skip this position if the character does not appear as the first
5355 * character in term_strings. This speeds up a lot, since most
5356 * termcodes start with the same character (ESC or CSI).
5357 */
5358 i = *tp;
5359 for (p = termleader; *p && *p != i; ++p)
5360 ;
5361 if (*p == NUL)
5362 continue;
5363
5364 /*
5365 * Skip this position if p_ek is not set and tp[0] is an ESC and we
5366 * are in Insert mode.
5367 */
5368 if (*tp == ESC && !p_ek && (State & INSERT))
5369 continue;
5370
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005371 key_name[0] = NUL; // no key name found yet
5372 key_name[1] = NUL; // no key name found yet
5373 modifiers = 0; // no modifiers yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374
5375#ifdef FEAT_GUI
5376 if (gui.in_use)
5377 {
5378 /*
5379 * GUI special key codes are all of the form [CSI xx].
5380 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005381 if (*tp == CSI) // Special key from GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 {
5383 if (len < 3)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005384 return -1; // Shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 slen = 3;
5386 key_name[0] = tp[1];
5387 key_name[1] = tp[2];
5388 }
5389 }
5390 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005391#endif // FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 {
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005393 int mouse_index_found = -1;
5394
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 for (idx = 0; idx < tc_len; ++idx)
5396 {
5397 /*
5398 * Ignore the entry if we are not at the start of
5399 * typebuf.tb_buf[]
5400 * and there are not enough characters to make a match.
5401 * But only when the 'K' flag is in 'cpoptions'.
5402 */
5403 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005404 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 if (cpo_koffset && offset && len < slen)
5406 continue;
5407 if (STRNCMP(termcodes[idx].code, tp,
5408 (size_t)(slen > len ? len : slen)) == 0)
5409 {
Bram Moolenaarc14b57c2021-12-03 13:20:29 +00005410 int looks_like_mouse_start = FALSE;
5411
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005412 if (len < slen) // got a partial sequence
5413 return -1; // need to get more chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414
5415 /*
5416 * When found a keypad key, check if there is another key
5417 * that matches and use that one. This makes <Home> to be
5418 * found instead of <kHome> when they produce the same
5419 * key code.
5420 */
5421 if (termcodes[idx].name[0] == 'K'
5422 && VIM_ISDIGIT(termcodes[idx].name[1]))
5423 {
5424 for (j = idx + 1; j < tc_len; ++j)
5425 if (termcodes[j].len == slen &&
5426 STRNCMP(termcodes[idx].code,
5427 termcodes[j].code, slen) == 0)
5428 {
5429 idx = j;
5430 break;
5431 }
5432 }
5433
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005434 if (slen == 2 && len > 2
5435 && termcodes[idx].code[0] == ESC
Bram Moolenaarc14b57c2021-12-03 13:20:29 +00005436 && termcodes[idx].code[1] == '[')
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005437 {
Bram Moolenaarc14b57c2021-12-03 13:20:29 +00005438 // The mouse termcode "ESC [" is also the prefix of
5439 // "ESC [ I" (focus gained) and other keys. Check some
5440 // more bytes to find out.
5441 if (!isdigit(tp[2]))
5442 {
5443 // ESC [ without number following: Only use it when
5444 // there is no other match.
5445 looks_like_mouse_start = TRUE;
5446 }
5447 else if (termcodes[idx].name[0] == KS_DEC_MOUSE)
5448 {
5449 char_u *nr = tp + 2;
5450 int count = 0;
5451
5452 // If a digit is following it could be a key with
5453 // modifier, e.g., ESC [ 1;2P. Can be confused
5454 // with DEC_MOUSE, which requires four numbers
5455 // following. If not then it can't be a DEC_MOUSE
5456 // code.
5457 for (;;)
5458 {
5459 ++count;
5460 (void)getdigits(&nr);
5461 if (nr >= tp + len)
5462 return -1; // partial sequence
5463 if (*nr != ';')
5464 break;
5465 ++nr;
5466 if (nr >= tp + len)
5467 return -1; // partial sequence
5468 }
5469 if (count < 4)
5470 continue; // no match
5471 }
5472 }
5473 if (looks_like_mouse_start)
5474 {
5475 // Only use it when there is no other match.
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005476 if (mouse_index_found < 0)
5477 mouse_index_found = idx;
5478 }
5479 else
5480 {
5481 key_name[0] = termcodes[idx].name[0];
5482 key_name[1] = termcodes[idx].name[1];
5483 break;
5484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005486
5487 /*
5488 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005489 * <Esc>[123;*X (modslen == slen - 3)
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005490 * <Esc>[@;*X (matches <Esc>[X and <Esc>[1;9X )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005491 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
5492 * When there is a modifier the * matches a number.
5493 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005494 */
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005495 if (termcodes[idx].modlen > 0 && mouse_index_found < 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005496 {
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005497 int at_code;
5498
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005499 modslen = termcodes[idx].modlen;
5500 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005501 continue;
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005502 at_code = termcodes[idx].code[modslen] == '@';
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005503 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005504 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005505 {
5506 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005507
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005508 if (len <= modslen) // got a partial sequence
5509 return -1; // need to get more chars
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005510
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005511 if (tp[modslen] == termcodes[idx].code[slen - 1])
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005512 // no modifiers
5513 slen = modslen + 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005514 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar4d8c96d2020-12-29 20:53:33 +01005515 // no match for "code;*X" with "code;"
5516 continue;
5517 else if (at_code && tp[modslen] != '1')
5518 // no match for "<Esc>[@" with "<Esc>[1"
5519 continue;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005520 else
5521 {
Bram Moolenaarbb7e1b42019-05-02 20:24:12 +02005522 // Skip over the digits, the final char must
5523 // follow. URXVT can use a negative value, thus
5524 // also accept '-'.
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02005525 for (j = slen - 2; j < len && (isdigit(tp[j])
Bram Moolenaarbb7e1b42019-05-02 20:24:12 +02005526 || tp[j] == '-' || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005527 ;
5528 ++j;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005529 if (len < j) // got a partial sequence
5530 return -1; // need to get more chars
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005531 if (tp[j - 1] != termcodes[idx].code[slen - 1])
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005532 continue; // no match
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005533
Bram Moolenaara529ce02017-06-22 22:37:57 +02005534 modifiers_start = tp + slen - 2;
5535
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02005536 // Match! Convert modifier bits.
5537 n = atoi((char *)modifiers_start);
5538 modifiers |= decode_modifiers(n);
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005539
5540 slen = j;
5541 }
5542 key_name[0] = termcodes[idx].name[0];
5543 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00005544 break;
5545 }
5546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 }
Bram Moolenaar92e5df82021-01-30 15:39:47 +01005548 if (idx == tc_len && mouse_index_found >= 0)
5549 {
5550 key_name[0] = termcodes[mouse_index_found].name[0];
5551 key_name[1] = termcodes[mouse_index_found].name[1];
5552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 }
5554
5555#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005556 if (key_name[0] == NUL
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005557 // Mouse codes of DEC and pterm start with <ESC>[. When
5558 // detecting the start of these mouse codes they might as well be
5559 // another key code or terminal response.
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005560# ifdef FEAT_MOUSE_DEC
5561 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01005562# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005563# ifdef FEAT_MOUSE_PTERM
5564 || key_name[0] == KS_PTERM_MOUSE
5565# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005566 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 {
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005568 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
5569
5570 /*
5571 * Check for responses from the terminal starting with {lead}:
5572 * "<Esc>[" or CSI followed by [0-9>?]
Bram Moolenaar9584b312013-03-13 19:29:28 +01005573 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005574 * - Xterm version string: {lead}>{x};{vers};{y}c
Bram Moolenaar9584b312013-03-13 19:29:28 +01005575 * Also eat other possible responses to t_RV, rxvt returns
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005576 * "{lead}?1;2c".
Bram Moolenaar9584b312013-03-13 19:29:28 +01005577 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005578 * - Cursor position report: {lead}{row};{col}R
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005579 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01005580 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02005581 *
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005582 * - window position reply: {lead}3;{x};{y}t
5583 *
5584 * - key with modifiers when modifyOtherKeys is enabled:
5585 * {lead}27;{modifier};{key}~
5586 * {lead}{key};{modifier}u
Bram Moolenaar9584b312013-03-13 19:29:28 +01005587 */
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005588 if (((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02005589 || (tp[0] == CSI && len >= 2))
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005590 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 {
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005592 int resp = handle_csi(tp, len, argp, offset, buf,
5593 bufsize, buflen, key_name, &slen);
5594 if (resp != 0)
Bram Moolenaarc3e555b2019-10-08 20:15:39 +02005595 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005596# ifdef DEBUG_TERMRESPONSE
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005597 if (resp == -1)
5598 LOG_TR(("Not enough characters for CSI sequence"));
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005599# endif
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005600 return resp;
Bram Moolenaar9584b312013-03-13 19:29:28 +01005601 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005602 }
5603
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005604 // Check for fore/background color response from the terminal,
5605 // starting} with <Esc>] or OSC
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005606 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005607 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
5608 || tp[0] == OSC))
5609 {
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005610 if (handle_osc(tp, argp, len, key_name, &slen) == FAIL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005611 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 }
5613
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005614 // Check for key code response from xterm,
5615 // starting with <Esc>P or DCS
Bram Moolenaarafd78262019-05-10 23:10:31 +02005616 else if ((check_for_codes || rcs_status.tr_progress == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005617 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 || tp[0] == DCS))
5619 {
Bram Moolenaar218cb0f2020-06-09 21:26:36 +02005620 if (handle_dcs(tp, argp, len, key_name, &slen) == FAIL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02005621 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 }
5623 }
5624#endif
5625
5626 if (key_name[0] == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005627 continue; // No match at this position, try next one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005629 // We only get here when we have a complete termcode match
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005631#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 /*
5633 * Only in the GUI: Fetch the pointer coordinates of the scroll event
5634 * so that we know which window to scroll later.
5635 */
5636 if (gui.in_use
5637 && key_name[0] == (int)KS_EXTRA
5638 && (key_name[1] == (int)KE_X1MOUSE
5639 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar445f11d2021-06-08 20:13:31 +02005640 || key_name[1] == (int)KE_MOUSEMOVE_XY
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005641 || key_name[1] == (int)KE_MOUSELEFT
5642 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 || key_name[1] == (int)KE_MOUSEDOWN
5644 || key_name[1] == (int)KE_MOUSEUP))
5645 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005646 char_u bytes[6];
5647 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
5648
5649 if (num_bytes == -1) // not enough coordinates
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 return -1;
5651 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
5652 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
5653 slen += num_bytes;
Bram Moolenaar445f11d2021-06-08 20:13:31 +02005654 // equal to K_MOUSEMOVE
5655 if (key_name[1] == (int)KE_MOUSEMOVE_XY)
5656 key_name[1] = (int)KE_MOUSEMOVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 }
5658 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 /*
5661 * If it is a mouse click, get the coordinates.
5662 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005663 if (key_name[0] == KS_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005664#ifdef FEAT_MOUSE_GPM
Bram Moolenaarbedf0912019-05-04 16:58:45 +02005665 || key_name[0] == KS_GPM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005666#endif
5667#ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005668 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005669#endif
5670#ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005671 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005672#endif
5673#ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005674 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005675#endif
5676#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005677 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005678#endif
5679#ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005680 || key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02005681#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005682 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01005683 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005685 if (check_termcode_mouse(tp, &slen, key_name, modifiers_start, idx,
5686 &modifiers) == -1)
5687 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689
5690#ifdef FEAT_GUI
5691 /*
5692 * If using the GUI, then we get menu and scrollbar events.
5693 *
5694 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5695 * four bytes which are to be taken as a pointer to the vimmenu_T
5696 * structure.
5697 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005698 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005699 * is one byte with the tab index.
5700 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5702 * by one byte representing the scrollbar number, and then four bytes
5703 * representing a long_u which is the new value of the scrollbar.
5704 *
5705 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5706 * KE_FILLER followed by four bytes representing a long_u which is the
5707 * new value of the scrollbar.
5708 */
5709# ifdef FEAT_MENU
5710 else if (key_name[0] == (int)KS_MENU)
5711 {
5712 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005713 int num_bytes = get_long_from_buf(tp + slen, &val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 if (num_bytes == -1)
5716 return -1;
5717 current_menu = (vimmenu_T *)val;
5718 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005719
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005720 // The menu may have been deleted right after it was used, check
5721 // for that.
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005722 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5723 {
5724 key_name[0] = KS_EXTRA;
5725 key_name[1] = (int)KE_IGNORE;
5726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 }
5728# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005729# ifdef FEAT_GUI_TABLINE
5730 else if (key_name[0] == (int)KS_TABLINE)
5731 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005732 // Selecting tabline tab or using its menu.
5733 char_u bytes[6];
5734 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5735
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005736 if (num_bytes == -1)
5737 return -1;
5738 current_tab = (int)bytes[0];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005739 if (current_tab == 255) // -1 in a byte gives 255
Bram Moolenaar07354542007-09-15 12:07:46 +00005740 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005741 slen += num_bytes;
5742 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005743 else if (key_name[0] == (int)KS_TABMENU)
5744 {
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005745 // Selecting tabline tab or using its menu.
5746 char_u bytes[6];
5747 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5748
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005749 if (num_bytes == -1)
5750 return -1;
5751 current_tab = (int)bytes[0];
5752 current_tabmenu = (int)bytes[1];
5753 slen += num_bytes;
5754 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005755# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756# ifndef USE_ON_FLY_SCROLL
5757 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5758 {
5759 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005760 char_u bytes[6];
5761 int num_bytes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005763 // Get the last scrollbar event in the queue of the same type
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 j = 0;
5765 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5766 && tp[j + 2] != NUL; ++i)
5767 {
5768 j += 3;
5769 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5770 if (num_bytes == -1)
5771 break;
5772 if (i == 0)
5773 current_scrollbar = (int)bytes[0];
5774 else if (current_scrollbar != (int)bytes[0])
5775 break;
5776 j += num_bytes;
5777 num_bytes = get_long_from_buf(tp + j, &val);
5778 if (num_bytes == -1)
5779 break;
5780 scrollbar_value = val;
5781 j += num_bytes;
5782 slen = j;
5783 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005784 if (i == 0) // not enough characters to make one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 return -1;
5786 }
5787 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5788 {
5789 long_u val;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02005790 int num_bytes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005792 // Get the last horiz. scrollbar event in the queue
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 j = 0;
5794 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5795 && tp[j + 2] != NUL; ++i)
5796 {
5797 j += 3;
5798 num_bytes = get_long_from_buf(tp + j, &val);
5799 if (num_bytes == -1)
5800 break;
5801 scrollbar_value = val;
5802 j += num_bytes;
5803 slen = j;
5804 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005805 if (i == 0) // not enough characters to make one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 return -1;
5807 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005808# endif // !USE_ON_FLY_SCROLL
5809#endif // FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005811#if (defined(UNIX) || defined(VMS))
5812 /*
5813 * Handle FocusIn/FocusOut event sequences reported by XTerm.
5814 * (CSI I/CSI O)
5815 */
Bram Moolenaar8d5daf22022-03-02 17:16:39 +00005816 if (key_name[0] == KS_EXTRA
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005817# ifdef FEAT_GUI
5818 && !gui.in_use
5819# endif
Bram Moolenaar681fc3f2021-01-14 17:35:21 +01005820 )
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}