blob: 08eee67f5fb3b93f54b70a869583e1d2de601c52 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 *
11 * term.c: functions for controlling the terminal
12 *
Bram Moolenaar48e330a2016-02-23 14:53:34 +010013 * primitive termcap support for Amiga and Win32 included
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * NOTE: padding and variable substitution is not performed,
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies.
17 */
18
19/*
20 * Some systems have a prototype for tgetstr() with (char *) instead of
21 * (char **). This define removes that prototype. We include our own prototype
22 * below.
23 */
24
25#define tgetstr tgetstr_defined_wrong
26#include "vim.h"
27
28#ifdef HAVE_TGETENT
29# ifdef HAVE_TERMIOS_H
30# include <termios.h> /* seems to be required for some Linux */
31# endif
32# ifdef HAVE_TERMCAP_H
33# include <termcap.h>
34# endif
35
36/*
37 * A few linux systems define outfuntype in termcap.h to be used as the third
38 * argument for tputs().
39 */
40# ifdef VMS
41# define TPUTSFUNCAST
42# else
43# ifdef HAVE_OUTFUNTYPE
44# define TPUTSFUNCAST (outfuntype)
45# else
46# define TPUTSFUNCAST (int (*)())
47# endif
48# endif
49#endif
50
51#undef tgetstr
52
53/*
54 * Here are the builtin termcap entries. They are not stored as complete
Bram Moolenaare60acc12011-05-10 16:41:25 +020055 * structures with all entries, as such a structure is too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 *
57 * The entries are compact, therefore they normally are included even when
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc.
60 *
61 * Each termcap is a list of builtin_term structures. It always starts with
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all
63 * details.
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code.
65 *
66 * Entries marked with "guessed" may be wrong.
67 */
68struct builtin_term
69{
70 int bt_entry;
71 char *bt_string;
72};
73
74/* start of keys that are not directly used by Vim but can be mapped */
75#define BT_EXTRA_KEYS 0x101
76
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010077static struct builtin_term *find_builtin_term(char_u *name);
78static void parse_builtin_tcap(char_u *s);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010079static void gather_termleader(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010081static void req_codes_from_term(void);
82static void req_more_codes_from_term(void);
83static void got_code_from_term(char_u *code, int len);
84static void check_for_codes_from_term(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000085#endif
86#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000087 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
88 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010089static int get_bytes_from_buf(char_u *, char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000090#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010091static void del_termcode_idx(int idx);
92static int term_is_builtin(char_u *name);
93static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010095static void switch_to_8bit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#endif
97
98#ifdef HAVE_TGETENT
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010099static char_u *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100
101/*
102 * Here is our own prototype for tgetstr(), any prototypes from the include
103 * files have been disabled by the define at the start of this file.
104 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100105char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106
107# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200108 /* Change this to "if 1" to debug what happens with termresponse. */
109# if 0
110# define DEBUG_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +0200111static void log_tr(const char *fmt, ...);
112# define LOG_TR(msg) log_tr msg
Bram Moolenaar2951b772013-07-03 12:45:31 +0200113# else
Bram Moolenaarb255b902018-04-24 21:40:10 +0200114# define LOG_TR(msg) do { /**/ } while (0)
Bram Moolenaar2951b772013-07-03 12:45:31 +0200115# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200116
117# define STATUS_GET 1 /* send request when switching to RAW mode */
118# define STATUS_SENT 2 /* did send request, waiting for response */
119# define STATUS_GOT 3 /* received response */
120
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121/* Request Terminal Version status: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200122static int crv_status = STATUS_GET;
123
Bram Moolenaar9584b312013-03-13 19:29:28 +0100124/* Request Cursor position report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200125static int u7_status = STATUS_GET;
126
Bram Moolenaar9377df32017-10-15 13:22:01 +0200127# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200128/* Request foreground color report: */
129static int rfg_status = STATUS_GET;
130static int fg_r = 0;
131static int fg_g = 0;
132static int fg_b = 0;
133static int bg_r = 255;
134static int bg_g = 255;
135static int bg_b = 255;
Bram Moolenaar9377df32017-10-15 13:22:01 +0200136# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200137
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200138/* Request background color report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200139static int rbg_status = STATUS_GET;
140
Bram Moolenaar4db25542017-08-28 22:43:05 +0200141/* Request cursor blinking mode report: */
142static int rbm_status = STATUS_GET;
143
144/* Request cursor style report: */
145static int rcs_status = STATUS_GET;
Bram Moolenaar89894aa2018-03-05 22:43:10 +0100146
147/* Request windos position report: */
148static int winpos_status = STATUS_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149# endif
150
151/*
152 * Don't declare these variables if termcap.h contains them.
153 * Autoconf checks if these variables should be declared extern (not all
154 * systems have them).
155 * Some versions define ospeed to be speed_t, but that is incompatible with
156 * BSD, where ospeed is short and speed_t is long.
157 */
158# ifndef HAVE_OSPEED
159# ifdef OSPEED_EXTERN
160extern short ospeed;
161# else
162short ospeed;
163# endif
164# endif
165# ifndef HAVE_UP_BC_PC
166# ifdef UP_BC_PC_EXTERN
167extern char *UP, *BC, PC;
168# else
169char *UP, *BC, PC;
170# endif
171# endif
172
173# define TGETSTR(s, p) vim_tgetstr((s), (p))
174# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100175static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176#endif /* HAVE_TGETENT */
177
178static int detected_8bit = FALSE; /* detected 8-bit terminal */
179
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200180#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200181/* When the cursor shape was detected these values are used:
Bram Moolenaar4db25542017-08-28 22:43:05 +0200182 * 1: block, 2: underline, 3: vertical bar */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200183static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200184
185/* The blink flag from the style response may be inverted from the actual
186 * blinking state, xterm XORs the flags. */
187static int initial_cursor_shape_blink = FALSE;
188
189/* The blink flag from the blinking-cursor mode response */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200190static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200191#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200192
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000193static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194{
195
196#if defined(FEAT_GUI)
197/*
198 * GUI pseudo term-cap.
199 */
200 {(int)KS_NAME, "gui"},
201 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
202 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
203# ifdef TERMINFO
204 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
205# else
206 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
207# endif
208 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
209# ifdef TERMINFO
210 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
211 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213# else
214 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
215 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217# endif
218 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
219 /* attributes switched on with 'h', off with * 'H' */
220 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
221 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
222 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
223 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
224 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
225 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
226 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000227 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
228 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200229 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, /* HL_STRIKETHROUGH */
230 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, /* HL_STRIKETHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
232 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
233 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
234 {(int)KS_MS, "y"},
235 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100236 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 {(int)KS_LE, "\b"}, /* cursor-left = BS */
238 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
239# ifdef TERMINFO
240 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
241# else
242 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
243# endif
244 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000245 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246#endif
247
248#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249
250# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
251/*
252 * Amiga console window, default for Amiga
253 */
254 {(int)KS_NAME, "amiga"},
255 {(int)KS_CE, "\033[K"},
256 {(int)KS_CD, "\033[J"},
257 {(int)KS_AL, "\033[L"},
258# ifdef TERMINFO
259 {(int)KS_CAL, "\033[%p1%dL"},
260# else
261 {(int)KS_CAL, "\033[%dL"},
262# endif
263 {(int)KS_DL, "\033[M"},
264# ifdef TERMINFO
265 {(int)KS_CDL, "\033[%p1%dM"},
266# else
267 {(int)KS_CDL, "\033[%dM"},
268# endif
269 {(int)KS_CL, "\014"},
270 {(int)KS_VI, "\033[0 p"},
271 {(int)KS_VE, "\033[1 p"},
272 {(int)KS_ME, "\033[0m"},
273 {(int)KS_MR, "\033[7m"},
274 {(int)KS_MD, "\033[1m"},
275 {(int)KS_SE, "\033[0m"},
276 {(int)KS_SO, "\033[33m"},
277 {(int)KS_US, "\033[4m"},
278 {(int)KS_UE, "\033[0m"},
279 {(int)KS_CZH, "\033[3m"},
280 {(int)KS_CZR, "\033[0m"},
281#if defined(__MORPHOS__) || defined(__AROS__)
282 {(int)KS_CCO, "8"}, /* allow 8 colors */
283# ifdef TERMINFO
284 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
285 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
286# else
287 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
288 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
289# endif
290 {(int)KS_OP, "\033[m"}, /* reset colors */
291#endif
292 {(int)KS_MS, "y"},
293 {(int)KS_UT, "y"}, /* guessed */
294 {(int)KS_LE, "\b"},
295# ifdef TERMINFO
296 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
297# else
298 {(int)KS_CM, "\033[%i%d;%dH"},
299# endif
300#if defined(__MORPHOS__)
301 {(int)KS_SR, "\033M"},
302#endif
303# ifdef TERMINFO
304 {(int)KS_CRI, "\033[%p1%dC"},
305# else
306 {(int)KS_CRI, "\033[%dC"},
307# endif
308 {K_UP, "\233A"},
309 {K_DOWN, "\233B"},
310 {K_LEFT, "\233D"},
311 {K_RIGHT, "\233C"},
312 {K_S_UP, "\233T"},
313 {K_S_DOWN, "\233S"},
314 {K_S_LEFT, "\233 A"},
315 {K_S_RIGHT, "\233 @"},
316 {K_S_TAB, "\233Z"},
317 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
318 {K_F2, "\233\061~"},
319 {K_F3, "\233\062~"},
320 {K_F4, "\233\063~"},
321 {K_F5, "\233\064~"},
322 {K_F6, "\233\065~"},
323 {K_F7, "\233\066~"},
324 {K_F8, "\233\067~"},
325 {K_F9, "\233\070~"},
326 {K_F10, "\233\071~"},
327 {K_S_F1, "\233\061\060~"},
328 {K_S_F2, "\233\061\061~"},
329 {K_S_F3, "\233\061\062~"},
330 {K_S_F4, "\233\061\063~"},
331 {K_S_F5, "\233\061\064~"},
332 {K_S_F6, "\233\061\065~"},
333 {K_S_F7, "\233\061\066~"},
334 {K_S_F8, "\233\061\067~"},
335 {K_S_F9, "\233\061\070~"},
336 {K_S_F10, "\233\061\071~"},
337 {K_HELP, "\233?~"},
338 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
339 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
340 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
341 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
342 {K_END, "\233\064\065~"}, /* 101 key keyboard */
343
344 {BT_EXTRA_KEYS, ""},
345 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
346 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
347 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
348# endif
349
350# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
351/*
352 * almost standard ANSI terminal, default for bebox
353 */
354 {(int)KS_NAME, "beos-ansi"},
355 {(int)KS_CE, "\033[K"},
356 {(int)KS_CD, "\033[J"},
357 {(int)KS_AL, "\033[L"},
358# ifdef TERMINFO
359 {(int)KS_CAL, "\033[%p1%dL"},
360# else
361 {(int)KS_CAL, "\033[%dL"},
362# endif
363 {(int)KS_DL, "\033[M"},
364# ifdef TERMINFO
365 {(int)KS_CDL, "\033[%p1%dM"},
366# else
367 {(int)KS_CDL, "\033[%dM"},
368# endif
369#ifdef BEOS_PR_OR_BETTER
370# ifdef TERMINFO
371 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
372# else
373 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
374# endif
375#endif
376 {(int)KS_CL, "\033[H\033[2J"},
377#ifdef notyet
378 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
379 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
380#endif
381 {(int)KS_ME, "\033[m"}, /* normal mode */
382 {(int)KS_MR, "\033[7m"}, /* reverse */
383 {(int)KS_MD, "\033[1m"}, /* bold */
384 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
385 {(int)KS_SE, "\033[m"}, /* standout end */
386 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
387 {(int)KS_CZR, "\033[m"}, /* italic end */
388 {(int)KS_US, "\033[4m"}, /* underscore mode */
389 {(int)KS_UE, "\033[m"}, /* underscore end */
390 {(int)KS_CCO, "8"}, /* allow 8 colors */
391# ifdef TERMINFO
392 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
393 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
394# else
395 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
396 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
397# endif
398 {(int)KS_OP, "\033[m"}, /* reset colors */
399 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
400 {(int)KS_UT, "y"}, /* guessed */
401 {(int)KS_LE, "\b"},
402# ifdef TERMINFO
403 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
404# else
405 {(int)KS_CM, "\033[%i%d;%dH"},
406# endif
407 {(int)KS_SR, "\033M"},
408# ifdef TERMINFO
409 {(int)KS_CRI, "\033[%p1%dC"},
410# else
411 {(int)KS_CRI, "\033[%dC"},
412# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200413# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200415# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
417 {K_UP, "\033[A"},
418 {K_DOWN, "\033[B"},
419 {K_LEFT, "\033[D"},
420 {K_RIGHT, "\033[C"},
421# endif
422
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200423# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424/*
425 * standard ANSI terminal, default for unix
426 */
427 {(int)KS_NAME, "ansi"},
428 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
429 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
430# ifdef TERMINFO
431 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
432# else
433 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
434# endif
435 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
436# ifdef TERMINFO
437 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
438# else
439 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
440# endif
441 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
442 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
443 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
444 {(int)KS_MS, "y"},
445 {(int)KS_UT, "y"}, /* guessed */
446 {(int)KS_LE, "\b"},
447# ifdef TERMINFO
448 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
449# else
450 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
451# endif
452# ifdef TERMINFO
453 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
454# else
455 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
456# endif
457# endif
458
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200459# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460/*
461 * These codes are valid when nansi.sys or equivalent has been installed.
462 * Function keys on a PC are preceded with a NUL. These are converted into
463 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
464 * CTRL-arrow is used instead of SHIFT-arrow.
465 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466 {(int)KS_NAME, "pcansi"},
467 {(int)KS_DL, "\033[M"},
468 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 {(int)KS_CE, "\033[K"},
470 {(int)KS_CL, "\033[2J"},
471 {(int)KS_ME, "\033[0m"},
472 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
473 {(int)KS_MD, "\033[1m"}, /* bold: white text */
474 {(int)KS_SE, "\033[0m"}, /* standout end */
475 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
476 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
477 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
478 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
479 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
480 {(int)KS_CCO, "8"}, /* allow 8 colors */
481# ifdef TERMINFO
482 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
483 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
484# else
485 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
486 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
487# endif
488 {(int)KS_OP, "\033[0m"}, /* reset colors */
489 {(int)KS_MS, "y"},
490 {(int)KS_UT, "y"}, /* guessed */
491 {(int)KS_LE, "\b"},
492# ifdef TERMINFO
493 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
494# else
495 {(int)KS_CM, "\033[%i%d;%dH"},
496# endif
497# ifdef TERMINFO
498 {(int)KS_CRI, "\033[%p1%dC"},
499# else
500 {(int)KS_CRI, "\033[%dC"},
501# endif
502 {K_UP, "\316H"},
503 {K_DOWN, "\316P"},
504 {K_LEFT, "\316K"},
505 {K_RIGHT, "\316M"},
506 {K_S_LEFT, "\316s"},
507 {K_S_RIGHT, "\316t"},
508 {K_F1, "\316;"},
509 {K_F2, "\316<"},
510 {K_F3, "\316="},
511 {K_F4, "\316>"},
512 {K_F5, "\316?"},
513 {K_F6, "\316@"},
514 {K_F7, "\316A"},
515 {K_F8, "\316B"},
516 {K_F9, "\316C"},
517 {K_F10, "\316D"},
518 {K_F11, "\316\205"}, /* guessed */
519 {K_F12, "\316\206"}, /* guessed */
520 {K_S_F1, "\316T"},
521 {K_S_F2, "\316U"},
522 {K_S_F3, "\316V"},
523 {K_S_F4, "\316W"},
524 {K_S_F5, "\316X"},
525 {K_S_F6, "\316Y"},
526 {K_S_F7, "\316Z"},
527 {K_S_F8, "\316["},
528 {K_S_F9, "\316\\"},
529 {K_S_F10, "\316]"},
530 {K_S_F11, "\316\207"}, /* guessed */
531 {K_S_F12, "\316\210"}, /* guessed */
532 {K_INS, "\316R"},
533 {K_DEL, "\316S"},
534 {K_HOME, "\316G"},
535 {K_END, "\316O"},
536 {K_PAGEDOWN, "\316Q"},
537 {K_PAGEUP, "\316I"},
538# endif
539
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200540# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541/*
542 * These codes are valid for the Win32 Console . The entries that start with
543 * ESC | are translated into console calls in os_win32.c. The function keys
544 * are also translated in os_win32.c.
545 */
546 {(int)KS_NAME, "win32"},
547 {(int)KS_CE, "\033|K"}, /* clear to end of line */
548 {(int)KS_AL, "\033|L"}, /* add new blank line */
549# ifdef TERMINFO
550 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
551# else
552 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
553# endif
554 {(int)KS_DL, "\033|M"}, /* delete line */
555# ifdef TERMINFO
556 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
557# else
558 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
559# endif
560 {(int)KS_CL, "\033|J"}, /* clear screen */
561 {(int)KS_CD, "\033|j"}, /* clear to end of display */
562 {(int)KS_VI, "\033|v"}, /* cursor invisible */
563 {(int)KS_VE, "\033|V"}, /* cursor visible */
564
565 {(int)KS_ME, "\033|0m"}, /* normal */
566 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
567 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
568#if 1
569 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
570 {(int)KS_SE, "\033|0m"}, /* standout end */
571#else
572 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
573 {(int)KS_SE, "\033|f"}, /* standout end */
574#endif
575 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
576 {(int)KS_CZR, "\033|0m"}, /* italic end */
577 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
578 {(int)KS_UE, "\033|0m"}, /* underscore end */
579 {(int)KS_CCO, "16"}, /* allow 16 colors */
580# ifdef TERMINFO
581 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
582 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
583# else
584 {(int)KS_CAB, "\033|%db"}, /* set background color */
585 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
586# endif
587
588 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
589 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100590 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 {(int)KS_LE, "\b"},
592# ifdef TERMINFO
593 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
594# else
595 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
596# endif
597 {(int)KS_VB, "\033|B"}, /* visual bell */
598 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
599 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
600# ifdef TERMINFO
601 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
602# else
603 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
604# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100605# ifdef FEAT_TERMGUICOLORS
606 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
607 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
608# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609
610 {K_UP, "\316H"},
611 {K_DOWN, "\316P"},
612 {K_LEFT, "\316K"},
613 {K_RIGHT, "\316M"},
614 {K_S_UP, "\316\304"},
615 {K_S_DOWN, "\316\317"},
616 {K_S_LEFT, "\316\311"},
617 {K_C_LEFT, "\316s"},
618 {K_S_RIGHT, "\316\313"},
619 {K_C_RIGHT, "\316t"},
620 {K_S_TAB, "\316\017"},
621 {K_F1, "\316;"},
622 {K_F2, "\316<"},
623 {K_F3, "\316="},
624 {K_F4, "\316>"},
625 {K_F5, "\316?"},
626 {K_F6, "\316@"},
627 {K_F7, "\316A"},
628 {K_F8, "\316B"},
629 {K_F9, "\316C"},
630 {K_F10, "\316D"},
631 {K_F11, "\316\205"},
632 {K_F12, "\316\206"},
633 {K_S_F1, "\316T"},
634 {K_S_F2, "\316U"},
635 {K_S_F3, "\316V"},
636 {K_S_F4, "\316W"},
637 {K_S_F5, "\316X"},
638 {K_S_F6, "\316Y"},
639 {K_S_F7, "\316Z"},
640 {K_S_F8, "\316["},
641 {K_S_F9, "\316\\"},
642 {K_S_F10, "\316]"},
643 {K_S_F11, "\316\207"},
644 {K_S_F12, "\316\210"},
645 {K_INS, "\316R"},
646 {K_DEL, "\316S"},
647 {K_HOME, "\316G"},
648 {K_S_HOME, "\316\302"},
649 {K_C_HOME, "\316w"},
650 {K_END, "\316O"},
651 {K_S_END, "\316\315"},
652 {K_C_END, "\316u"},
653 {K_PAGEDOWN, "\316Q"},
654 {K_PAGEUP, "\316I"},
655 {K_KPLUS, "\316N"},
656 {K_KMINUS, "\316J"},
657 {K_KMULTIPLY, "\316\067"},
658 {K_K0, "\316\332"},
659 {K_K1, "\316\336"},
660 {K_K2, "\316\342"},
661 {K_K3, "\316\346"},
662 {K_K4, "\316\352"},
663 {K_K5, "\316\356"},
664 {K_K6, "\316\362"},
665 {K_K7, "\316\366"},
666 {K_K8, "\316\372"},
667 {K_K9, "\316\376"},
668# endif
669
670# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
671/*
672 * VT320 is working as an ANSI terminal compatible DEC terminal.
673 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
674 * Note: K_F1...K_F5 are for internal use, should not be defined.
675 * TODO:- rewrite ESC[ codes to CSI
676 * - keyboard languages (CSI ? 26 n)
677 */
678 {(int)KS_NAME, "vt320"},
679 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
680 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
681# ifdef TERMINFO
682 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
683# else
684 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
685# endif
686 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
687# ifdef TERMINFO
688 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
689# else
690 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
691# endif
692 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000693 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
694 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
696 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000697 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
698 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
699 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
700 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
701 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
702 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
703 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
704 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
705 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
706 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 {(int)KS_MS, "y"},
708 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100709 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 {(int)KS_LE, "\b"},
711# ifdef TERMINFO
712 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
713 ESC_STR "[%i%p1%d;%p2%dH")},
714# else
715 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
716# endif
717# ifdef TERMINFO
718 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
719# else
720 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
721# endif
722 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
723 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
724 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
725 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000726 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
727 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
728 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
729 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
730 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
732 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
733 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
734 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
735 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000736 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
738 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
739 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
740 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
741 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
742 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
743 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
744 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
745 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
746 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
747 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
748 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
749 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
750 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
751 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
752 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
753 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
754 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
755 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
756 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
757 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
758# endif
759
760# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
761/*
762 * Ordinary vt52
763 */
764 {(int)KS_NAME, "vt52"},
765 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
766 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100767# ifdef TERMINFO
768 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
769 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
770# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100772# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100774 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
776 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 {K_UP, IF_EB("\033A", ESC_STR "A")},
778 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
779 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
780 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100781 {K_F1, IF_EB("\033P", ESC_STR "P")},
782 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
783 {K_F3, IF_EB("\033R", ESC_STR "R")},
784# ifdef __MINT__
785 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
786 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
787 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
788 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
789 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
791 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
792 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
793 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 {K_F4, IF_EB("\033S", ESC_STR "S")},
795 {K_F5, IF_EB("\033T", ESC_STR "T")},
796 {K_F6, IF_EB("\033U", ESC_STR "U")},
797 {K_F7, IF_EB("\033V", ESC_STR "V")},
798 {K_F8, IF_EB("\033W", ESC_STR "W")},
799 {K_F9, IF_EB("\033X", ESC_STR "X")},
800 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
801 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
802 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
803 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
804 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
805 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
806 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
807 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
808 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
809 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
810 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
811 {K_INS, IF_EB("\033I", ESC_STR "I")},
812 {K_HOME, IF_EB("\033E", ESC_STR "E")},
813 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
814 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
815# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 {(int)KS_MS, "y"},
818# endif
819# endif
820
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200821# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200822 {(int)KS_NAME, "xterm"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
824 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
825# ifdef TERMINFO
826 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
827# else
828 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
829# endif
830 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
831# ifdef TERMINFO
832 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
833# else
834 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
835# endif
836# ifdef TERMINFO
837 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
838 ESC_STR "[%i%p1%d;%p2%dr")},
839# else
840 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
841# endif
842 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
843 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
844 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
845 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
846 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
847 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
848 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200849 {(int)KS_STE, IF_EB("\033[29m", ESC_STR "[29m")},
850 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 {(int)KS_MS, "y"},
852 {(int)KS_UT, "y"},
853 {(int)KS_LE, "\b"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200854 {(int)KS_VI, IF_EB("\033[?25l", ESC_STR "[?25l")},
855 {(int)KS_VE, IF_EB("\033[?25h", ESC_STR "[?25h")},
Bram Moolenaar93c92ef2017-08-19 21:11:57 +0200856 {(int)KS_VS, IF_EB("\033[?12h", ESC_STR "[?12h")},
Bram Moolenaarce1c3272017-08-20 15:05:15 +0200857 {(int)KS_CVS, IF_EB("\033[?12l", ESC_STR "[?12l")},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200858# ifdef TERMINFO
859 {(int)KS_CSH, IF_EB("\033[%p1%d q", ESC_STR "[%p1%d q")},
860# else
861 {(int)KS_CSH, IF_EB("\033[%d q", ESC_STR "[%d q")},
862# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +0200863 {(int)KS_CRC, IF_EB("\033[?12$p", ESC_STR "[?12$p")},
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200864 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865# ifdef TERMINFO
866 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
867 ESC_STR "[%i%p1%d;%p2%dH")},
868# else
869 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
870# endif
871 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
872# ifdef TERMINFO
873 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
874# else
875 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
876# endif
877 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
878 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
879# ifdef FEAT_XTERM_SAVE
880 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
881 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
882 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
883# endif
884 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
885 {(int)KS_CIE, "\007"},
886 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
887 {(int)KS_FS, "\007"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200888 {(int)KS_CSC, IF_EB("\033]12;", ESC_STR "]12;")},
889 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890# ifdef TERMINFO
891 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
892 ESC_STR "[8;%p1%d;%p2%dt")},
893 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
894 ESC_STR "[3;%p1%d;%p2%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200895 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896# else
897 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
898 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200899 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900# endif
901 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200902 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200903 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100904 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200905# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200906 /* These are printf strings, not terminal codes. */
907 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
908 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
909# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +0100910 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")},
911 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000912
913 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
914 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
915 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
916 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
917 /* An extra set of cursor keys for vt100 mode */
918 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
919 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
920 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
921 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000923 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
924 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
925 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
926 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000927 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
928 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
929 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
930 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
931 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
932 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
933 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
934 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
935 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
936 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
937 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
938 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000940 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
941 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
942 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
943 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000944 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
945 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000946 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000947 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000948 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000949 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000950 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
951 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000952 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000953 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000954 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000955 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
956 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100957 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
958 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
959 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
960 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
961 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
962 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
963 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
964 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */
965 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966
967 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000968 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
969 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
970 /* F14 and F15 are missing, because they send the same codes as the undo
971 * and help key, although they don't work on all keyboards. */
972 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
973 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
974 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
975 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
976 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
977
978 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
979 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
980 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
981 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
982 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
983 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
984 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
985 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
986 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
987 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
988
989 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
990 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
991 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
992 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
993 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
994 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
995 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996# endif
997
998# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
999/*
1000 * iris-ansi for Silicon Graphics machines.
1001 */
1002 {(int)KS_NAME, "iris-ansi"},
1003 {(int)KS_CE, "\033[K"},
1004 {(int)KS_CD, "\033[J"},
1005 {(int)KS_AL, "\033[L"},
1006# ifdef TERMINFO
1007 {(int)KS_CAL, "\033[%p1%dL"},
1008# else
1009 {(int)KS_CAL, "\033[%dL"},
1010# endif
1011 {(int)KS_DL, "\033[M"},
1012# ifdef TERMINFO
1013 {(int)KS_CDL, "\033[%p1%dM"},
1014# else
1015 {(int)KS_CDL, "\033[%dM"},
1016# endif
1017#if 0 /* The scroll region is not working as Vim expects. */
1018# ifdef TERMINFO
1019 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1020# else
1021 {(int)KS_CS, "\033[%i%d;%dr"},
1022# endif
1023#endif
1024 {(int)KS_CL, "\033[H\033[2J"},
1025 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
1026 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1027 {(int)KS_TI, "\033[=6h"},
1028 {(int)KS_TE, "\033[=6l"},
1029 {(int)KS_SE, "\033[21;27m"},
1030 {(int)KS_SO, "\033[1;7m"},
1031 {(int)KS_ME, "\033[m"},
1032 {(int)KS_MR, "\033[7m"},
1033 {(int)KS_MD, "\033[1m"},
1034 {(int)KS_CCO, "8"}, /* allow 8 colors */
1035 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
1036 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
1037 {(int)KS_US, "\033[4m"}, /* underline on */
1038 {(int)KS_UE, "\033[24m"}, /* underline off */
1039# ifdef TERMINFO
1040 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
1041 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1042 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
1043 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
1044# else
1045 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1046 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1047 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1048 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1049# endif
1050 {(int)KS_MS, "y"}, /* guessed */
1051 {(int)KS_UT, "y"}, /* guessed */
1052 {(int)KS_LE, "\b"},
1053# ifdef TERMINFO
1054 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1055# else
1056 {(int)KS_CM, "\033[%i%d;%dH"},
1057# endif
1058 {(int)KS_SR, "\033M"},
1059# ifdef TERMINFO
1060 {(int)KS_CRI, "\033[%p1%dC"},
1061# else
1062 {(int)KS_CRI, "\033[%dC"},
1063# endif
1064 {(int)KS_CIS, "\033P3.y"},
1065 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1066 {(int)KS_TS, "\033P1.y"},
1067 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1068# ifdef TERMINFO
1069 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1070 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1071# else
1072 {(int)KS_CWS, "\033[203;%d;%d/y"},
1073 {(int)KS_CWP, "\033[205;%d;%d/y"},
1074# endif
1075 {K_UP, "\033[A"},
1076 {K_DOWN, "\033[B"},
1077 {K_LEFT, "\033[D"},
1078 {K_RIGHT, "\033[C"},
1079 {K_S_UP, "\033[161q"},
1080 {K_S_DOWN, "\033[164q"},
1081 {K_S_LEFT, "\033[158q"},
1082 {K_S_RIGHT, "\033[167q"},
1083 {K_F1, "\033[001q"},
1084 {K_F2, "\033[002q"},
1085 {K_F3, "\033[003q"},
1086 {K_F4, "\033[004q"},
1087 {K_F5, "\033[005q"},
1088 {K_F6, "\033[006q"},
1089 {K_F7, "\033[007q"},
1090 {K_F8, "\033[008q"},
1091 {K_F9, "\033[009q"},
1092 {K_F10, "\033[010q"},
1093 {K_F11, "\033[011q"},
1094 {K_F12, "\033[012q"},
1095 {K_S_F1, "\033[013q"},
1096 {K_S_F2, "\033[014q"},
1097 {K_S_F3, "\033[015q"},
1098 {K_S_F4, "\033[016q"},
1099 {K_S_F5, "\033[017q"},
1100 {K_S_F6, "\033[018q"},
1101 {K_S_F7, "\033[019q"},
1102 {K_S_F8, "\033[020q"},
1103 {K_S_F9, "\033[021q"},
1104 {K_S_F10, "\033[022q"},
1105 {K_S_F11, "\033[023q"},
1106 {K_S_F12, "\033[024q"},
1107 {K_INS, "\033[139q"},
1108 {K_HOME, "\033[H"},
1109 {K_END, "\033[146q"},
1110 {K_PAGEUP, "\033[150q"},
1111 {K_PAGEDOWN, "\033[154q"},
1112# endif
1113
1114# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1115/*
1116 * for debugging
1117 */
1118 {(int)KS_NAME, "debug"},
1119 {(int)KS_CE, "[CE]"},
1120 {(int)KS_CD, "[CD]"},
1121 {(int)KS_AL, "[AL]"},
1122# ifdef TERMINFO
1123 {(int)KS_CAL, "[CAL%p1%d]"},
1124# else
1125 {(int)KS_CAL, "[CAL%d]"},
1126# endif
1127 {(int)KS_DL, "[DL]"},
1128# ifdef TERMINFO
1129 {(int)KS_CDL, "[CDL%p1%d]"},
1130# else
1131 {(int)KS_CDL, "[CDL%d]"},
1132# endif
1133# ifdef TERMINFO
1134 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1135# else
1136 {(int)KS_CS, "[%dCS%d]"},
1137# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001138# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001140# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142# endif
1143# ifdef TERMINFO
1144 {(int)KS_CAB, "[CAB%p1%d]"},
1145 {(int)KS_CAF, "[CAF%p1%d]"},
1146 {(int)KS_CSB, "[CSB%p1%d]"},
1147 {(int)KS_CSF, "[CSF%p1%d]"},
1148# else
1149 {(int)KS_CAB, "[CAB%d]"},
1150 {(int)KS_CAF, "[CAF%d]"},
1151 {(int)KS_CSB, "[CSB%d]"},
1152 {(int)KS_CSF, "[CSF%d]"},
1153# endif
1154 {(int)KS_OP, "[OP]"},
1155 {(int)KS_LE, "[LE]"},
1156 {(int)KS_CL, "[CL]"},
1157 {(int)KS_VI, "[VI]"},
1158 {(int)KS_VE, "[VE]"},
1159 {(int)KS_VS, "[VS]"},
1160 {(int)KS_ME, "[ME]"},
1161 {(int)KS_MR, "[MR]"},
1162 {(int)KS_MB, "[MB]"},
1163 {(int)KS_MD, "[MD]"},
1164 {(int)KS_SE, "[SE]"},
1165 {(int)KS_SO, "[SO]"},
1166 {(int)KS_UE, "[UE]"},
1167 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001168 {(int)KS_UCE, "[UCE]"},
1169 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001170 {(int)KS_STE, "[STE]"},
1171 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 {(int)KS_MS, "[MS]"},
1173 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001174 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175# ifdef TERMINFO
1176 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1177# else
1178 {(int)KS_CM, "[%dCM%d]"},
1179# endif
1180 {(int)KS_SR, "[SR]"},
1181# ifdef TERMINFO
1182 {(int)KS_CRI, "[CRI%p1%d]"},
1183# else
1184 {(int)KS_CRI, "[CRI%d]"},
1185# endif
1186 {(int)KS_VB, "[VB]"},
1187 {(int)KS_KS, "[KS]"},
1188 {(int)KS_KE, "[KE]"},
1189 {(int)KS_TI, "[TI]"},
1190 {(int)KS_TE, "[TE]"},
1191 {(int)KS_CIS, "[CIS]"},
1192 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001193 {(int)KS_CSC, "[CSC]"},
1194 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 {(int)KS_TS, "[TS]"},
1196 {(int)KS_FS, "[FS]"},
1197# ifdef TERMINFO
1198 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1199 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1200# else
1201 {(int)KS_CWS, "[%dCWS%d]"},
1202 {(int)KS_CWP, "[%dCWP%d]"},
1203# endif
1204 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001205 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001206 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001207 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 {K_UP, "[KU]"},
1209 {K_DOWN, "[KD]"},
1210 {K_LEFT, "[KL]"},
1211 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001212 {K_XUP, "[xKU]"},
1213 {K_XDOWN, "[xKD]"},
1214 {K_XLEFT, "[xKL]"},
1215 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 {K_S_UP, "[S-KU]"},
1217 {K_S_DOWN, "[S-KD]"},
1218 {K_S_LEFT, "[S-KL]"},
1219 {K_C_LEFT, "[C-KL]"},
1220 {K_S_RIGHT, "[S-KR]"},
1221 {K_C_RIGHT, "[C-KR]"},
1222 {K_F1, "[F1]"},
1223 {K_XF1, "[xF1]"},
1224 {K_F2, "[F2]"},
1225 {K_XF2, "[xF2]"},
1226 {K_F3, "[F3]"},
1227 {K_XF3, "[xF3]"},
1228 {K_F4, "[F4]"},
1229 {K_XF4, "[xF4]"},
1230 {K_F5, "[F5]"},
1231 {K_F6, "[F6]"},
1232 {K_F7, "[F7]"},
1233 {K_F8, "[F8]"},
1234 {K_F9, "[F9]"},
1235 {K_F10, "[F10]"},
1236 {K_F11, "[F11]"},
1237 {K_F12, "[F12]"},
1238 {K_S_F1, "[S-F1]"},
1239 {K_S_XF1, "[S-xF1]"},
1240 {K_S_F2, "[S-F2]"},
1241 {K_S_XF2, "[S-xF2]"},
1242 {K_S_F3, "[S-F3]"},
1243 {K_S_XF3, "[S-xF3]"},
1244 {K_S_F4, "[S-F4]"},
1245 {K_S_XF4, "[S-xF4]"},
1246 {K_S_F5, "[S-F5]"},
1247 {K_S_F6, "[S-F6]"},
1248 {K_S_F7, "[S-F7]"},
1249 {K_S_F8, "[S-F8]"},
1250 {K_S_F9, "[S-F9]"},
1251 {K_S_F10, "[S-F10]"},
1252 {K_S_F11, "[S-F11]"},
1253 {K_S_F12, "[S-F12]"},
1254 {K_HELP, "[HELP]"},
1255 {K_UNDO, "[UNDO]"},
1256 {K_BS, "[BS]"},
1257 {K_INS, "[INS]"},
1258 {K_KINS, "[KINS]"},
1259 {K_DEL, "[DEL]"},
1260 {K_KDEL, "[KDEL]"},
1261 {K_HOME, "[HOME]"},
1262 {K_S_HOME, "[C-HOME]"},
1263 {K_C_HOME, "[C-HOME]"},
1264 {K_KHOME, "[KHOME]"},
1265 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001266 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 {K_END, "[END]"},
1268 {K_S_END, "[C-END]"},
1269 {K_C_END, "[C-END]"},
1270 {K_KEND, "[KEND]"},
1271 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001272 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 {K_PAGEUP, "[PAGEUP]"},
1274 {K_PAGEDOWN, "[PAGEDOWN]"},
1275 {K_KPAGEUP, "[KPAGEUP]"},
1276 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1277 {K_MOUSE, "[MOUSE]"},
1278 {K_KPLUS, "[KPLUS]"},
1279 {K_KMINUS, "[KMINUS]"},
1280 {K_KDIVIDE, "[KDIVIDE]"},
1281 {K_KMULTIPLY, "[KMULTIPLY]"},
1282 {K_KENTER, "[KENTER]"},
1283 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001284 {K_PS, "[PASTE-START]"},
1285 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 {K_K0, "[K0]"},
1287 {K_K1, "[K1]"},
1288 {K_K2, "[K2]"},
1289 {K_K3, "[K3]"},
1290 {K_K4, "[K4]"},
1291 {K_K5, "[K5]"},
1292 {K_K6, "[K6]"},
1293 {K_K7, "[K7]"},
1294 {K_K8, "[K8]"},
1295 {K_K9, "[K9]"},
1296# endif
1297
1298#endif /* NO_BUILTIN_TCAPS */
1299
1300/*
1301 * The most minimal terminal: only clear screen and cursor positioning
1302 * Always included.
1303 */
1304 {(int)KS_NAME, "dumb"},
1305 {(int)KS_CL, "\014"},
1306#ifdef TERMINFO
1307 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1308 ESC_STR "[%i%p1%d;%p2%dH")},
1309#else
1310 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1311#endif
1312
1313/*
1314 * end marker
1315 */
1316 {(int)KS_NAME, NULL}
1317
1318}; /* end of builtin_termcaps */
1319
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001320#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001321 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001322termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001323{
Bram Moolenaarab302212016-04-26 20:59:29 +02001324 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001325}
1326
1327 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001328termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001329{
1330 guicolor_T t;
1331
1332 if (*name == NUL)
1333 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001334 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001335
1336 if (t == INVALCOLOR)
1337 EMSG2(_("E254: Cannot allocate color %s"), name);
1338 return t;
1339}
1340
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001341 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001342termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001343{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001344 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001345}
1346#endif
1347
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348/*
1349 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1350 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351#ifdef AMIGA
1352# define DEFAULT_TERM (char_u *)"amiga"
1353#endif
1354
1355#ifdef MSWIN
1356# define DEFAULT_TERM (char_u *)"win32"
1357#endif
1358
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359#if defined(UNIX) && !defined(__MINT__)
1360# define DEFAULT_TERM (char_u *)"ansi"
1361#endif
1362
1363#ifdef __MINT__
1364# define DEFAULT_TERM (char_u *)"vt52"
1365#endif
1366
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367#ifdef VMS
1368# define DEFAULT_TERM (char_u *)"vt320"
1369#endif
1370
1371#ifdef __BEOS__
1372# undef DEFAULT_TERM
1373# define DEFAULT_TERM (char_u *)"beos-ansi"
1374#endif
1375
1376#ifndef DEFAULT_TERM
1377# define DEFAULT_TERM (char_u *)"dumb"
1378#endif
1379
1380/*
1381 * Term_strings contains currently used terminal output strings.
1382 * It is initialized with the default values by parse_builtin_tcap().
1383 * The values can be changed by setting the option with the same name.
1384 */
1385char_u *(term_strings[(int)KS_LAST + 1]);
1386
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001387static int need_gather = FALSE; /* need to fill termleader[] */
1388static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001390static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02001391static int is_not_xterm = FALSE; /* recognized not-really-xterm */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392#endif
1393
1394 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001395find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396{
1397 struct builtin_term *p;
1398
1399 p = builtin_termcaps;
1400 while (p->bt_string != NULL)
1401 {
1402 if (p->bt_entry == (int)KS_NAME)
1403 {
1404#ifdef UNIX
1405 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1406 return p;
1407 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1408 return p;
1409 else
1410#endif
1411#ifdef VMS
1412 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1413 return p;
1414 else
1415#endif
1416 if (STRCMP(term, p->bt_string) == 0)
1417 return p;
1418 }
1419 ++p;
1420 }
1421 return p;
1422}
1423
1424/*
1425 * Parsing of the builtin termcap entries.
1426 * Caller should check if 'name' is a valid builtin term.
1427 * The terminal's name is not set, as this is already done in termcapinit().
1428 */
1429 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001430parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431{
1432 struct builtin_term *p;
1433 char_u name[2];
1434 int term_8bit;
1435
1436 p = find_builtin_term(term);
1437 term_8bit = term_is_8bit(term);
1438
1439 /* Do not parse if builtin term not found */
1440 if (p->bt_string == NULL)
1441 return;
1442
1443 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1444 {
1445 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1446 {
1447 /* Only set the value if it wasn't set yet. */
1448 if (term_strings[p->bt_entry] == NULL
1449 || term_strings[p->bt_entry] == empty_option)
1450 {
1451 /* 8bit terminal: use CSI instead of <Esc>[ */
1452 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1453 {
1454 char_u *s, *t;
1455
1456 s = vim_strsave((char_u *)p->bt_string);
1457 if (s != NULL)
1458 {
1459 for (t = s; *t; ++t)
1460 if (term_7to8bit(t))
1461 {
1462 *t = term_7to8bit(t);
1463 STRCPY(t + 1, t + 2);
1464 }
1465 term_strings[p->bt_entry] = s;
1466 set_term_option_alloced(&term_strings[p->bt_entry]);
1467 }
1468 }
1469 else
1470 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1471 }
1472 }
1473 else
1474 {
1475 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1476 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1477 if (find_termcode(name) == NULL)
1478 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1479 }
1480 }
1481}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001482
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483/*
1484 * Set number of colors.
1485 * Store it as a number in t_colors.
1486 * Store it as a string in T_CCO (using nr_colors[]).
1487 */
1488 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001489set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490{
1491 char_u nr_colors[20]; /* string for number of colors */
1492
1493 t_colors = nr;
1494 if (t_colors > 1)
1495 sprintf((char *)nr_colors, "%d", t_colors);
1496 else
1497 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001498 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001500
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001501#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001502/*
1503 * Set the color count to "val" and redraw if it changed.
1504 */
1505 static void
1506may_adjust_color_count(int val)
1507{
1508 if (val != t_colors)
1509 {
1510 /* Nr of colors changed, initialize highlighting and
1511 * redraw everything. This causes a redraw, which usually
1512 * clears the message. Try keeping the message if it
1513 * might work. */
1514 set_keep_msg_from_hist();
1515 set_color_count(val);
1516 init_highlight(TRUE, FALSE);
1517# ifdef DEBUG_TERMRESPONSE
1518 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02001519 int r = redraw_asap(CLEAR);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001520
Bram Moolenaarb255b902018-04-24 21:40:10 +02001521 log_tr("Received t_Co, redraw_asap(): %d", r);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001522 }
Bram Moolenaarb255b902018-04-24 21:40:10 +02001523#else
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001524 redraw_asap(CLEAR);
Bram Moolenaarb255b902018-04-24 21:40:10 +02001525#endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001526 }
1527}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528#endif
1529
1530#ifdef HAVE_TGETENT
1531static char *(key_names[]) =
1532{
1533#ifdef FEAT_TERMRESPONSE
1534 /* Do this one first, it may cause a screen redraw. */
1535 "Co",
1536#endif
1537 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 "#2", "#4", "%i", "*7",
1539 "k1", "k2", "k3", "k4", "k5", "k6",
1540 "k7", "k8", "k9", "k;", "F1", "F2",
1541 "%1", "&8", "kb", "kI", "kD", "kh",
1542 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1543 NULL
1544};
1545#endif
1546
1547/*
1548 * Set terminal options for terminal "term".
1549 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1550 *
1551 * While doing this, until ttest(), some options may be NULL, be careful.
1552 */
1553 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001554set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555{
1556 struct builtin_term *termp;
1557#ifdef HAVE_TGETENT
1558 int builtin_first = p_tbi;
1559 int try;
1560 int termcap_cleared = FALSE;
1561#endif
1562 int width = 0, height = 0;
1563 char_u *error_msg = NULL;
1564 char_u *bs_p, *del_p;
1565
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001566 /* In silect mode (ex -s) we don't use the 'term' option. */
1567 if (silent_mode)
1568 return OK;
1569
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 detected_8bit = FALSE; /* reset 8-bit detection */
1571
1572 if (term_is_builtin(term))
1573 {
1574 term += 8;
1575#ifdef HAVE_TGETENT
1576 builtin_first = 1;
1577#endif
1578 }
1579
1580/*
1581 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1582 * If builtin_first is TRUE:
1583 * 0. try builtin termcap
1584 * 1. try external termcap
1585 * 2. if both fail default to a builtin terminal
1586 * If builtin_first is FALSE:
1587 * 1. try external termcap
1588 * 2. try builtin termcap, if both fail default to a builtin terminal
1589 */
1590#ifdef HAVE_TGETENT
1591 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1592 {
1593 /*
1594 * Use external termcap
1595 */
1596 if (try == 1)
1597 {
1598 char_u *p;
1599 static char_u tstrbuf[TBUFSZ];
1600 int i;
1601 char_u tbuf[TBUFSZ];
1602 char_u *tp;
1603 static struct {
1604 enum SpecialKey dest; /* index in term_strings[] */
1605 char *name; /* termcap name for string */
1606 } string_names[] =
1607 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1608 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1609 {KS_CL, "cl"}, {KS_CD, "cd"},
1610 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
Bram Moolenaarce1c3272017-08-20 15:05:15 +02001611 {KS_ME, "me"}, {KS_MR, "mr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1613 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001614 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001615 {KS_STE,"Te"}, {KS_STS,"Ts"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001616 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1618 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1619 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1620 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1621 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
Bram Moolenaarce1c3272017-08-20 15:05:15 +02001622 {KS_VS, "vs"}, {KS_CVS, "VS"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 {KS_CIS, "IS"}, {KS_CIE, "IE"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001624 {KS_CSC, "SC"}, {KS_CEC, "EC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 {KS_TS, "ts"}, {KS_FS, "fs"},
1626 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001627 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001628 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001629 {KS_8F, "8f"}, {KS_8B, "8b"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001630 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1631 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 {(enum SpecialKey)0, NULL}
1633 };
1634
1635 /*
1636 * If the external termcap does not have a matching entry, try the
1637 * builtin ones.
1638 */
1639 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1640 {
1641 tp = tstrbuf;
1642 if (!termcap_cleared)
1643 {
1644 clear_termoptions(); /* clear old options */
1645 termcap_cleared = TRUE;
1646 }
1647
1648 /* get output strings */
1649 for (i = 0; string_names[i].name != NULL; ++i)
1650 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001651 if (TERM_STR(string_names[i].dest) == NULL
1652 || TERM_STR(string_names[i].dest) == empty_option)
1653 TERM_STR(string_names[i].dest) =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 TGETSTR(string_names[i].name, &tp);
1655 }
1656
1657 /* tgetflag() returns 1 if the flag is present, 0 if not and
1658 * possibly -1 if the flag doesn't exist. */
1659 if ((T_MS == NULL || T_MS == empty_option)
1660 && tgetflag("ms") > 0)
1661 T_MS = (char_u *)"y";
1662 if ((T_XS == NULL || T_XS == empty_option)
1663 && tgetflag("xs") > 0)
1664 T_XS = (char_u *)"y";
Bram Moolenaar494838a2015-02-10 19:20:37 +01001665 if ((T_XN == NULL || T_XN == empty_option)
1666 && tgetflag("xn") > 0)
1667 T_XN = (char_u *)"y";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 if ((T_DB == NULL || T_DB == empty_option)
1669 && tgetflag("db") > 0)
1670 T_DB = (char_u *)"y";
1671 if ((T_DA == NULL || T_DA == empty_option)
1672 && tgetflag("da") > 0)
1673 T_DA = (char_u *)"y";
1674 if ((T_UT == NULL || T_UT == empty_option)
1675 && tgetflag("ut") > 0)
1676 T_UT = (char_u *)"y";
1677
1678
1679 /*
1680 * get key codes
1681 */
1682 for (i = 0; key_names[i] != NULL; ++i)
1683 {
1684 if (find_termcode((char_u *)key_names[i]) == NULL)
1685 {
1686 p = TGETSTR(key_names[i], &tp);
1687 /* if cursor-left == backspace, ignore it (televideo
1688 * 925) */
1689 if (p != NULL
1690 && (*p != Ctrl_H
1691 || key_names[i][0] != 'k'
1692 || key_names[i][1] != 'l'))
1693 add_termcode((char_u *)key_names[i], p, FALSE);
1694 }
1695 }
1696
1697 if (height == 0)
1698 height = tgetnum("li");
1699 if (width == 0)
1700 width = tgetnum("co");
1701
1702 /*
1703 * Get number of colors (if not done already).
1704 */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001705 if (TERM_STR(KS_CCO) == NULL
1706 || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 set_color_count(tgetnum("Co"));
1708
1709# ifndef hpux
1710 BC = (char *)TGETSTR("bc", &tp);
1711 UP = (char *)TGETSTR("up", &tp);
1712 p = TGETSTR("pc", &tp);
1713 if (p)
1714 PC = *p;
1715# endif /* hpux */
1716 }
1717 }
1718 else /* try == 0 || try == 2 */
1719#endif /* HAVE_TGETENT */
1720 /*
1721 * Use builtin termcap
1722 */
1723 {
1724#ifdef HAVE_TGETENT
1725 /*
1726 * If builtin termcap was already used, there is no need to search
1727 * for the builtin termcap again, quit now.
1728 */
1729 if (try == 2 && builtin_first && termcap_cleared)
1730 break;
1731#endif
1732 /*
1733 * search for 'term' in builtin_termcaps[]
1734 */
1735 termp = find_builtin_term(term);
1736 if (termp->bt_string == NULL) /* did not find it */
1737 {
1738#ifdef HAVE_TGETENT
1739 /*
1740 * If try == 0, first try the external termcap. If that is not
1741 * found we'll get back here with try == 2.
1742 * If termcap_cleared is set we used the external termcap,
1743 * don't complain about not finding the term in the builtin
1744 * termcap.
1745 */
1746 if (try == 0) /* try external one */
1747 continue;
1748 if (termcap_cleared) /* found in external termcap */
1749 break;
1750#endif
1751
1752 mch_errmsg("\r\n");
1753 if (error_msg != NULL)
1754 {
1755 mch_errmsg((char *)error_msg);
1756 mch_errmsg("\r\n");
1757 }
1758 mch_errmsg("'");
1759 mch_errmsg((char *)term);
1760 mch_errmsg(_("' not known. Available builtin terminals are:"));
1761 mch_errmsg("\r\n");
1762 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1763 ++termp)
1764 {
1765 if (termp->bt_entry == (int)KS_NAME)
1766 {
1767#ifdef HAVE_TGETENT
1768 mch_errmsg(" builtin_");
1769#else
1770 mch_errmsg(" ");
1771#endif
1772 mch_errmsg(termp->bt_string);
1773 mch_errmsg("\r\n");
1774 }
1775 }
1776 /* when user typed :set term=xxx, quit here */
1777 if (starting != NO_SCREEN)
1778 {
1779 screen_start(); /* don't know where cursor is now */
1780 wait_return(TRUE);
1781 return FAIL;
1782 }
1783 term = DEFAULT_TERM;
1784 mch_errmsg(_("defaulting to '"));
1785 mch_errmsg((char *)term);
1786 mch_errmsg("'\r\n");
1787 if (emsg_silent == 0)
1788 {
1789 screen_start(); /* don't know where cursor is now */
1790 out_flush();
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001791 if (!is_not_a_term())
1792 ui_delay(2000L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001794 set_string_option_direct((char_u *)"term", -1, term,
1795 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 display_errors();
1797 }
1798 out_flush();
1799#ifdef HAVE_TGETENT
1800 if (!termcap_cleared)
1801 {
1802#endif
1803 clear_termoptions(); /* clear old options */
1804#ifdef HAVE_TGETENT
1805 termcap_cleared = TRUE;
1806 }
1807#endif
1808 parse_builtin_tcap(term);
1809#ifdef FEAT_GUI
1810 if (term_is_gui(term))
1811 {
1812 out_flush();
1813 gui_init();
1814 /* If starting the GUI failed, don't do any of the other
1815 * things for this terminal */
1816 if (!gui.in_use)
1817 return FAIL;
1818#ifdef HAVE_TGETENT
1819 break; /* don't try using external termcap */
1820#endif
1821 }
1822#endif /* FEAT_GUI */
1823 }
1824#ifdef HAVE_TGETENT
1825 }
1826#endif
1827
1828/*
1829 * special: There is no info in the termcap about whether the cursor
1830 * positioning is relative to the start of the screen or to the start of the
1831 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1832 * relative.
1833 */
1834 if (STRCMP(term, "pcterm") == 0)
1835 T_CCS = (char_u *)"yes";
1836 else
1837 T_CCS = empty_option;
1838
1839#ifdef UNIX
1840/*
1841 * Any "stty" settings override the default for t_kb from the termcap.
1842 * This is in os_unix.c, because it depends a lot on the version of unix that
1843 * is being used.
1844 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1845 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001846# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 get_stty();
1850#endif
1851
1852/*
1853 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1854 * didn't work, use the default CTRL-H
1855 * The default for t_kD is DEL, unless t_kb is DEL.
1856 * The vim_strsave'd strings are probably lost forever, well it's only two
1857 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1858 * directly.
1859 */
1860#ifdef FEAT_GUI
1861 if (!gui.in_use)
1862#endif
1863 {
1864 bs_p = find_termcode((char_u *)"kb");
1865 del_p = find_termcode((char_u *)"kD");
1866 if (bs_p == NULL || *bs_p == NUL)
1867 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1868 if ((del_p == NULL || *del_p == NUL) &&
1869 (bs_p == NULL || *bs_p != DEL))
1870 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1871 }
1872
1873#if defined(UNIX) || defined(VMS)
1874 term_is_xterm = vim_is_xterm(term);
1875#endif
1876
1877#ifdef FEAT_MOUSE
1878# if defined(UNIX) || defined(VMS)
1879# ifdef FEAT_MOUSE_TTY
1880 /*
1881 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1882 * The termcode for the mouse is added as a side effect in option.c.
1883 */
1884 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02001885 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001888 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 {
1890 if (use_xterm_mouse())
1891 p = NULL; /* keep existing value, might be "xterm2" */
1892 else
1893 p = (char_u *)"xterm";
1894 }
1895# endif
1896 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001897 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001899 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1900 * "xterm2" in check_termcode(). */
1901 reset_option_was_set((char_u *)"ttym");
1902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 if (p == NULL
1904# ifdef FEAT_GUI
1905 || gui.in_use
1906# endif
1907 )
1908 check_mouse_termcode(); /* set mouse termcode anyway */
1909 }
1910# endif
1911# else
1912 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1913# endif
1914#endif /* FEAT_MOUSE */
1915
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916#ifdef USE_TERM_CONSOLE
1917 /* DEFAULT_TERM indicates that it is the machine console. */
1918 if (STRCMP(term, DEFAULT_TERM) != 0)
1919 term_console = FALSE;
1920 else
1921 {
1922 term_console = TRUE;
1923# ifdef AMIGA
1924 win_resize_on(); /* enable window resizing reports */
1925# endif
1926 }
1927#endif
1928
1929#if defined(UNIX) || defined(VMS)
1930 /*
1931 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1932 */
1933 if (vim_is_fastterm(term))
1934 p_tf = TRUE;
1935#endif
1936#ifdef USE_TERM_CONSOLE
1937 /*
1938 * 'ttyfast' is default on consoles
1939 */
1940 if (term_console)
1941 p_tf = TRUE;
1942#endif
1943
1944 ttest(TRUE); /* make sure we have a valid set of terminal codes */
1945
1946 full_screen = TRUE; /* we can use termcap codes from now on */
1947 set_term_defaults(); /* use current values as defaults */
1948#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02001949 LOG_TR(("setting crv_status to STATUS_GET"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001950 crv_status = STATUS_GET; /* Get terminal version later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951#endif
1952
1953 /*
1954 * Initialize the terminal with the appropriate termcap codes.
1955 * Set the mouse and window title if possible.
1956 * Don't do this when starting, need to parse the .vimrc first, because it
1957 * may redefine t_TI etc.
1958 */
1959 if (starting != NO_SCREEN)
1960 {
1961 starttermcap(); /* may change terminal mode */
1962#ifdef FEAT_MOUSE
1963 setmouse(); /* may start using the mouse */
1964#endif
1965#ifdef FEAT_TITLE
1966 maketitle(); /* may display window title */
1967#endif
1968 }
1969
1970 /* display initial screen after ttest() checking. jw. */
1971 if (width <= 0 || height <= 0)
1972 {
1973 /* termcap failed to report size */
1974 /* set defaults, in case ui_get_shellsize() also fails */
1975 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001976#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 height = 25; /* console is often 25 lines */
1978#else
1979 height = 24; /* most terminals are 24 lines */
1980#endif
1981 }
1982 set_shellsize(width, height, FALSE); /* may change Rows */
1983 if (starting != NO_SCREEN)
1984 {
1985 if (scroll_region)
1986 scroll_region_reset(); /* In case Rows changed */
1987 check_map_keycodes(); /* check mappings for terminal codes used */
1988
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001990 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991
1992 /*
1993 * Execute the TermChanged autocommands for each buffer that is
1994 * loaded.
1995 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001996 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02001997 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 {
1999 if (curbuf->b_ml.ml_mfp != NULL)
2000 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2001 curbuf);
2002 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002003 if (bufref_valid(&old_curbuf))
2004 curbuf = old_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 }
2007
2008#ifdef FEAT_TERMRESPONSE
2009 may_req_termresponse();
2010#endif
2011
2012 return OK;
2013}
2014
2015#if defined(FEAT_MOUSE) || defined(PROTO)
2016
2017# ifdef FEAT_MOUSE_TTY
2018# define HMT_NORMAL 1
2019# define HMT_NETTERM 2
2020# define HMT_DEC 4
2021# define HMT_JSBTERM 8
2022# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002023# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002024# define HMT_SGR 64
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002025# define HMT_SGR_REL 128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026static int has_mouse_termcode = 0;
2027# endif
2028
Bram Moolenaar864207d2008-06-24 22:14:38 +00002029# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002031set_mouse_termcode(
2032 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2033 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034{
2035 char_u name[2];
2036
2037 name[0] = n;
2038 name[1] = KE_FILLER;
2039 add_termcode(name, s, FALSE);
2040# ifdef FEAT_MOUSE_TTY
2041# ifdef FEAT_MOUSE_JSB
2042 if (n == KS_JSBTERM_MOUSE)
2043 has_mouse_termcode |= HMT_JSBTERM;
2044 else
2045# endif
2046# ifdef FEAT_MOUSE_NET
2047 if (n == KS_NETTERM_MOUSE)
2048 has_mouse_termcode |= HMT_NETTERM;
2049 else
2050# endif
2051# ifdef FEAT_MOUSE_DEC
2052 if (n == KS_DEC_MOUSE)
2053 has_mouse_termcode |= HMT_DEC;
2054 else
2055# endif
2056# ifdef FEAT_MOUSE_PTERM
2057 if (n == KS_PTERM_MOUSE)
2058 has_mouse_termcode |= HMT_PTERM;
2059 else
2060# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002061# ifdef FEAT_MOUSE_URXVT
2062 if (n == KS_URXVT_MOUSE)
2063 has_mouse_termcode |= HMT_URXVT;
2064 else
2065# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002066# ifdef FEAT_MOUSE_SGR
2067 if (n == KS_SGR_MOUSE)
2068 has_mouse_termcode |= HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002069 else if (n == KS_SGR_MOUSE_RELEASE)
2070 has_mouse_termcode |= HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002071 else
2072# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 has_mouse_termcode |= HMT_NORMAL;
2074# endif
2075}
2076# endif
2077
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002078# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002079 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002081del_mouse_termcode(
2082 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083{
2084 char_u name[2];
2085
2086 name[0] = n;
2087 name[1] = KE_FILLER;
2088 del_termcode(name);
2089# ifdef FEAT_MOUSE_TTY
2090# ifdef FEAT_MOUSE_JSB
2091 if (n == KS_JSBTERM_MOUSE)
2092 has_mouse_termcode &= ~HMT_JSBTERM;
2093 else
2094# endif
2095# ifdef FEAT_MOUSE_NET
2096 if (n == KS_NETTERM_MOUSE)
2097 has_mouse_termcode &= ~HMT_NETTERM;
2098 else
2099# endif
2100# ifdef FEAT_MOUSE_DEC
2101 if (n == KS_DEC_MOUSE)
2102 has_mouse_termcode &= ~HMT_DEC;
2103 else
2104# endif
2105# ifdef FEAT_MOUSE_PTERM
2106 if (n == KS_PTERM_MOUSE)
2107 has_mouse_termcode &= ~HMT_PTERM;
2108 else
2109# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002110# ifdef FEAT_MOUSE_URXVT
2111 if (n == KS_URXVT_MOUSE)
2112 has_mouse_termcode &= ~HMT_URXVT;
2113 else
2114# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002115# ifdef FEAT_MOUSE_SGR
2116 if (n == KS_SGR_MOUSE)
2117 has_mouse_termcode &= ~HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002118 else if (n == KS_SGR_MOUSE_RELEASE)
2119 has_mouse_termcode &= ~HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002120 else
2121# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 has_mouse_termcode &= ~HMT_NORMAL;
2123# endif
2124}
2125# endif
2126#endif
2127
2128#ifdef HAVE_TGETENT
2129/*
2130 * Call tgetent()
2131 * Return error message if it fails, NULL if it's OK.
2132 */
2133 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002134tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135{
2136 int i;
2137
2138 i = TGETENT(tbuf, term);
2139 if (i < 0 /* -1 is always an error */
2140# ifdef TGETENT_ZERO_ERR
2141 || i == 0 /* sometimes zero is also an error */
2142# endif
2143 )
2144 {
2145 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2146 * tgetent() with the always existing "dumb" entry to avoid a crash or
2147 * hang. */
2148 (void)TGETENT(tbuf, "dumb");
2149
2150 if (i < 0)
2151# ifdef TGETENT_ZERO_ERR
2152 return (char_u *)_("E557: Cannot open termcap file");
2153 if (i == 0)
2154# endif
2155#ifdef TERMINFO
2156 return (char_u *)_("E558: Terminal entry not found in terminfo");
2157#else
2158 return (char_u *)_("E559: Terminal entry not found in termcap");
2159#endif
2160 }
2161 return NULL;
2162}
2163
2164/*
2165 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2166 * Fix that here.
2167 */
2168 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002169vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170{
2171 char *p;
2172
2173 p = tgetstr(s, (char **)pp);
2174 if (p == (char *)-1)
2175 p = NULL;
2176 return (char_u *)p;
2177}
2178#endif /* HAVE_TGETENT */
2179
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002180#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181/*
2182 * Get Columns and Rows from the termcap. Used after a window signal if the
2183 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2184 * and "li" entries never change. But on some systems this works.
2185 * Errors while getting the entries are ignored.
2186 */
2187 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002188getlinecol(
2189 long *cp, /* pointer to columns */
2190 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191{
2192 char_u tbuf[TBUFSZ];
2193
2194 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2195 {
2196 if (*cp == 0)
2197 *cp = tgetnum("co");
2198 if (*rp == 0)
2199 *rp = tgetnum("li");
2200 }
2201}
2202#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2203
2204/*
2205 * Get a string entry from the termcap and add it to the list of termcodes.
2206 * Used for <t_xx> special keys.
2207 * Give an error message for failure when not sourcing.
2208 * If force given, replace an existing entry.
2209 * Return FAIL if the entry was not found, OK if the entry was added.
2210 */
2211 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002212add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213{
2214 char_u *term;
2215 int key;
2216 struct builtin_term *termp;
2217#ifdef HAVE_TGETENT
2218 char_u *string;
2219 int i;
2220 int builtin_first;
2221 char_u tbuf[TBUFSZ];
2222 char_u tstrbuf[TBUFSZ];
2223 char_u *tp = tstrbuf;
2224 char_u *error_msg = NULL;
2225#endif
2226
2227/*
2228 * If the GUI is running or will start in a moment, we only support the keys
2229 * that the GUI can produce.
2230 */
2231#ifdef FEAT_GUI
2232 if (gui.in_use || gui.starting)
2233 return gui_mch_haskey(name);
2234#endif
2235
2236 if (!force && find_termcode(name) != NULL) /* it's already there */
2237 return OK;
2238
2239 term = T_NAME;
2240 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2241 return FAIL;
2242
2243 if (term_is_builtin(term)) /* name starts with "builtin_" */
2244 {
2245 term += 8;
2246#ifdef HAVE_TGETENT
2247 builtin_first = TRUE;
2248#endif
2249 }
2250#ifdef HAVE_TGETENT
2251 else
2252 builtin_first = p_tbi;
2253#endif
2254
2255#ifdef HAVE_TGETENT
2256/*
2257 * We can get the entry from the builtin termcap and from the external one.
2258 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2259 * builtin termcap first.
2260 * If 'ttybuiltin' is off, try external termcap first.
2261 */
2262 for (i = 0; i < 2; ++i)
2263 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002264 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265#endif
2266 /*
2267 * Search in builtin termcap
2268 */
2269 {
2270 termp = find_builtin_term(term);
2271 if (termp->bt_string != NULL) /* found it */
2272 {
2273 key = TERMCAP2KEY(name[0], name[1]);
Bram Moolenaare7808482018-03-06 13:17:23 +01002274 ++termp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 while (termp->bt_entry != (int)KS_NAME)
2276 {
2277 if ((int)termp->bt_entry == key)
2278 {
2279 add_termcode(name, (char_u *)termp->bt_string,
2280 term_is_8bit(term));
2281 return OK;
2282 }
2283 ++termp;
2284 }
2285 }
2286 }
2287#ifdef HAVE_TGETENT
2288 else
2289 /*
2290 * Search in external termcap
2291 */
2292 {
2293 error_msg = tgetent_error(tbuf, term);
2294 if (error_msg == NULL)
2295 {
2296 string = TGETSTR((char *)name, &tp);
2297 if (string != NULL && *string != NUL)
2298 {
2299 add_termcode(name, string, FALSE);
2300 return OK;
2301 }
2302 }
2303 }
2304 }
2305#endif
2306
2307 if (sourcing_name == NULL)
2308 {
2309#ifdef HAVE_TGETENT
2310 if (error_msg != NULL)
2311 EMSG(error_msg);
2312 else
2313#endif
2314 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2315 }
2316 return FAIL;
2317}
2318
2319 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002320term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321{
2322 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2323}
2324
2325/*
2326 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2327 * Assume that the terminal is using 8-bit controls when the name contains
2328 * "8bit", like in "xterm-8bit".
2329 */
2330 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002331term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332{
2333 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2334}
2335
2336/*
2337 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002338 * <Esc>[ -> CSI <M_C_[>
2339 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 * <Esc>O -> <M-C-O>
2341 */
2342 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002343term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344{
2345 if (*p == ESC)
2346 {
2347 if (p[1] == '[')
2348 return CSI;
2349 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002350 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 if (p[1] == 'O')
2352 return 0x8f;
2353 }
2354 return 0;
2355}
2356
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002357#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002359term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2362}
2363#endif
2364
2365#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2366
2367 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002368tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369{
2370 static char_u buf[16];
2371 char_u *p;
2372
2373 p = buf + 15;
2374 *p = '\0';
2375 do
2376 {
2377 --p;
2378 *p = (char_u) (i % 10 + '0');
2379 i /= 10;
2380 }
2381 while (i > 0 && p > buf);
2382 return p;
2383}
2384#endif
2385
2386#ifndef HAVE_TGETENT
2387
2388/*
2389 * minimal tgoto() implementation.
2390 * no padding and we only parse for %i %d and %+char
2391 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002392static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002394 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002395tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396{
2397 static char buf[30];
2398 char *p, *s, *e;
2399
2400 if (!cm)
2401 return "OOPS";
2402 e = buf + 29;
2403 for (s = buf; s < e && *cm; cm++)
2404 {
2405 if (*cm != '%')
2406 {
2407 *s++ = *cm;
2408 continue;
2409 }
2410 switch (*++cm)
2411 {
2412 case 'd':
2413 p = (char *)tltoa((unsigned long)y);
2414 y = x;
2415 while (*p)
2416 *s++ = *p++;
2417 break;
2418 case 'i':
2419 x++;
2420 y++;
2421 break;
2422 case '+':
2423 *s++ = (char)(*++cm + y);
2424 y = x;
2425 break;
2426 case '%':
2427 *s++ = *cm;
2428 break;
2429 default:
2430 return "OOPS";
2431 }
2432 }
2433 *s = '\0';
2434 return buf;
2435}
2436
2437#endif /* HAVE_TGETENT */
2438
2439/*
2440 * Set the terminal name and initialize the terminal options.
2441 * If "name" is NULL or empty, get the terminal name from the environment.
2442 * If that fails, use the default terminal name.
2443 */
2444 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002445termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446{
2447 char_u *term;
2448
2449 if (name != NULL && *name == NUL)
2450 name = NULL; /* empty name is equal to no name */
2451 term = name;
2452
2453#ifdef __BEOS__
2454 /*
2455 * TERM environment variable is normally set to 'ansi' on the Bebox;
2456 * Since the BeBox doesn't quite support full ANSI yet, we use our
2457 * own custom 'ansi-beos' termcap instead, unless the -T option has
2458 * been given on the command line.
2459 */
2460 if (term == NULL
2461 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2462 term = DEFAULT_TERM;
2463#endif
2464#ifndef MSWIN
2465 if (term == NULL)
2466 term = mch_getenv((char_u *)"TERM");
2467#endif
2468 if (term == NULL || *term == NUL)
2469 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002470 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471
2472 /* Set the default terminal name. */
2473 set_string_default("term", term);
2474 set_string_default("ttytype", term);
2475
2476 /*
2477 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2478 */
2479 set_termname(T_NAME != NULL ? T_NAME : term);
2480}
2481
2482/*
2483 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2484 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002485#define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2487static char_u out_buf[OUT_SIZE + 1];
2488static int out_pos = 0; /* number of chars in out_buf */
2489
2490/*
2491 * out_flush(): flush the output buffer
2492 */
2493 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002494out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495{
2496 int len;
2497
2498 if (out_pos != 0)
2499 {
2500 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2501 len = out_pos;
2502 out_pos = 0;
2503 ui_write(out_buf, len);
2504 }
2505}
2506
Bram Moolenaara338adc2018-01-31 20:51:47 +01002507/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002508 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2509 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002510 */
2511 void
2512out_flush_cursor(
2513 int force UNUSED, /* when TRUE, update cursor even when not moved */
2514 int clear_selection UNUSED) /* clear selection under cursor */
2515{
2516 mch_disable_flush();
2517 out_flush();
2518 mch_enable_flush();
2519#ifdef FEAT_GUI
2520 if (gui.in_use)
2521 {
2522 gui_update_cursor(force, clear_selection);
2523 gui_may_flush();
2524 }
2525#endif
2526}
2527
2528
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529#if defined(FEAT_MBYTE) || defined(PROTO)
2530/*
2531 * Sometimes a byte out of a multi-byte character is written with out_char().
2532 * To avoid flushing half of the character, call this function first.
2533 */
2534 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002535out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536{
2537 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2538 out_flush();
2539}
2540#endif
2541
2542#ifdef FEAT_GUI
2543/*
2544 * out_trash(): Throw away the contents of the output buffer
2545 */
2546 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002547out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548{
2549 out_pos = 0;
2550}
2551#endif
2552
2553/*
2554 * out_char(c): put a byte into the output buffer.
2555 * Flush it if it becomes full.
2556 * This should not be used for outputting text on the screen (use functions
2557 * like msg_puts() and screen_putchar() for that).
2558 */
2559 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002560out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561{
Bram Moolenaard0573012017-10-28 21:11:06 +02002562#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2564 out_char('\r');
2565#endif
2566
2567 out_buf[out_pos++] = c;
2568
2569 /* For testing we flush each time. */
2570 if (out_pos >= OUT_SIZE || p_wd)
2571 out_flush();
2572}
2573
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002574static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575
2576/*
2577 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2578 */
2579 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002580out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581{
Bram Moolenaard0573012017-10-28 21:11:06 +02002582#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2584 out_char_nf('\r');
2585#endif
2586
2587 out_buf[out_pos++] = c;
2588
2589 if (out_pos >= OUT_SIZE)
2590 out_flush();
2591}
2592
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002593#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2594 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595/*
2596 * A never-padding out_str.
2597 * use this whenever you don't want to run the string through tputs.
2598 * tputs above is harmless, but tputs from the termcap library
2599 * is likely to strip off leading digits, that it mistakes for padding
2600 * information, and "%i", "%d", etc.
2601 * This should only be used for writing terminal codes, not for outputting
2602 * normal text (use functions like msg_puts() and screen_putchar() for that).
2603 */
2604 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002605out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606{
2607 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2608 out_flush();
2609 while (*s)
2610 out_char_nf(*s++);
2611
2612 /* For testing we write one string at a time. */
2613 if (p_wd)
2614 out_flush();
2615}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002616#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617
2618/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002619 * A conditional-flushing out_str, mainly for visualbell.
2620 * Handles a delay internally, because termlib may not respect the delay or do
2621 * it at the wrong time.
2622 * Note: Only for terminal strings.
2623 */
2624 void
2625out_str_cf(char_u *s)
2626{
2627 if (s != NULL && *s)
2628 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002629#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002630 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002631#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002632
2633#ifdef FEAT_GUI
2634 /* Don't use tputs() when GUI is used, ncurses crashes. */
2635 if (gui.in_use)
2636 {
2637 out_str_nf(s);
2638 return;
2639 }
2640#endif
2641 if (out_pos > OUT_SIZE - 20)
2642 out_flush();
2643#ifdef HAVE_TGETENT
2644 for (p = s; *s; ++s)
2645 {
2646 /* flush just before delay command */
2647 if (*s == '$' && *(s + 1) == '<')
2648 {
2649 char_u save_c = *s;
2650 int duration = atoi((char *)s + 2);
2651
2652 *s = NUL;
2653 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2654 *s = save_c;
2655 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002656# ifdef ELAPSED_FUNC
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002657 /* Only sleep here if we can limit this happening in
2658 * vim_beep(). */
2659 p = vim_strchr(s, '>');
2660 if (p == NULL || duration <= 0)
2661 {
2662 /* can't parse the time, don't sleep here */
2663 p = s;
2664 }
2665 else
2666 {
2667 ++p;
2668 do_sleep(duration);
2669 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002670# else
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002671 /* Rely on the terminal library to sleep. */
2672 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002673# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002674 break;
2675 }
2676 }
2677 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2678#else
2679 while (*s)
2680 out_char_nf(*s++);
2681#endif
2682
2683 /* For testing we write one string at a time. */
2684 if (p_wd)
2685 out_flush();
2686 }
2687}
2688
2689/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 * out_str(s): Put a character string a byte at a time into the output buffer.
2691 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2692 * This should only be used for writing terminal codes, not for outputting
2693 * normal text (use functions like msg_puts() and screen_putchar() for that).
2694 */
2695 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002696out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697{
2698 if (s != NULL && *s)
2699 {
2700#ifdef FEAT_GUI
2701 /* Don't use tputs() when GUI is used, ncurses crashes. */
2702 if (gui.in_use)
2703 {
2704 out_str_nf(s);
2705 return;
2706 }
2707#endif
2708 /* avoid terminal strings being split up */
2709 if (out_pos > OUT_SIZE - 20)
2710 out_flush();
2711#ifdef HAVE_TGETENT
2712 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2713#else
2714 while (*s)
2715 out_char_nf(*s++);
2716#endif
2717
2718 /* For testing we write one string at a time. */
2719 if (p_wd)
2720 out_flush();
2721 }
2722}
2723
2724/*
2725 * cursor positioning using termcap parser. (jw)
2726 */
2727 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002728term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
2730 OUT_STR(tgoto((char *)T_CM, col, row));
2731}
2732
2733 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002734term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735{
2736 OUT_STR(tgoto((char *)T_CRI, 0, i));
2737}
2738
2739 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002740term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741{
2742 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2743}
2744
2745 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002746term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747{
2748 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2749}
2750
2751#if defined(HAVE_TGETENT) || defined(PROTO)
2752 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002753term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754{
2755 /* Can't handle a negative value here */
2756 if (x < 0)
2757 x = 0;
2758 if (y < 0)
2759 y = 0;
2760 OUT_STR(tgoto((char *)T_CWP, y, x));
2761}
2762
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002763# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2764/*
2765 * Return TRUE if we can request the terminal for a response.
2766 */
2767 static int
2768can_get_termresponse()
2769{
2770 return cur_tmode == TMODE_RAW
2771 && termcap_active
2772# ifdef UNIX
2773 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
2774# endif
2775 && p_ek;
2776}
2777
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002778static int winpos_x = -1;
2779static int winpos_y = -1;
2780static int did_request_winpos = 0;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002781
2782/*
2783 * Try getting the Vim window position from the terminal.
2784 * Returns OK or FAIL.
2785 */
2786 int
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002787term_get_winpos(int *x, int *y, varnumber_T timeout)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002788{
2789 int count = 0;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002790 int prev_winpos_x = winpos_x;
2791 int prev_winpos_y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002792
2793 if (*T_CGP == NUL || !can_get_termresponse())
2794 return FAIL;
2795 winpos_x = -1;
2796 winpos_y = -1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002797 ++did_request_winpos;
2798 winpos_status = STATUS_SENT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002799 OUT_STR(T_CGP);
2800 out_flush();
2801
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002802 /* Try reading the result for "timeout" msec. */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002803 while (count++ <= timeout / 10 && !got_int)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002804 {
2805 (void)vpeekc_nomap();
2806 if (winpos_x >= 0 && winpos_y >= 0)
2807 {
2808 *x = winpos_x;
2809 *y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002810 return OK;
2811 }
2812 ui_delay(10, FALSE);
2813 }
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002814 /* Do not reset "did_request_winpos", if we timed out the response might
2815 * still come later and we must consume it. */
2816
2817 winpos_x = prev_winpos_x;
2818 winpos_y = prev_winpos_y;
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002819 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002820 {
2821 /* Polling: return previous values if we have them. */
2822 *x = winpos_x;
2823 *y = winpos_y;
2824 return OK;
2825 }
2826
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002827 return FALSE;
2828}
2829# endif
2830
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002832term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002834 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835}
2836#endif
2837
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002839term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840{
2841 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002842 int i = *s == CSI ? 1 : 2;
2843 /* index in s[] just after <Esc>[ or CSI */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844
2845 /* Special handling of 16 colors, because termcap can't handle it */
2846 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2847 /* Also accept CSI instead of <Esc>[ */
2848 if (n >= 8 && t_colors >= 16
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002849 && ((s[0] == ESC && s[1] == '[')
2850#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
2851 || (s[0] == ESC && s[1] == '|')
2852#endif
2853 || (s[0] == CSI && (i = 1) == 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 && s[i] != NUL
2855 && (STRCMP(s + i + 1, "%p1%dm") == 0
2856 || STRCMP(s + i + 1, "%dm") == 0)
2857 && (s[i] == '3' || s[i] == '4'))
2858 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002860 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002862 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863#endif
Bram Moolenaar827b1652016-05-05 18:14:03 +02002864 sprintf(buf, format,
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02002865 i == 2 ?
2866#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
2867 s[1] == '|' ? IF_EB("\033|", ESC_STR "|") :
2868#endif
2869 IF_EB("\033[", ESC_STR "[") : "\233",
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2871 : (n >= 16 ? "48;5;" : "10"));
2872 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2873 }
2874 else
2875 OUT_STR(tgoto((char *)s, 0, n));
2876}
2877
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002878 void
2879term_fg_color(int n)
2880{
2881 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2882 if (*T_CAF)
2883 term_color(T_CAF, n);
2884 else if (*T_CSF)
2885 term_color(T_CSF, n);
2886}
2887
2888 void
2889term_bg_color(int n)
2890{
2891 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2892 if (*T_CAB)
2893 term_color(T_CAB, n);
2894 else if (*T_CSB)
2895 term_color(T_CSB, n);
2896}
2897
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002898#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002899
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002900#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2901#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2902#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002903
2904 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002905term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002906{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002907#define MAX_COLOR_STR_LEN 100
2908 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002909
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002910 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002911 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002912 OUT_STR(buf);
2913}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002914
2915 void
2916term_fg_rgb_color(guicolor_T rgb)
2917{
2918 term_rgb_color(T_8F, rgb);
2919}
2920
2921 void
2922term_bg_rgb_color(guicolor_T rgb)
2923{
2924 term_rgb_color(T_8B, rgb);
2925}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002926#endif
2927
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002928#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2929 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930/*
2931 * Generic function to set window title, using t_ts and t_fs.
2932 */
2933 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002934term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935{
2936 /* t_ts takes one argument: column in status line */
2937 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2938 out_str_nf(title);
2939 out_str(T_FS); /* set title end */
2940 out_flush();
2941}
2942#endif
2943
2944/*
2945 * Make sure we have a valid set or terminal options.
2946 * Replace all entries that are NULL by empty_option
2947 */
2948 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002949ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002951 char_u *env_colors;
2952
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 check_options(); /* make sure no options are NULL */
2954
2955 /*
2956 * MUST have "cm": cursor motion.
2957 */
2958 if (*T_CM == NUL)
2959 EMSG(_("E437: terminal capability \"cm\" required"));
2960
2961 /*
2962 * if "cs" defined, use a scroll region, it's faster.
2963 */
2964 if (*T_CS != NUL)
2965 scroll_region = TRUE;
2966 else
2967 scroll_region = FALSE;
2968
2969 if (pairs)
2970 {
2971 /*
2972 * optional pairs
2973 */
2974 /* TP goes to normal mode for TI (invert) and TB (bold) */
2975 if (*T_ME == NUL)
2976 T_ME = T_MR = T_MD = T_MB = empty_option;
2977 if (*T_SO == NUL || *T_SE == NUL)
2978 T_SO = T_SE = empty_option;
2979 if (*T_US == NUL || *T_UE == NUL)
2980 T_US = T_UE = empty_option;
2981 if (*T_CZH == NUL || *T_CZR == NUL)
2982 T_CZH = T_CZR = empty_option;
2983
2984 /* T_VE is needed even though T_VI is not defined */
2985 if (*T_VE == NUL)
2986 T_VI = empty_option;
2987
2988 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2989 if (*T_ME == NUL)
2990 {
2991 T_ME = T_SE;
2992 T_MR = T_SO;
2993 T_MD = T_SO;
2994 }
2995
2996 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2997 if (*T_SO == NUL)
2998 {
2999 T_SE = T_ME;
3000 if (*T_MR == NUL)
3001 T_SO = T_MD;
3002 else
3003 T_SO = T_MR;
3004 }
3005
3006 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
3007 if (*T_CZH == NUL)
3008 {
3009 T_CZR = T_ME;
3010 if (*T_MR == NUL)
3011 T_CZH = T_MD;
3012 else
3013 T_CZH = T_MR;
3014 }
3015
3016 /* "Sb" and "Sf" come in pairs */
3017 if (*T_CSB == NUL || *T_CSF == NUL)
3018 {
3019 T_CSB = empty_option;
3020 T_CSF = empty_option;
3021 }
3022
3023 /* "AB" and "AF" come in pairs */
3024 if (*T_CAB == NUL || *T_CAF == NUL)
3025 {
3026 T_CAB = empty_option;
3027 T_CAF = empty_option;
3028 }
3029
3030 /* if 'Sb' and 'AB' are not defined, reset "Co" */
3031 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003032 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033
3034 /* Set 'weirdinvert' according to value of 't_xs' */
3035 p_wiv = (*T_XS != NUL);
3036 }
3037 need_gather = TRUE;
3038
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003039 /* Set t_colors to the value of $COLORS or t_Co. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 t_colors = atoi((char *)T_CCO);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003041 env_colors = mch_getenv((char_u *)"COLORS");
3042 if (env_colors != NULL && isdigit(*env_colors))
3043 {
3044 int colors = atoi((char *)env_colors);
3045
3046 if (colors != t_colors)
3047 set_color_count(colors);
3048 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049}
3050
3051#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3052 || defined(PROTO)
3053/*
3054 * Represent the given long_u as individual bytes, with the most significant
3055 * byte first, and store them in dst.
3056 */
3057 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003058add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059{
3060 int i;
3061 int shift;
3062
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003063 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 {
3065 shift = 8 * (sizeof(long_u) - i);
3066 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3067 }
3068}
3069
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003070static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071
3072/*
3073 * Interpret the next string of bytes in buf as a long integer, with the most
3074 * significant byte first. Note that it is assumed that buf has been through
3075 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3076 * Puts result in val, and returns the number of bytes read from buf
3077 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3078 * were present.
3079 */
3080 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003081get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082{
3083 int len;
3084 char_u bytes[sizeof(long_u)];
3085 int i;
3086 int shift;
3087
3088 *val = 0;
3089 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3090 if (len != -1)
3091 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003092 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 {
3094 shift = 8 * (sizeof(long_u) - 1 - i);
3095 *val += (long_u)bytes[i] << shift;
3096 }
3097 }
3098 return len;
3099}
3100#endif
3101
3102#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00003103 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
3104 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105/*
3106 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3107 * that buf has been through inchar(). Returns the actual number of bytes used
3108 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3109 * available.
3110 */
3111 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003112get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113{
3114 int len = 0;
3115 int i;
3116 char_u c;
3117
3118 for (i = 0; i < num_bytes; i++)
3119 {
3120 if ((c = buf[len++]) == NUL)
3121 return -1;
3122 if (c == K_SPECIAL)
3123 {
3124 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3125 return -1;
3126 if (buf[len++] == (int)KS_ZERO)
3127 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003128 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3129 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3130 if (buf[len++] == (int)KE_CSI)
3131 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003133 else if (c == CSI && buf[len] == KS_EXTRA
3134 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003135 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3136 * the start of a special key, see add_to_input_buf_csi(). */
3137 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 bytes[i] = c;
3139 }
3140 return len;
3141}
3142#endif
3143
3144/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003145 * Check if the new shell size is valid, correct it if it's too small or way
3146 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 */
3148 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003149check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 if (Rows < min_rows()) /* need room for one window and command line */
3152 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003153 limit_screen_size();
3154}
3155
3156/*
3157 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3158 */
3159 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003160limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003161{
3162 if (Columns < MIN_COLUMNS)
3163 Columns = MIN_COLUMNS;
3164 else if (Columns > 10000)
3165 Columns = 10000;
3166 if (Rows > 1000)
3167 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168}
3169
Bram Moolenaar86b68352004-12-27 21:59:20 +00003170/*
3171 * Invoked just before the screen structures are going to be (re)allocated.
3172 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003174win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
3176 static int old_Rows = 0;
3177 static int old_Columns = 0;
3178
3179 if (old_Rows != Rows || old_Columns != Columns)
3180 ui_new_shellsize();
3181 if (old_Rows != Rows)
3182 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003183 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003184 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003185 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 old_Rows = Rows;
3187 shell_new_rows(); /* update window sizes */
3188 }
3189 if (old_Columns != Columns)
3190 {
3191 old_Columns = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 shell_new_columns(); /* update window sizes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 }
3194}
3195
3196/*
3197 * Call this function when the Vim shell has been resized in any way.
3198 * Will obtain the current size and redraw (also when size didn't change).
3199 */
3200 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003201shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202{
3203 set_shellsize(0, 0, FALSE);
3204}
3205
3206/*
3207 * Check if the shell size changed. Handle a resize.
3208 * When the size didn't change, nothing happens.
3209 */
3210 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003211shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212{
3213 int old_Rows = Rows;
3214 int old_Columns = Columns;
3215
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003216 if (!exiting
3217#ifdef FEAT_GUI
3218 /* Do not get the size when executing a shell command during
3219 * startup. */
3220 && !gui.starting
3221#endif
3222 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003223 {
3224 (void)ui_get_shellsize();
3225 check_shellsize();
3226 if (old_Rows != Rows || old_Columns != Columns)
3227 shell_resized();
3228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229}
3230
3231/*
3232 * Set size of the Vim shell.
3233 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3234 * window size (this is used for the :win command).
3235 * If 'mustset' is FALSE, we may try to get the real window size and if
3236 * it fails use 'width' and 'height'.
3237 */
3238 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003239set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240{
3241 static int busy = FALSE;
3242
3243 /*
3244 * Avoid recursiveness, can happen when setting the window size causes
3245 * another window-changed signal.
3246 */
3247 if (busy)
3248 return;
3249
3250 if (width < 0 || height < 0) /* just checking... */
3251 return;
3252
Bram Moolenaara971b822011-09-14 14:43:25 +02003253 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003255 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 State = SETWSIZE;
3257 return;
3258 }
3259
Bram Moolenaara971b822011-09-14 14:43:25 +02003260 /* curwin->w_buffer can be NULL when we are closing a window and the
3261 * buffer has already been closed and removing a scrollbar causes a resize
3262 * event. Don't resize then, it will happen after entering another buffer.
3263 */
3264 if (curwin->w_buffer == NULL)
3265 return;
3266
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 ++busy;
3268
3269#ifdef AMIGA
3270 out_flush(); /* must do this before mch_get_shellsize() for
3271 some obscure reason */
3272#endif
3273
3274 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3275 {
3276 Rows = height;
3277 Columns = width;
3278 check_shellsize();
3279 ui_set_shellsize(mustset);
3280 }
3281 else
3282 check_shellsize();
3283
3284 /* The window layout used to be adjusted here, but it now happens in
3285 * screenalloc() (also invoked from screenclear()). That is because the
3286 * "busy" check above may skip this, but not screenalloc(). */
3287
3288 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3289 screenclear();
3290 else
3291 screen_start(); /* don't know where cursor is now */
3292
3293 if (starting != NO_SCREEN)
3294 {
3295#ifdef FEAT_TITLE
3296 maketitle();
3297#endif
3298 changed_line_abv_curs();
3299 invalidate_botline();
3300
3301 /*
3302 * We only redraw when it's needed:
3303 * - While at the more prompt or executing an external command, don't
3304 * redraw, but position the cursor.
3305 * - While editing the command line, only redraw that.
3306 * - in Ex mode, don't redraw anything.
3307 * - Otherwise, redraw right now, and position the cursor.
3308 * Always need to call update_screen() or screenalloc(), to make
3309 * sure Rows/Columns and the size of ScreenLines[] is correct!
3310 */
3311 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3312 || exmode_active)
3313 {
3314 screenalloc(FALSE);
3315 repeat_message();
3316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 else
3318 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003319 if (curwin->w_p_scb)
3320 do_check_scrollbind(TRUE);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003321 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003322 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003323 update_screen(NOT_VALID);
3324 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003325 }
3326 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003327 {
3328 update_topline();
3329#if defined(FEAT_INS_EXPAND)
3330 if (pum_visible())
3331 {
3332 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003333 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003334 }
Bram Moolenaar280f1262006-01-30 00:14:18 +00003335#endif
Bram Moolenaara5e66212017-09-29 22:42:33 +02003336 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003337 if (redrawing())
3338 setcursor();
3339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 }
3341 cursor_on(); /* redrawing may have switched it off */
3342 }
3343 out_flush();
3344 --busy;
3345}
3346
3347/*
3348 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3349 * commands and Ex mode).
3350 */
3351 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003352settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353{
3354#ifdef FEAT_GUI
3355 /* don't set the term where gvim was started to any mode */
3356 if (gui.in_use)
3357 return;
3358#endif
3359
3360 if (full_screen)
3361 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 /*
3363 * When returning after calling a shell we want to really set the
3364 * terminal to raw mode, even though we think it already is, because
3365 * the shell program may have reset the terminal mode.
3366 * When we think the terminal is normal, don't try to set it to
3367 * normal again, because that causes problems (logout!) on some
3368 * machines.
3369 */
3370 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3371 {
3372#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003373# ifdef FEAT_GUI
3374 if (!gui.in_use && !gui.starting)
3375# endif
3376 {
3377 /* May need to check for T_CRV response and termcodes, it
3378 * doesn't work in Cooked mode, an external program may get
3379 * them. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003380 if (tmode != TMODE_RAW && (crv_status == STATUS_SENT
3381 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003382#ifdef FEAT_TERMINAL
3383 || rfg_status == STATUS_SENT
3384#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003385 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003386 || rbm_status == STATUS_SENT
Bram Moolenaar89894aa2018-03-05 22:43:10 +01003387 || rcs_status == STATUS_SENT
3388 || winpos_status == STATUS_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003389 (void)vpeekc_nomap();
3390 check_for_codes_from_term();
3391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392#endif
3393#ifdef FEAT_MOUSE_TTY
3394 if (tmode != TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003395 mch_setmouse(FALSE); /* switch mouse off */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003397 if (tmode != TMODE_RAW)
3398 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 out_flush();
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003400 mch_settmode(tmode); /* machine specific function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 cur_tmode = tmode;
3402#ifdef FEAT_MOUSE
3403 if (tmode == TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003404 setmouse(); /* may switch mouse on */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003406 if (tmode == TMODE_RAW)
3407 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 out_flush();
3409 }
3410#ifdef FEAT_TERMRESPONSE
3411 may_req_termresponse();
3412#endif
3413 }
3414}
3415
3416 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003417starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
3419 if (full_screen && !termcap_active)
3420 {
3421 out_str(T_TI); /* start termcap mode */
3422 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003423 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 out_flush();
3425 termcap_active = TRUE;
3426 screen_start(); /* don't know where cursor is now */
3427#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003428# ifdef FEAT_GUI
3429 if (!gui.in_use && !gui.starting)
3430# endif
3431 {
3432 may_req_termresponse();
3433 /* Immediately check for a response. If t_Co changes, we don't
3434 * want to redraw with wrong colors first. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003435 if (crv_status == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003436 check_for_codes_from_term();
3437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438#endif
3439 }
3440}
3441
3442 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003443stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444{
3445 screen_stop_highlight();
3446 reset_cterm_colors();
3447 if (termcap_active)
3448 {
3449#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003450# ifdef FEAT_GUI
3451 if (!gui.in_use && !gui.starting)
3452# endif
3453 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003454 /* May need to discard T_CRV, T_U7 or T_RBG response. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003455 if (crv_status == STATUS_SENT
3456 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003457# ifdef FEAT_TERMINAL
3458 || rfg_status == STATUS_SENT
3459# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003460 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003461 || rbm_status == STATUS_SENT
Bram Moolenaar89894aa2018-03-05 22:43:10 +01003462 || rcs_status == STATUS_SENT
3463 || winpos_status == STATUS_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003464 {
3465# ifdef UNIX
3466 /* Give the terminal a chance to respond. */
3467 mch_delay(100L, FALSE);
3468# endif
3469# ifdef TCIFLUSH
3470 /* Discard data received but not read. */
3471 if (exiting)
3472 tcflush(fileno(stdin), TCIFLUSH);
3473# endif
3474 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003475 /* Check for termcodes first, otherwise an external program may
3476 * get them. */
3477 check_for_codes_from_term();
3478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003480 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 out_str(T_KE); /* stop "keypad transmit" mode */
3482 out_flush();
3483 termcap_active = FALSE;
3484 cursor_on(); /* just in case it is still off */
3485 out_str(T_TE); /* stop termcap mode */
3486 screen_start(); /* don't know where cursor is now */
3487 out_flush();
3488 }
3489}
3490
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003491#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492/*
3493 * Request version string (for xterm) when needed.
3494 * Only do this after switching to raw mode, otherwise the result will be
3495 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003496 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003497 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 * Only do this after termcap mode has been started, otherwise the codes for
3499 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003500 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3501 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003502 * On Unix only do it when both output and input are a tty (avoid writing
3503 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 * The result is caught in check_termcode().
3505 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003506 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003507may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003509 if (crv_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003510 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003511 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 && *T_CRV != NUL)
3513 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003514 LOG_TR(("Sending CRV request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 out_str(T_CRV);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003516 crv_status = STATUS_SENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 /* check for the characters now, otherwise they might be eaten by
3518 * get_keystroke() */
3519 out_flush();
3520 (void)vpeekc_nomap();
3521 }
3522}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003523
3524# if defined(FEAT_MBYTE) || defined(PROTO)
3525/*
3526 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003527 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003528 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003529 * If the terminal treats \u25bd as single width, the position is (1, 1),
3530 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003531 * This function has the side effect that changes cursor position, so
3532 * it must be called immediately after entering termcap mode.
3533 */
3534 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003535may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003536{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003537 if (u7_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003538 && can_get_termresponse()
3539 && starting == 0
Bram Moolenaar9584b312013-03-13 19:29:28 +01003540 && *T_U7 != NUL
3541 && !option_was_set((char_u *)"ambiwidth"))
3542 {
3543 char_u buf[16];
3544
Bram Moolenaarb255b902018-04-24 21:40:10 +02003545 LOG_TR(("Sending U7 request"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02003546 /* Do this in the second row. In the first row the returned sequence
3547 * may be CSI 1;2R, which is the same as <S-F3>. */
3548 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003549 buf[mb_char2bytes(0x25bd, buf)] = 0;
3550 out_str(buf);
3551 out_str(T_U7);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003552 u7_status = STATUS_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003553 out_flush();
Bram Moolenaar976787d2017-06-04 15:45:50 +02003554
3555 /* This overwrites a few characters on the screen, a redraw is needed
3556 * after this. Clear them out for now. */
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003557 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003558 out_str((char_u *)" ");
3559 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003560
Bram Moolenaar05684312017-12-09 15:11:24 +01003561 /* Need to reset the known cursor position. */
3562 screen_start();
3563
Bram Moolenaar9584b312013-03-13 19:29:28 +01003564 /* check for the characters now, otherwise they might be eaten by
3565 * get_keystroke() */
3566 out_flush();
3567 (void)vpeekc_nomap();
3568 }
3569}
3570# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003571
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003572/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003573 * Similar to requesting the version string: Request the terminal background
3574 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003575 */
3576 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003577may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003578{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003579 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003580 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003581 int didit = FALSE;
3582
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003583# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003584 /* Only request foreground if t_RF is set. */
3585 if (rfg_status == STATUS_GET && *T_RFG != NUL)
3586 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003587 LOG_TR(("Sending FG request"));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003588 out_str(T_RFG);
3589 rfg_status = STATUS_SENT;
3590 didit = TRUE;
3591 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003592# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003593
3594 /* Only request background if t_RB is set. */
3595 if (rbg_status == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003596 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003597 LOG_TR(("Sending BG request"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003598 out_str(T_RBG);
3599 rbg_status = STATUS_SENT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003600 didit = TRUE;
3601 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003602
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003603 if (didit)
3604 {
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003605 /* check for the characters now, otherwise they might be eaten by
3606 * get_keystroke() */
3607 out_flush();
3608 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003609 }
3610 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003611}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003612
Bram Moolenaar2951b772013-07-03 12:45:31 +02003613# ifdef DEBUG_TERMRESPONSE
3614 static void
Bram Moolenaarb255b902018-04-24 21:40:10 +02003615log_tr(const char *fmt, ...)
Bram Moolenaar2951b772013-07-03 12:45:31 +02003616{
3617 static FILE *fd_tr = NULL;
3618 static proftime_T start;
3619 proftime_T now;
Bram Moolenaarb255b902018-04-24 21:40:10 +02003620 va_list ap;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003621
3622 if (fd_tr == NULL)
3623 {
3624 fd_tr = fopen("termresponse.log", "w");
3625 profile_start(&start);
3626 }
3627 now = start;
3628 profile_end(&now);
Bram Moolenaarb255b902018-04-24 21:40:10 +02003629 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
3630 must_redraw == NOT_VALID ? "NV"
3631 : must_redraw == CLEAR ? "CL" : " ");
3632 va_start(ap, fmt);
3633 vfprintf(fd_tr, fmt, ap);
3634 va_end(ap);
3635 fputc('\n', fd_tr);
3636 fflush(fd_tr);
Bram Moolenaar2951b772013-07-03 12:45:31 +02003637}
3638# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639#endif
3640
3641/*
3642 * Return TRUE when saving and restoring the screen.
3643 */
3644 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003645swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646{
3647 return (full_screen && *T_TI != NUL);
3648}
3649
Bram Moolenaarecadf432018-03-20 11:17:04 +01003650#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651/*
3652 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3653 */
3654 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003655setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656{
3657# ifdef FEAT_MOUSE_TTY
3658 int checkfor;
3659# endif
3660
3661# ifdef FEAT_MOUSESHAPE
3662 update_mouseshape(-1);
3663# endif
3664
3665# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3666# ifdef FEAT_GUI
3667 /* In the GUI the mouse is always enabled. */
3668 if (gui.in_use)
3669 return;
3670# endif
3671 /* be quick when mouse is off */
3672 if (*p_mouse == NUL || has_mouse_termcode == 0)
3673 return;
3674
3675 /* don't switch mouse on when not in raw mode (Ex mode) */
3676 if (cur_tmode != TMODE_RAW)
3677 {
3678 mch_setmouse(FALSE);
3679 return;
3680 }
3681
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 if (VIsual_active)
3683 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003684 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 checkfor = MOUSE_RETURN;
3686 else if (State & INSERT)
3687 checkfor = MOUSE_INSERT;
3688 else if (State & CMDLINE)
3689 checkfor = MOUSE_COMMAND;
3690 else if (State == CONFIRM || State == EXTERNCMD)
3691 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3692 else
3693 checkfor = MOUSE_NORMAL; /* assume normal mode */
3694
3695 if (mouse_has(checkfor))
3696 mch_setmouse(TRUE);
3697 else
3698 mch_setmouse(FALSE);
3699# endif
3700}
3701
3702/*
3703 * Return TRUE if
3704 * - "c" is in 'mouse', or
3705 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3706 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3707 * normal editing mode (not at hit-return message).
3708 */
3709 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003710mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711{
3712 char_u *p;
3713
3714 for (p = p_mouse; *p; ++p)
3715 switch (*p)
3716 {
3717 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3718 return TRUE;
3719 break;
3720 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3721 return TRUE;
3722 break;
3723 default: if (c == *p) return TRUE; break;
3724 }
3725 return FALSE;
3726}
3727
3728/*
3729 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3730 */
3731 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003732mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733{
3734 return (p_mousem[0] == 'p');
3735}
3736#endif
3737
3738/*
3739 * By outputting the 'cursor very visible' termcap code, for some windowed
3740 * terminals this makes the screen scrolled to the correct position.
3741 * Used when starting Vim or returning from a shell.
3742 */
3743 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003744scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003746 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 {
3748 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003749 out_str(T_CVS);
3750 screen_start(); /* don't know where cursor is now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 }
3752}
3753
3754static int cursor_is_off = FALSE;
3755
3756/*
3757 * Enable the cursor.
3758 */
3759 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003760cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761{
3762 if (cursor_is_off)
3763 {
3764 out_str(T_VE);
3765 cursor_is_off = FALSE;
3766 }
3767}
3768
3769/*
3770 * Disable the cursor.
3771 */
3772 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003773cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003775 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 {
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003777 out_str(T_VI); /* disable cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 cursor_is_off = TRUE;
3779 }
3780}
3781
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003782#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003784 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003785 */
3786 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003787term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003788{
Bram Moolenaarc9770922017-08-12 20:11:53 +02003789 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003790 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003791
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003792 /* Only do something when redrawing the screen and we can restore the
3793 * mode. */
3794 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003795 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003796# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003797 if (forced && initial_cursor_shape > 0)
3798 /* Restore to initial values. */
3799 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003800# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003801 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003802 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003803
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003804 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003805 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003806 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003807 {
3808 if (*T_CSR != NUL)
3809 p = T_CSR; /* Replace mode cursor */
3810 else
3811 p = T_CSI; /* fall back to Insert mode cursor */
3812 if (*p != NUL)
3813 {
3814 out_str(p);
3815 showing_mode = REPLACE;
3816 }
3817 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003818 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003819 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003820 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003821 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003822 {
3823 out_str(T_CSI); /* Insert mode cursor */
3824 showing_mode = INSERT;
3825 }
3826 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003827 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003828 {
3829 out_str(T_CEI); /* non-Insert mode cursor */
3830 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003831 }
3832}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003833
3834# if defined(FEAT_TERMINAL) || defined(PROTO)
3835 void
3836term_cursor_color(char_u *color)
3837{
3838 if (*T_CSC != NUL)
3839 {
3840 out_str(T_CSC); /* set cursor color start */
3841 out_str_nf(color);
3842 out_str(T_CEC); /* set cursor color end */
3843 out_flush();
3844 }
3845}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02003846# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003847
Bram Moolenaar4db25542017-08-28 22:43:05 +02003848 int
3849blink_state_is_inverted()
3850{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003851#ifdef FEAT_TERMRESPONSE
Bram Moolenaar4db25542017-08-28 22:43:05 +02003852 return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
3853 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003854#else
3855 return FALSE;
3856#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02003857}
3858
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003859/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003860 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003861 */
3862 void
3863term_cursor_shape(int shape, int blink)
3864{
3865 if (*T_CSH != NUL)
3866 {
3867 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
3868 out_flush();
3869 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02003870 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003871 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02003872 int do_blink = blink;
3873
3874 /* t_SH is empty: try setting just the blink state.
3875 * The blink flags are XORed together, if the initial blinking from
3876 * style and shape differs, we need to invert the flag here. */
3877 if (blink_state_is_inverted())
3878 do_blink = !blink;
3879
3880 if (do_blink && *T_VS != NUL)
3881 {
3882 out_str(T_VS);
3883 out_flush();
3884 }
3885 else if (!do_blink && *T_CVS != NUL)
3886 {
3887 out_str(T_CVS);
3888 out_flush();
3889 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003890 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003891}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003892#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003893
3894/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 * Set scrolling region for window 'wp'.
3896 * The region starts 'off' lines from the start of the window.
3897 * Also set the vertical scroll region for a vertically split window. Always
3898 * the full width of the window, excluding the vertical separator.
3899 */
3900 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003901scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902{
3903 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3904 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003906 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
3907 wp->w_wincol));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 screen_start(); /* don't know where cursor is now */
3909}
3910
3911/*
3912 * Reset scrolling region to the whole screen.
3913 */
3914 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003915scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916{
3917 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 if (*T_CSV != NUL)
3919 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 screen_start(); /* don't know where cursor is now */
3921}
3922
3923
3924/*
3925 * List of terminal codes that are currently recognized.
3926 */
3927
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003928static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929{
3930 char_u name[2]; /* termcap name of entry */
3931 char_u *code; /* terminal code (in allocated memory) */
3932 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003933 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934} *termcodes = NULL;
3935
3936static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3937static int tc_len = 0; /* current number of entries in termcodes[] */
3938
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003939static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003940
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003942clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943{
3944 while (tc_len > 0)
3945 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003946 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 tc_max_len = 0;
3948
3949#ifdef HAVE_TGETENT
3950 BC = (char *)empty_option;
3951 UP = (char *)empty_option;
3952 PC = NUL; /* set pad character to NUL */
3953 ospeed = 0;
3954#endif
3955
3956 need_gather = TRUE; /* need to fill termleader[] */
3957}
3958
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003959#define ATC_FROM_TERM 55
3960
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961/*
3962 * Add a new entry to the list of terminal codes.
3963 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003964 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3965 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 */
3967 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003968add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969{
3970 struct termcode *new_tc;
3971 int i, j;
3972 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003973 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
3975 if (string == NULL || *string == NUL)
3976 {
3977 del_termcode(name);
3978 return;
3979 }
3980
Bram Moolenaar45500912014-07-09 20:51:07 +02003981#if defined(WIN3264) && !defined(FEAT_GUI)
3982 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3983#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 if (s == NULL)
3987 return;
3988
3989 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003990 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003992 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 s[0] = term_7to8bit(string);
3994 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003995
3996#if defined(WIN3264) && !defined(FEAT_GUI)
3997 if (s[0] == K_NUL)
3998 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003999 STRMOVE(s + 1, s);
4000 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02004001 }
4002#endif
4003
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004004 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005
4006 need_gather = TRUE; /* need to fill termleader[] */
4007
4008 /*
4009 * need to make space for more entries
4010 */
4011 if (tc_len == tc_max_len)
4012 {
4013 tc_max_len += 20;
4014 new_tc = (struct termcode *)alloc(
4015 (unsigned)(tc_max_len * sizeof(struct termcode)));
4016 if (new_tc == NULL)
4017 {
4018 tc_max_len -= 20;
4019 return;
4020 }
4021 for (i = 0; i < tc_len; ++i)
4022 new_tc[i] = termcodes[i];
4023 vim_free(termcodes);
4024 termcodes = new_tc;
4025 }
4026
4027 /*
4028 * Look for existing entry with the same name, it is replaced.
4029 * Look for an existing entry that is alphabetical higher, the new entry
4030 * is inserted in front of it.
4031 */
4032 for (i = 0; i < tc_len; ++i)
4033 {
4034 if (termcodes[i].name[0] < name[0])
4035 continue;
4036 if (termcodes[i].name[0] == name[0])
4037 {
4038 if (termcodes[i].name[1] < name[1])
4039 continue;
4040 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004041 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 */
4043 if (termcodes[i].name[1] == name[1])
4044 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004045 if (flags == ATC_FROM_TERM && (j = termcode_star(
4046 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004047 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004048 /* Don't replace ESC[123;*X or ESC O*X with another when
4049 * invoked from got_code_from_term(). */
4050 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004051 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004052 && s[len - 1]
4053 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004054 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004055 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004056 vim_free(s);
4057 return;
4058 }
4059 }
4060 else
4061 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004062 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004063 vim_free(termcodes[i].code);
4064 --tc_len;
4065 break;
4066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 }
4068 }
4069 /*
4070 * Found alphabetical larger entry, move rest to insert new entry
4071 */
4072 for (j = tc_len; j > i; --j)
4073 termcodes[j] = termcodes[j - 1];
4074 break;
4075 }
4076
4077 termcodes[i].name[0] = name[0];
4078 termcodes[i].name[1] = name[1];
4079 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004080 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004081
4082 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4083 * accept modifiers. */
4084 termcodes[i].modlen = 0;
4085 j = termcode_star(s, len);
4086 if (j > 0)
4087 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 ++tc_len;
4089}
4090
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004091/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004092 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004093 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004094 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004095 */
4096 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004097termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004098{
4099 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
4100 if (len >= 3 && code[len - 2] == '*')
4101 {
4102 if (len >= 5 && code[len - 3] == ';')
4103 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004104 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004105 return 1;
4106 }
4107 return 0;
4108}
4109
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004111find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112{
4113 int i;
4114
4115 for (i = 0; i < tc_len; ++i)
4116 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4117 return termcodes[i].code;
4118 return NULL;
4119}
4120
4121#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4122 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004123get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124{
4125 if (i >= tc_len)
4126 return NULL;
4127 return &termcodes[i].name[0];
4128}
4129#endif
4130
4131 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004132del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133{
4134 int i;
4135
4136 if (termcodes == NULL) /* nothing there yet */
4137 return;
4138
4139 need_gather = TRUE; /* need to fill termleader[] */
4140
4141 for (i = 0; i < tc_len; ++i)
4142 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4143 {
4144 del_termcode_idx(i);
4145 return;
4146 }
4147 /* not found. Give error message? */
4148}
4149
4150 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004151del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152{
4153 int i;
4154
4155 vim_free(termcodes[idx].code);
4156 --tc_len;
4157 for (i = idx; i < tc_len; ++i)
4158 termcodes[i] = termcodes[i + 1];
4159}
4160
4161#ifdef FEAT_TERMRESPONSE
4162/*
4163 * Called when detected that the terminal sends 8-bit codes.
4164 * Convert all 7-bit codes to their 8-bit equivalent.
4165 */
4166 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004167switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168{
4169 int i;
4170 int c;
4171
4172 /* Only need to do something when not already using 8-bit codes. */
4173 if (!term_is_8bit(T_NAME))
4174 {
4175 for (i = 0; i < tc_len; ++i)
4176 {
4177 c = term_7to8bit(termcodes[i].code);
4178 if (c != 0)
4179 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004180 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 termcodes[i].code[0] = c;
4182 }
4183 }
4184 need_gather = TRUE; /* need to fill termleader[] */
4185 }
4186 detected_8bit = TRUE;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004187 LOG_TR(("Switching to 8 bit"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188}
4189#endif
4190
4191#ifdef CHECK_DOUBLE_CLICK
4192static linenr_T orig_topline = 0;
4193# ifdef FEAT_DIFF
4194static int orig_topfill = 0;
4195# endif
4196#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004197#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198/*
4199 * Checking for double clicks ourselves.
4200 * "orig_topline" is used to avoid detecting a double-click when the window
4201 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4202 */
4203/*
4204 * Set orig_topline. Used when jumping to another window, so that a double
4205 * click still works.
4206 */
4207 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004208set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209{
4210 orig_topline = wp->w_topline;
4211# ifdef FEAT_DIFF
4212 orig_topfill = wp->w_topfill;
4213# endif
4214}
4215#endif
4216
4217/*
4218 * Check if typebuf.tb_buf[] contains a terminal key code.
4219 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4220 * + max_offset].
4221 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004222 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 * With a match, the match is removed, the replacement code is inserted in
4224 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4225 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004226 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4227 * "buflen" is then the length of the string in buf[] and is updated for
4228 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 */
4230 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004231check_termcode(
4232 int max_offset,
4233 char_u *buf,
4234 int bufsize,
4235 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236{
4237 char_u *tp;
4238 char_u *p;
4239 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004240 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004242 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 int offset;
4244 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004245 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02004246 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004247 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 int new_slen;
4249 int extra;
4250 char_u string[MAX_KEY_CODE_LEN + 1];
4251 int i, j;
4252 int idx = 0;
4253#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004254# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4255 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 char_u bytes[6];
4257 int num_bytes;
4258# endif
4259 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 int is_click, is_drag;
4261 int wheel_code = 0;
4262 int current_button;
4263 static int held_button = MOUSE_RELEASE;
4264 static int orig_num_clicks = 1;
4265 static int orig_mouse_code = 0x0;
4266# ifdef CHECK_DOUBLE_CLICK
4267 static int orig_mouse_col = 0;
4268 static int orig_mouse_row = 0;
4269 static struct timeval orig_mouse_time = {0, 0};
4270 /* time of previous mouse click */
4271 struct timeval mouse_time; /* time of current mouse click */
4272 long timediff; /* elapsed time in msec */
4273# endif
4274#endif
4275 int cpo_koffset;
4276#ifdef FEAT_MOUSE_GPM
4277 extern int gpm_flag; /* gpm library variable */
4278#endif
4279
4280 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4281
4282 /*
4283 * Speed up the checks for terminal codes by gathering all first bytes
4284 * used in termleader[]. Often this is just a single <Esc>.
4285 */
4286 if (need_gather)
4287 gather_termleader();
4288
4289 /*
4290 * Check at several positions in typebuf.tb_buf[], to catch something like
4291 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4292 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004293 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 * This is used often, KEEP IT FAST!
4295 */
4296 for (offset = 0; offset < max_offset; ++offset)
4297 {
4298 if (buf == NULL)
4299 {
4300 if (offset >= typebuf.tb_len)
4301 break;
4302 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4303 len = typebuf.tb_len - offset; /* length of the input */
4304 }
4305 else
4306 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004307 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 break;
4309 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004310 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 }
4312
4313 /*
4314 * Don't check characters after K_SPECIAL, those are already
4315 * translated terminal chars (avoid translating ~@^Hx).
4316 */
4317 if (*tp == K_SPECIAL)
4318 {
4319 offset += 2; /* there are always 2 extra characters */
4320 continue;
4321 }
4322
4323 /*
4324 * Skip this position if the character does not appear as the first
4325 * character in term_strings. This speeds up a lot, since most
4326 * termcodes start with the same character (ESC or CSI).
4327 */
4328 i = *tp;
4329 for (p = termleader; *p && *p != i; ++p)
4330 ;
4331 if (*p == NUL)
4332 continue;
4333
4334 /*
4335 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4336 * are in Insert mode.
4337 */
4338 if (*tp == ESC && !p_ek && (State & INSERT))
4339 continue;
4340
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004342 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004343 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344
4345#ifdef FEAT_GUI
4346 if (gui.in_use)
4347 {
4348 /*
4349 * GUI special key codes are all of the form [CSI xx].
4350 */
4351 if (*tp == CSI) /* Special key from GUI */
4352 {
4353 if (len < 3)
4354 return -1; /* Shouldn't happen */
4355 slen = 3;
4356 key_name[0] = tp[1];
4357 key_name[1] = tp[2];
4358 }
4359 }
4360 else
4361#endif /* FEAT_GUI */
4362 {
4363 for (idx = 0; idx < tc_len; ++idx)
4364 {
4365 /*
4366 * Ignore the entry if we are not at the start of
4367 * typebuf.tb_buf[]
4368 * and there are not enough characters to make a match.
4369 * But only when the 'K' flag is in 'cpoptions'.
4370 */
4371 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004372 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 if (cpo_koffset && offset && len < slen)
4374 continue;
4375 if (STRNCMP(termcodes[idx].code, tp,
4376 (size_t)(slen > len ? len : slen)) == 0)
4377 {
4378 if (len < slen) /* got a partial sequence */
4379 return -1; /* need to get more chars */
4380
4381 /*
4382 * When found a keypad key, check if there is another key
4383 * that matches and use that one. This makes <Home> to be
4384 * found instead of <kHome> when they produce the same
4385 * key code.
4386 */
4387 if (termcodes[idx].name[0] == 'K'
4388 && VIM_ISDIGIT(termcodes[idx].name[1]))
4389 {
4390 for (j = idx + 1; j < tc_len; ++j)
4391 if (termcodes[j].len == slen &&
4392 STRNCMP(termcodes[idx].code,
4393 termcodes[j].code, slen) == 0)
4394 {
4395 idx = j;
4396 break;
4397 }
4398 }
4399
4400 key_name[0] = termcodes[idx].name[0];
4401 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 break;
4403 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004404
4405 /*
4406 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004407 * <Esc>[123;*X (modslen == slen - 3)
4408 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4409 * When there is a modifier the * matches a number.
4410 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004411 */
4412 if (termcodes[idx].modlen > 0)
4413 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004414 modslen = termcodes[idx].modlen;
4415 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004416 continue;
4417 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004418 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004419 {
4420 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004421
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004422 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004423 return -1; /* need to get more chars */
4424
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004425 if (tp[modslen] == termcodes[idx].code[slen - 1])
4426 slen = modslen + 1; /* no modifiers */
4427 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004428 continue; /* no match */
4429 else
4430 {
4431 /* Skip over the digits, the final char must
4432 * follow. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004433 for (j = slen - 2; j < len && (isdigit(tp[j])
4434 || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004435 ;
4436 ++j;
4437 if (len < j) /* got a partial sequence */
4438 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004439 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4440 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004441
Bram Moolenaara529ce02017-06-22 22:37:57 +02004442 modifiers_start = tp + slen - 2;
4443
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004444 /* Match! Convert modifier bits. */
Bram Moolenaara529ce02017-06-22 22:37:57 +02004445 n = atoi((char *)modifiers_start) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004446 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004447 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004448 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004449 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004450 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004451 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004452 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004453 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004454
4455 slen = j;
4456 }
4457 key_name[0] = termcodes[idx].name[0];
4458 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004459 break;
4460 }
4461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 }
4463 }
4464
4465#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004466 if (key_name[0] == NUL
Bram Moolenaara529ce02017-06-22 22:37:57 +02004467 /* Mouse codes of DEC and pterm start with <ESC>[. When
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004468 * detecting the start of these mouse codes they might as well be
4469 * another key code or terminal response. */
4470# ifdef FEAT_MOUSE_DEC
4471 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004472# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004473# ifdef FEAT_MOUSE_PTERM
4474 || key_name[0] == KS_PTERM_MOUSE
4475# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004476 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004478 /* Check for some responses from the terminal starting with
4479 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004480 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004481 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004482 * Libvterm returns {x} == 0, {vers} == 100, {y} == 0.
Bram Moolenaar9584b312013-03-13 19:29:28 +01004483 * Also eat other possible responses to t_RV, rxvt returns
4484 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4485 * mrxvt has been reported to have "+" in the version. Assume
4486 * the escape sequence ends with a letter or one of "{|}~".
4487 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004488 * - Cursor position report: <Esc>[{row};{col}R
4489 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004490 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004491 *
4492 * - window position reply: <Esc>[3;{x};{y}t
Bram Moolenaar9584b312013-03-13 19:29:28 +01004493 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004494 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004495
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004496 if ((*T_CRV != NUL || *T_U7 != NUL || did_request_winpos)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004497 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004498 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004499 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 {
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004501 int col = 0;
4502 int semicols = 0;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004503#ifdef FEAT_MBYTE
Bram Moolenaarc41053062014-03-25 13:46:26 +01004504 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004505#endif
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004506
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004508 for (i = 2 + (tp[0] != CSI); i < len
4509 && !(tp[i] >= '{' && tp[i] <= '~')
4510 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004511 if (tp[i] == ';' && ++semicols == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004512 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004513 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004514#ifdef FEAT_MBYTE
4515 row_char = tp[i - 1];
4516#endif
4517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004519 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004520 LOG_TR(("Not enough characters for CRV"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02004521 return -1;
4522 }
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004523 if (extra > 0)
4524 col = atoi((char *)tp + extra);
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004525
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004526#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004527 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4528 * u7_status is not "sent", it may be from a previous Vim that
4529 * just exited. But not for <S-F3>, it sends something
4530 * similar, check for row and column to make sense. */
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004531 if (semicols == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004532 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004533 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004534 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004535 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004536
Bram Moolenaarb255b902018-04-24 21:40:10 +02004537 LOG_TR(("Received U7 status: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004538 u7_status = STATUS_GOT;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004539 did_cursorhold = TRUE;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004540 if (col == 2)
4541 aw = "single";
4542 else if (col == 3)
4543 aw = "double";
4544 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4545 {
4546 /* Setting the option causes a screen redraw. Do
4547 * that right away if possible, keeping any
4548 * messages. */
4549 set_option_value((char_u *)"ambw", 0L,
4550 (char_u *)aw, 0);
4551# ifdef DEBUG_TERMRESPONSE
4552 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004553 int r = redraw_asap(CLEAR);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004554
Bram Moolenaarb255b902018-04-24 21:40:10 +02004555 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004556 }
4557# else
4558 redraw_asap(CLEAR);
4559# endif
4560 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004561 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004562 key_name[0] = (int)KS_EXTRA;
4563 key_name[1] = (int)KE_IGNORE;
4564 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004565# ifdef FEAT_EVAL
4566 set_vim_var_string(VV_TERMU7RESP, tp, slen);
4567# endif
Bram Moolenaar9584b312013-03-13 19:29:28 +01004568 }
4569 else
4570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004572 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 {
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004574 int version = col;
4575
Bram Moolenaarb255b902018-04-24 21:40:10 +02004576 LOG_TR(("Received CRV response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004577 crv_status = STATUS_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004578 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579
4580 /* If this code starts with CSI, you can bet that the
4581 * terminal uses 8-bit codes. */
4582 if (tp[0] == CSI)
4583 switch_to_8bit();
4584
4585 /* rxvt sends its version number: "20703" is 2.7.3.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004586 * Screen sends 40500.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 * Ignore it for when the user has set 'term' to xterm,
4588 * even though it's an rxvt. */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004589 if (version > 20000)
4590 version = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004592 if (tp[1 + (tp[0] != CSI)] == '>' && semicols == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004594 int need_flush = FALSE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004595# ifdef FEAT_MOUSE_SGR
4596 int is_iterm2 = FALSE;
4597# endif
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004598
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 /* if xterm version >= 141 try to get termcap codes */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004600 if (version >= 141)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004602 LOG_TR(("Enable checking for XT codes"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 check_for_codes = TRUE;
4604 need_gather = TRUE;
4605 req_codes_from_term();
4606 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004607
4608 /* libvterm sends 0;100;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004609 if (version == 100
Bram Moolenaare9224602017-08-26 15:29:47 +02004610 && STRNCMP(tp + extra - 2, "0;100;0c", 8) == 0)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004611 {
4612 /* If run from Vim $COLORS is set to the number of
4613 * colors the terminal supports. Otherwise assume
4614 * 256, libvterm supports even more. */
4615 if (mch_getenv((char_u *)"COLORS") == NULL)
4616 may_adjust_color_count(256);
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004617# ifdef FEAT_MOUSE_SGR
4618 /* Libvterm can handle SGR mouse reporting. */
4619 if (!option_was_set((char_u *)"ttym"))
4620 set_option_value((char_u *)"ttym", 0L,
4621 (char_u *)"sgr", 0);
4622# endif
4623 }
4624
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004625 if (version == 95)
4626 {
4627 /* Mac Terminal.app sends 1;95;0 */
4628 if (STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0)
4629 {
4630 is_not_xterm = TRUE;
4631 is_mac_terminal = TRUE;
4632 }
4633# ifdef FEAT_MOUSE_SGR
Bram Moolenaar05684312017-12-09 15:11:24 +01004634 /* iTerm2 sends 0;95;0 */
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004635 if (STRNCMP(tp + extra - 2, "0;95;0c", 7) == 0)
4636 is_iterm2 = TRUE;
4637# endif
4638 }
4639
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004640 /* Only set 'ttymouse' automatically if it was not set
4641 * by the user already. */
4642 if (!option_was_set((char_u *)"ttym"))
4643 {
4644# ifdef FEAT_MOUSE_SGR
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004645 /* Xterm version 277 supports SGR. Also support
Bram Moolenaar05684312017-12-09 15:11:24 +01004646 * Terminal.app and iTerm2. */
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004647 if (version >= 277 || is_iterm2 || is_mac_terminal)
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004648 set_option_value((char_u *)"ttym", 0L,
4649 (char_u *)"sgr", 0);
4650 else
4651# endif
4652 /* if xterm version >= 95 use mouse dragging */
4653 if (version >= 95)
4654 set_option_value((char_u *)"ttym", 0L,
4655 (char_u *)"xterm2", 0);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004656 }
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004657
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004658 /* Detect terminals that set $TERM to something like
4659 * "xterm-256colors" but are not fully xterm
4660 * compatible. */
Bram Moolenaarc2127982017-09-11 20:34:13 +02004661
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004662 /* Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004663 * xfce4-terminal sends 1;2802;0.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004664 * screen sends 83;40500;0
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004665 * Assuming any version number over 2500 is not an
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004666 * xterm (without the limit for rxvt and screen). */
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004667 if (col >= 2500)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004668 is_not_xterm = TRUE;
4669
Bram Moolenaar2e49b6b2017-09-06 22:08:16 +02004670 /* PuTTY sends 0;136;0
4671 * vandyke SecureCRT sends 1;136;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004672 if (version == 136
Bram Moolenaar618d6d22017-09-07 12:59:25 +02004673 && STRNCMP(tp + extra - 1, ";136;0c", 7) == 0)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004674 is_not_xterm = TRUE;
4675
4676 /* Konsole sends 0;115;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004677 if (version == 115
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004678 && STRNCMP(tp + extra - 2, "0;115;0c", 8) == 0)
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004679 is_not_xterm = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004680
4681 /* Only request the cursor style if t_SH and t_RS are
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004682 * set. Only supported properly by xterm since version
4683 * 279 (otherwise it returns 0x18).
4684 * Not for Terminal.app, it can't handle t_RS, it
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004685 * echoes the characters to the screen. */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004686 if (rcs_status == STATUS_GET
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004687 && version >= 279
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004688 && !is_not_xterm
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004689 && *T_CSH != NUL
4690 && *T_CRS != NUL)
4691 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004692 LOG_TR(("Sending cursor style request"));
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004693 out_str(T_CRS);
Bram Moolenaar4db25542017-08-28 22:43:05 +02004694 rcs_status = STATUS_SENT;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004695 need_flush = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004696 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004697
4698 /* Only request the cursor blink mode if t_RC set. Not
4699 * for Gnome terminal, it can't handle t_RC, it
4700 * echoes the characters to the screen. */
4701 if (rbm_status == STATUS_GET
4702 && !is_not_xterm
4703 && *T_CRC != NUL)
4704 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004705 LOG_TR(("Sending cursor blink mode request"));
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004706 out_str(T_CRC);
4707 rbm_status = STATUS_SENT;
4708 need_flush = TRUE;
4709 }
4710
4711 if (need_flush)
4712 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004714 slen = i + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715# ifdef FEAT_EVAL
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004716 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 apply_autocmds(EVENT_TERMRESPONSE,
4719 NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 key_name[0] = (int)KS_EXTRA;
4721 key_name[1] = (int)KE_IGNORE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 }
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004723
Bram Moolenaar4db25542017-08-28 22:43:05 +02004724 /* Check blinking cursor from xterm:
4725 * {lead}?12;1$y set
4726 * {lead}?12;2$y not set
4727 *
4728 * {lead} can be <Esc>[ or CSI
4729 */
4730 else if (rbm_status == STATUS_SENT
4731 && tp[(j = 1 + (tp[0] == ESC))] == '?'
4732 && i == j + 6
4733 && tp[j + 1] == '1'
4734 && tp[j + 2] == '2'
4735 && tp[j + 3] == ';'
4736 && tp[i - 1] == '$'
4737 && tp[i] == 'y')
4738 {
4739 initial_cursor_blink = (tp[j + 4] == '1');
4740 rbm_status = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004741 LOG_TR(("Received cursor blinking mode response: %s", tp));
Bram Moolenaar4db25542017-08-28 22:43:05 +02004742 key_name[0] = (int)KS_EXTRA;
4743 key_name[1] = (int)KE_IGNORE;
4744 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004745# ifdef FEAT_EVAL
4746 set_vim_var_string(VV_TERMBLINKRESP, tp, slen);
4747# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004748 }
4749
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004750 /*
4751 * Check for a window position response from the terminal:
4752 * {lead}3;{x}:{y}t
4753 */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004754 else if (did_request_winpos
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004755 && ((len >= 4 && tp[0] == ESC && tp[1] == '[')
4756 || (len >= 3 && tp[0] == CSI))
4757 && tp[(j = 1 + (tp[0] == ESC))] == '3'
4758 && tp[j + 1] == ';')
4759 {
4760 j += 2;
4761 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4762 ;
4763 if (i < len && tp[i] == ';')
4764 {
4765 winpos_x = atoi((char *)tp + j);
4766 j = i + 1;
4767 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4768 ;
4769 if (i < len && tp[i] == 't')
4770 {
4771 winpos_y = atoi((char *)tp + j);
4772 /* got finished code: consume it */
4773 key_name[0] = (int)KS_EXTRA;
4774 key_name[1] = (int)KE_IGNORE;
4775 slen = i + 1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004776
4777 if (--did_request_winpos <= 0)
4778 winpos_status = STATUS_GOT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004779 }
4780 }
4781 if (i == len)
4782 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004783 LOG_TR(("not enough characters for winpos"));
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004784 return -1;
4785 }
4786 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004787 }
4788
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004789 /* Check for fore/background color response from the terminal:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004790 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004791 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004792 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004793 * {code} is 10 for foreground, 11 for background
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004794 * {lead} can be <Esc>] or OSC
4795 * {tail} can be '\007', <Esc>\ or STERM.
4796 *
4797 * Consume any code that starts with "{lead}11;", it's also
4798 * possible that "rgba" is following.
4799 */
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004800 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004801 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4802 || tp[0] == OSC))
4803 {
4804 j = 1 + (tp[0] == ESC);
4805 if (len >= j + 3 && (argp[0] != '1'
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004806 || (argp[1] != '1' && argp[1] != '0')
4807 || argp[2] != ';'))
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004808 i = 0; /* no match */
4809 else
4810 for (i = j; i < len; ++i)
4811 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4812 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004813 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004814 int is_bg = argp[1] == '1';
4815
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004816 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004817 && tp[j + 11] == '/' && tp[j + 16] == '/')
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004818 {
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004819#ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004820 int rval = hexhex2nr(tp + j + 7);
4821 int gval = hexhex2nr(tp + j + 12);
4822 int bval = hexhex2nr(tp + j + 17);
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004823#endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004824 if (is_bg)
4825 {
4826 char *newval = (3 * '6' < tp[j+7] + tp[j+12]
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004827 + tp[j+17]) ? "light" : "dark";
4828
Bram Moolenaarb255b902018-04-24 21:40:10 +02004829 LOG_TR(("Received RBG response: %s", tp));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004830 rbg_status = STATUS_GOT;
4831#ifdef FEAT_TERMINAL
4832 bg_r = rval;
4833 bg_g = gval;
4834 bg_b = bval;
4835#endif
4836 if (!option_was_set((char_u *)"bg")
4837 && STRCMP(p_bg, newval) != 0)
4838 {
4839 /* value differs, apply it */
4840 set_option_value((char_u *)"bg", 0L,
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004841 (char_u *)newval, 0);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004842 reset_option_was_set((char_u *)"bg");
4843 redraw_asap(CLEAR);
4844 }
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004845 }
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004846#ifdef FEAT_TERMINAL
4847 else
4848 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004849 LOG_TR(("Received RFG response: %s", tp));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004850 rfg_status = STATUS_GOT;
4851 fg_r = rval;
4852 fg_g = gval;
4853 fg_b = bval;
4854 }
4855#endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004856 }
4857
4858 /* got finished code: consume it */
4859 key_name[0] = (int)KS_EXTRA;
4860 key_name[1] = (int)KE_IGNORE;
4861 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004862# ifdef FEAT_EVAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004863 set_vim_var_string(is_bg ? VV_TERMRBGRESP
4864 : VV_TERMRFGRESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004865# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004866 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004867 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004868 if (i == len)
4869 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004870 LOG_TR(("not enough characters for RB"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004871 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 }
4874
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004875 /* Check for key code response from xterm:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004876 * {lead}{flag}+r<hex bytes><{tail}
4877 *
4878 * {lead} can be <Esc>P or DCS
4879 * {flag} can be '0' or '1'
4880 * {tail} can be Esc>\ or STERM
4881 *
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004882 * Check for cursor shape response from xterm:
Bram Moolenaar590ec872018-03-02 20:58:42 +01004883 * {lead}1$r<digit> q{tail}
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004884 *
4885 * {lead} can be <Esc>P or DCS
4886 * {tail} can be Esc>\ or STERM
4887 *
4888 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004889 */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004890 else if ((check_for_codes || rcs_status == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004891 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 || tp[0] == DCS))
4893 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004894 j = 1 + (tp[0] == ESC);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004895 if (len < j + 3)
4896 i = len; /* need more chars */
4897 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004898 i = 0; /* no match */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004899 else if (argp[1] == '+')
4900 /* key code response */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004901 for (i = j; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004902 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004903 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 || tp[i] == STERM)
4905 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004906 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 got_code_from_term(tp + j, i);
4908 key_name[0] = (int)KS_EXTRA;
4909 key_name[1] = (int)KE_IGNORE;
4910 slen = i + 1 + (tp[i] == ESC);
4911 break;
4912 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004913 }
Bram Moolenaar590ec872018-03-02 20:58:42 +01004914 else
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004915 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01004916 /* Probably the cursor shape response. Make sure that "i"
4917 * is equal to "len" when there are not sufficient
4918 * characters. */
4919 for (i = j + 3; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004920 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01004921 if (i - j == 3 && !isdigit(tp[i]))
4922 break;
4923 if (i - j == 4 && tp[i] != ' ')
4924 break;
4925 if (i - j == 5 && tp[i] != 'q')
4926 break;
4927 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
4928 break;
4929 if ((i - j == 6 && tp[i] == STERM)
4930 || (i - j == 7 && tp[i] == '\\'))
4931 {
4932 int number = argp[3] - '0';
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004933
Bram Moolenaar590ec872018-03-02 20:58:42 +01004934 /* 0, 1 = block blink, 2 = block
4935 * 3 = underline blink, 4 = underline
4936 * 5 = vertical bar blink, 6 = vertical bar */
4937 number = number == 0 ? 1 : number;
4938 initial_cursor_shape = (number + 1) / 2;
4939 /* The blink flag is actually inverted, compared to
4940 * the value set with T_SH. */
4941 initial_cursor_shape_blink =
Bram Moolenaar4db25542017-08-28 22:43:05 +02004942 (number & 1) ? FALSE : TRUE;
Bram Moolenaar590ec872018-03-02 20:58:42 +01004943 rcs_status = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004944 LOG_TR(("Received cursor shape response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004945
Bram Moolenaar590ec872018-03-02 20:58:42 +01004946 key_name[0] = (int)KS_EXTRA;
4947 key_name[1] = (int)KE_IGNORE;
4948 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004949# ifdef FEAT_EVAL
Bram Moolenaar590ec872018-03-02 20:58:42 +01004950 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004951# endif
Bram Moolenaar590ec872018-03-02 20:58:42 +01004952 break;
4953 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004954 }
4955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956
4957 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004958 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004959 /* These codes arrive many together, each code can be
4960 * truncated at any point. */
Bram Moolenaarb255b902018-04-24 21:40:10 +02004961 LOG_TR(("not enough characters for XT"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004962 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 }
4965 }
4966#endif
4967
4968 if (key_name[0] == NUL)
4969 continue; /* No match at this position, try next one */
4970
4971 /* We only get here when we have a complete termcode match */
4972
4973#ifdef FEAT_MOUSE
4974# ifdef FEAT_GUI
4975 /*
4976 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4977 * so that we know which window to scroll later.
4978 */
4979 if (gui.in_use
4980 && key_name[0] == (int)KS_EXTRA
4981 && (key_name[1] == (int)KE_X1MOUSE
4982 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004983 || key_name[1] == (int)KE_MOUSELEFT
4984 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 || key_name[1] == (int)KE_MOUSEDOWN
4986 || key_name[1] == (int)KE_MOUSEUP))
4987 {
4988 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4989 if (num_bytes == -1) /* not enough coordinates */
4990 return -1;
4991 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4992 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4993 slen += num_bytes;
4994 }
4995 else
4996# endif
4997 /*
4998 * If it is a mouse click, get the coordinates.
4999 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005000 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005002 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003# endif
5004# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005005 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006# endif
5007# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005008 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009# endif
5010# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005011 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005013# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005014 || key_name[0] == KS_URXVT_MOUSE
5015# endif
5016# ifdef FEAT_MOUSE_SGR
5017 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005018 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005019# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 )
5021 {
5022 is_click = is_drag = FALSE;
5023
Bram Moolenaar864207d2008-06-24 22:14:38 +00005024# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
5025 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 if (key_name[0] == (int)KS_MOUSE)
5027 {
5028 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005029 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 * s == encoded button state:
5031 * 0x20 = left button down
5032 * 0x21 = middle button down
5033 * 0x22 = right button down
5034 * 0x23 = any button release
5035 * 0x60 = button 4 down (scroll wheel down)
5036 * 0x61 = button 5 down (scroll wheel up)
5037 * add 0x04 for SHIFT
5038 * add 0x08 for ALT
5039 * add 0x10 for CTRL
5040 * add 0x20 for mouse drag (0x40 is drag with left button)
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005041 * add 0x40 for mouse move (0x80 is move, 0x81 too)
5042 * 0x43 (drag + release) is also move
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 * c == column + ' ' + 1 == column + 33
5044 * r == row + ' ' + 1 == row + 33
5045 *
5046 * The coordinates are passed on through global variables.
5047 * Ugly, but this avoids trouble with mouse clicks at an
5048 * unexpected moment and allows for mapping them.
5049 */
5050 for (;;)
5051 {
5052#ifdef FEAT_GUI
5053 if (gui.in_use)
5054 {
5055 /* GUI uses more bits for columns > 223 */
5056 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
5057 if (num_bytes == -1) /* not enough coordinates */
5058 return -1;
5059 mouse_code = bytes[0];
5060 mouse_col = 128 * (bytes[1] - ' ' - 1)
5061 + bytes[2] - ' ' - 1;
5062 mouse_row = 128 * (bytes[3] - ' ' - 1)
5063 + bytes[4] - ' ' - 1;
5064 }
5065 else
5066#endif
5067 {
5068 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
5069 if (num_bytes == -1) /* not enough coordinates */
5070 return -1;
5071 mouse_code = bytes[0];
5072 mouse_col = bytes[1] - ' ' - 1;
5073 mouse_row = bytes[2] - ' ' - 1;
5074 }
5075 slen += num_bytes;
5076
5077 /* If the following bytes is also a mouse code and it has
5078 * the same code, dump this one and get the next. This
5079 * makes dragging a whole lot faster. */
5080#ifdef FEAT_GUI
5081 if (gui.in_use)
5082 j = 3;
5083 else
5084#endif
5085 j = termcodes[idx].len;
5086 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
5087 && tp[slen + j] == mouse_code
5088 && tp[slen + j + 1] != NUL
5089 && tp[slen + j + 2] != NUL
5090#ifdef FEAT_GUI
5091 && (!gui.in_use
5092 || (tp[slen + j + 3] != NUL
5093 && tp[slen + j + 4] != NUL))
5094#endif
5095 )
5096 slen += j;
5097 else
5098 break;
5099 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005102# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
5103 if (key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005104 || key_name[0] == KS_SGR_MOUSE
5105 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005106 {
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005107 /* URXVT 1015 mouse reporting mode:
5108 * Almost identical to xterm mouse mode, except the values
5109 * are decimal instead of bytes.
5110 *
5111 * \033[%d;%d;%dM
5112 * ^-- row
5113 * ^----- column
5114 * ^-------- code
5115 *
5116 * SGR 1006 mouse reporting mode:
5117 * Almost identical to xterm mouse mode, except the values
5118 * are decimal instead of bytes.
5119 *
5120 * \033[<%d;%d;%dM
5121 * ^-- row
5122 * ^----- column
5123 * ^-------- code
5124 *
5125 * \033[<%d;%d;%dm : mouse release event
5126 * ^-- row
5127 * ^----- column
5128 * ^-------- code
5129 */
5130 p = modifiers_start;
5131 if (p == NULL)
5132 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005133
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005134 mouse_code = getdigits(&p);
5135 if (*p++ != ';')
5136 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005137
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005138 /* when mouse reporting is SGR, add 32 to mouse code */
5139 if (key_name[0] == KS_SGR_MOUSE
5140 || key_name[0] == KS_SGR_MOUSE_RELEASE)
5141 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005142
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005143 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
5144 mouse_code |= MOUSE_RELEASE;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005145
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005146 mouse_col = getdigits(&p) - 1;
5147 if (*p++ != ';')
5148 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005149
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005150 mouse_row = getdigits(&p) - 1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005151
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005152 /* The modifiers were the mouse coordinates, not the
5153 * modifier keys (alt/shift/ctrl/meta) state. */
5154 modifiers = 0;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005155 }
5156# endif
5157
5158 if (key_name[0] == (int)KS_MOUSE
5159#ifdef FEAT_MOUSE_URXVT
5160 || key_name[0] == (int)KS_URXVT_MOUSE
5161#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005162#ifdef FEAT_MOUSE_SGR
5163 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005164 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005165#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005166 )
5167 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005168# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 /*
5170 * Handle mouse events.
5171 * Recognize the xterm mouse wheel, but not in the GUI, the
5172 * Linux console with GPM and the MS-DOS or Win32 console
5173 * (multi-clicks use >= 0x60).
5174 */
5175 if (mouse_code >= MOUSEWHEEL_LOW
5176# ifdef FEAT_GUI
5177 && !gui.in_use
5178# endif
5179# ifdef FEAT_MOUSE_GPM
5180 && gpm_flag == 0
5181# endif
5182 )
5183 {
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005184# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5185 if (use_xterm_mouse() > 1 && mouse_code >= 0x80)
5186 /* mouse-move event, using MOUSE_DRAG works */
5187 mouse_code = MOUSE_DRAG;
5188 else
5189# endif
5190 /* Keep the mouse_code before it's changed, so that we
5191 * remember that it was a mouse wheel click. */
5192 wheel_code = mouse_code;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 }
5194# ifdef FEAT_MOUSE_XTERM
5195 else if (held_button == MOUSE_RELEASE
5196# ifdef FEAT_GUI
5197 && !gui.in_use
5198# endif
Bram Moolenaar1f8495c2018-04-04 21:53:11 +02005199 && (mouse_code == 0x23 || mouse_code == 0x24
5200 || mouse_code == 0x40 || mouse_code == 0x41))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 {
Bram Moolenaar1f8495c2018-04-04 21:53:11 +02005202 /* Apparently 0x23 and 0x24 are used by rxvt scroll wheel.
5203 * And 0x40 and 0x41 are used by some xterm emulator. */
5204 wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23)
5205 + MOUSEWHEEL_LOW;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 }
5207# endif
5208
5209# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5210 else if (use_xterm_mouse() > 1)
5211 {
5212 if (mouse_code & MOUSE_DRAG_XTERM)
5213 mouse_code |= MOUSE_DRAG;
5214 }
5215# endif
5216# ifdef FEAT_XCLIPBOARD
5217 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
5218 {
5219 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
5220 stop_xterm_trace();
5221 else
5222 start_xterm_trace(mouse_code);
5223 }
5224# endif
5225# endif
5226 }
5227# endif /* !UNIX || FEAT_MOUSE_XTERM */
5228# ifdef FEAT_MOUSE_NET
5229 if (key_name[0] == (int)KS_NETTERM_MOUSE)
5230 {
5231 int mc, mr;
5232
5233 /* expect a rather limited sequence like: balancing {
5234 * \033}6,45\r
5235 * '6' is the row, 45 is the column
5236 */
5237 p = tp + slen;
5238 mr = getdigits(&p);
5239 if (*p++ != ',')
5240 return -1;
5241 mc = getdigits(&p);
5242 if (*p++ != '\r')
5243 return -1;
5244
5245 mouse_col = mc - 1;
5246 mouse_row = mr - 1;
5247 mouse_code = MOUSE_LEFT;
5248 slen += (int)(p - (tp + slen));
5249 }
5250# endif /* FEAT_MOUSE_NET */
5251# ifdef FEAT_MOUSE_JSB
5252 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
5253 {
5254 int mult, val, iter, button, status;
5255
5256 /* JSBTERM Input Model
5257 * \033[0~zw uniq escape sequence
5258 * (L-x) Left button pressed - not pressed x not reporting
5259 * (M-x) Middle button pressed - not pressed x not reporting
5260 * (R-x) Right button pressed - not pressed x not reporting
5261 * (SDmdu) Single , Double click, m mouse move d button down
5262 * u button up
5263 * ### X cursor position padded to 3 digits
5264 * ### Y cursor position padded to 3 digits
5265 * (s-x) SHIFT key pressed - not pressed x not reporting
5266 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005267 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 */
5269
5270 p = tp + slen;
5271 button = mouse_code = 0;
5272 switch (*p++)
5273 {
5274 case 'L': button = 1; break;
5275 case '-': break;
5276 case 'x': break; /* ignore sequence */
5277 default: return -1; /* Unknown Result */
5278 }
5279 switch (*p++)
5280 {
5281 case 'M': button |= 2; break;
5282 case '-': break;
5283 case 'x': break; /* ignore sequence */
5284 default: return -1; /* Unknown Result */
5285 }
5286 switch (*p++)
5287 {
5288 case 'R': button |= 4; break;
5289 case '-': break;
5290 case 'x': break; /* ignore sequence */
5291 default: return -1; /* Unknown Result */
5292 }
5293 status = *p++;
5294 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5295 mult /= 10, p++)
5296 if (*p >= '0' && *p <= '9')
5297 val += (*p - '0') * mult;
5298 else
5299 return -1;
5300 mouse_col = val;
5301 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5302 mult /= 10, p++)
5303 if (*p >= '0' && *p <= '9')
5304 val += (*p - '0') * mult;
5305 else
5306 return -1;
5307 mouse_row = val;
5308 switch (*p++)
5309 {
5310 case 's': button |= 8; break; /* SHIFT key Pressed */
5311 case '-': break; /* Not Pressed */
5312 case 'x': break; /* Not Reporting */
5313 default: return -1; /* Unknown Result */
5314 }
5315 switch (*p++)
5316 {
5317 case 'c': button |= 16; break; /* CTRL key Pressed */
5318 case '-': break; /* Not Pressed */
5319 case 'x': break; /* Not Reporting */
5320 default: return -1; /* Unknown Result */
5321 }
5322 if (*p++ != '\033')
5323 return -1;
5324 if (*p++ != '\\')
5325 return -1;
5326 switch (status)
5327 {
5328 case 'D': /* Double Click */
5329 case 'S': /* Single Click */
5330 if (button & 1) mouse_code |= MOUSE_LEFT;
5331 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5332 if (button & 4) mouse_code |= MOUSE_RIGHT;
5333 if (button & 8) mouse_code |= MOUSE_SHIFT;
5334 if (button & 16) mouse_code |= MOUSE_CTRL;
5335 break;
5336 case 'm': /* Mouse move */
5337 if (button & 1) mouse_code |= MOUSE_LEFT;
5338 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5339 if (button & 4) mouse_code |= MOUSE_RIGHT;
5340 if (button & 8) mouse_code |= MOUSE_SHIFT;
5341 if (button & 16) mouse_code |= MOUSE_CTRL;
5342 if ((button & 7) != 0)
5343 {
5344 held_button = mouse_code;
5345 mouse_code |= MOUSE_DRAG;
5346 }
5347 is_drag = TRUE;
5348 showmode();
5349 break;
5350 case 'd': /* Button Down */
5351 if (button & 1) mouse_code |= MOUSE_LEFT;
5352 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5353 if (button & 4) mouse_code |= MOUSE_RIGHT;
5354 if (button & 8) mouse_code |= MOUSE_SHIFT;
5355 if (button & 16) mouse_code |= MOUSE_CTRL;
5356 break;
5357 case 'u': /* Button Up */
5358 if (button & 1)
5359 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
5360 if (button & 2)
5361 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
5362 if (button & 4)
5363 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
5364 if (button & 8)
5365 mouse_code |= MOUSE_SHIFT;
5366 if (button & 16)
5367 mouse_code |= MOUSE_CTRL;
5368 break;
5369 default: return -1; /* Unknown Result */
5370 }
5371
5372 slen += (p - (tp + slen));
5373 }
5374# endif /* FEAT_MOUSE_JSB */
5375# ifdef FEAT_MOUSE_DEC
5376 if (key_name[0] == (int)KS_DEC_MOUSE)
5377 {
5378 /* The DEC Locator Input Model
5379 * Netterm delivers the code sequence:
5380 * \033[2;4;24;80&w (left button down)
5381 * \033[3;0;24;80&w (left button up)
5382 * \033[6;1;24;80&w (right button down)
5383 * \033[7;0;24;80&w (right button up)
5384 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
5385 * Pe is the event code
5386 * Pb is the button code
5387 * Pr is the row coordinate
5388 * Pc is the column coordinate
5389 * Pp is the third coordinate (page number)
5390 * Pe, the event code indicates what event caused this report
5391 * The following event codes are defined:
5392 * 0 - request, the terminal received an explicit request
5393 * for a locator report, but the locator is unavailable
5394 * 1 - request, the terminal received an explicit request
5395 * for a locator report
5396 * 2 - left button down
5397 * 3 - left button up
5398 * 4 - middle button down
5399 * 5 - middle button up
5400 * 6 - right button down
5401 * 7 - right button up
5402 * 8 - fourth button down
5403 * 9 - fourth button up
5404 * 10 - locator outside filter rectangle
5405 * Pb, the button code, ASCII decimal 0-15 indicating which
5406 * buttons are down if any. The state of the four buttons
5407 * on the locator correspond to the low four bits of the
5408 * decimal value,
5409 * "1" means button depressed
5410 * 0 - no buttons down,
5411 * 1 - right,
5412 * 2 - middle,
5413 * 4 - left,
5414 * 8 - fourth
5415 * Pr is the row coordinate of the locator position in the page,
5416 * encoded as an ASCII decimal value.
5417 * If Pr is omitted, the locator position is undefined
5418 * (outside the terminal window for example).
5419 * Pc is the column coordinate of the locator position in the
5420 * page, encoded as an ASCII decimal value.
5421 * If Pc is omitted, the locator position is undefined
5422 * (outside the terminal window for example).
5423 * Pp is the page coordinate of the locator position
5424 * encoded as an ASCII decimal value.
5425 * The page coordinate may be omitted if the locator is on
5426 * page one (the default). We ignore it anyway.
5427 */
5428 int Pe, Pb, Pr, Pc;
5429
5430 p = tp + slen;
5431
5432 /* get event status */
5433 Pe = getdigits(&p);
5434 if (*p++ != ';')
5435 return -1;
5436
5437 /* get button status */
5438 Pb = getdigits(&p);
5439 if (*p++ != ';')
5440 return -1;
5441
5442 /* get row status */
5443 Pr = getdigits(&p);
5444 if (*p++ != ';')
5445 return -1;
5446
5447 /* get column status */
5448 Pc = getdigits(&p);
5449
5450 /* the page parameter is optional */
5451 if (*p == ';')
5452 {
5453 p++;
5454 (void)getdigits(&p);
5455 }
5456 if (*p++ != '&')
5457 return -1;
5458 if (*p++ != 'w')
5459 return -1;
5460
5461 mouse_code = 0;
5462 switch (Pe)
5463 {
5464 case 0: return -1; /* position request while unavailable */
5465 case 1: /* a response to a locator position request includes
5466 the status of all buttons */
5467 Pb &= 7; /* mask off and ignore fourth button */
5468 if (Pb & 4)
5469 mouse_code = MOUSE_LEFT;
5470 if (Pb & 2)
5471 mouse_code = MOUSE_MIDDLE;
5472 if (Pb & 1)
5473 mouse_code = MOUSE_RIGHT;
5474 if (Pb)
5475 {
5476 held_button = mouse_code;
5477 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005478 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 }
5480 is_drag = TRUE;
5481 showmode();
5482 break;
5483 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005484 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 break;
5486 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5487 break;
5488 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005489 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 break;
5491 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5492 break;
5493 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005494 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 break;
5496 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5497 break;
5498 case 8: return -1; /* fourth button down */
5499 case 9: return -1; /* fourth button up */
5500 case 10: return -1; /* mouse outside of filter rectangle */
5501 default: return -1; /* should never occur */
5502 }
5503
5504 mouse_col = Pc - 1;
5505 mouse_row = Pr - 1;
5506
5507 slen += (int)(p - (tp + slen));
5508 }
5509# endif /* FEAT_MOUSE_DEC */
5510# ifdef FEAT_MOUSE_PTERM
5511 if (key_name[0] == (int)KS_PTERM_MOUSE)
5512 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005513 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514
5515 p = tp + slen;
5516
5517 action = getdigits(&p);
5518 if (*p++ != ';')
5519 return -1;
5520
5521 mouse_row = getdigits(&p);
5522 if (*p++ != ';')
5523 return -1;
5524 mouse_col = getdigits(&p);
5525 if (*p++ != ';')
5526 return -1;
5527
5528 button = getdigits(&p);
5529 mouse_code = 0;
5530
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005531 switch (button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 {
5533 case 4: mouse_code = MOUSE_LEFT; break;
5534 case 1: mouse_code = MOUSE_RIGHT; break;
5535 case 2: mouse_code = MOUSE_MIDDLE; break;
5536 default: return -1;
5537 }
5538
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005539 switch (action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 {
5541 case 31: /* Initial press */
5542 if (*p++ != ';')
5543 return -1;
5544
5545 num_clicks = getdigits(&p); /* Not used */
5546 break;
5547
5548 case 32: /* Release */
5549 mouse_code |= MOUSE_RELEASE;
5550 break;
5551
5552 case 33: /* Drag */
5553 held_button = mouse_code;
5554 mouse_code |= MOUSE_DRAG;
5555 break;
5556
5557 default:
5558 return -1;
5559 }
5560
5561 if (*p++ != 't')
5562 return -1;
5563
5564 slen += (p - (tp + slen));
5565 }
5566# endif /* FEAT_MOUSE_PTERM */
5567
5568 /* Interpret the mouse code */
5569 current_button = (mouse_code & MOUSE_CLICK_MASK);
5570 if (current_button == MOUSE_RELEASE
5571# ifdef FEAT_MOUSE_XTERM
5572 && wheel_code == 0
5573# endif
5574 )
5575 {
5576 /*
5577 * If we get a mouse drag or release event when
5578 * there is no mouse button held down (held_button ==
5579 * MOUSE_RELEASE), produce a K_IGNORE below.
5580 * (can happen when you hold down two buttons
5581 * and then let them go, or click in the menu bar, but not
5582 * on a menu, and drag into the text).
5583 */
5584 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5585 is_drag = TRUE;
5586 current_button = held_button;
5587 }
5588 else if (wheel_code == 0)
5589 {
5590# ifdef CHECK_DOUBLE_CLICK
5591# ifdef FEAT_MOUSE_GPM
5592# ifdef FEAT_GUI
5593 /*
5594 * Only for Unix, when GUI or gpm is not active, we handle
5595 * multi-clicks here.
5596 */
5597 if (gpm_flag == 0 && !gui.in_use)
5598# else
5599 if (gpm_flag == 0)
5600# endif
5601# else
5602# ifdef FEAT_GUI
5603 if (!gui.in_use)
5604# endif
5605# endif
5606 {
5607 /*
5608 * Compute the time elapsed since the previous mouse click.
5609 */
5610 gettimeofday(&mouse_time, NULL);
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005611 if (orig_mouse_time.tv_sec == 0)
5612 {
5613 /*
5614 * Avoid computing the difference between mouse_time
5615 * and orig_mouse_time for the first click, as the
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005616 * difference would be huge and would cause
5617 * multiplication overflow.
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005618 */
5619 timediff = p_mouset;
5620 }
5621 else
5622 {
5623 timediff = (mouse_time.tv_usec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005624 - orig_mouse_time.tv_usec) / 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005625 if (timediff < 0)
5626 --orig_mouse_time.tv_sec;
5627 timediff += (mouse_time.tv_sec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005628 - orig_mouse_time.tv_sec) * 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 orig_mouse_time = mouse_time;
5631 if (mouse_code == orig_mouse_code
5632 && timediff < p_mouset
5633 && orig_num_clicks != 4
5634 && orig_mouse_col == mouse_col
5635 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005636 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005638 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005640 )
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005641 /* Double click in tab pages line also works
5642 * when window contents changes. */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005643 || (mouse_row == 0 && firstwin->w_winrow > 0))
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005644 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 ++orig_num_clicks;
5646 else
5647 orig_num_clicks = 1;
5648 orig_mouse_col = mouse_col;
5649 orig_mouse_row = mouse_row;
5650 orig_topline = curwin->w_topline;
5651#ifdef FEAT_DIFF
5652 orig_topfill = curwin->w_topfill;
5653#endif
5654 }
5655# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5656 else
5657 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5658# endif
5659# else
5660 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5661# endif
5662 is_click = TRUE;
5663 orig_mouse_code = mouse_code;
5664 }
5665 if (!is_drag)
5666 held_button = mouse_code & MOUSE_CLICK_MASK;
5667
5668 /*
5669 * Translate the actual mouse event into a pseudo mouse event.
5670 * First work out what modifiers are to be used.
5671 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 if (orig_mouse_code & MOUSE_SHIFT)
5673 modifiers |= MOD_MASK_SHIFT;
5674 if (orig_mouse_code & MOUSE_CTRL)
5675 modifiers |= MOD_MASK_CTRL;
5676 if (orig_mouse_code & MOUSE_ALT)
5677 modifiers |= MOD_MASK_ALT;
5678 if (orig_num_clicks == 2)
5679 modifiers |= MOD_MASK_2CLICK;
5680 else if (orig_num_clicks == 3)
5681 modifiers |= MOD_MASK_3CLICK;
5682 else if (orig_num_clicks == 4)
5683 modifiers |= MOD_MASK_4CLICK;
5684
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005685 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets
5686 * added, then it's not mouse up/down. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 key_name[0] = (int)KS_EXTRA;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005688 if (wheel_code != 0
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005689 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005690 {
5691 if (wheel_code & MOUSE_CTRL)
5692 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005693 if (wheel_code & MOUSE_ALT)
5694 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 key_name[1] = (wheel_code & 1)
5696 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01005697 held_button = MOUSE_RELEASE;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005698 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 else
5700 key_name[1] = get_pseudo_mouse_code(current_button,
5701 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005702
5703 /* Make sure the mouse position is valid. Some terminals may
5704 * return weird values. */
5705 if (mouse_col >= Columns)
5706 mouse_col = Columns - 1;
5707 if (mouse_row >= Rows)
5708 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 }
5710#endif /* FEAT_MOUSE */
5711
5712#ifdef FEAT_GUI
5713 /*
5714 * If using the GUI, then we get menu and scrollbar events.
5715 *
5716 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5717 * four bytes which are to be taken as a pointer to the vimmenu_T
5718 * structure.
5719 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005720 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005721 * is one byte with the tab index.
5722 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5724 * by one byte representing the scrollbar number, and then four bytes
5725 * representing a long_u which is the new value of the scrollbar.
5726 *
5727 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5728 * KE_FILLER followed by four bytes representing a long_u which is the
5729 * new value of the scrollbar.
5730 */
5731# ifdef FEAT_MENU
5732 else if (key_name[0] == (int)KS_MENU)
5733 {
5734 long_u val;
5735
5736 num_bytes = get_long_from_buf(tp + slen, &val);
5737 if (num_bytes == -1)
5738 return -1;
5739 current_menu = (vimmenu_T *)val;
5740 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005741
5742 /* The menu may have been deleted right after it was used, check
5743 * for that. */
5744 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5745 {
5746 key_name[0] = KS_EXTRA;
5747 key_name[1] = (int)KE_IGNORE;
5748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 }
5750# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005751# ifdef FEAT_GUI_TABLINE
5752 else if (key_name[0] == (int)KS_TABLINE)
5753 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005754 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005755 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5756 if (num_bytes == -1)
5757 return -1;
5758 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005759 if (current_tab == 255) /* -1 in a byte gives 255 */
5760 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005761 slen += num_bytes;
5762 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005763 else if (key_name[0] == (int)KS_TABMENU)
5764 {
5765 /* Selecting tabline tab or using its menu. */
5766 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5767 if (num_bytes == -1)
5768 return -1;
5769 current_tab = (int)bytes[0];
5770 current_tabmenu = (int)bytes[1];
5771 slen += num_bytes;
5772 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005773# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774# ifndef USE_ON_FLY_SCROLL
5775 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5776 {
5777 long_u val;
5778
5779 /* Get the last scrollbar event in the queue of the same type */
5780 j = 0;
5781 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5782 && tp[j + 2] != NUL; ++i)
5783 {
5784 j += 3;
5785 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5786 if (num_bytes == -1)
5787 break;
5788 if (i == 0)
5789 current_scrollbar = (int)bytes[0];
5790 else if (current_scrollbar != (int)bytes[0])
5791 break;
5792 j += num_bytes;
5793 num_bytes = get_long_from_buf(tp + j, &val);
5794 if (num_bytes == -1)
5795 break;
5796 scrollbar_value = val;
5797 j += num_bytes;
5798 slen = j;
5799 }
5800 if (i == 0) /* not enough characters to make one */
5801 return -1;
5802 }
5803 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5804 {
5805 long_u val;
5806
5807 /* Get the last horiz. scrollbar event in the queue */
5808 j = 0;
5809 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5810 && tp[j + 2] != NUL; ++i)
5811 {
5812 j += 3;
5813 num_bytes = get_long_from_buf(tp + j, &val);
5814 if (num_bytes == -1)
5815 break;
5816 scrollbar_value = val;
5817 j += num_bytes;
5818 slen = j;
5819 }
5820 if (i == 0) /* not enough characters to make one */
5821 return -1;
5822 }
5823# endif /* !USE_ON_FLY_SCROLL */
5824#endif /* FEAT_GUI */
5825
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005826 /*
5827 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5828 */
5829 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5830
5831 /*
5832 * Add any modifier codes to our string.
5833 */
5834 new_slen = 0; /* Length of what will replace the termcode */
5835 if (modifiers != 0)
5836 {
5837 /* Some keys have the modifier included. Need to handle that here
5838 * to make mappings work. */
5839 key = simplify_key(key, &modifiers);
5840 if (modifiers != 0)
5841 {
5842 string[new_slen++] = K_SPECIAL;
5843 string[new_slen++] = (int)KS_MODIFIER;
5844 string[new_slen++] = modifiers;
5845 }
5846 }
5847
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005849 key_name[0] = KEY2TERMCAP0(key);
5850 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005852 {
5853 /* from ":set <M-b>=xx" */
5854#ifdef FEAT_MBYTE
5855 if (has_mbyte)
5856 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5857 else
5858#endif
5859 string[new_slen++] = key_name[1];
5860 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005861 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5862 && key_name[1] == KE_IGNORE)
5863 {
5864 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5865 * to indicate what happened. */
5866 retval = KEYLEN_REMOVED;
5867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 else
5869 {
5870 string[new_slen++] = K_SPECIAL;
5871 string[new_slen++] = key_name[0];
5872 string[new_slen++] = key_name[1];
5873 }
5874 string[new_slen] = NUL;
5875 extra = new_slen - slen;
5876 if (buf == NULL)
5877 {
5878 if (extra < 0)
5879 /* remove matched chars, taking care of noremap */
5880 del_typebuf(-extra, offset);
5881 else if (extra > 0)
5882 /* insert the extra space we need */
5883 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5884
5885 /*
5886 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5887 * typebuf.tb_buf[]!
5888 */
5889 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5890 (size_t)new_slen);
5891 }
5892 else
5893 {
5894 if (extra < 0)
5895 /* remove matched characters */
5896 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005897 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005899 {
5900 /* Insert the extra space we need. If there is insufficient
5901 * space return -1. */
5902 if (*buflen + extra + new_slen >= bufsize)
5903 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005905 (size_t)(*buflen - offset));
5906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005908 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005910 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911 }
5912
Bram Moolenaar2951b772013-07-03 12:45:31 +02005913#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02005914 LOG_TR(("normal character"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02005915#endif
5916
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 return 0; /* no match found */
5918}
5919
Bram Moolenaar9377df32017-10-15 13:22:01 +02005920#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005921/*
5922 * Get the text foreground color, if known.
5923 */
5924 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005925term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005926{
5927 if (rfg_status == STATUS_GOT)
5928 {
5929 *r = fg_r;
5930 *g = fg_g;
5931 *b = fg_b;
5932 }
5933}
5934
5935/*
5936 * Get the text background color, if known.
5937 */
5938 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005939term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005940{
5941 if (rbg_status == STATUS_GOT)
5942 {
5943 *r = bg_r;
5944 *g = bg_g;
5945 *b = bg_b;
5946 }
5947}
5948#endif
5949
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950/*
5951 * Replace any terminal code strings in from[] with the equivalent internal
5952 * vim representation. This is used for the "from" and "to" part of a
5953 * mapping, and the "to" part of a menu command.
5954 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5955 * '<'.
5956 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5957 *
5958 * The replacement is done in result[] and finally copied into allocated
5959 * memory. If this all works well *bufp is set to the allocated memory and a
5960 * pointer to it is returned. If something fails *bufp is set to NULL and from
5961 * is returned.
5962 *
5963 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5964 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5965 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5966 * instead of a CTRL-V.
5967 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005968 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005969replace_termcodes(
5970 char_u *from,
5971 char_u **bufp,
5972 int from_part,
5973 int do_lt, /* also translate <lt> */
5974 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975{
5976 int i;
5977 int slen;
5978 int key;
5979 int dlen = 0;
5980 char_u *src;
5981 int do_backslash; /* backslash is a special character */
5982 int do_special; /* recognize <> key codes */
5983 int do_key_code; /* recognize raw key codes */
5984 char_u *result; /* buffer for resulting string */
5985
5986 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005987 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5989
5990 /*
5991 * Allocate space for the translation. Worst case a single character is
5992 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5993 */
5994 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5995 if (result == NULL) /* out of memory */
5996 {
5997 *bufp = NULL;
5998 return from;
5999 }
6000
6001 src = from;
6002
6003 /*
6004 * Check for #n at start only: function key n
6005 */
6006 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
6007 {
6008 result[dlen++] = K_SPECIAL;
6009 result[dlen++] = 'k';
6010 if (src[1] == '0')
6011 result[dlen++] = ';'; /* #0 is F10 is "k;" */
6012 else
6013 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
6014 src += 2;
6015 }
6016
6017 /*
6018 * Copy each byte from *from to result[dlen]
6019 */
6020 while (*src != NUL)
6021 {
6022 /*
6023 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006024 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 */
6026 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
6027 {
6028#ifdef FEAT_EVAL
6029 /*
6030 * Replace <SID> by K_SNR <script-nr> _.
6031 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
6032 */
6033 if (STRNICMP(src, "<SID>", 5) == 0)
6034 {
6035 if (current_SID <= 0)
6036 EMSG(_(e_usingsid));
6037 else
6038 {
6039 src += 5;
6040 result[dlen++] = K_SPECIAL;
6041 result[dlen++] = (int)KS_EXTRA;
6042 result[dlen++] = (int)KE_SNR;
6043 sprintf((char *)result + dlen, "%ld", (long)current_SID);
6044 dlen += (int)STRLEN(result + dlen);
6045 result[dlen++] = '_';
6046 continue;
6047 }
6048 }
6049#endif
6050
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02006051 slen = trans_special(&src, result + dlen, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 if (slen)
6053 {
6054 dlen += slen;
6055 continue;
6056 }
6057 }
6058
6059 /*
6060 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
6061 * Note that this is also checked after replacing the <> form.
6062 * Single character codes are NOT replaced (e.g. ^H or DEL), because
6063 * it could be a character in the file.
6064 */
6065 if (do_key_code)
6066 {
6067 i = find_term_bykeys(src);
6068 if (i >= 0)
6069 {
6070 result[dlen++] = K_SPECIAL;
6071 result[dlen++] = termcodes[i].name[0];
6072 result[dlen++] = termcodes[i].name[1];
6073 src += termcodes[i].len;
6074 /* If terminal code matched, continue after it. */
6075 continue;
6076 }
6077 }
6078
6079#ifdef FEAT_EVAL
6080 if (do_special)
6081 {
6082 char_u *p, *s, len;
6083
6084 /*
6085 * Replace <Leader> by the value of "mapleader".
6086 * Replace <LocalLeader> by the value of "maplocalleader".
6087 * If "mapleader" or "maplocalleader" isn't set use a backslash.
6088 */
6089 if (STRNICMP(src, "<Leader>", 8) == 0)
6090 {
6091 len = 8;
6092 p = get_var_value((char_u *)"g:mapleader");
6093 }
6094 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
6095 {
6096 len = 13;
6097 p = get_var_value((char_u *)"g:maplocalleader");
6098 }
6099 else
6100 {
6101 len = 0;
6102 p = NULL;
6103 }
6104 if (len != 0)
6105 {
6106 /* Allow up to 8 * 6 characters for "mapleader". */
6107 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
6108 s = (char_u *)"\\";
6109 else
6110 s = p;
6111 while (*s != NUL)
6112 result[dlen++] = *s++;
6113 src += len;
6114 continue;
6115 }
6116 }
6117#endif
6118
6119 /*
6120 * Remove CTRL-V and ignore the next character.
6121 * For "from" side the CTRL-V at the end is included, for the "to"
6122 * part it is removed.
6123 * If 'cpoptions' does not contain 'B', also accept a backslash.
6124 */
6125 key = *src;
6126 if (key == Ctrl_V || (do_backslash && key == '\\'))
6127 {
6128 ++src; /* skip CTRL-V or backslash */
6129 if (*src == NUL)
6130 {
6131 if (from_part)
6132 result[dlen++] = key;
6133 break;
6134 }
6135 }
6136
6137#ifdef FEAT_MBYTE
6138 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006139 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140#endif
6141 {
6142 /*
6143 * If the character is K_SPECIAL, replace it with K_SPECIAL
6144 * KS_SPECIAL KE_FILLER.
6145 * If compiled with the GUI replace CSI with K_CSI.
6146 */
6147 if (*src == K_SPECIAL)
6148 {
6149 result[dlen++] = K_SPECIAL;
6150 result[dlen++] = KS_SPECIAL;
6151 result[dlen++] = KE_FILLER;
6152 }
6153# ifdef FEAT_GUI
6154 else if (*src == CSI)
6155 {
6156 result[dlen++] = K_SPECIAL;
6157 result[dlen++] = KS_EXTRA;
6158 result[dlen++] = (int)KE_CSI;
6159 }
6160# endif
6161 else
6162 result[dlen++] = *src;
6163 ++src;
6164 }
6165 }
6166 result[dlen] = NUL;
6167
6168 /*
6169 * Copy the new string to allocated memory.
6170 * If this fails, just return from.
6171 */
6172 if ((*bufp = vim_strsave(result)) != NULL)
6173 from = *bufp;
6174 vim_free(result);
6175 return from;
6176}
6177
6178/*
6179 * Find a termcode with keys 'src' (must be NUL terminated).
6180 * Return the index in termcodes[], or -1 if not found.
6181 */
6182 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006183find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184{
6185 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006186 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187
6188 for (i = 0; i < tc_len; ++i)
6189 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01006190 if (slen == termcodes[i].len
6191 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192 return i;
6193 }
6194 return -1;
6195}
6196
6197/*
6198 * Gather the first characters in the terminal key codes into a string.
6199 * Used to speed up check_termcode().
6200 */
6201 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006202gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203{
6204 int i;
6205 int len = 0;
6206
6207#ifdef FEAT_GUI
6208 if (gui.in_use)
6209 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
6210#endif
6211#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02006212 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 termleader[len++] = DCS; /* the termcode response starts with DCS
6214 in 8-bit mode */
6215#endif
6216 termleader[len] = NUL;
6217
6218 for (i = 0; i < tc_len; ++i)
6219 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
6220 {
6221 termleader[len++] = termcodes[i].code[0];
6222 termleader[len] = NUL;
6223 }
6224
6225 need_gather = FALSE;
6226}
6227
6228/*
6229 * Show all termcodes (for ":set termcap")
6230 * This code looks a lot like showoptions(), but is different.
6231 */
6232 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006233show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234{
6235 int col;
6236 int *items;
6237 int item_count;
6238 int run;
6239 int row, rows;
6240 int cols;
6241 int i;
6242 int len;
6243
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006244#define INC3 27 /* try to make three columns */
6245#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246#define GAP 2 /* spaces between columns */
6247
6248 if (tc_len == 0) /* no terminal codes (must be GUI) */
6249 return;
6250 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
6251 if (items == NULL)
6252 return;
6253
6254 /* Highlight title */
6255 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
6256
6257 /*
6258 * do the loop two times:
6259 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006260 * 2. display the medium items (medium length strings)
6261 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006263 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 {
6265 /*
6266 * collect the items in items[]
6267 */
6268 item_count = 0;
6269 for (i = 0; i < tc_len; i++)
6270 {
6271 len = show_one_termcode(termcodes[i].name,
6272 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006273 if (len <= INC3 - GAP ? run == 1
6274 : len <= INC2 - GAP ? run == 2
6275 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 items[item_count++] = i;
6277 }
6278
6279 /*
6280 * display the items
6281 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006282 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006284 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 if (cols == 0)
6286 cols = 1;
6287 rows = (item_count + cols - 1) / cols;
6288 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006289 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290 rows = item_count;
6291 for (row = 0; row < rows && !got_int; ++row)
6292 {
6293 msg_putchar('\n'); /* go to next line */
6294 if (got_int) /* 'q' typed in more */
6295 break;
6296 col = 0;
6297 for (i = row; i < item_count; i += rows)
6298 {
6299 msg_col = col; /* make columns */
6300 show_one_termcode(termcodes[items[i]].name,
6301 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006302 if (run == 2)
6303 col += INC2;
6304 else
6305 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 }
6307 out_flush();
6308 ui_breakcheck();
6309 }
6310 }
6311 vim_free(items);
6312}
6313
6314/*
6315 * Show one termcode entry.
6316 * Output goes into IObuff[]
6317 */
6318 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006319show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320{
6321 char_u *p;
6322 int len;
6323
6324 if (name[0] > '~')
6325 {
6326 IObuff[0] = ' ';
6327 IObuff[1] = ' ';
6328 IObuff[2] = ' ';
6329 IObuff[3] = ' ';
6330 }
6331 else
6332 {
6333 IObuff[0] = 't';
6334 IObuff[1] = '_';
6335 IObuff[2] = name[0];
6336 IObuff[3] = name[1];
6337 }
6338 IObuff[4] = ' ';
6339
6340 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
6341 if (p[1] != 't')
6342 STRCPY(IObuff + 5, p);
6343 else
6344 IObuff[5] = NUL;
6345 len = (int)STRLEN(IObuff);
6346 do
6347 IObuff[len++] = ' ';
6348 while (len < 17);
6349 IObuff[len] = NUL;
6350 if (code == NULL)
6351 len += 4;
6352 else
6353 len += vim_strsize(code);
6354
6355 if (printit)
6356 {
6357 msg_puts(IObuff);
6358 if (code == NULL)
6359 msg_puts((char_u *)"NULL");
6360 else
6361 msg_outtrans(code);
6362 }
6363 return len;
6364}
6365
6366#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
6367/*
6368 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
6369 * termcap codes from the terminal itself.
6370 * We get them one by one to avoid a very long response string.
6371 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02006372static int xt_index_in = 0;
6373static int xt_index_out = 0;
6374
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006376req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377{
6378 xt_index_out = 0;
6379 xt_index_in = 0;
6380 req_more_codes_from_term();
6381}
6382
6383 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006384req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385{
6386 char buf[11];
6387 int old_idx = xt_index_out;
6388
6389 /* Don't do anything when going to exit. */
6390 if (exiting)
6391 return;
6392
6393 /* Send up to 10 more requests out than we received. Avoid sending too
6394 * many, there can be a buffer overflow somewhere. */
6395 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
6396 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02006397 char *key_name = key_names[xt_index_out];
Bram Moolenaar2951b772013-07-03 12:45:31 +02006398
Bram Moolenaarb255b902018-04-24 21:40:10 +02006399 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name));
6400 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 out_str_nf((char_u *)buf);
6402 ++xt_index_out;
6403 }
6404
6405 /* Send the codes out right away. */
6406 if (xt_index_out != old_idx)
6407 out_flush();
6408}
6409
6410/*
6411 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
6412 * A "0" instead of the "1" indicates a code that isn't supported.
6413 * Both <name> and <string> are encoded in hex.
6414 * "code" points to the "0" or "1".
6415 */
6416 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006417got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418{
6419#define XT_LEN 100
6420 char_u name[3];
6421 char_u str[XT_LEN];
6422 int i;
6423 int j = 0;
6424 int c;
6425
6426 /* A '1' means the code is supported, a '0' means it isn't.
6427 * When half the length is > XT_LEN we can't use it.
6428 * Our names are currently all 2 characters. */
6429 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
6430 {
6431 /* Get the name from the response and find it in the table. */
6432 name[0] = hexhex2nr(code + 3);
6433 name[1] = hexhex2nr(code + 5);
6434 name[2] = NUL;
6435 for (i = 0; key_names[i] != NULL; ++i)
6436 {
6437 if (STRCMP(key_names[i], name) == 0)
6438 {
6439 xt_index_in = i;
6440 break;
6441 }
6442 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02006443
Bram Moolenaarb255b902018-04-24 21:40:10 +02006444 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name));
6445
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446 if (key_names[i] != NULL)
6447 {
6448 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
6449 str[j++] = c;
6450 str[j] = NUL;
6451 if (name[0] == 'C' && name[1] == 'o')
6452 {
6453 /* Color count is not a key code. */
6454 i = atoi((char *)str);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02006455 may_adjust_color_count(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 }
6457 else
6458 {
6459 /* First delete any existing entry with the same code. */
6460 i = find_term_bykeys(str);
6461 if (i >= 0)
6462 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006463 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464 }
6465 }
6466 }
6467
6468 /* May request more codes now that we received one. */
6469 ++xt_index_in;
6470 req_more_codes_from_term();
6471}
6472
6473/*
6474 * Check if there are any unanswered requests and deal with them.
6475 * This is called before starting an external program or getting direct
6476 * keyboard input. We don't want responses to be send to that program or
6477 * handled as typed text.
6478 */
6479 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006480check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481{
6482 int c;
6483
6484 /* If no codes requested or all are answered, no need to wait. */
6485 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6486 return;
6487
6488 /* Vgetc() will check for and handle any response.
6489 * Keep calling vpeekc() until we don't get any responses. */
6490 ++no_mapping;
6491 ++allow_keys;
6492 for (;;)
6493 {
6494 c = vpeekc();
6495 if (c == NUL) /* nothing available */
6496 break;
6497
6498 /* If a response is recognized it's replaced with K_IGNORE, must read
6499 * it from the input stream. If there is no K_IGNORE we can't do
6500 * anything, break here (there might be some responses further on, but
6501 * we don't want to throw away any typed chars). */
6502 if (c != K_SPECIAL && c != K_IGNORE)
6503 break;
6504 c = vgetc();
6505 if (c != K_IGNORE)
6506 {
6507 vungetc(c);
6508 break;
6509 }
6510 }
6511 --no_mapping;
6512 --allow_keys;
6513}
6514#endif
6515
6516#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6517/*
6518 * Translate an internal mapping/abbreviation representation into the
6519 * corresponding external one recognized by :map/:abbrev commands;
6520 * respects the current B/k/< settings of 'cpoption'.
6521 *
6522 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006523 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524 *
6525 * It uses a growarray to build the translation string since the
6526 * latter can be wider than the original description. The caller has to
6527 * free the string afterwards.
6528 *
6529 * Returns NULL when there is a problem.
6530 */
6531 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006532translate_mapping(
6533 char_u *str,
6534 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535{
6536 garray_T ga;
6537 int c;
6538 int modifiers;
6539 int cpo_bslash;
6540 int cpo_special;
6541 int cpo_keycode;
6542
6543 ga_init(&ga);
6544 ga.ga_itemsize = 1;
6545 ga.ga_growsize = 40;
6546
6547 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6548 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6549 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6550
6551 for (; *str; ++str)
6552 {
6553 c = *str;
6554 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6555 {
6556 modifiers = 0;
6557 if (str[1] == KS_MODIFIER)
6558 {
6559 str++;
6560 modifiers = *++str;
6561 c = *++str;
6562 }
6563 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6564 {
6565 int i;
6566
6567 /* try to find special key in termcodes */
6568 for (i = 0; i < tc_len; ++i)
6569 if (termcodes[i].name[0] == str[1]
6570 && termcodes[i].name[1] == str[2])
6571 break;
6572 if (i < tc_len)
6573 {
6574 ga_concat(&ga, termcodes[i].code);
6575 str += 2;
6576 continue; /* for (str) */
6577 }
6578 }
6579 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6580 {
6581 if (expmap && cpo_special)
6582 {
6583 ga_clear(&ga);
6584 return NULL;
6585 }
6586 c = TO_SPECIAL(str[1], str[2]);
6587 if (c == K_ZERO) /* display <Nul> as ^@ */
6588 c = NUL;
6589 str += 2;
6590 }
6591 if (IS_SPECIAL(c) || modifiers) /* special key */
6592 {
6593 if (expmap && cpo_special)
6594 {
6595 ga_clear(&ga);
6596 return NULL;
6597 }
6598 ga_concat(&ga, get_special_key_name(c, modifiers));
6599 continue; /* for (str) */
6600 }
6601 }
6602 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6603 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6604 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6605 if (c)
6606 ga_append(&ga, c);
6607 }
6608 ga_append(&ga, NUL);
6609 return (char_u *)(ga.ga_data);
6610}
6611#endif
6612
6613#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6614static char ksme_str[20];
6615static char ksmr_str[20];
6616static char ksmd_str[20];
6617
6618/*
6619 * For Win32 console: update termcap codes for existing console attributes.
6620 */
6621 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006622update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623{
6624 struct builtin_term *p;
6625
6626 p = find_builtin_term(DEFAULT_TERM);
6627 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6628 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6629 attr | 0x08); /* FOREGROUND_INTENSITY */
6630 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6631 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6632
6633 while (p->bt_string != NULL)
6634 {
6635 if (p->bt_entry == (int)KS_ME)
6636 p->bt_string = &ksme_str[0];
6637 else if (p->bt_entry == (int)KS_MR)
6638 p->bt_string = &ksmr_str[0];
6639 else if (p->bt_entry == (int)KS_MD)
6640 p->bt_string = &ksmd_str[0];
6641 ++p;
6642 }
6643}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006644
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006645# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006646# define KSSIZE 20
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006647struct ks_tbl_s
6648{
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006649 int code; /* value of KS_ */
6650 char *vtp; /* code in vtp mode */
6651 char *vtp2; /* code in vtp2 mode */
6652 char buf[KSSIZE]; /* save buffer in non-vtp mode */
6653 char vbuf[KSSIZE]; /* save buffer in vtp mode */
6654 char v2buf[KSSIZE]; /* save buffer in vtp2 mode */
6655 char arr[KSSIZE]; /* real buffer */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006656};
6657
6658static struct ks_tbl_s ks_tbl[] =
6659{
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006660 {(int)KS_ME, "\033|0m", "\033|0m"}, /* normal */
6661 {(int)KS_MR, "\033|7m", "\033|7m"}, /* reverse */
6662 {(int)KS_MD, "\033|1m", "\033|1m"}, /* bold */
6663 {(int)KS_SO, "\033|91m", "\033|91m"}, /* standout: bright red text */
6664 {(int)KS_SE, "\033|39m", "\033|39m"}, /* standout end: default color */
6665 {(int)KS_CZH, "\033|95m", "\033|95m"}, /* italic: bright magenta text */
6666 {(int)KS_CZR, "\033|0m", "\033|0m"}, /* italic end */
6667 {(int)KS_US, "\033|4m", "\033|4m"}, /* underscore */
6668 {(int)KS_UE, "\033|24m", "\033|24m"}, /* underscore end */
6669# ifdef TERMINFO
6670 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, /* set background color */
6671 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, /* set foreground color */
6672# else
6673 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, /* set background color */
6674 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, /* set foreground color */
6675# endif
6676 {(int)KS_CCO, "16", "256"}, /* colors */
6677 {(int)KS_NAME} /* terminator */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006678};
6679
6680 static struct builtin_term *
6681find_first_tcap(
6682 char_u *name,
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006683 int code)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006684{
6685 struct builtin_term *p;
6686
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006687 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006688 if (p->bt_entry == code)
6689 return p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006690 return NULL;
6691}
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006692# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006693
6694/*
6695 * For Win32 console: replace the sequence immediately after termguicolors.
6696 */
6697 void
6698swap_tcap(void)
6699{
6700# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006701 static int init_done = FALSE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006702 static int curr_mode;
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006703 struct ks_tbl_s *ks;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006704 struct builtin_term *bt;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006705 int mode;
6706 enum
6707 {
6708 CMODEINDEX,
6709 CMODE24,
6710 CMODE256
6711 };
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006712
6713 /* buffer initialization */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006714 if (!init_done)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006715 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006716 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006717 {
6718 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006719 if (bt != NULL)
6720 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006721 STRNCPY(ks->buf, bt->bt_string, KSSIZE);
6722 STRNCPY(ks->vbuf, ks->vtp, KSSIZE);
6723 STRNCPY(ks->v2buf, ks->vtp2, KSSIZE);
6724
6725 STRNCPY(ks->arr, bt->bt_string, KSSIZE);
6726 bt->bt_string = &ks->arr[0];
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006727 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006728 }
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006729 init_done = TRUE;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006730 curr_mode = CMODEINDEX;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006731 }
6732
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006733 if (p_tgc)
6734 mode = CMODE24;
6735 else if (t_colors >= 256)
6736 mode = CMODE256;
6737 else
6738 mode = CMODEINDEX;
6739
6740 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006741 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006742 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6743 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006744 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006745 switch (curr_mode)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006746 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006747 case CMODEINDEX:
6748 STRNCPY(&ks->buf[0], bt->bt_string, KSSIZE);
6749 break;
6750 case CMODE24:
6751 STRNCPY(&ks->vbuf[0], bt->bt_string, KSSIZE);
6752 break;
6753 default:
6754 STRNCPY(&ks->v2buf[0], bt->bt_string, KSSIZE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006755 }
6756 }
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006757 }
6758
6759 if (mode != curr_mode)
6760 {
6761 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006762 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006763 bt = find_first_tcap(DEFAULT_TERM, ks->code);
6764 if (bt != NULL)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006765 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006766 switch (mode)
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006767 {
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006768 case CMODEINDEX:
6769 STRNCPY(bt->bt_string, &ks->buf[0], KSSIZE);
6770 break;
6771 case CMODE24:
6772 STRNCPY(bt->bt_string, &ks->vbuf[0], KSSIZE);
6773 break;
6774 default:
6775 STRNCPY(bt->bt_string, &ks->v2buf[0], KSSIZE);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006776 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006777 }
6778 }
6779
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006780 curr_mode = mode;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006781 }
6782# endif
6783}
6784
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006786
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006787#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006788 static int
6789hex_digit(int c)
6790{
6791 if (isdigit(c))
6792 return c - '0';
6793 c = TOLOWER_ASC(c);
6794 if (c >= 'a' && c <= 'f')
6795 return c - 'a' + 10;
6796 return 0x1ffffff;
6797}
6798
6799 guicolor_T
6800gui_get_color_cmn(char_u *name)
6801{
Bram Moolenaar28726652017-01-06 18:16:19 +01006802 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6803 * values as used by the MS-Windows GDI api. It should be used only for
6804 * MS-Windows GDI builds. */
6805# if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI)
6806# undef RGB
6807# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006808# ifndef RGB
6809# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6810# endif
6811# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006812 FILE *fd;
6813 char line[LINE_LEN];
6814 char_u *fname;
6815 int r, g, b, i;
6816 guicolor_T color;
6817
6818 struct rgbcolor_table_S {
6819 char_u *color_name;
6820 guicolor_T color;
6821 };
6822
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006823 /* Only non X11 colors (not present in rgb.txt) and colors in
6824 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006825 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006826 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6827 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6828 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6829 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6830 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6831 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6832 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6833 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6834 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6835 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6836 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6837 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6838 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006839 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6840 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006841 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarecadf432018-03-20 11:17:04 +01006842 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006843 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006844 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6845 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6846 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6847 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6848 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6849 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6850 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6851 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6852 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006853 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006854 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006855 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6856 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006857 };
6858
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006859 static struct rgbcolor_table_S *colornames_table;
6860 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006861
6862 if (name[0] == '#' && STRLEN(name) == 7)
6863 {
6864 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006865 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006866 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6867 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6868 if (color > 0xffffff)
6869 return INVALCOLOR;
6870 return color;
6871 }
6872
6873 /* Check if the name is one of the colors we know */
6874 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6875 if (STRICMP(name, rgb_table[i].color_name) == 0)
6876 return rgb_table[i].color;
6877
6878 /*
6879 * Last attempt. Look in the file "$VIM/rgb.txt".
6880 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006881 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02006882 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006883 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02006884
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006885 /* colornames_table not yet initialized */
6886 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
6887 if (fname == NULL)
6888 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006889
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006890 fd = fopen((char *)fname, "rt");
6891 vim_free(fname);
6892 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02006893 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006894 if (p_verbose > 1)
6895 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt"));
6896 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006897 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006898
6899 for (counting = 1; counting >= 0; --counting)
6900 {
6901 if (!counting)
6902 {
6903 colornames_table = (struct rgbcolor_table_S *)alloc(
6904 (unsigned)(sizeof(struct rgbcolor_table_S) * size));
6905 if (colornames_table == NULL)
6906 {
6907 fclose(fd);
6908 return INVALCOLOR;
6909 }
6910 rewind(fd);
6911 }
6912 size = 0;
6913
6914 while (!feof(fd))
6915 {
6916 size_t len;
6917 int pos;
6918
6919 ignoredp = fgets(line, LINE_LEN, fd);
6920 len = strlen(line);
6921
6922 if (len <= 1 || line[len - 1] != '\n')
6923 continue;
6924
6925 line[len - 1] = '\0';
6926
6927 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
6928 if (i != 3)
6929 continue;
6930
6931 if (!counting)
6932 {
6933 char_u *s = vim_strsave((char_u *)line + pos);
6934
6935 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006936 {
6937 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006938 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006939 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006940 colornames_table[size].color_name = s;
6941 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6942 }
6943 size++;
6944 }
6945 }
6946 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02006947 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006948
6949 for (i = 0; i < size; i++)
6950 if (STRICMP(name, colornames_table[i].color_name) == 0)
6951 return colornames_table[i].color;
6952
Bram Moolenaarab302212016-04-26 20:59:29 +02006953 return INVALCOLOR;
6954}
Bram Moolenaar26af85d2017-07-23 16:45:10 +02006955
6956 guicolor_T
6957gui_get_rgb_color_cmn(int r, int g, int b)
6958{
6959 guicolor_T color = RGB(r, g, b);
6960
6961 if (color > 0xffffff)
6962 return INVALCOLOR;
6963 return color;
6964}
Bram Moolenaarab302212016-04-26 20:59:29 +02006965#endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006966
6967#if (defined(WIN3264) && !defined(FEAT_GUI_W32)) || defined(FEAT_TERMINAL) \
6968 || defined(PROTO)
6969static int cube_value[] = {
6970 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF
6971};
6972
6973static int grey_ramp[] = {
6974 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76,
6975 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE
6976};
6977
6978# ifdef FEAT_TERMINAL
6979# include "libvterm/include/vterm.h" // for VTERM_ANSI_INDEX_NONE
Bram Moolenaar8a938af2018-05-01 17:30:41 +02006980# else
6981# define VTERM_ANSI_INDEX_NONE 0
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02006982# endif
6983
6984static uint8_t ansi_table[16][4] = {
6985// R G B idx
6986 { 0, 0, 0, 1}, // black
6987 {224, 0, 0, 2}, // dark red
6988 { 0, 224, 0, 3}, // dark green
6989 {224, 224, 0, 4}, // dark yellow / brown
6990 { 0, 0, 224, 5}, // dark blue
6991 {224, 0, 224, 6}, // dark magenta
6992 { 0, 224, 224, 7}, // dark cyan
6993 {224, 224, 224, 8}, // light grey
6994
6995 {128, 128, 128, 9}, // dark grey
6996 {255, 64, 64, 10}, // light red
6997 { 64, 255, 64, 11}, // light green
6998 {255, 255, 64, 12}, // yellow
6999 { 64, 64, 255, 13}, // light blue
7000 {255, 64, 255, 14}, // light magenta
7001 { 64, 255, 255, 15}, // light cyan
7002 {255, 255, 255, 16}, // white
7003};
7004
7005 void
7006cterm_color2rgb(int nr, uint8_t *r, uint8_t *g, uint8_t *b, uint8_t *ansi_idx)
7007{
7008 int idx;
7009
7010 if (nr < 16)
7011 {
7012 *r = ansi_table[nr][0];
7013 *g = ansi_table[nr][1];
7014 *b = ansi_table[nr][2];
7015 *ansi_idx = ansi_table[nr][3];
7016 }
7017 else if (nr < 232)
7018 {
7019 /* 216 color cube */
7020 idx = nr - 16;
7021 *r = cube_value[idx / 36 % 6];
7022 *g = cube_value[idx / 6 % 6];
7023 *b = cube_value[idx % 6];
7024 *ansi_idx = VTERM_ANSI_INDEX_NONE;
7025 }
7026 else if (nr < 256)
7027 {
7028 /* 24 grey scale ramp */
7029 idx = nr - 232;
7030 *r = grey_ramp[idx];
7031 *g = grey_ramp[idx];
7032 *b = grey_ramp[idx];
7033 *ansi_idx = VTERM_ANSI_INDEX_NONE;
7034 }
7035 else
7036 {
7037 *r = 0;
7038 *g = 0;
7039 *b = 0;
7040 *ansi_idx = 0;
7041 }
7042}
7043#endif