blob: d11729cb426951cbfd2da00d44565c22d2fb9b29 [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
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002012#if defined(WIN3264) && !defined(FEAT_GUI) && defined(FEAT_TERMGUICOLORS)
2013 if (STRCMP(term, "win32") == 0)
2014 set_color_count((p_tgc) ? 256 : 16);
2015#endif
2016
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 return OK;
2018}
2019
2020#if defined(FEAT_MOUSE) || defined(PROTO)
2021
2022# ifdef FEAT_MOUSE_TTY
2023# define HMT_NORMAL 1
2024# define HMT_NETTERM 2
2025# define HMT_DEC 4
2026# define HMT_JSBTERM 8
2027# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002028# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002029# define HMT_SGR 64
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002030# define HMT_SGR_REL 128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031static int has_mouse_termcode = 0;
2032# endif
2033
Bram Moolenaar864207d2008-06-24 22:14:38 +00002034# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002036set_mouse_termcode(
2037 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2038 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039{
2040 char_u name[2];
2041
2042 name[0] = n;
2043 name[1] = KE_FILLER;
2044 add_termcode(name, s, FALSE);
2045# ifdef FEAT_MOUSE_TTY
2046# ifdef FEAT_MOUSE_JSB
2047 if (n == KS_JSBTERM_MOUSE)
2048 has_mouse_termcode |= HMT_JSBTERM;
2049 else
2050# endif
2051# ifdef FEAT_MOUSE_NET
2052 if (n == KS_NETTERM_MOUSE)
2053 has_mouse_termcode |= HMT_NETTERM;
2054 else
2055# endif
2056# ifdef FEAT_MOUSE_DEC
2057 if (n == KS_DEC_MOUSE)
2058 has_mouse_termcode |= HMT_DEC;
2059 else
2060# endif
2061# ifdef FEAT_MOUSE_PTERM
2062 if (n == KS_PTERM_MOUSE)
2063 has_mouse_termcode |= HMT_PTERM;
2064 else
2065# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002066# ifdef FEAT_MOUSE_URXVT
2067 if (n == KS_URXVT_MOUSE)
2068 has_mouse_termcode |= HMT_URXVT;
2069 else
2070# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002071# ifdef FEAT_MOUSE_SGR
2072 if (n == KS_SGR_MOUSE)
2073 has_mouse_termcode |= HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002074 else if (n == KS_SGR_MOUSE_RELEASE)
2075 has_mouse_termcode |= HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002076 else
2077# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 has_mouse_termcode |= HMT_NORMAL;
2079# endif
2080}
2081# endif
2082
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002083# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002084 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002086del_mouse_termcode(
2087 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088{
2089 char_u name[2];
2090
2091 name[0] = n;
2092 name[1] = KE_FILLER;
2093 del_termcode(name);
2094# ifdef FEAT_MOUSE_TTY
2095# ifdef FEAT_MOUSE_JSB
2096 if (n == KS_JSBTERM_MOUSE)
2097 has_mouse_termcode &= ~HMT_JSBTERM;
2098 else
2099# endif
2100# ifdef FEAT_MOUSE_NET
2101 if (n == KS_NETTERM_MOUSE)
2102 has_mouse_termcode &= ~HMT_NETTERM;
2103 else
2104# endif
2105# ifdef FEAT_MOUSE_DEC
2106 if (n == KS_DEC_MOUSE)
2107 has_mouse_termcode &= ~HMT_DEC;
2108 else
2109# endif
2110# ifdef FEAT_MOUSE_PTERM
2111 if (n == KS_PTERM_MOUSE)
2112 has_mouse_termcode &= ~HMT_PTERM;
2113 else
2114# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002115# ifdef FEAT_MOUSE_URXVT
2116 if (n == KS_URXVT_MOUSE)
2117 has_mouse_termcode &= ~HMT_URXVT;
2118 else
2119# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002120# ifdef FEAT_MOUSE_SGR
2121 if (n == KS_SGR_MOUSE)
2122 has_mouse_termcode &= ~HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002123 else if (n == KS_SGR_MOUSE_RELEASE)
2124 has_mouse_termcode &= ~HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002125 else
2126# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 has_mouse_termcode &= ~HMT_NORMAL;
2128# endif
2129}
2130# endif
2131#endif
2132
2133#ifdef HAVE_TGETENT
2134/*
2135 * Call tgetent()
2136 * Return error message if it fails, NULL if it's OK.
2137 */
2138 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002139tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140{
2141 int i;
2142
2143 i = TGETENT(tbuf, term);
2144 if (i < 0 /* -1 is always an error */
2145# ifdef TGETENT_ZERO_ERR
2146 || i == 0 /* sometimes zero is also an error */
2147# endif
2148 )
2149 {
2150 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2151 * tgetent() with the always existing "dumb" entry to avoid a crash or
2152 * hang. */
2153 (void)TGETENT(tbuf, "dumb");
2154
2155 if (i < 0)
2156# ifdef TGETENT_ZERO_ERR
2157 return (char_u *)_("E557: Cannot open termcap file");
2158 if (i == 0)
2159# endif
2160#ifdef TERMINFO
2161 return (char_u *)_("E558: Terminal entry not found in terminfo");
2162#else
2163 return (char_u *)_("E559: Terminal entry not found in termcap");
2164#endif
2165 }
2166 return NULL;
2167}
2168
2169/*
2170 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2171 * Fix that here.
2172 */
2173 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002174vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175{
2176 char *p;
2177
2178 p = tgetstr(s, (char **)pp);
2179 if (p == (char *)-1)
2180 p = NULL;
2181 return (char_u *)p;
2182}
2183#endif /* HAVE_TGETENT */
2184
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002185#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186/*
2187 * Get Columns and Rows from the termcap. Used after a window signal if the
2188 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2189 * and "li" entries never change. But on some systems this works.
2190 * Errors while getting the entries are ignored.
2191 */
2192 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002193getlinecol(
2194 long *cp, /* pointer to columns */
2195 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196{
2197 char_u tbuf[TBUFSZ];
2198
2199 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2200 {
2201 if (*cp == 0)
2202 *cp = tgetnum("co");
2203 if (*rp == 0)
2204 *rp = tgetnum("li");
2205 }
2206}
2207#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2208
2209/*
2210 * Get a string entry from the termcap and add it to the list of termcodes.
2211 * Used for <t_xx> special keys.
2212 * Give an error message for failure when not sourcing.
2213 * If force given, replace an existing entry.
2214 * Return FAIL if the entry was not found, OK if the entry was added.
2215 */
2216 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002217add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218{
2219 char_u *term;
2220 int key;
2221 struct builtin_term *termp;
2222#ifdef HAVE_TGETENT
2223 char_u *string;
2224 int i;
2225 int builtin_first;
2226 char_u tbuf[TBUFSZ];
2227 char_u tstrbuf[TBUFSZ];
2228 char_u *tp = tstrbuf;
2229 char_u *error_msg = NULL;
2230#endif
2231
2232/*
2233 * If the GUI is running or will start in a moment, we only support the keys
2234 * that the GUI can produce.
2235 */
2236#ifdef FEAT_GUI
2237 if (gui.in_use || gui.starting)
2238 return gui_mch_haskey(name);
2239#endif
2240
2241 if (!force && find_termcode(name) != NULL) /* it's already there */
2242 return OK;
2243
2244 term = T_NAME;
2245 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2246 return FAIL;
2247
2248 if (term_is_builtin(term)) /* name starts with "builtin_" */
2249 {
2250 term += 8;
2251#ifdef HAVE_TGETENT
2252 builtin_first = TRUE;
2253#endif
2254 }
2255#ifdef HAVE_TGETENT
2256 else
2257 builtin_first = p_tbi;
2258#endif
2259
2260#ifdef HAVE_TGETENT
2261/*
2262 * We can get the entry from the builtin termcap and from the external one.
2263 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2264 * builtin termcap first.
2265 * If 'ttybuiltin' is off, try external termcap first.
2266 */
2267 for (i = 0; i < 2; ++i)
2268 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002269 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270#endif
2271 /*
2272 * Search in builtin termcap
2273 */
2274 {
2275 termp = find_builtin_term(term);
2276 if (termp->bt_string != NULL) /* found it */
2277 {
2278 key = TERMCAP2KEY(name[0], name[1]);
Bram Moolenaare7808482018-03-06 13:17:23 +01002279 ++termp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 while (termp->bt_entry != (int)KS_NAME)
2281 {
2282 if ((int)termp->bt_entry == key)
2283 {
2284 add_termcode(name, (char_u *)termp->bt_string,
2285 term_is_8bit(term));
2286 return OK;
2287 }
2288 ++termp;
2289 }
2290 }
2291 }
2292#ifdef HAVE_TGETENT
2293 else
2294 /*
2295 * Search in external termcap
2296 */
2297 {
2298 error_msg = tgetent_error(tbuf, term);
2299 if (error_msg == NULL)
2300 {
2301 string = TGETSTR((char *)name, &tp);
2302 if (string != NULL && *string != NUL)
2303 {
2304 add_termcode(name, string, FALSE);
2305 return OK;
2306 }
2307 }
2308 }
2309 }
2310#endif
2311
2312 if (sourcing_name == NULL)
2313 {
2314#ifdef HAVE_TGETENT
2315 if (error_msg != NULL)
2316 EMSG(error_msg);
2317 else
2318#endif
2319 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2320 }
2321 return FAIL;
2322}
2323
2324 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002325term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326{
2327 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2328}
2329
2330/*
2331 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2332 * Assume that the terminal is using 8-bit controls when the name contains
2333 * "8bit", like in "xterm-8bit".
2334 */
2335 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002336term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337{
2338 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2339}
2340
2341/*
2342 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002343 * <Esc>[ -> CSI <M_C_[>
2344 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 * <Esc>O -> <M-C-O>
2346 */
2347 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002348term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349{
2350 if (*p == ESC)
2351 {
2352 if (p[1] == '[')
2353 return CSI;
2354 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002355 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 if (p[1] == 'O')
2357 return 0x8f;
2358 }
2359 return 0;
2360}
2361
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002362#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002364term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365{
2366 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2367}
2368#endif
2369
2370#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2371
2372 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002373tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374{
2375 static char_u buf[16];
2376 char_u *p;
2377
2378 p = buf + 15;
2379 *p = '\0';
2380 do
2381 {
2382 --p;
2383 *p = (char_u) (i % 10 + '0');
2384 i /= 10;
2385 }
2386 while (i > 0 && p > buf);
2387 return p;
2388}
2389#endif
2390
2391#ifndef HAVE_TGETENT
2392
2393/*
2394 * minimal tgoto() implementation.
2395 * no padding and we only parse for %i %d and %+char
2396 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002397static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002399 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002400tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401{
2402 static char buf[30];
2403 char *p, *s, *e;
2404
2405 if (!cm)
2406 return "OOPS";
2407 e = buf + 29;
2408 for (s = buf; s < e && *cm; cm++)
2409 {
2410 if (*cm != '%')
2411 {
2412 *s++ = *cm;
2413 continue;
2414 }
2415 switch (*++cm)
2416 {
2417 case 'd':
2418 p = (char *)tltoa((unsigned long)y);
2419 y = x;
2420 while (*p)
2421 *s++ = *p++;
2422 break;
2423 case 'i':
2424 x++;
2425 y++;
2426 break;
2427 case '+':
2428 *s++ = (char)(*++cm + y);
2429 y = x;
2430 break;
2431 case '%':
2432 *s++ = *cm;
2433 break;
2434 default:
2435 return "OOPS";
2436 }
2437 }
2438 *s = '\0';
2439 return buf;
2440}
2441
2442#endif /* HAVE_TGETENT */
2443
2444/*
2445 * Set the terminal name and initialize the terminal options.
2446 * If "name" is NULL or empty, get the terminal name from the environment.
2447 * If that fails, use the default terminal name.
2448 */
2449 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002450termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451{
2452 char_u *term;
2453
2454 if (name != NULL && *name == NUL)
2455 name = NULL; /* empty name is equal to no name */
2456 term = name;
2457
2458#ifdef __BEOS__
2459 /*
2460 * TERM environment variable is normally set to 'ansi' on the Bebox;
2461 * Since the BeBox doesn't quite support full ANSI yet, we use our
2462 * own custom 'ansi-beos' termcap instead, unless the -T option has
2463 * been given on the command line.
2464 */
2465 if (term == NULL
2466 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2467 term = DEFAULT_TERM;
2468#endif
2469#ifndef MSWIN
2470 if (term == NULL)
2471 term = mch_getenv((char_u *)"TERM");
2472#endif
2473 if (term == NULL || *term == NUL)
2474 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002475 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
2477 /* Set the default terminal name. */
2478 set_string_default("term", term);
2479 set_string_default("ttytype", term);
2480
2481 /*
2482 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2483 */
2484 set_termname(T_NAME != NULL ? T_NAME : term);
2485}
2486
2487/*
2488 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2489 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002490#define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2492static char_u out_buf[OUT_SIZE + 1];
2493static int out_pos = 0; /* number of chars in out_buf */
2494
2495/*
2496 * out_flush(): flush the output buffer
2497 */
2498 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002499out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500{
2501 int len;
2502
2503 if (out_pos != 0)
2504 {
2505 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2506 len = out_pos;
2507 out_pos = 0;
2508 ui_write(out_buf, len);
2509 }
2510}
2511
Bram Moolenaara338adc2018-01-31 20:51:47 +01002512/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002513 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2514 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002515 */
2516 void
2517out_flush_cursor(
2518 int force UNUSED, /* when TRUE, update cursor even when not moved */
2519 int clear_selection UNUSED) /* clear selection under cursor */
2520{
2521 mch_disable_flush();
2522 out_flush();
2523 mch_enable_flush();
2524#ifdef FEAT_GUI
2525 if (gui.in_use)
2526 {
2527 gui_update_cursor(force, clear_selection);
2528 gui_may_flush();
2529 }
2530#endif
2531}
2532
2533
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534#if defined(FEAT_MBYTE) || defined(PROTO)
2535/*
2536 * Sometimes a byte out of a multi-byte character is written with out_char().
2537 * To avoid flushing half of the character, call this function first.
2538 */
2539 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002540out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2543 out_flush();
2544}
2545#endif
2546
2547#ifdef FEAT_GUI
2548/*
2549 * out_trash(): Throw away the contents of the output buffer
2550 */
2551 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002552out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553{
2554 out_pos = 0;
2555}
2556#endif
2557
2558/*
2559 * out_char(c): put a byte into the output buffer.
2560 * Flush it if it becomes full.
2561 * This should not be used for outputting text on the screen (use functions
2562 * like msg_puts() and screen_putchar() for that).
2563 */
2564 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002565out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
Bram Moolenaard0573012017-10-28 21:11:06 +02002567#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2569 out_char('\r');
2570#endif
2571
2572 out_buf[out_pos++] = c;
2573
2574 /* For testing we flush each time. */
2575 if (out_pos >= OUT_SIZE || p_wd)
2576 out_flush();
2577}
2578
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002579static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580
2581/*
2582 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2583 */
2584 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002585out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
Bram Moolenaard0573012017-10-28 21:11:06 +02002587#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2589 out_char_nf('\r');
2590#endif
2591
2592 out_buf[out_pos++] = c;
2593
2594 if (out_pos >= OUT_SIZE)
2595 out_flush();
2596}
2597
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002598#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2599 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600/*
2601 * A never-padding out_str.
2602 * use this whenever you don't want to run the string through tputs.
2603 * tputs above is harmless, but tputs from the termcap library
2604 * is likely to strip off leading digits, that it mistakes for padding
2605 * information, and "%i", "%d", etc.
2606 * This should only be used for writing terminal codes, not for outputting
2607 * normal text (use functions like msg_puts() and screen_putchar() for that).
2608 */
2609 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002610out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
2612 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2613 out_flush();
2614 while (*s)
2615 out_char_nf(*s++);
2616
2617 /* For testing we write one string at a time. */
2618 if (p_wd)
2619 out_flush();
2620}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002621#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622
2623/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002624 * A conditional-flushing out_str, mainly for visualbell.
2625 * Handles a delay internally, because termlib may not respect the delay or do
2626 * it at the wrong time.
2627 * Note: Only for terminal strings.
2628 */
2629 void
2630out_str_cf(char_u *s)
2631{
2632 if (s != NULL && *s)
2633 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002634#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002635 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002636#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002637
2638#ifdef FEAT_GUI
2639 /* Don't use tputs() when GUI is used, ncurses crashes. */
2640 if (gui.in_use)
2641 {
2642 out_str_nf(s);
2643 return;
2644 }
2645#endif
2646 if (out_pos > OUT_SIZE - 20)
2647 out_flush();
2648#ifdef HAVE_TGETENT
2649 for (p = s; *s; ++s)
2650 {
2651 /* flush just before delay command */
2652 if (*s == '$' && *(s + 1) == '<')
2653 {
2654 char_u save_c = *s;
2655 int duration = atoi((char *)s + 2);
2656
2657 *s = NUL;
2658 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2659 *s = save_c;
2660 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002661# ifdef ELAPSED_FUNC
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002662 /* Only sleep here if we can limit this happening in
2663 * vim_beep(). */
2664 p = vim_strchr(s, '>');
2665 if (p == NULL || duration <= 0)
2666 {
2667 /* can't parse the time, don't sleep here */
2668 p = s;
2669 }
2670 else
2671 {
2672 ++p;
2673 do_sleep(duration);
2674 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002675# else
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002676 /* Rely on the terminal library to sleep. */
2677 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002678# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002679 break;
2680 }
2681 }
2682 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2683#else
2684 while (*s)
2685 out_char_nf(*s++);
2686#endif
2687
2688 /* For testing we write one string at a time. */
2689 if (p_wd)
2690 out_flush();
2691 }
2692}
2693
2694/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 * out_str(s): Put a character string a byte at a time into the output buffer.
2696 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2697 * This should only be used for writing terminal codes, not for outputting
2698 * normal text (use functions like msg_puts() and screen_putchar() for that).
2699 */
2700 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002701out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702{
2703 if (s != NULL && *s)
2704 {
2705#ifdef FEAT_GUI
2706 /* Don't use tputs() when GUI is used, ncurses crashes. */
2707 if (gui.in_use)
2708 {
2709 out_str_nf(s);
2710 return;
2711 }
2712#endif
2713 /* avoid terminal strings being split up */
2714 if (out_pos > OUT_SIZE - 20)
2715 out_flush();
2716#ifdef HAVE_TGETENT
2717 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2718#else
2719 while (*s)
2720 out_char_nf(*s++);
2721#endif
2722
2723 /* For testing we write one string at a time. */
2724 if (p_wd)
2725 out_flush();
2726 }
2727}
2728
2729/*
2730 * cursor positioning using termcap parser. (jw)
2731 */
2732 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002733term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 OUT_STR(tgoto((char *)T_CM, col, row));
2736}
2737
2738 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002739term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
2741 OUT_STR(tgoto((char *)T_CRI, 0, i));
2742}
2743
2744 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002745term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746{
2747 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2748}
2749
2750 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002751term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752{
2753 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2754}
2755
2756#if defined(HAVE_TGETENT) || defined(PROTO)
2757 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002758term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760 /* Can't handle a negative value here */
2761 if (x < 0)
2762 x = 0;
2763 if (y < 0)
2764 y = 0;
2765 OUT_STR(tgoto((char *)T_CWP, y, x));
2766}
2767
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002768# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2769/*
2770 * Return TRUE if we can request the terminal for a response.
2771 */
2772 static int
2773can_get_termresponse()
2774{
2775 return cur_tmode == TMODE_RAW
2776 && termcap_active
2777# ifdef UNIX
2778 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
2779# endif
2780 && p_ek;
2781}
2782
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002783static int winpos_x = -1;
2784static int winpos_y = -1;
2785static int did_request_winpos = 0;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002786
2787/*
2788 * Try getting the Vim window position from the terminal.
2789 * Returns OK or FAIL.
2790 */
2791 int
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002792term_get_winpos(int *x, int *y, varnumber_T timeout)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002793{
2794 int count = 0;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002795 int prev_winpos_x = winpos_x;
2796 int prev_winpos_y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002797
2798 if (*T_CGP == NUL || !can_get_termresponse())
2799 return FAIL;
2800 winpos_x = -1;
2801 winpos_y = -1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002802 ++did_request_winpos;
2803 winpos_status = STATUS_SENT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002804 OUT_STR(T_CGP);
2805 out_flush();
2806
Bram Moolenaar3f54fd32018-03-03 21:29:55 +01002807 /* Try reading the result for "timeout" msec. */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002808 while (count++ <= timeout / 10 && !got_int)
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002809 {
2810 (void)vpeekc_nomap();
2811 if (winpos_x >= 0 && winpos_y >= 0)
2812 {
2813 *x = winpos_x;
2814 *y = winpos_y;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002815 return OK;
2816 }
2817 ui_delay(10, FALSE);
2818 }
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002819 /* Do not reset "did_request_winpos", if we timed out the response might
2820 * still come later and we must consume it. */
2821
2822 winpos_x = prev_winpos_x;
2823 winpos_y = prev_winpos_y;
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002824 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
Bram Moolenaar89894aa2018-03-05 22:43:10 +01002825 {
2826 /* Polling: return previous values if we have them. */
2827 *x = winpos_x;
2828 *y = winpos_y;
2829 return OK;
2830 }
2831
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002832 return FALSE;
2833}
2834# endif
2835
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002837term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002839 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840}
2841#endif
2842
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002844term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845{
2846 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002847 int i = *s == CSI ? 1 : 2;
2848 /* index in s[] just after <Esc>[ or CSI */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849
2850 /* Special handling of 16 colors, because termcap can't handle it */
2851 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2852 /* Also accept CSI instead of <Esc>[ */
2853 if (n >= 8 && t_colors >= 16
2854 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2855 && s[i] != NUL
2856 && (STRCMP(s + i + 1, "%p1%dm") == 0
2857 || STRCMP(s + i + 1, "%dm") == 0)
2858 && (s[i] == '3' || s[i] == '4'))
2859 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002861 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002863 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864#endif
Bram Moolenaar827b1652016-05-05 18:14:03 +02002865 sprintf(buf, format,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2867 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2868 : (n >= 16 ? "48;5;" : "10"));
2869 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2870 }
2871 else
2872 OUT_STR(tgoto((char *)s, 0, n));
2873}
2874
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002875 void
2876term_fg_color(int n)
2877{
2878 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2879 if (*T_CAF)
2880 term_color(T_CAF, n);
2881 else if (*T_CSF)
2882 term_color(T_CSF, n);
2883}
2884
2885 void
2886term_bg_color(int n)
2887{
2888 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2889 if (*T_CAB)
2890 term_color(T_CAB, n);
2891 else if (*T_CSB)
2892 term_color(T_CSB, n);
2893}
2894
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002895#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002896
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002897#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2898#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2899#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002900
2901 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002902term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002903{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002904#define MAX_COLOR_STR_LEN 100
2905 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002906
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002907 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002908 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002909 OUT_STR(buf);
2910}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002911
2912 void
2913term_fg_rgb_color(guicolor_T rgb)
2914{
2915 term_rgb_color(T_8F, rgb);
2916}
2917
2918 void
2919term_bg_rgb_color(guicolor_T rgb)
2920{
2921 term_rgb_color(T_8B, rgb);
2922}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002923#endif
2924
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002925#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2926 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927/*
2928 * Generic function to set window title, using t_ts and t_fs.
2929 */
2930 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002931term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932{
2933 /* t_ts takes one argument: column in status line */
2934 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2935 out_str_nf(title);
2936 out_str(T_FS); /* set title end */
2937 out_flush();
2938}
2939#endif
2940
2941/*
2942 * Make sure we have a valid set or terminal options.
2943 * Replace all entries that are NULL by empty_option
2944 */
2945 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002946ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002948 char_u *env_colors;
2949
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 check_options(); /* make sure no options are NULL */
2951
2952 /*
2953 * MUST have "cm": cursor motion.
2954 */
2955 if (*T_CM == NUL)
2956 EMSG(_("E437: terminal capability \"cm\" required"));
2957
2958 /*
2959 * if "cs" defined, use a scroll region, it's faster.
2960 */
2961 if (*T_CS != NUL)
2962 scroll_region = TRUE;
2963 else
2964 scroll_region = FALSE;
2965
2966 if (pairs)
2967 {
2968 /*
2969 * optional pairs
2970 */
2971 /* TP goes to normal mode for TI (invert) and TB (bold) */
2972 if (*T_ME == NUL)
2973 T_ME = T_MR = T_MD = T_MB = empty_option;
2974 if (*T_SO == NUL || *T_SE == NUL)
2975 T_SO = T_SE = empty_option;
2976 if (*T_US == NUL || *T_UE == NUL)
2977 T_US = T_UE = empty_option;
2978 if (*T_CZH == NUL || *T_CZR == NUL)
2979 T_CZH = T_CZR = empty_option;
2980
2981 /* T_VE is needed even though T_VI is not defined */
2982 if (*T_VE == NUL)
2983 T_VI = empty_option;
2984
2985 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2986 if (*T_ME == NUL)
2987 {
2988 T_ME = T_SE;
2989 T_MR = T_SO;
2990 T_MD = T_SO;
2991 }
2992
2993 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2994 if (*T_SO == NUL)
2995 {
2996 T_SE = T_ME;
2997 if (*T_MR == NUL)
2998 T_SO = T_MD;
2999 else
3000 T_SO = T_MR;
3001 }
3002
3003 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
3004 if (*T_CZH == NUL)
3005 {
3006 T_CZR = T_ME;
3007 if (*T_MR == NUL)
3008 T_CZH = T_MD;
3009 else
3010 T_CZH = T_MR;
3011 }
3012
3013 /* "Sb" and "Sf" come in pairs */
3014 if (*T_CSB == NUL || *T_CSF == NUL)
3015 {
3016 T_CSB = empty_option;
3017 T_CSF = empty_option;
3018 }
3019
3020 /* "AB" and "AF" come in pairs */
3021 if (*T_CAB == NUL || *T_CAF == NUL)
3022 {
3023 T_CAB = empty_option;
3024 T_CAF = empty_option;
3025 }
3026
3027 /* if 'Sb' and 'AB' are not defined, reset "Co" */
3028 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003029 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030
3031 /* Set 'weirdinvert' according to value of 't_xs' */
3032 p_wiv = (*T_XS != NUL);
3033 }
3034 need_gather = TRUE;
3035
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003036 /* Set t_colors to the value of $COLORS or t_Co. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 t_colors = atoi((char *)T_CCO);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003038 env_colors = mch_getenv((char_u *)"COLORS");
3039 if (env_colors != NULL && isdigit(*env_colors))
3040 {
3041 int colors = atoi((char *)env_colors);
3042
3043 if (colors != t_colors)
3044 set_color_count(colors);
3045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046}
3047
3048#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3049 || defined(PROTO)
3050/*
3051 * Represent the given long_u as individual bytes, with the most significant
3052 * byte first, and store them in dst.
3053 */
3054 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003055add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056{
3057 int i;
3058 int shift;
3059
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003060 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 {
3062 shift = 8 * (sizeof(long_u) - i);
3063 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3064 }
3065}
3066
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003067static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068
3069/*
3070 * Interpret the next string of bytes in buf as a long integer, with the most
3071 * significant byte first. Note that it is assumed that buf has been through
3072 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3073 * Puts result in val, and returns the number of bytes read from buf
3074 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3075 * were present.
3076 */
3077 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003078get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079{
3080 int len;
3081 char_u bytes[sizeof(long_u)];
3082 int i;
3083 int shift;
3084
3085 *val = 0;
3086 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3087 if (len != -1)
3088 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003089 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 {
3091 shift = 8 * (sizeof(long_u) - 1 - i);
3092 *val += (long_u)bytes[i] << shift;
3093 }
3094 }
3095 return len;
3096}
3097#endif
3098
3099#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00003100 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
3101 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102/*
3103 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3104 * that buf has been through inchar(). Returns the actual number of bytes used
3105 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3106 * available.
3107 */
3108 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003109get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110{
3111 int len = 0;
3112 int i;
3113 char_u c;
3114
3115 for (i = 0; i < num_bytes; i++)
3116 {
3117 if ((c = buf[len++]) == NUL)
3118 return -1;
3119 if (c == K_SPECIAL)
3120 {
3121 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3122 return -1;
3123 if (buf[len++] == (int)KS_ZERO)
3124 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003125 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3126 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3127 if (buf[len++] == (int)KE_CSI)
3128 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003130 else if (c == CSI && buf[len] == KS_EXTRA
3131 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003132 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3133 * the start of a special key, see add_to_input_buf_csi(). */
3134 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 bytes[i] = c;
3136 }
3137 return len;
3138}
3139#endif
3140
3141/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003142 * Check if the new shell size is valid, correct it if it's too small or way
3143 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 */
3145 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003146check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 if (Rows < min_rows()) /* need room for one window and command line */
3149 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003150 limit_screen_size();
3151}
3152
3153/*
3154 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3155 */
3156 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003157limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003158{
3159 if (Columns < MIN_COLUMNS)
3160 Columns = MIN_COLUMNS;
3161 else if (Columns > 10000)
3162 Columns = 10000;
3163 if (Rows > 1000)
3164 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165}
3166
Bram Moolenaar86b68352004-12-27 21:59:20 +00003167/*
3168 * Invoked just before the screen structures are going to be (re)allocated.
3169 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003171win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172{
3173 static int old_Rows = 0;
3174 static int old_Columns = 0;
3175
3176 if (old_Rows != Rows || old_Columns != Columns)
3177 ui_new_shellsize();
3178 if (old_Rows != Rows)
3179 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003180 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003181 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003182 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 old_Rows = Rows;
3184 shell_new_rows(); /* update window sizes */
3185 }
3186 if (old_Columns != Columns)
3187 {
3188 old_Columns = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 shell_new_columns(); /* update window sizes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 }
3191}
3192
3193/*
3194 * Call this function when the Vim shell has been resized in any way.
3195 * Will obtain the current size and redraw (also when size didn't change).
3196 */
3197 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003198shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199{
3200 set_shellsize(0, 0, FALSE);
3201}
3202
3203/*
3204 * Check if the shell size changed. Handle a resize.
3205 * When the size didn't change, nothing happens.
3206 */
3207 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003208shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209{
3210 int old_Rows = Rows;
3211 int old_Columns = Columns;
3212
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003213 if (!exiting
3214#ifdef FEAT_GUI
3215 /* Do not get the size when executing a shell command during
3216 * startup. */
3217 && !gui.starting
3218#endif
3219 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003220 {
3221 (void)ui_get_shellsize();
3222 check_shellsize();
3223 if (old_Rows != Rows || old_Columns != Columns)
3224 shell_resized();
3225 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226}
3227
3228/*
3229 * Set size of the Vim shell.
3230 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3231 * window size (this is used for the :win command).
3232 * If 'mustset' is FALSE, we may try to get the real window size and if
3233 * it fails use 'width' and 'height'.
3234 */
3235 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003236set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237{
3238 static int busy = FALSE;
3239
3240 /*
3241 * Avoid recursiveness, can happen when setting the window size causes
3242 * another window-changed signal.
3243 */
3244 if (busy)
3245 return;
3246
3247 if (width < 0 || height < 0) /* just checking... */
3248 return;
3249
Bram Moolenaara971b822011-09-14 14:43:25 +02003250 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003252 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 State = SETWSIZE;
3254 return;
3255 }
3256
Bram Moolenaara971b822011-09-14 14:43:25 +02003257 /* curwin->w_buffer can be NULL when we are closing a window and the
3258 * buffer has already been closed and removing a scrollbar causes a resize
3259 * event. Don't resize then, it will happen after entering another buffer.
3260 */
3261 if (curwin->w_buffer == NULL)
3262 return;
3263
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 ++busy;
3265
3266#ifdef AMIGA
3267 out_flush(); /* must do this before mch_get_shellsize() for
3268 some obscure reason */
3269#endif
3270
3271 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3272 {
3273 Rows = height;
3274 Columns = width;
3275 check_shellsize();
3276 ui_set_shellsize(mustset);
3277 }
3278 else
3279 check_shellsize();
3280
3281 /* The window layout used to be adjusted here, but it now happens in
3282 * screenalloc() (also invoked from screenclear()). That is because the
3283 * "busy" check above may skip this, but not screenalloc(). */
3284
3285 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3286 screenclear();
3287 else
3288 screen_start(); /* don't know where cursor is now */
3289
3290 if (starting != NO_SCREEN)
3291 {
3292#ifdef FEAT_TITLE
3293 maketitle();
3294#endif
3295 changed_line_abv_curs();
3296 invalidate_botline();
3297
3298 /*
3299 * We only redraw when it's needed:
3300 * - While at the more prompt or executing an external command, don't
3301 * redraw, but position the cursor.
3302 * - While editing the command line, only redraw that.
3303 * - in Ex mode, don't redraw anything.
3304 * - Otherwise, redraw right now, and position the cursor.
3305 * Always need to call update_screen() or screenalloc(), to make
3306 * sure Rows/Columns and the size of ScreenLines[] is correct!
3307 */
3308 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3309 || exmode_active)
3310 {
3311 screenalloc(FALSE);
3312 repeat_message();
3313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 else
3315 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003316 if (curwin->w_p_scb)
3317 do_check_scrollbind(TRUE);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003318 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003319 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003320 update_screen(NOT_VALID);
3321 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003322 }
3323 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003324 {
3325 update_topline();
3326#if defined(FEAT_INS_EXPAND)
3327 if (pum_visible())
3328 {
3329 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003330 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003331 }
Bram Moolenaar280f1262006-01-30 00:14:18 +00003332#endif
Bram Moolenaara5e66212017-09-29 22:42:33 +02003333 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003334 if (redrawing())
3335 setcursor();
3336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 }
3338 cursor_on(); /* redrawing may have switched it off */
3339 }
3340 out_flush();
3341 --busy;
3342}
3343
3344/*
3345 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3346 * commands and Ex mode).
3347 */
3348 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003349settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
3351#ifdef FEAT_GUI
3352 /* don't set the term where gvim was started to any mode */
3353 if (gui.in_use)
3354 return;
3355#endif
3356
3357 if (full_screen)
3358 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 /*
3360 * When returning after calling a shell we want to really set the
3361 * terminal to raw mode, even though we think it already is, because
3362 * the shell program may have reset the terminal mode.
3363 * When we think the terminal is normal, don't try to set it to
3364 * normal again, because that causes problems (logout!) on some
3365 * machines.
3366 */
3367 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3368 {
3369#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003370# ifdef FEAT_GUI
3371 if (!gui.in_use && !gui.starting)
3372# endif
3373 {
3374 /* May need to check for T_CRV response and termcodes, it
3375 * doesn't work in Cooked mode, an external program may get
3376 * them. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003377 if (tmode != TMODE_RAW && (crv_status == STATUS_SENT
3378 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003379#ifdef FEAT_TERMINAL
3380 || rfg_status == STATUS_SENT
3381#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003382 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003383 || rbm_status == STATUS_SENT
Bram Moolenaar89894aa2018-03-05 22:43:10 +01003384 || rcs_status == STATUS_SENT
3385 || winpos_status == STATUS_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003386 (void)vpeekc_nomap();
3387 check_for_codes_from_term();
3388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389#endif
3390#ifdef FEAT_MOUSE_TTY
3391 if (tmode != TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003392 mch_setmouse(FALSE); /* switch mouse off */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003394 if (tmode != TMODE_RAW)
3395 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 out_flush();
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003397 mch_settmode(tmode); /* machine specific function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 cur_tmode = tmode;
3399#ifdef FEAT_MOUSE
3400 if (tmode == TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003401 setmouse(); /* may switch mouse on */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003403 if (tmode == TMODE_RAW)
3404 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 out_flush();
3406 }
3407#ifdef FEAT_TERMRESPONSE
3408 may_req_termresponse();
3409#endif
3410 }
3411}
3412
3413 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003414starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415{
3416 if (full_screen && !termcap_active)
3417 {
3418 out_str(T_TI); /* start termcap mode */
3419 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003420 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 out_flush();
3422 termcap_active = TRUE;
3423 screen_start(); /* don't know where cursor is now */
3424#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003425# ifdef FEAT_GUI
3426 if (!gui.in_use && !gui.starting)
3427# endif
3428 {
3429 may_req_termresponse();
3430 /* Immediately check for a response. If t_Co changes, we don't
3431 * want to redraw with wrong colors first. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003432 if (crv_status == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003433 check_for_codes_from_term();
3434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435#endif
3436 }
3437}
3438
3439 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003440stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441{
3442 screen_stop_highlight();
3443 reset_cterm_colors();
3444 if (termcap_active)
3445 {
3446#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003447# ifdef FEAT_GUI
3448 if (!gui.in_use && !gui.starting)
3449# endif
3450 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003451 /* May need to discard T_CRV, T_U7 or T_RBG response. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003452 if (crv_status == STATUS_SENT
3453 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003454# ifdef FEAT_TERMINAL
3455 || rfg_status == STATUS_SENT
3456# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003457 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003458 || rbm_status == STATUS_SENT
Bram Moolenaar89894aa2018-03-05 22:43:10 +01003459 || rcs_status == STATUS_SENT
3460 || winpos_status == STATUS_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003461 {
3462# ifdef UNIX
3463 /* Give the terminal a chance to respond. */
3464 mch_delay(100L, FALSE);
3465# endif
3466# ifdef TCIFLUSH
3467 /* Discard data received but not read. */
3468 if (exiting)
3469 tcflush(fileno(stdin), TCIFLUSH);
3470# endif
3471 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003472 /* Check for termcodes first, otherwise an external program may
3473 * get them. */
3474 check_for_codes_from_term();
3475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003477 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 out_str(T_KE); /* stop "keypad transmit" mode */
3479 out_flush();
3480 termcap_active = FALSE;
3481 cursor_on(); /* just in case it is still off */
3482 out_str(T_TE); /* stop termcap mode */
3483 screen_start(); /* don't know where cursor is now */
3484 out_flush();
3485 }
3486}
3487
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003488#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489/*
3490 * Request version string (for xterm) when needed.
3491 * Only do this after switching to raw mode, otherwise the result will be
3492 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003493 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003494 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 * Only do this after termcap mode has been started, otherwise the codes for
3496 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003497 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3498 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003499 * On Unix only do it when both output and input are a tty (avoid writing
3500 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 * The result is caught in check_termcode().
3502 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003503 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003504may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003506 if (crv_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003507 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003508 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 && *T_CRV != NUL)
3510 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003511 LOG_TR(("Sending CRV request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 out_str(T_CRV);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003513 crv_status = STATUS_SENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 /* check for the characters now, otherwise they might be eaten by
3515 * get_keystroke() */
3516 out_flush();
3517 (void)vpeekc_nomap();
3518 }
3519}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003520
3521# if defined(FEAT_MBYTE) || defined(PROTO)
3522/*
3523 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003524 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003525 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003526 * If the terminal treats \u25bd as single width, the position is (1, 1),
3527 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003528 * This function has the side effect that changes cursor position, so
3529 * it must be called immediately after entering termcap mode.
3530 */
3531 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003532may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003533{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003534 if (u7_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003535 && can_get_termresponse()
3536 && starting == 0
Bram Moolenaar9584b312013-03-13 19:29:28 +01003537 && *T_U7 != NUL
3538 && !option_was_set((char_u *)"ambiwidth"))
3539 {
3540 char_u buf[16];
3541
Bram Moolenaarb255b902018-04-24 21:40:10 +02003542 LOG_TR(("Sending U7 request"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02003543 /* Do this in the second row. In the first row the returned sequence
3544 * may be CSI 1;2R, which is the same as <S-F3>. */
3545 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003546 buf[mb_char2bytes(0x25bd, buf)] = 0;
3547 out_str(buf);
3548 out_str(T_U7);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003549 u7_status = STATUS_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003550 out_flush();
Bram Moolenaar976787d2017-06-04 15:45:50 +02003551
3552 /* This overwrites a few characters on the screen, a redraw is needed
3553 * after this. Clear them out for now. */
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003554 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003555 out_str((char_u *)" ");
3556 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003557
Bram Moolenaar05684312017-12-09 15:11:24 +01003558 /* Need to reset the known cursor position. */
3559 screen_start();
3560
Bram Moolenaar9584b312013-03-13 19:29:28 +01003561 /* check for the characters now, otherwise they might be eaten by
3562 * get_keystroke() */
3563 out_flush();
3564 (void)vpeekc_nomap();
3565 }
3566}
3567# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003568
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003569/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003570 * Similar to requesting the version string: Request the terminal background
3571 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003572 */
3573 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003574may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003575{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003576 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003577 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003578 int didit = FALSE;
3579
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003580# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003581 /* Only request foreground if t_RF is set. */
3582 if (rfg_status == STATUS_GET && *T_RFG != NUL)
3583 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003584 LOG_TR(("Sending FG request"));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003585 out_str(T_RFG);
3586 rfg_status = STATUS_SENT;
3587 didit = TRUE;
3588 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003589# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003590
3591 /* Only request background if t_RB is set. */
3592 if (rbg_status == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003593 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02003594 LOG_TR(("Sending BG request"));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003595 out_str(T_RBG);
3596 rbg_status = STATUS_SENT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003597 didit = TRUE;
3598 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003599
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003600 if (didit)
3601 {
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003602 /* check for the characters now, otherwise they might be eaten by
3603 * get_keystroke() */
3604 out_flush();
3605 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003606 }
3607 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003608}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003609
Bram Moolenaar2951b772013-07-03 12:45:31 +02003610# ifdef DEBUG_TERMRESPONSE
3611 static void
Bram Moolenaarb255b902018-04-24 21:40:10 +02003612log_tr(const char *fmt, ...)
Bram Moolenaar2951b772013-07-03 12:45:31 +02003613{
3614 static FILE *fd_tr = NULL;
3615 static proftime_T start;
3616 proftime_T now;
Bram Moolenaarb255b902018-04-24 21:40:10 +02003617 va_list ap;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003618
3619 if (fd_tr == NULL)
3620 {
3621 fd_tr = fopen("termresponse.log", "w");
3622 profile_start(&start);
3623 }
3624 now = start;
3625 profile_end(&now);
Bram Moolenaarb255b902018-04-24 21:40:10 +02003626 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
3627 must_redraw == NOT_VALID ? "NV"
3628 : must_redraw == CLEAR ? "CL" : " ");
3629 va_start(ap, fmt);
3630 vfprintf(fd_tr, fmt, ap);
3631 va_end(ap);
3632 fputc('\n', fd_tr);
3633 fflush(fd_tr);
Bram Moolenaar2951b772013-07-03 12:45:31 +02003634}
3635# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636#endif
3637
3638/*
3639 * Return TRUE when saving and restoring the screen.
3640 */
3641 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003642swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643{
3644 return (full_screen && *T_TI != NUL);
3645}
3646
Bram Moolenaarecadf432018-03-20 11:17:04 +01003647#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648/*
3649 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3650 */
3651 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003652setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653{
3654# ifdef FEAT_MOUSE_TTY
3655 int checkfor;
3656# endif
3657
3658# ifdef FEAT_MOUSESHAPE
3659 update_mouseshape(-1);
3660# endif
3661
3662# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3663# ifdef FEAT_GUI
3664 /* In the GUI the mouse is always enabled. */
3665 if (gui.in_use)
3666 return;
3667# endif
3668 /* be quick when mouse is off */
3669 if (*p_mouse == NUL || has_mouse_termcode == 0)
3670 return;
3671
3672 /* don't switch mouse on when not in raw mode (Ex mode) */
3673 if (cur_tmode != TMODE_RAW)
3674 {
3675 mch_setmouse(FALSE);
3676 return;
3677 }
3678
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 if (VIsual_active)
3680 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003681 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 checkfor = MOUSE_RETURN;
3683 else if (State & INSERT)
3684 checkfor = MOUSE_INSERT;
3685 else if (State & CMDLINE)
3686 checkfor = MOUSE_COMMAND;
3687 else if (State == CONFIRM || State == EXTERNCMD)
3688 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3689 else
3690 checkfor = MOUSE_NORMAL; /* assume normal mode */
3691
3692 if (mouse_has(checkfor))
3693 mch_setmouse(TRUE);
3694 else
3695 mch_setmouse(FALSE);
3696# endif
3697}
3698
3699/*
3700 * Return TRUE if
3701 * - "c" is in 'mouse', or
3702 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3703 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3704 * normal editing mode (not at hit-return message).
3705 */
3706 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003707mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708{
3709 char_u *p;
3710
3711 for (p = p_mouse; *p; ++p)
3712 switch (*p)
3713 {
3714 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3715 return TRUE;
3716 break;
3717 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3718 return TRUE;
3719 break;
3720 default: if (c == *p) return TRUE; break;
3721 }
3722 return FALSE;
3723}
3724
3725/*
3726 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3727 */
3728 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003729mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730{
3731 return (p_mousem[0] == 'p');
3732}
3733#endif
3734
3735/*
3736 * By outputting the 'cursor very visible' termcap code, for some windowed
3737 * terminals this makes the screen scrolled to the correct position.
3738 * Used when starting Vim or returning from a shell.
3739 */
3740 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003741scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003743 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 {
3745 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003746 out_str(T_CVS);
3747 screen_start(); /* don't know where cursor is now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 }
3749}
3750
3751static int cursor_is_off = FALSE;
3752
3753/*
3754 * Enable the cursor.
3755 */
3756 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003757cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758{
3759 if (cursor_is_off)
3760 {
3761 out_str(T_VE);
3762 cursor_is_off = FALSE;
3763 }
3764}
3765
3766/*
3767 * Disable the cursor.
3768 */
3769 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003770cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003772 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 {
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003774 out_str(T_VI); /* disable cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 cursor_is_off = TRUE;
3776 }
3777}
3778
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003779#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003781 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003782 */
3783 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003784term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003785{
Bram Moolenaarc9770922017-08-12 20:11:53 +02003786 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003787 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003788
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003789 /* Only do something when redrawing the screen and we can restore the
3790 * mode. */
3791 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003792 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003793# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003794 if (forced && initial_cursor_shape > 0)
3795 /* Restore to initial values. */
3796 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003797# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003798 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003799 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003800
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003801 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003802 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003803 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003804 {
3805 if (*T_CSR != NUL)
3806 p = T_CSR; /* Replace mode cursor */
3807 else
3808 p = T_CSI; /* fall back to Insert mode cursor */
3809 if (*p != NUL)
3810 {
3811 out_str(p);
3812 showing_mode = REPLACE;
3813 }
3814 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003815 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003816 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003817 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003818 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003819 {
3820 out_str(T_CSI); /* Insert mode cursor */
3821 showing_mode = INSERT;
3822 }
3823 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003824 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003825 {
3826 out_str(T_CEI); /* non-Insert mode cursor */
3827 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003828 }
3829}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003830
3831# if defined(FEAT_TERMINAL) || defined(PROTO)
3832 void
3833term_cursor_color(char_u *color)
3834{
3835 if (*T_CSC != NUL)
3836 {
3837 out_str(T_CSC); /* set cursor color start */
3838 out_str_nf(color);
3839 out_str(T_CEC); /* set cursor color end */
3840 out_flush();
3841 }
3842}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02003843# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003844
Bram Moolenaar4db25542017-08-28 22:43:05 +02003845 int
3846blink_state_is_inverted()
3847{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003848#ifdef FEAT_TERMRESPONSE
Bram Moolenaar4db25542017-08-28 22:43:05 +02003849 return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
3850 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003851#else
3852 return FALSE;
3853#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02003854}
3855
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003856/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003857 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003858 */
3859 void
3860term_cursor_shape(int shape, int blink)
3861{
3862 if (*T_CSH != NUL)
3863 {
3864 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
3865 out_flush();
3866 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02003867 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003868 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02003869 int do_blink = blink;
3870
3871 /* t_SH is empty: try setting just the blink state.
3872 * The blink flags are XORed together, if the initial blinking from
3873 * style and shape differs, we need to invert the flag here. */
3874 if (blink_state_is_inverted())
3875 do_blink = !blink;
3876
3877 if (do_blink && *T_VS != NUL)
3878 {
3879 out_str(T_VS);
3880 out_flush();
3881 }
3882 else if (!do_blink && *T_CVS != NUL)
3883 {
3884 out_str(T_CVS);
3885 out_flush();
3886 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003887 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003888}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003889#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003890
3891/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 * Set scrolling region for window 'wp'.
3893 * The region starts 'off' lines from the start of the window.
3894 * Also set the vertical scroll region for a vertically split window. Always
3895 * the full width of the window, excluding the vertical separator.
3896 */
3897 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003898scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899{
3900 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3901 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003903 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
3904 wp->w_wincol));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 screen_start(); /* don't know where cursor is now */
3906}
3907
3908/*
3909 * Reset scrolling region to the whole screen.
3910 */
3911 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003912scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913{
3914 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 if (*T_CSV != NUL)
3916 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 screen_start(); /* don't know where cursor is now */
3918}
3919
3920
3921/*
3922 * List of terminal codes that are currently recognized.
3923 */
3924
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003925static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926{
3927 char_u name[2]; /* termcap name of entry */
3928 char_u *code; /* terminal code (in allocated memory) */
3929 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003930 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931} *termcodes = NULL;
3932
3933static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3934static int tc_len = 0; /* current number of entries in termcodes[] */
3935
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003936static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003937
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003939clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
3941 while (tc_len > 0)
3942 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003943 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 tc_max_len = 0;
3945
3946#ifdef HAVE_TGETENT
3947 BC = (char *)empty_option;
3948 UP = (char *)empty_option;
3949 PC = NUL; /* set pad character to NUL */
3950 ospeed = 0;
3951#endif
3952
3953 need_gather = TRUE; /* need to fill termleader[] */
3954}
3955
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003956#define ATC_FROM_TERM 55
3957
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958/*
3959 * Add a new entry to the list of terminal codes.
3960 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003961 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3962 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 */
3964 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003965add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966{
3967 struct termcode *new_tc;
3968 int i, j;
3969 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003970 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971
3972 if (string == NULL || *string == NUL)
3973 {
3974 del_termcode(name);
3975 return;
3976 }
3977
Bram Moolenaar45500912014-07-09 20:51:07 +02003978#if defined(WIN3264) && !defined(FEAT_GUI)
3979 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3980#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003982#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 if (s == NULL)
3984 return;
3985
3986 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003987 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003989 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 s[0] = term_7to8bit(string);
3991 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003992
3993#if defined(WIN3264) && !defined(FEAT_GUI)
3994 if (s[0] == K_NUL)
3995 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003996 STRMOVE(s + 1, s);
3997 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02003998 }
3999#endif
4000
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004001 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002
4003 need_gather = TRUE; /* need to fill termleader[] */
4004
4005 /*
4006 * need to make space for more entries
4007 */
4008 if (tc_len == tc_max_len)
4009 {
4010 tc_max_len += 20;
4011 new_tc = (struct termcode *)alloc(
4012 (unsigned)(tc_max_len * sizeof(struct termcode)));
4013 if (new_tc == NULL)
4014 {
4015 tc_max_len -= 20;
4016 return;
4017 }
4018 for (i = 0; i < tc_len; ++i)
4019 new_tc[i] = termcodes[i];
4020 vim_free(termcodes);
4021 termcodes = new_tc;
4022 }
4023
4024 /*
4025 * Look for existing entry with the same name, it is replaced.
4026 * Look for an existing entry that is alphabetical higher, the new entry
4027 * is inserted in front of it.
4028 */
4029 for (i = 0; i < tc_len; ++i)
4030 {
4031 if (termcodes[i].name[0] < name[0])
4032 continue;
4033 if (termcodes[i].name[0] == name[0])
4034 {
4035 if (termcodes[i].name[1] < name[1])
4036 continue;
4037 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004038 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 */
4040 if (termcodes[i].name[1] == name[1])
4041 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004042 if (flags == ATC_FROM_TERM && (j = termcode_star(
4043 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004044 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004045 /* Don't replace ESC[123;*X or ESC O*X with another when
4046 * invoked from got_code_from_term(). */
4047 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004048 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004049 && s[len - 1]
4050 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004051 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004052 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004053 vim_free(s);
4054 return;
4055 }
4056 }
4057 else
4058 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004059 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004060 vim_free(termcodes[i].code);
4061 --tc_len;
4062 break;
4063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 }
4065 }
4066 /*
4067 * Found alphabetical larger entry, move rest to insert new entry
4068 */
4069 for (j = tc_len; j > i; --j)
4070 termcodes[j] = termcodes[j - 1];
4071 break;
4072 }
4073
4074 termcodes[i].name[0] = name[0];
4075 termcodes[i].name[1] = name[1];
4076 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004077 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004078
4079 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4080 * accept modifiers. */
4081 termcodes[i].modlen = 0;
4082 j = termcode_star(s, len);
4083 if (j > 0)
4084 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 ++tc_len;
4086}
4087
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004088/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004089 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004090 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004091 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004092 */
4093 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004094termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004095{
4096 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
4097 if (len >= 3 && code[len - 2] == '*')
4098 {
4099 if (len >= 5 && code[len - 3] == ';')
4100 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004101 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004102 return 1;
4103 }
4104 return 0;
4105}
4106
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004108find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109{
4110 int i;
4111
4112 for (i = 0; i < tc_len; ++i)
4113 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4114 return termcodes[i].code;
4115 return NULL;
4116}
4117
4118#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4119 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004120get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121{
4122 if (i >= tc_len)
4123 return NULL;
4124 return &termcodes[i].name[0];
4125}
4126#endif
4127
4128 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004129del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130{
4131 int i;
4132
4133 if (termcodes == NULL) /* nothing there yet */
4134 return;
4135
4136 need_gather = TRUE; /* need to fill termleader[] */
4137
4138 for (i = 0; i < tc_len; ++i)
4139 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4140 {
4141 del_termcode_idx(i);
4142 return;
4143 }
4144 /* not found. Give error message? */
4145}
4146
4147 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004148del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149{
4150 int i;
4151
4152 vim_free(termcodes[idx].code);
4153 --tc_len;
4154 for (i = idx; i < tc_len; ++i)
4155 termcodes[i] = termcodes[i + 1];
4156}
4157
4158#ifdef FEAT_TERMRESPONSE
4159/*
4160 * Called when detected that the terminal sends 8-bit codes.
4161 * Convert all 7-bit codes to their 8-bit equivalent.
4162 */
4163 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004164switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165{
4166 int i;
4167 int c;
4168
4169 /* Only need to do something when not already using 8-bit codes. */
4170 if (!term_is_8bit(T_NAME))
4171 {
4172 for (i = 0; i < tc_len; ++i)
4173 {
4174 c = term_7to8bit(termcodes[i].code);
4175 if (c != 0)
4176 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004177 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 termcodes[i].code[0] = c;
4179 }
4180 }
4181 need_gather = TRUE; /* need to fill termleader[] */
4182 }
4183 detected_8bit = TRUE;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004184 LOG_TR(("Switching to 8 bit"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185}
4186#endif
4187
4188#ifdef CHECK_DOUBLE_CLICK
4189static linenr_T orig_topline = 0;
4190# ifdef FEAT_DIFF
4191static int orig_topfill = 0;
4192# endif
4193#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004194#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195/*
4196 * Checking for double clicks ourselves.
4197 * "orig_topline" is used to avoid detecting a double-click when the window
4198 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4199 */
4200/*
4201 * Set orig_topline. Used when jumping to another window, so that a double
4202 * click still works.
4203 */
4204 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004205set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206{
4207 orig_topline = wp->w_topline;
4208# ifdef FEAT_DIFF
4209 orig_topfill = wp->w_topfill;
4210# endif
4211}
4212#endif
4213
4214/*
4215 * Check if typebuf.tb_buf[] contains a terminal key code.
4216 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4217 * + max_offset].
4218 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004219 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 * With a match, the match is removed, the replacement code is inserted in
4221 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4222 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004223 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4224 * "buflen" is then the length of the string in buf[] and is updated for
4225 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 */
4227 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004228check_termcode(
4229 int max_offset,
4230 char_u *buf,
4231 int bufsize,
4232 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233{
4234 char_u *tp;
4235 char_u *p;
4236 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004237 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004239 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 int offset;
4241 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004242 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02004243 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004244 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 int new_slen;
4246 int extra;
4247 char_u string[MAX_KEY_CODE_LEN + 1];
4248 int i, j;
4249 int idx = 0;
4250#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004251# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4252 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 char_u bytes[6];
4254 int num_bytes;
4255# endif
4256 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 int is_click, is_drag;
4258 int wheel_code = 0;
4259 int current_button;
4260 static int held_button = MOUSE_RELEASE;
4261 static int orig_num_clicks = 1;
4262 static int orig_mouse_code = 0x0;
4263# ifdef CHECK_DOUBLE_CLICK
4264 static int orig_mouse_col = 0;
4265 static int orig_mouse_row = 0;
4266 static struct timeval orig_mouse_time = {0, 0};
4267 /* time of previous mouse click */
4268 struct timeval mouse_time; /* time of current mouse click */
4269 long timediff; /* elapsed time in msec */
4270# endif
4271#endif
4272 int cpo_koffset;
4273#ifdef FEAT_MOUSE_GPM
4274 extern int gpm_flag; /* gpm library variable */
4275#endif
4276
4277 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4278
4279 /*
4280 * Speed up the checks for terminal codes by gathering all first bytes
4281 * used in termleader[]. Often this is just a single <Esc>.
4282 */
4283 if (need_gather)
4284 gather_termleader();
4285
4286 /*
4287 * Check at several positions in typebuf.tb_buf[], to catch something like
4288 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4289 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004290 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 * This is used often, KEEP IT FAST!
4292 */
4293 for (offset = 0; offset < max_offset; ++offset)
4294 {
4295 if (buf == NULL)
4296 {
4297 if (offset >= typebuf.tb_len)
4298 break;
4299 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4300 len = typebuf.tb_len - offset; /* length of the input */
4301 }
4302 else
4303 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004304 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 break;
4306 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004307 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 }
4309
4310 /*
4311 * Don't check characters after K_SPECIAL, those are already
4312 * translated terminal chars (avoid translating ~@^Hx).
4313 */
4314 if (*tp == K_SPECIAL)
4315 {
4316 offset += 2; /* there are always 2 extra characters */
4317 continue;
4318 }
4319
4320 /*
4321 * Skip this position if the character does not appear as the first
4322 * character in term_strings. This speeds up a lot, since most
4323 * termcodes start with the same character (ESC or CSI).
4324 */
4325 i = *tp;
4326 for (p = termleader; *p && *p != i; ++p)
4327 ;
4328 if (*p == NUL)
4329 continue;
4330
4331 /*
4332 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4333 * are in Insert mode.
4334 */
4335 if (*tp == ESC && !p_ek && (State & INSERT))
4336 continue;
4337
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004339 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004340 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341
4342#ifdef FEAT_GUI
4343 if (gui.in_use)
4344 {
4345 /*
4346 * GUI special key codes are all of the form [CSI xx].
4347 */
4348 if (*tp == CSI) /* Special key from GUI */
4349 {
4350 if (len < 3)
4351 return -1; /* Shouldn't happen */
4352 slen = 3;
4353 key_name[0] = tp[1];
4354 key_name[1] = tp[2];
4355 }
4356 }
4357 else
4358#endif /* FEAT_GUI */
4359 {
4360 for (idx = 0; idx < tc_len; ++idx)
4361 {
4362 /*
4363 * Ignore the entry if we are not at the start of
4364 * typebuf.tb_buf[]
4365 * and there are not enough characters to make a match.
4366 * But only when the 'K' flag is in 'cpoptions'.
4367 */
4368 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004369 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 if (cpo_koffset && offset && len < slen)
4371 continue;
4372 if (STRNCMP(termcodes[idx].code, tp,
4373 (size_t)(slen > len ? len : slen)) == 0)
4374 {
4375 if (len < slen) /* got a partial sequence */
4376 return -1; /* need to get more chars */
4377
4378 /*
4379 * When found a keypad key, check if there is another key
4380 * that matches and use that one. This makes <Home> to be
4381 * found instead of <kHome> when they produce the same
4382 * key code.
4383 */
4384 if (termcodes[idx].name[0] == 'K'
4385 && VIM_ISDIGIT(termcodes[idx].name[1]))
4386 {
4387 for (j = idx + 1; j < tc_len; ++j)
4388 if (termcodes[j].len == slen &&
4389 STRNCMP(termcodes[idx].code,
4390 termcodes[j].code, slen) == 0)
4391 {
4392 idx = j;
4393 break;
4394 }
4395 }
4396
4397 key_name[0] = termcodes[idx].name[0];
4398 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 break;
4400 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004401
4402 /*
4403 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004404 * <Esc>[123;*X (modslen == slen - 3)
4405 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4406 * When there is a modifier the * matches a number.
4407 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004408 */
4409 if (termcodes[idx].modlen > 0)
4410 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004411 modslen = termcodes[idx].modlen;
4412 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004413 continue;
4414 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004415 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004416 {
4417 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004418
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004419 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004420 return -1; /* need to get more chars */
4421
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004422 if (tp[modslen] == termcodes[idx].code[slen - 1])
4423 slen = modslen + 1; /* no modifiers */
4424 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004425 continue; /* no match */
4426 else
4427 {
4428 /* Skip over the digits, the final char must
4429 * follow. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004430 for (j = slen - 2; j < len && (isdigit(tp[j])
4431 || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004432 ;
4433 ++j;
4434 if (len < j) /* got a partial sequence */
4435 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004436 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4437 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004438
Bram Moolenaara529ce02017-06-22 22:37:57 +02004439 modifiers_start = tp + slen - 2;
4440
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004441 /* Match! Convert modifier bits. */
Bram Moolenaara529ce02017-06-22 22:37:57 +02004442 n = atoi((char *)modifiers_start) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004443 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004444 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004445 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004446 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004447 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004448 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004449 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004450 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004451
4452 slen = j;
4453 }
4454 key_name[0] = termcodes[idx].name[0];
4455 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004456 break;
4457 }
4458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 }
4460 }
4461
4462#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004463 if (key_name[0] == NUL
Bram Moolenaara529ce02017-06-22 22:37:57 +02004464 /* Mouse codes of DEC and pterm start with <ESC>[. When
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004465 * detecting the start of these mouse codes they might as well be
4466 * another key code or terminal response. */
4467# ifdef FEAT_MOUSE_DEC
4468 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004469# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004470# ifdef FEAT_MOUSE_PTERM
4471 || key_name[0] == KS_PTERM_MOUSE
4472# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004473 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004475 /* Check for some responses from the terminal starting with
4476 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004477 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004478 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004479 * Libvterm returns {x} == 0, {vers} == 100, {y} == 0.
Bram Moolenaar9584b312013-03-13 19:29:28 +01004480 * Also eat other possible responses to t_RV, rxvt returns
4481 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4482 * mrxvt has been reported to have "+" in the version. Assume
4483 * the escape sequence ends with a letter or one of "{|}~".
4484 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004485 * - Cursor position report: <Esc>[{row};{col}R
4486 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004487 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004488 *
4489 * - window position reply: <Esc>[3;{x};{y}t
Bram Moolenaar9584b312013-03-13 19:29:28 +01004490 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004491 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004492
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004493 if ((*T_CRV != NUL || *T_U7 != NUL || did_request_winpos)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004494 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004495 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004496 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 {
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004498 int col = 0;
4499 int semicols = 0;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004500#ifdef FEAT_MBYTE
Bram Moolenaarc41053062014-03-25 13:46:26 +01004501 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004502#endif
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004503
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004505 for (i = 2 + (tp[0] != CSI); i < len
4506 && !(tp[i] >= '{' && tp[i] <= '~')
4507 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004508 if (tp[i] == ';' && ++semicols == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004509 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004510 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004511#ifdef FEAT_MBYTE
4512 row_char = tp[i - 1];
4513#endif
4514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004516 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004517 LOG_TR(("Not enough characters for CRV"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02004518 return -1;
4519 }
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004520 if (extra > 0)
4521 col = atoi((char *)tp + extra);
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004522
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004523#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004524 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4525 * u7_status is not "sent", it may be from a previous Vim that
4526 * just exited. But not for <S-F3>, it sends something
4527 * similar, check for row and column to make sense. */
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004528 if (semicols == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004529 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004530 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004531 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004532 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004533
Bram Moolenaarb255b902018-04-24 21:40:10 +02004534 LOG_TR(("Received U7 status: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004535 u7_status = STATUS_GOT;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004536 did_cursorhold = TRUE;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004537 if (col == 2)
4538 aw = "single";
4539 else if (col == 3)
4540 aw = "double";
4541 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4542 {
4543 /* Setting the option causes a screen redraw. Do
4544 * that right away if possible, keeping any
4545 * messages. */
4546 set_option_value((char_u *)"ambw", 0L,
4547 (char_u *)aw, 0);
4548# ifdef DEBUG_TERMRESPONSE
4549 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004550 int r = redraw_asap(CLEAR);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004551
Bram Moolenaarb255b902018-04-24 21:40:10 +02004552 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004553 }
4554# else
4555 redraw_asap(CLEAR);
4556# endif
4557 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004558 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004559 key_name[0] = (int)KS_EXTRA;
4560 key_name[1] = (int)KE_IGNORE;
4561 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004562# ifdef FEAT_EVAL
4563 set_vim_var_string(VV_TERMU7RESP, tp, slen);
4564# endif
Bram Moolenaar9584b312013-03-13 19:29:28 +01004565 }
4566 else
4567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004569 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 {
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004571 int version = col;
4572
Bram Moolenaarb255b902018-04-24 21:40:10 +02004573 LOG_TR(("Received CRV response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004574 crv_status = STATUS_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004575 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576
4577 /* If this code starts with CSI, you can bet that the
4578 * terminal uses 8-bit codes. */
4579 if (tp[0] == CSI)
4580 switch_to_8bit();
4581
4582 /* rxvt sends its version number: "20703" is 2.7.3.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004583 * Screen sends 40500.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 * Ignore it for when the user has set 'term' to xterm,
4585 * even though it's an rxvt. */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004586 if (version > 20000)
4587 version = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004589 if (tp[1 + (tp[0] != CSI)] == '>' && semicols == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004591 int need_flush = FALSE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004592# ifdef FEAT_MOUSE_SGR
4593 int is_iterm2 = FALSE;
4594# endif
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004595
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 /* if xterm version >= 141 try to get termcap codes */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004597 if (version >= 141)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004599 LOG_TR(("Enable checking for XT codes"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 check_for_codes = TRUE;
4601 need_gather = TRUE;
4602 req_codes_from_term();
4603 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004604
4605 /* libvterm sends 0;100;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004606 if (version == 100
Bram Moolenaare9224602017-08-26 15:29:47 +02004607 && STRNCMP(tp + extra - 2, "0;100;0c", 8) == 0)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004608 {
4609 /* If run from Vim $COLORS is set to the number of
4610 * colors the terminal supports. Otherwise assume
4611 * 256, libvterm supports even more. */
4612 if (mch_getenv((char_u *)"COLORS") == NULL)
4613 may_adjust_color_count(256);
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004614# ifdef FEAT_MOUSE_SGR
4615 /* Libvterm can handle SGR mouse reporting. */
4616 if (!option_was_set((char_u *)"ttym"))
4617 set_option_value((char_u *)"ttym", 0L,
4618 (char_u *)"sgr", 0);
4619# endif
4620 }
4621
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004622 if (version == 95)
4623 {
4624 /* Mac Terminal.app sends 1;95;0 */
4625 if (STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0)
4626 {
4627 is_not_xterm = TRUE;
4628 is_mac_terminal = TRUE;
4629 }
4630# ifdef FEAT_MOUSE_SGR
Bram Moolenaar05684312017-12-09 15:11:24 +01004631 /* iTerm2 sends 0;95;0 */
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004632 if (STRNCMP(tp + extra - 2, "0;95;0c", 7) == 0)
4633 is_iterm2 = TRUE;
4634# endif
4635 }
4636
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004637 /* Only set 'ttymouse' automatically if it was not set
4638 * by the user already. */
4639 if (!option_was_set((char_u *)"ttym"))
4640 {
4641# ifdef FEAT_MOUSE_SGR
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004642 /* Xterm version 277 supports SGR. Also support
Bram Moolenaar05684312017-12-09 15:11:24 +01004643 * Terminal.app and iTerm2. */
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004644 if (version >= 277 || is_iterm2 || is_mac_terminal)
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004645 set_option_value((char_u *)"ttym", 0L,
4646 (char_u *)"sgr", 0);
4647 else
4648# endif
4649 /* if xterm version >= 95 use mouse dragging */
4650 if (version >= 95)
4651 set_option_value((char_u *)"ttym", 0L,
4652 (char_u *)"xterm2", 0);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004653 }
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004654
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004655 /* Detect terminals that set $TERM to something like
4656 * "xterm-256colors" but are not fully xterm
4657 * compatible. */
Bram Moolenaarc2127982017-09-11 20:34:13 +02004658
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004659 /* Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004660 * xfce4-terminal sends 1;2802;0.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004661 * screen sends 83;40500;0
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004662 * Assuming any version number over 2500 is not an
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004663 * xterm (without the limit for rxvt and screen). */
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004664 if (col >= 2500)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004665 is_not_xterm = TRUE;
4666
Bram Moolenaar2e49b6b2017-09-06 22:08:16 +02004667 /* PuTTY sends 0;136;0
4668 * vandyke SecureCRT sends 1;136;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004669 if (version == 136
Bram Moolenaar618d6d22017-09-07 12:59:25 +02004670 && STRNCMP(tp + extra - 1, ";136;0c", 7) == 0)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004671 is_not_xterm = TRUE;
4672
4673 /* Konsole sends 0;115;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004674 if (version == 115
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004675 && STRNCMP(tp + extra - 2, "0;115;0c", 8) == 0)
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004676 is_not_xterm = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004677
4678 /* Only request the cursor style if t_SH and t_RS are
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004679 * set. Only supported properly by xterm since version
4680 * 279 (otherwise it returns 0x18).
4681 * Not for Terminal.app, it can't handle t_RS, it
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004682 * echoes the characters to the screen. */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004683 if (rcs_status == STATUS_GET
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004684 && version >= 279
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004685 && !is_not_xterm
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004686 && *T_CSH != NUL
4687 && *T_CRS != NUL)
4688 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004689 LOG_TR(("Sending cursor style request"));
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004690 out_str(T_CRS);
Bram Moolenaar4db25542017-08-28 22:43:05 +02004691 rcs_status = STATUS_SENT;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004692 need_flush = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004693 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004694
4695 /* Only request the cursor blink mode if t_RC set. Not
4696 * for Gnome terminal, it can't handle t_RC, it
4697 * echoes the characters to the screen. */
4698 if (rbm_status == STATUS_GET
4699 && !is_not_xterm
4700 && *T_CRC != NUL)
4701 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004702 LOG_TR(("Sending cursor blink mode request"));
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004703 out_str(T_CRC);
4704 rbm_status = STATUS_SENT;
4705 need_flush = TRUE;
4706 }
4707
4708 if (need_flush)
4709 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004711 slen = i + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712# ifdef FEAT_EVAL
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004713 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 apply_autocmds(EVENT_TERMRESPONSE,
4716 NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 key_name[0] = (int)KS_EXTRA;
4718 key_name[1] = (int)KE_IGNORE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 }
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004720
Bram Moolenaar4db25542017-08-28 22:43:05 +02004721 /* Check blinking cursor from xterm:
4722 * {lead}?12;1$y set
4723 * {lead}?12;2$y not set
4724 *
4725 * {lead} can be <Esc>[ or CSI
4726 */
4727 else if (rbm_status == STATUS_SENT
4728 && tp[(j = 1 + (tp[0] == ESC))] == '?'
4729 && i == j + 6
4730 && tp[j + 1] == '1'
4731 && tp[j + 2] == '2'
4732 && tp[j + 3] == ';'
4733 && tp[i - 1] == '$'
4734 && tp[i] == 'y')
4735 {
4736 initial_cursor_blink = (tp[j + 4] == '1');
4737 rbm_status = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004738 LOG_TR(("Received cursor blinking mode response: %s", tp));
Bram Moolenaar4db25542017-08-28 22:43:05 +02004739 key_name[0] = (int)KS_EXTRA;
4740 key_name[1] = (int)KE_IGNORE;
4741 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004742# ifdef FEAT_EVAL
4743 set_vim_var_string(VV_TERMBLINKRESP, tp, slen);
4744# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004745 }
4746
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004747 /*
4748 * Check for a window position response from the terminal:
4749 * {lead}3;{x}:{y}t
4750 */
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004751 else if (did_request_winpos
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004752 && ((len >= 4 && tp[0] == ESC && tp[1] == '[')
4753 || (len >= 3 && tp[0] == CSI))
4754 && tp[(j = 1 + (tp[0] == ESC))] == '3'
4755 && tp[j + 1] == ';')
4756 {
4757 j += 2;
4758 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4759 ;
4760 if (i < len && tp[i] == ';')
4761 {
4762 winpos_x = atoi((char *)tp + j);
4763 j = i + 1;
4764 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4765 ;
4766 if (i < len && tp[i] == 't')
4767 {
4768 winpos_y = atoi((char *)tp + j);
4769 /* got finished code: consume it */
4770 key_name[0] = (int)KS_EXTRA;
4771 key_name[1] = (int)KE_IGNORE;
4772 slen = i + 1;
Bram Moolenaar89894aa2018-03-05 22:43:10 +01004773
4774 if (--did_request_winpos <= 0)
4775 winpos_status = STATUS_GOT;
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004776 }
4777 }
4778 if (i == len)
4779 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004780 LOG_TR(("not enough characters for winpos"));
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004781 return -1;
4782 }
4783 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004784 }
4785
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004786 /* Check for fore/background color response from the terminal:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004787 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004788 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004789 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004790 * {code} is 10 for foreground, 11 for background
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004791 * {lead} can be <Esc>] or OSC
4792 * {tail} can be '\007', <Esc>\ or STERM.
4793 *
4794 * Consume any code that starts with "{lead}11;", it's also
4795 * possible that "rgba" is following.
4796 */
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004797 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004798 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4799 || tp[0] == OSC))
4800 {
4801 j = 1 + (tp[0] == ESC);
4802 if (len >= j + 3 && (argp[0] != '1'
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004803 || (argp[1] != '1' && argp[1] != '0')
4804 || argp[2] != ';'))
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004805 i = 0; /* no match */
4806 else
4807 for (i = j; i < len; ++i)
4808 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4809 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004810 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004811 int is_bg = argp[1] == '1';
4812
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004813 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004814 && tp[j + 11] == '/' && tp[j + 16] == '/')
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004815 {
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004816#ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004817 int rval = hexhex2nr(tp + j + 7);
4818 int gval = hexhex2nr(tp + j + 12);
4819 int bval = hexhex2nr(tp + j + 17);
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004820#endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004821 if (is_bg)
4822 {
4823 char *newval = (3 * '6' < tp[j+7] + tp[j+12]
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004824 + tp[j+17]) ? "light" : "dark";
4825
Bram Moolenaarb255b902018-04-24 21:40:10 +02004826 LOG_TR(("Received RBG response: %s", tp));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004827 rbg_status = STATUS_GOT;
4828#ifdef FEAT_TERMINAL
4829 bg_r = rval;
4830 bg_g = gval;
4831 bg_b = bval;
4832#endif
4833 if (!option_was_set((char_u *)"bg")
4834 && STRCMP(p_bg, newval) != 0)
4835 {
4836 /* value differs, apply it */
4837 set_option_value((char_u *)"bg", 0L,
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004838 (char_u *)newval, 0);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004839 reset_option_was_set((char_u *)"bg");
4840 redraw_asap(CLEAR);
4841 }
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004842 }
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004843#ifdef FEAT_TERMINAL
4844 else
4845 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004846 LOG_TR(("Received RFG response: %s", tp));
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004847 rfg_status = STATUS_GOT;
4848 fg_r = rval;
4849 fg_g = gval;
4850 fg_b = bval;
4851 }
4852#endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004853 }
4854
4855 /* got finished code: consume it */
4856 key_name[0] = (int)KS_EXTRA;
4857 key_name[1] = (int)KE_IGNORE;
4858 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004859# ifdef FEAT_EVAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004860 set_vim_var_string(is_bg ? VV_TERMRBGRESP
4861 : VV_TERMRFGRESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004862# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004863 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004864 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004865 if (i == len)
4866 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02004867 LOG_TR(("not enough characters for RB"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004868 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 }
4871
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004872 /* Check for key code response from xterm:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004873 * {lead}{flag}+r<hex bytes><{tail}
4874 *
4875 * {lead} can be <Esc>P or DCS
4876 * {flag} can be '0' or '1'
4877 * {tail} can be Esc>\ or STERM
4878 *
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004879 * Check for cursor shape response from xterm:
Bram Moolenaar590ec872018-03-02 20:58:42 +01004880 * {lead}1$r<digit> q{tail}
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004881 *
4882 * {lead} can be <Esc>P or DCS
4883 * {tail} can be Esc>\ or STERM
4884 *
4885 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004886 */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004887 else if ((check_for_codes || rcs_status == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004888 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 || tp[0] == DCS))
4890 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004891 j = 1 + (tp[0] == ESC);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004892 if (len < j + 3)
4893 i = len; /* need more chars */
4894 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004895 i = 0; /* no match */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004896 else if (argp[1] == '+')
4897 /* key code response */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004898 for (i = j; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004899 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004900 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 || tp[i] == STERM)
4902 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004903 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 got_code_from_term(tp + j, i);
4905 key_name[0] = (int)KS_EXTRA;
4906 key_name[1] = (int)KE_IGNORE;
4907 slen = i + 1 + (tp[i] == ESC);
4908 break;
4909 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004910 }
Bram Moolenaar590ec872018-03-02 20:58:42 +01004911 else
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004912 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01004913 /* Probably the cursor shape response. Make sure that "i"
4914 * is equal to "len" when there are not sufficient
4915 * characters. */
4916 for (i = j + 3; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004917 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01004918 if (i - j == 3 && !isdigit(tp[i]))
4919 break;
4920 if (i - j == 4 && tp[i] != ' ')
4921 break;
4922 if (i - j == 5 && tp[i] != 'q')
4923 break;
4924 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
4925 break;
4926 if ((i - j == 6 && tp[i] == STERM)
4927 || (i - j == 7 && tp[i] == '\\'))
4928 {
4929 int number = argp[3] - '0';
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004930
Bram Moolenaar590ec872018-03-02 20:58:42 +01004931 /* 0, 1 = block blink, 2 = block
4932 * 3 = underline blink, 4 = underline
4933 * 5 = vertical bar blink, 6 = vertical bar */
4934 number = number == 0 ? 1 : number;
4935 initial_cursor_shape = (number + 1) / 2;
4936 /* The blink flag is actually inverted, compared to
4937 * the value set with T_SH. */
4938 initial_cursor_shape_blink =
Bram Moolenaar4db25542017-08-28 22:43:05 +02004939 (number & 1) ? FALSE : TRUE;
Bram Moolenaar590ec872018-03-02 20:58:42 +01004940 rcs_status = STATUS_GOT;
Bram Moolenaarb255b902018-04-24 21:40:10 +02004941 LOG_TR(("Received cursor shape response: %s", tp));
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004942
Bram Moolenaar590ec872018-03-02 20:58:42 +01004943 key_name[0] = (int)KS_EXTRA;
4944 key_name[1] = (int)KE_IGNORE;
4945 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004946# ifdef FEAT_EVAL
Bram Moolenaar590ec872018-03-02 20:58:42 +01004947 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004948# endif
Bram Moolenaar590ec872018-03-02 20:58:42 +01004949 break;
4950 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004951 }
4952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953
4954 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004955 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004956 /* These codes arrive many together, each code can be
4957 * truncated at any point. */
Bram Moolenaarb255b902018-04-24 21:40:10 +02004958 LOG_TR(("not enough characters for XT"));
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004959 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 }
4962 }
4963#endif
4964
4965 if (key_name[0] == NUL)
4966 continue; /* No match at this position, try next one */
4967
4968 /* We only get here when we have a complete termcode match */
4969
4970#ifdef FEAT_MOUSE
4971# ifdef FEAT_GUI
4972 /*
4973 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4974 * so that we know which window to scroll later.
4975 */
4976 if (gui.in_use
4977 && key_name[0] == (int)KS_EXTRA
4978 && (key_name[1] == (int)KE_X1MOUSE
4979 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004980 || key_name[1] == (int)KE_MOUSELEFT
4981 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 || key_name[1] == (int)KE_MOUSEDOWN
4983 || key_name[1] == (int)KE_MOUSEUP))
4984 {
4985 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4986 if (num_bytes == -1) /* not enough coordinates */
4987 return -1;
4988 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4989 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4990 slen += num_bytes;
4991 }
4992 else
4993# endif
4994 /*
4995 * If it is a mouse click, get the coordinates.
4996 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004997 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004999 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000# endif
5001# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005002 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003# endif
5004# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005005 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006# endif
5007# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005008 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005010# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005011 || key_name[0] == KS_URXVT_MOUSE
5012# endif
5013# ifdef FEAT_MOUSE_SGR
5014 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005015 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005016# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 )
5018 {
5019 is_click = is_drag = FALSE;
5020
Bram Moolenaar864207d2008-06-24 22:14:38 +00005021# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
5022 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 if (key_name[0] == (int)KS_MOUSE)
5024 {
5025 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005026 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 * s == encoded button state:
5028 * 0x20 = left button down
5029 * 0x21 = middle button down
5030 * 0x22 = right button down
5031 * 0x23 = any button release
5032 * 0x60 = button 4 down (scroll wheel down)
5033 * 0x61 = button 5 down (scroll wheel up)
5034 * add 0x04 for SHIFT
5035 * add 0x08 for ALT
5036 * add 0x10 for CTRL
5037 * add 0x20 for mouse drag (0x40 is drag with left button)
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005038 * add 0x40 for mouse move (0x80 is move, 0x81 too)
5039 * 0x43 (drag + release) is also move
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 * c == column + ' ' + 1 == column + 33
5041 * r == row + ' ' + 1 == row + 33
5042 *
5043 * The coordinates are passed on through global variables.
5044 * Ugly, but this avoids trouble with mouse clicks at an
5045 * unexpected moment and allows for mapping them.
5046 */
5047 for (;;)
5048 {
5049#ifdef FEAT_GUI
5050 if (gui.in_use)
5051 {
5052 /* GUI uses more bits for columns > 223 */
5053 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
5054 if (num_bytes == -1) /* not enough coordinates */
5055 return -1;
5056 mouse_code = bytes[0];
5057 mouse_col = 128 * (bytes[1] - ' ' - 1)
5058 + bytes[2] - ' ' - 1;
5059 mouse_row = 128 * (bytes[3] - ' ' - 1)
5060 + bytes[4] - ' ' - 1;
5061 }
5062 else
5063#endif
5064 {
5065 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
5066 if (num_bytes == -1) /* not enough coordinates */
5067 return -1;
5068 mouse_code = bytes[0];
5069 mouse_col = bytes[1] - ' ' - 1;
5070 mouse_row = bytes[2] - ' ' - 1;
5071 }
5072 slen += num_bytes;
5073
5074 /* If the following bytes is also a mouse code and it has
5075 * the same code, dump this one and get the next. This
5076 * makes dragging a whole lot faster. */
5077#ifdef FEAT_GUI
5078 if (gui.in_use)
5079 j = 3;
5080 else
5081#endif
5082 j = termcodes[idx].len;
5083 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
5084 && tp[slen + j] == mouse_code
5085 && tp[slen + j + 1] != NUL
5086 && tp[slen + j + 2] != NUL
5087#ifdef FEAT_GUI
5088 && (!gui.in_use
5089 || (tp[slen + j + 3] != NUL
5090 && tp[slen + j + 4] != NUL))
5091#endif
5092 )
5093 slen += j;
5094 else
5095 break;
5096 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005099# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
5100 if (key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005101 || key_name[0] == KS_SGR_MOUSE
5102 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005103 {
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005104 /* URXVT 1015 mouse reporting mode:
5105 * Almost identical to xterm mouse mode, except the values
5106 * are decimal instead of bytes.
5107 *
5108 * \033[%d;%d;%dM
5109 * ^-- row
5110 * ^----- column
5111 * ^-------- code
5112 *
5113 * SGR 1006 mouse reporting mode:
5114 * Almost identical to xterm mouse mode, except the values
5115 * are decimal instead of bytes.
5116 *
5117 * \033[<%d;%d;%dM
5118 * ^-- row
5119 * ^----- column
5120 * ^-------- code
5121 *
5122 * \033[<%d;%d;%dm : mouse release event
5123 * ^-- row
5124 * ^----- column
5125 * ^-------- code
5126 */
5127 p = modifiers_start;
5128 if (p == NULL)
5129 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005130
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005131 mouse_code = getdigits(&p);
5132 if (*p++ != ';')
5133 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005134
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005135 /* when mouse reporting is SGR, add 32 to mouse code */
5136 if (key_name[0] == KS_SGR_MOUSE
5137 || key_name[0] == KS_SGR_MOUSE_RELEASE)
5138 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005139
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005140 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
5141 mouse_code |= MOUSE_RELEASE;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005142
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005143 mouse_col = getdigits(&p) - 1;
5144 if (*p++ != ';')
5145 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005146
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005147 mouse_row = getdigits(&p) - 1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005148
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005149 /* The modifiers were the mouse coordinates, not the
5150 * modifier keys (alt/shift/ctrl/meta) state. */
5151 modifiers = 0;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005152 }
5153# endif
5154
5155 if (key_name[0] == (int)KS_MOUSE
5156#ifdef FEAT_MOUSE_URXVT
5157 || key_name[0] == (int)KS_URXVT_MOUSE
5158#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005159#ifdef FEAT_MOUSE_SGR
5160 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005161 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005162#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005163 )
5164 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005165# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 /*
5167 * Handle mouse events.
5168 * Recognize the xterm mouse wheel, but not in the GUI, the
5169 * Linux console with GPM and the MS-DOS or Win32 console
5170 * (multi-clicks use >= 0x60).
5171 */
5172 if (mouse_code >= MOUSEWHEEL_LOW
5173# ifdef FEAT_GUI
5174 && !gui.in_use
5175# endif
5176# ifdef FEAT_MOUSE_GPM
5177 && gpm_flag == 0
5178# endif
5179 )
5180 {
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005181# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5182 if (use_xterm_mouse() > 1 && mouse_code >= 0x80)
5183 /* mouse-move event, using MOUSE_DRAG works */
5184 mouse_code = MOUSE_DRAG;
5185 else
5186# endif
5187 /* Keep the mouse_code before it's changed, so that we
5188 * remember that it was a mouse wheel click. */
5189 wheel_code = mouse_code;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 }
5191# ifdef FEAT_MOUSE_XTERM
5192 else if (held_button == MOUSE_RELEASE
5193# ifdef FEAT_GUI
5194 && !gui.in_use
5195# endif
Bram Moolenaar1f8495c2018-04-04 21:53:11 +02005196 && (mouse_code == 0x23 || mouse_code == 0x24
5197 || mouse_code == 0x40 || mouse_code == 0x41))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 {
Bram Moolenaar1f8495c2018-04-04 21:53:11 +02005199 /* Apparently 0x23 and 0x24 are used by rxvt scroll wheel.
5200 * And 0x40 and 0x41 are used by some xterm emulator. */
5201 wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23)
5202 + MOUSEWHEEL_LOW;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 }
5204# endif
5205
5206# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5207 else if (use_xterm_mouse() > 1)
5208 {
5209 if (mouse_code & MOUSE_DRAG_XTERM)
5210 mouse_code |= MOUSE_DRAG;
5211 }
5212# endif
5213# ifdef FEAT_XCLIPBOARD
5214 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
5215 {
5216 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
5217 stop_xterm_trace();
5218 else
5219 start_xterm_trace(mouse_code);
5220 }
5221# endif
5222# endif
5223 }
5224# endif /* !UNIX || FEAT_MOUSE_XTERM */
5225# ifdef FEAT_MOUSE_NET
5226 if (key_name[0] == (int)KS_NETTERM_MOUSE)
5227 {
5228 int mc, mr;
5229
5230 /* expect a rather limited sequence like: balancing {
5231 * \033}6,45\r
5232 * '6' is the row, 45 is the column
5233 */
5234 p = tp + slen;
5235 mr = getdigits(&p);
5236 if (*p++ != ',')
5237 return -1;
5238 mc = getdigits(&p);
5239 if (*p++ != '\r')
5240 return -1;
5241
5242 mouse_col = mc - 1;
5243 mouse_row = mr - 1;
5244 mouse_code = MOUSE_LEFT;
5245 slen += (int)(p - (tp + slen));
5246 }
5247# endif /* FEAT_MOUSE_NET */
5248# ifdef FEAT_MOUSE_JSB
5249 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
5250 {
5251 int mult, val, iter, button, status;
5252
5253 /* JSBTERM Input Model
5254 * \033[0~zw uniq escape sequence
5255 * (L-x) Left button pressed - not pressed x not reporting
5256 * (M-x) Middle button pressed - not pressed x not reporting
5257 * (R-x) Right button pressed - not pressed x not reporting
5258 * (SDmdu) Single , Double click, m mouse move d button down
5259 * u button up
5260 * ### X cursor position padded to 3 digits
5261 * ### Y cursor position padded to 3 digits
5262 * (s-x) SHIFT key pressed - not pressed x not reporting
5263 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005264 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 */
5266
5267 p = tp + slen;
5268 button = mouse_code = 0;
5269 switch (*p++)
5270 {
5271 case 'L': button = 1; break;
5272 case '-': break;
5273 case 'x': break; /* ignore sequence */
5274 default: return -1; /* Unknown Result */
5275 }
5276 switch (*p++)
5277 {
5278 case 'M': button |= 2; break;
5279 case '-': break;
5280 case 'x': break; /* ignore sequence */
5281 default: return -1; /* Unknown Result */
5282 }
5283 switch (*p++)
5284 {
5285 case 'R': button |= 4; break;
5286 case '-': break;
5287 case 'x': break; /* ignore sequence */
5288 default: return -1; /* Unknown Result */
5289 }
5290 status = *p++;
5291 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5292 mult /= 10, p++)
5293 if (*p >= '0' && *p <= '9')
5294 val += (*p - '0') * mult;
5295 else
5296 return -1;
5297 mouse_col = val;
5298 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5299 mult /= 10, p++)
5300 if (*p >= '0' && *p <= '9')
5301 val += (*p - '0') * mult;
5302 else
5303 return -1;
5304 mouse_row = val;
5305 switch (*p++)
5306 {
5307 case 's': button |= 8; break; /* SHIFT key Pressed */
5308 case '-': break; /* Not Pressed */
5309 case 'x': break; /* Not Reporting */
5310 default: return -1; /* Unknown Result */
5311 }
5312 switch (*p++)
5313 {
5314 case 'c': button |= 16; break; /* CTRL key Pressed */
5315 case '-': break; /* Not Pressed */
5316 case 'x': break; /* Not Reporting */
5317 default: return -1; /* Unknown Result */
5318 }
5319 if (*p++ != '\033')
5320 return -1;
5321 if (*p++ != '\\')
5322 return -1;
5323 switch (status)
5324 {
5325 case 'D': /* Double Click */
5326 case 'S': /* Single Click */
5327 if (button & 1) mouse_code |= MOUSE_LEFT;
5328 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5329 if (button & 4) mouse_code |= MOUSE_RIGHT;
5330 if (button & 8) mouse_code |= MOUSE_SHIFT;
5331 if (button & 16) mouse_code |= MOUSE_CTRL;
5332 break;
5333 case 'm': /* Mouse move */
5334 if (button & 1) mouse_code |= MOUSE_LEFT;
5335 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5336 if (button & 4) mouse_code |= MOUSE_RIGHT;
5337 if (button & 8) mouse_code |= MOUSE_SHIFT;
5338 if (button & 16) mouse_code |= MOUSE_CTRL;
5339 if ((button & 7) != 0)
5340 {
5341 held_button = mouse_code;
5342 mouse_code |= MOUSE_DRAG;
5343 }
5344 is_drag = TRUE;
5345 showmode();
5346 break;
5347 case 'd': /* Button Down */
5348 if (button & 1) mouse_code |= MOUSE_LEFT;
5349 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5350 if (button & 4) mouse_code |= MOUSE_RIGHT;
5351 if (button & 8) mouse_code |= MOUSE_SHIFT;
5352 if (button & 16) mouse_code |= MOUSE_CTRL;
5353 break;
5354 case 'u': /* Button Up */
5355 if (button & 1)
5356 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
5357 if (button & 2)
5358 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
5359 if (button & 4)
5360 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
5361 if (button & 8)
5362 mouse_code |= MOUSE_SHIFT;
5363 if (button & 16)
5364 mouse_code |= MOUSE_CTRL;
5365 break;
5366 default: return -1; /* Unknown Result */
5367 }
5368
5369 slen += (p - (tp + slen));
5370 }
5371# endif /* FEAT_MOUSE_JSB */
5372# ifdef FEAT_MOUSE_DEC
5373 if (key_name[0] == (int)KS_DEC_MOUSE)
5374 {
5375 /* The DEC Locator Input Model
5376 * Netterm delivers the code sequence:
5377 * \033[2;4;24;80&w (left button down)
5378 * \033[3;0;24;80&w (left button up)
5379 * \033[6;1;24;80&w (right button down)
5380 * \033[7;0;24;80&w (right button up)
5381 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
5382 * Pe is the event code
5383 * Pb is the button code
5384 * Pr is the row coordinate
5385 * Pc is the column coordinate
5386 * Pp is the third coordinate (page number)
5387 * Pe, the event code indicates what event caused this report
5388 * The following event codes are defined:
5389 * 0 - request, the terminal received an explicit request
5390 * for a locator report, but the locator is unavailable
5391 * 1 - request, the terminal received an explicit request
5392 * for a locator report
5393 * 2 - left button down
5394 * 3 - left button up
5395 * 4 - middle button down
5396 * 5 - middle button up
5397 * 6 - right button down
5398 * 7 - right button up
5399 * 8 - fourth button down
5400 * 9 - fourth button up
5401 * 10 - locator outside filter rectangle
5402 * Pb, the button code, ASCII decimal 0-15 indicating which
5403 * buttons are down if any. The state of the four buttons
5404 * on the locator correspond to the low four bits of the
5405 * decimal value,
5406 * "1" means button depressed
5407 * 0 - no buttons down,
5408 * 1 - right,
5409 * 2 - middle,
5410 * 4 - left,
5411 * 8 - fourth
5412 * Pr is the row coordinate of the locator position in the page,
5413 * encoded as an ASCII decimal value.
5414 * If Pr is omitted, the locator position is undefined
5415 * (outside the terminal window for example).
5416 * Pc is the column coordinate of the locator position in the
5417 * page, encoded as an ASCII decimal value.
5418 * If Pc is omitted, the locator position is undefined
5419 * (outside the terminal window for example).
5420 * Pp is the page coordinate of the locator position
5421 * encoded as an ASCII decimal value.
5422 * The page coordinate may be omitted if the locator is on
5423 * page one (the default). We ignore it anyway.
5424 */
5425 int Pe, Pb, Pr, Pc;
5426
5427 p = tp + slen;
5428
5429 /* get event status */
5430 Pe = getdigits(&p);
5431 if (*p++ != ';')
5432 return -1;
5433
5434 /* get button status */
5435 Pb = getdigits(&p);
5436 if (*p++ != ';')
5437 return -1;
5438
5439 /* get row status */
5440 Pr = getdigits(&p);
5441 if (*p++ != ';')
5442 return -1;
5443
5444 /* get column status */
5445 Pc = getdigits(&p);
5446
5447 /* the page parameter is optional */
5448 if (*p == ';')
5449 {
5450 p++;
5451 (void)getdigits(&p);
5452 }
5453 if (*p++ != '&')
5454 return -1;
5455 if (*p++ != 'w')
5456 return -1;
5457
5458 mouse_code = 0;
5459 switch (Pe)
5460 {
5461 case 0: return -1; /* position request while unavailable */
5462 case 1: /* a response to a locator position request includes
5463 the status of all buttons */
5464 Pb &= 7; /* mask off and ignore fourth button */
5465 if (Pb & 4)
5466 mouse_code = MOUSE_LEFT;
5467 if (Pb & 2)
5468 mouse_code = MOUSE_MIDDLE;
5469 if (Pb & 1)
5470 mouse_code = MOUSE_RIGHT;
5471 if (Pb)
5472 {
5473 held_button = mouse_code;
5474 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005475 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 }
5477 is_drag = TRUE;
5478 showmode();
5479 break;
5480 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005481 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 break;
5483 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5484 break;
5485 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005486 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 break;
5488 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5489 break;
5490 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005491 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492 break;
5493 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5494 break;
5495 case 8: return -1; /* fourth button down */
5496 case 9: return -1; /* fourth button up */
5497 case 10: return -1; /* mouse outside of filter rectangle */
5498 default: return -1; /* should never occur */
5499 }
5500
5501 mouse_col = Pc - 1;
5502 mouse_row = Pr - 1;
5503
5504 slen += (int)(p - (tp + slen));
5505 }
5506# endif /* FEAT_MOUSE_DEC */
5507# ifdef FEAT_MOUSE_PTERM
5508 if (key_name[0] == (int)KS_PTERM_MOUSE)
5509 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005510 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511
5512 p = tp + slen;
5513
5514 action = getdigits(&p);
5515 if (*p++ != ';')
5516 return -1;
5517
5518 mouse_row = getdigits(&p);
5519 if (*p++ != ';')
5520 return -1;
5521 mouse_col = getdigits(&p);
5522 if (*p++ != ';')
5523 return -1;
5524
5525 button = getdigits(&p);
5526 mouse_code = 0;
5527
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005528 switch (button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 {
5530 case 4: mouse_code = MOUSE_LEFT; break;
5531 case 1: mouse_code = MOUSE_RIGHT; break;
5532 case 2: mouse_code = MOUSE_MIDDLE; break;
5533 default: return -1;
5534 }
5535
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005536 switch (action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 {
5538 case 31: /* Initial press */
5539 if (*p++ != ';')
5540 return -1;
5541
5542 num_clicks = getdigits(&p); /* Not used */
5543 break;
5544
5545 case 32: /* Release */
5546 mouse_code |= MOUSE_RELEASE;
5547 break;
5548
5549 case 33: /* Drag */
5550 held_button = mouse_code;
5551 mouse_code |= MOUSE_DRAG;
5552 break;
5553
5554 default:
5555 return -1;
5556 }
5557
5558 if (*p++ != 't')
5559 return -1;
5560
5561 slen += (p - (tp + slen));
5562 }
5563# endif /* FEAT_MOUSE_PTERM */
5564
5565 /* Interpret the mouse code */
5566 current_button = (mouse_code & MOUSE_CLICK_MASK);
5567 if (current_button == MOUSE_RELEASE
5568# ifdef FEAT_MOUSE_XTERM
5569 && wheel_code == 0
5570# endif
5571 )
5572 {
5573 /*
5574 * If we get a mouse drag or release event when
5575 * there is no mouse button held down (held_button ==
5576 * MOUSE_RELEASE), produce a K_IGNORE below.
5577 * (can happen when you hold down two buttons
5578 * and then let them go, or click in the menu bar, but not
5579 * on a menu, and drag into the text).
5580 */
5581 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5582 is_drag = TRUE;
5583 current_button = held_button;
5584 }
5585 else if (wheel_code == 0)
5586 {
5587# ifdef CHECK_DOUBLE_CLICK
5588# ifdef FEAT_MOUSE_GPM
5589# ifdef FEAT_GUI
5590 /*
5591 * Only for Unix, when GUI or gpm is not active, we handle
5592 * multi-clicks here.
5593 */
5594 if (gpm_flag == 0 && !gui.in_use)
5595# else
5596 if (gpm_flag == 0)
5597# endif
5598# else
5599# ifdef FEAT_GUI
5600 if (!gui.in_use)
5601# endif
5602# endif
5603 {
5604 /*
5605 * Compute the time elapsed since the previous mouse click.
5606 */
5607 gettimeofday(&mouse_time, NULL);
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005608 if (orig_mouse_time.tv_sec == 0)
5609 {
5610 /*
5611 * Avoid computing the difference between mouse_time
5612 * and orig_mouse_time for the first click, as the
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005613 * difference would be huge and would cause
5614 * multiplication overflow.
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005615 */
5616 timediff = p_mouset;
5617 }
5618 else
5619 {
5620 timediff = (mouse_time.tv_usec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005621 - orig_mouse_time.tv_usec) / 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005622 if (timediff < 0)
5623 --orig_mouse_time.tv_sec;
5624 timediff += (mouse_time.tv_sec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005625 - orig_mouse_time.tv_sec) * 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 orig_mouse_time = mouse_time;
5628 if (mouse_code == orig_mouse_code
5629 && timediff < p_mouset
5630 && orig_num_clicks != 4
5631 && orig_mouse_col == mouse_col
5632 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005633 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005635 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005637 )
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005638 /* Double click in tab pages line also works
5639 * when window contents changes. */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005640 || (mouse_row == 0 && firstwin->w_winrow > 0))
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005641 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 ++orig_num_clicks;
5643 else
5644 orig_num_clicks = 1;
5645 orig_mouse_col = mouse_col;
5646 orig_mouse_row = mouse_row;
5647 orig_topline = curwin->w_topline;
5648#ifdef FEAT_DIFF
5649 orig_topfill = curwin->w_topfill;
5650#endif
5651 }
5652# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5653 else
5654 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5655# endif
5656# else
5657 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5658# endif
5659 is_click = TRUE;
5660 orig_mouse_code = mouse_code;
5661 }
5662 if (!is_drag)
5663 held_button = mouse_code & MOUSE_CLICK_MASK;
5664
5665 /*
5666 * Translate the actual mouse event into a pseudo mouse event.
5667 * First work out what modifiers are to be used.
5668 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 if (orig_mouse_code & MOUSE_SHIFT)
5670 modifiers |= MOD_MASK_SHIFT;
5671 if (orig_mouse_code & MOUSE_CTRL)
5672 modifiers |= MOD_MASK_CTRL;
5673 if (orig_mouse_code & MOUSE_ALT)
5674 modifiers |= MOD_MASK_ALT;
5675 if (orig_num_clicks == 2)
5676 modifiers |= MOD_MASK_2CLICK;
5677 else if (orig_num_clicks == 3)
5678 modifiers |= MOD_MASK_3CLICK;
5679 else if (orig_num_clicks == 4)
5680 modifiers |= MOD_MASK_4CLICK;
5681
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005682 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets
5683 * added, then it's not mouse up/down. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 key_name[0] = (int)KS_EXTRA;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005685 if (wheel_code != 0
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005686 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005687 {
5688 if (wheel_code & MOUSE_CTRL)
5689 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005690 if (wheel_code & MOUSE_ALT)
5691 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 key_name[1] = (wheel_code & 1)
5693 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01005694 held_button = MOUSE_RELEASE;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 else
5697 key_name[1] = get_pseudo_mouse_code(current_button,
5698 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005699
5700 /* Make sure the mouse position is valid. Some terminals may
5701 * return weird values. */
5702 if (mouse_col >= Columns)
5703 mouse_col = Columns - 1;
5704 if (mouse_row >= Rows)
5705 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 }
5707#endif /* FEAT_MOUSE */
5708
5709#ifdef FEAT_GUI
5710 /*
5711 * If using the GUI, then we get menu and scrollbar events.
5712 *
5713 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5714 * four bytes which are to be taken as a pointer to the vimmenu_T
5715 * structure.
5716 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005717 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005718 * is one byte with the tab index.
5719 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5721 * by one byte representing the scrollbar number, and then four bytes
5722 * representing a long_u which is the new value of the scrollbar.
5723 *
5724 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5725 * KE_FILLER followed by four bytes representing a long_u which is the
5726 * new value of the scrollbar.
5727 */
5728# ifdef FEAT_MENU
5729 else if (key_name[0] == (int)KS_MENU)
5730 {
5731 long_u val;
5732
5733 num_bytes = get_long_from_buf(tp + slen, &val);
5734 if (num_bytes == -1)
5735 return -1;
5736 current_menu = (vimmenu_T *)val;
5737 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005738
5739 /* The menu may have been deleted right after it was used, check
5740 * for that. */
5741 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5742 {
5743 key_name[0] = KS_EXTRA;
5744 key_name[1] = (int)KE_IGNORE;
5745 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 }
5747# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005748# ifdef FEAT_GUI_TABLINE
5749 else if (key_name[0] == (int)KS_TABLINE)
5750 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005751 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005752 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5753 if (num_bytes == -1)
5754 return -1;
5755 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005756 if (current_tab == 255) /* -1 in a byte gives 255 */
5757 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005758 slen += num_bytes;
5759 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005760 else if (key_name[0] == (int)KS_TABMENU)
5761 {
5762 /* Selecting tabline tab or using its menu. */
5763 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5764 if (num_bytes == -1)
5765 return -1;
5766 current_tab = (int)bytes[0];
5767 current_tabmenu = (int)bytes[1];
5768 slen += num_bytes;
5769 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005770# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771# ifndef USE_ON_FLY_SCROLL
5772 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5773 {
5774 long_u val;
5775
5776 /* Get the last scrollbar event in the queue of the same type */
5777 j = 0;
5778 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5779 && tp[j + 2] != NUL; ++i)
5780 {
5781 j += 3;
5782 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5783 if (num_bytes == -1)
5784 break;
5785 if (i == 0)
5786 current_scrollbar = (int)bytes[0];
5787 else if (current_scrollbar != (int)bytes[0])
5788 break;
5789 j += num_bytes;
5790 num_bytes = get_long_from_buf(tp + j, &val);
5791 if (num_bytes == -1)
5792 break;
5793 scrollbar_value = val;
5794 j += num_bytes;
5795 slen = j;
5796 }
5797 if (i == 0) /* not enough characters to make one */
5798 return -1;
5799 }
5800 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5801 {
5802 long_u val;
5803
5804 /* Get the last horiz. scrollbar event in the queue */
5805 j = 0;
5806 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5807 && tp[j + 2] != NUL; ++i)
5808 {
5809 j += 3;
5810 num_bytes = get_long_from_buf(tp + j, &val);
5811 if (num_bytes == -1)
5812 break;
5813 scrollbar_value = val;
5814 j += num_bytes;
5815 slen = j;
5816 }
5817 if (i == 0) /* not enough characters to make one */
5818 return -1;
5819 }
5820# endif /* !USE_ON_FLY_SCROLL */
5821#endif /* FEAT_GUI */
5822
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005823 /*
5824 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5825 */
5826 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5827
5828 /*
5829 * Add any modifier codes to our string.
5830 */
5831 new_slen = 0; /* Length of what will replace the termcode */
5832 if (modifiers != 0)
5833 {
5834 /* Some keys have the modifier included. Need to handle that here
5835 * to make mappings work. */
5836 key = simplify_key(key, &modifiers);
5837 if (modifiers != 0)
5838 {
5839 string[new_slen++] = K_SPECIAL;
5840 string[new_slen++] = (int)KS_MODIFIER;
5841 string[new_slen++] = modifiers;
5842 }
5843 }
5844
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005846 key_name[0] = KEY2TERMCAP0(key);
5847 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005849 {
5850 /* from ":set <M-b>=xx" */
5851#ifdef FEAT_MBYTE
5852 if (has_mbyte)
5853 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5854 else
5855#endif
5856 string[new_slen++] = key_name[1];
5857 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005858 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5859 && key_name[1] == KE_IGNORE)
5860 {
5861 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5862 * to indicate what happened. */
5863 retval = KEYLEN_REMOVED;
5864 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 else
5866 {
5867 string[new_slen++] = K_SPECIAL;
5868 string[new_slen++] = key_name[0];
5869 string[new_slen++] = key_name[1];
5870 }
5871 string[new_slen] = NUL;
5872 extra = new_slen - slen;
5873 if (buf == NULL)
5874 {
5875 if (extra < 0)
5876 /* remove matched chars, taking care of noremap */
5877 del_typebuf(-extra, offset);
5878 else if (extra > 0)
5879 /* insert the extra space we need */
5880 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5881
5882 /*
5883 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5884 * typebuf.tb_buf[]!
5885 */
5886 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5887 (size_t)new_slen);
5888 }
5889 else
5890 {
5891 if (extra < 0)
5892 /* remove matched characters */
5893 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005894 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005896 {
5897 /* Insert the extra space we need. If there is insufficient
5898 * space return -1. */
5899 if (*buflen + extra + new_slen >= bufsize)
5900 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005902 (size_t)(*buflen - offset));
5903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005905 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005907 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 }
5909
Bram Moolenaar2951b772013-07-03 12:45:31 +02005910#ifdef FEAT_TERMRESPONSE
Bram Moolenaarb255b902018-04-24 21:40:10 +02005911 LOG_TR(("normal character"));
Bram Moolenaar2951b772013-07-03 12:45:31 +02005912#endif
5913
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 return 0; /* no match found */
5915}
5916
Bram Moolenaar9377df32017-10-15 13:22:01 +02005917#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005918/*
5919 * Get the text foreground color, if known.
5920 */
5921 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005922term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005923{
5924 if (rfg_status == STATUS_GOT)
5925 {
5926 *r = fg_r;
5927 *g = fg_g;
5928 *b = fg_b;
5929 }
5930}
5931
5932/*
5933 * Get the text background color, if known.
5934 */
5935 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005936term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005937{
5938 if (rbg_status == STATUS_GOT)
5939 {
5940 *r = bg_r;
5941 *g = bg_g;
5942 *b = bg_b;
5943 }
5944}
5945#endif
5946
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947/*
5948 * Replace any terminal code strings in from[] with the equivalent internal
5949 * vim representation. This is used for the "from" and "to" part of a
5950 * mapping, and the "to" part of a menu command.
5951 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5952 * '<'.
5953 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5954 *
5955 * The replacement is done in result[] and finally copied into allocated
5956 * memory. If this all works well *bufp is set to the allocated memory and a
5957 * pointer to it is returned. If something fails *bufp is set to NULL and from
5958 * is returned.
5959 *
5960 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5961 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5962 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5963 * instead of a CTRL-V.
5964 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005965 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005966replace_termcodes(
5967 char_u *from,
5968 char_u **bufp,
5969 int from_part,
5970 int do_lt, /* also translate <lt> */
5971 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972{
5973 int i;
5974 int slen;
5975 int key;
5976 int dlen = 0;
5977 char_u *src;
5978 int do_backslash; /* backslash is a special character */
5979 int do_special; /* recognize <> key codes */
5980 int do_key_code; /* recognize raw key codes */
5981 char_u *result; /* buffer for resulting string */
5982
5983 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005984 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5986
5987 /*
5988 * Allocate space for the translation. Worst case a single character is
5989 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5990 */
5991 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5992 if (result == NULL) /* out of memory */
5993 {
5994 *bufp = NULL;
5995 return from;
5996 }
5997
5998 src = from;
5999
6000 /*
6001 * Check for #n at start only: function key n
6002 */
6003 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
6004 {
6005 result[dlen++] = K_SPECIAL;
6006 result[dlen++] = 'k';
6007 if (src[1] == '0')
6008 result[dlen++] = ';'; /* #0 is F10 is "k;" */
6009 else
6010 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
6011 src += 2;
6012 }
6013
6014 /*
6015 * Copy each byte from *from to result[dlen]
6016 */
6017 while (*src != NUL)
6018 {
6019 /*
6020 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006021 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 */
6023 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
6024 {
6025#ifdef FEAT_EVAL
6026 /*
6027 * Replace <SID> by K_SNR <script-nr> _.
6028 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
6029 */
6030 if (STRNICMP(src, "<SID>", 5) == 0)
6031 {
6032 if (current_SID <= 0)
6033 EMSG(_(e_usingsid));
6034 else
6035 {
6036 src += 5;
6037 result[dlen++] = K_SPECIAL;
6038 result[dlen++] = (int)KS_EXTRA;
6039 result[dlen++] = (int)KE_SNR;
6040 sprintf((char *)result + dlen, "%ld", (long)current_SID);
6041 dlen += (int)STRLEN(result + dlen);
6042 result[dlen++] = '_';
6043 continue;
6044 }
6045 }
6046#endif
6047
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02006048 slen = trans_special(&src, result + dlen, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049 if (slen)
6050 {
6051 dlen += slen;
6052 continue;
6053 }
6054 }
6055
6056 /*
6057 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
6058 * Note that this is also checked after replacing the <> form.
6059 * Single character codes are NOT replaced (e.g. ^H or DEL), because
6060 * it could be a character in the file.
6061 */
6062 if (do_key_code)
6063 {
6064 i = find_term_bykeys(src);
6065 if (i >= 0)
6066 {
6067 result[dlen++] = K_SPECIAL;
6068 result[dlen++] = termcodes[i].name[0];
6069 result[dlen++] = termcodes[i].name[1];
6070 src += termcodes[i].len;
6071 /* If terminal code matched, continue after it. */
6072 continue;
6073 }
6074 }
6075
6076#ifdef FEAT_EVAL
6077 if (do_special)
6078 {
6079 char_u *p, *s, len;
6080
6081 /*
6082 * Replace <Leader> by the value of "mapleader".
6083 * Replace <LocalLeader> by the value of "maplocalleader".
6084 * If "mapleader" or "maplocalleader" isn't set use a backslash.
6085 */
6086 if (STRNICMP(src, "<Leader>", 8) == 0)
6087 {
6088 len = 8;
6089 p = get_var_value((char_u *)"g:mapleader");
6090 }
6091 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
6092 {
6093 len = 13;
6094 p = get_var_value((char_u *)"g:maplocalleader");
6095 }
6096 else
6097 {
6098 len = 0;
6099 p = NULL;
6100 }
6101 if (len != 0)
6102 {
6103 /* Allow up to 8 * 6 characters for "mapleader". */
6104 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
6105 s = (char_u *)"\\";
6106 else
6107 s = p;
6108 while (*s != NUL)
6109 result[dlen++] = *s++;
6110 src += len;
6111 continue;
6112 }
6113 }
6114#endif
6115
6116 /*
6117 * Remove CTRL-V and ignore the next character.
6118 * For "from" side the CTRL-V at the end is included, for the "to"
6119 * part it is removed.
6120 * If 'cpoptions' does not contain 'B', also accept a backslash.
6121 */
6122 key = *src;
6123 if (key == Ctrl_V || (do_backslash && key == '\\'))
6124 {
6125 ++src; /* skip CTRL-V or backslash */
6126 if (*src == NUL)
6127 {
6128 if (from_part)
6129 result[dlen++] = key;
6130 break;
6131 }
6132 }
6133
6134#ifdef FEAT_MBYTE
6135 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006136 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137#endif
6138 {
6139 /*
6140 * If the character is K_SPECIAL, replace it with K_SPECIAL
6141 * KS_SPECIAL KE_FILLER.
6142 * If compiled with the GUI replace CSI with K_CSI.
6143 */
6144 if (*src == K_SPECIAL)
6145 {
6146 result[dlen++] = K_SPECIAL;
6147 result[dlen++] = KS_SPECIAL;
6148 result[dlen++] = KE_FILLER;
6149 }
6150# ifdef FEAT_GUI
6151 else if (*src == CSI)
6152 {
6153 result[dlen++] = K_SPECIAL;
6154 result[dlen++] = KS_EXTRA;
6155 result[dlen++] = (int)KE_CSI;
6156 }
6157# endif
6158 else
6159 result[dlen++] = *src;
6160 ++src;
6161 }
6162 }
6163 result[dlen] = NUL;
6164
6165 /*
6166 * Copy the new string to allocated memory.
6167 * If this fails, just return from.
6168 */
6169 if ((*bufp = vim_strsave(result)) != NULL)
6170 from = *bufp;
6171 vim_free(result);
6172 return from;
6173}
6174
6175/*
6176 * Find a termcode with keys 'src' (must be NUL terminated).
6177 * Return the index in termcodes[], or -1 if not found.
6178 */
6179 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006180find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181{
6182 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006183 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184
6185 for (i = 0; i < tc_len; ++i)
6186 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01006187 if (slen == termcodes[i].len
6188 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 return i;
6190 }
6191 return -1;
6192}
6193
6194/*
6195 * Gather the first characters in the terminal key codes into a string.
6196 * Used to speed up check_termcode().
6197 */
6198 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006199gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200{
6201 int i;
6202 int len = 0;
6203
6204#ifdef FEAT_GUI
6205 if (gui.in_use)
6206 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
6207#endif
6208#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02006209 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210 termleader[len++] = DCS; /* the termcode response starts with DCS
6211 in 8-bit mode */
6212#endif
6213 termleader[len] = NUL;
6214
6215 for (i = 0; i < tc_len; ++i)
6216 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
6217 {
6218 termleader[len++] = termcodes[i].code[0];
6219 termleader[len] = NUL;
6220 }
6221
6222 need_gather = FALSE;
6223}
6224
6225/*
6226 * Show all termcodes (for ":set termcap")
6227 * This code looks a lot like showoptions(), but is different.
6228 */
6229 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006230show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231{
6232 int col;
6233 int *items;
6234 int item_count;
6235 int run;
6236 int row, rows;
6237 int cols;
6238 int i;
6239 int len;
6240
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006241#define INC3 27 /* try to make three columns */
6242#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243#define GAP 2 /* spaces between columns */
6244
6245 if (tc_len == 0) /* no terminal codes (must be GUI) */
6246 return;
6247 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
6248 if (items == NULL)
6249 return;
6250
6251 /* Highlight title */
6252 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
6253
6254 /*
6255 * do the loop two times:
6256 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006257 * 2. display the medium items (medium length strings)
6258 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006260 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 {
6262 /*
6263 * collect the items in items[]
6264 */
6265 item_count = 0;
6266 for (i = 0; i < tc_len; i++)
6267 {
6268 len = show_one_termcode(termcodes[i].name,
6269 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006270 if (len <= INC3 - GAP ? run == 1
6271 : len <= INC2 - GAP ? run == 2
6272 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273 items[item_count++] = i;
6274 }
6275
6276 /*
6277 * display the items
6278 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006279 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006281 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 if (cols == 0)
6283 cols = 1;
6284 rows = (item_count + cols - 1) / cols;
6285 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006286 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 rows = item_count;
6288 for (row = 0; row < rows && !got_int; ++row)
6289 {
6290 msg_putchar('\n'); /* go to next line */
6291 if (got_int) /* 'q' typed in more */
6292 break;
6293 col = 0;
6294 for (i = row; i < item_count; i += rows)
6295 {
6296 msg_col = col; /* make columns */
6297 show_one_termcode(termcodes[items[i]].name,
6298 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006299 if (run == 2)
6300 col += INC2;
6301 else
6302 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 }
6304 out_flush();
6305 ui_breakcheck();
6306 }
6307 }
6308 vim_free(items);
6309}
6310
6311/*
6312 * Show one termcode entry.
6313 * Output goes into IObuff[]
6314 */
6315 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006316show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317{
6318 char_u *p;
6319 int len;
6320
6321 if (name[0] > '~')
6322 {
6323 IObuff[0] = ' ';
6324 IObuff[1] = ' ';
6325 IObuff[2] = ' ';
6326 IObuff[3] = ' ';
6327 }
6328 else
6329 {
6330 IObuff[0] = 't';
6331 IObuff[1] = '_';
6332 IObuff[2] = name[0];
6333 IObuff[3] = name[1];
6334 }
6335 IObuff[4] = ' ';
6336
6337 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
6338 if (p[1] != 't')
6339 STRCPY(IObuff + 5, p);
6340 else
6341 IObuff[5] = NUL;
6342 len = (int)STRLEN(IObuff);
6343 do
6344 IObuff[len++] = ' ';
6345 while (len < 17);
6346 IObuff[len] = NUL;
6347 if (code == NULL)
6348 len += 4;
6349 else
6350 len += vim_strsize(code);
6351
6352 if (printit)
6353 {
6354 msg_puts(IObuff);
6355 if (code == NULL)
6356 msg_puts((char_u *)"NULL");
6357 else
6358 msg_outtrans(code);
6359 }
6360 return len;
6361}
6362
6363#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
6364/*
6365 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
6366 * termcap codes from the terminal itself.
6367 * We get them one by one to avoid a very long response string.
6368 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02006369static int xt_index_in = 0;
6370static int xt_index_out = 0;
6371
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006373req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374{
6375 xt_index_out = 0;
6376 xt_index_in = 0;
6377 req_more_codes_from_term();
6378}
6379
6380 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006381req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382{
6383 char buf[11];
6384 int old_idx = xt_index_out;
6385
6386 /* Don't do anything when going to exit. */
6387 if (exiting)
6388 return;
6389
6390 /* Send up to 10 more requests out than we received. Avoid sending too
6391 * many, there can be a buffer overflow somewhere. */
6392 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
6393 {
Bram Moolenaarb255b902018-04-24 21:40:10 +02006394 char *key_name = key_names[xt_index_out];
Bram Moolenaar2951b772013-07-03 12:45:31 +02006395
Bram Moolenaarb255b902018-04-24 21:40:10 +02006396 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name));
6397 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398 out_str_nf((char_u *)buf);
6399 ++xt_index_out;
6400 }
6401
6402 /* Send the codes out right away. */
6403 if (xt_index_out != old_idx)
6404 out_flush();
6405}
6406
6407/*
6408 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
6409 * A "0" instead of the "1" indicates a code that isn't supported.
6410 * Both <name> and <string> are encoded in hex.
6411 * "code" points to the "0" or "1".
6412 */
6413 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006414got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415{
6416#define XT_LEN 100
6417 char_u name[3];
6418 char_u str[XT_LEN];
6419 int i;
6420 int j = 0;
6421 int c;
6422
6423 /* A '1' means the code is supported, a '0' means it isn't.
6424 * When half the length is > XT_LEN we can't use it.
6425 * Our names are currently all 2 characters. */
6426 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
6427 {
6428 /* Get the name from the response and find it in the table. */
6429 name[0] = hexhex2nr(code + 3);
6430 name[1] = hexhex2nr(code + 5);
6431 name[2] = NUL;
6432 for (i = 0; key_names[i] != NULL; ++i)
6433 {
6434 if (STRCMP(key_names[i], name) == 0)
6435 {
6436 xt_index_in = i;
6437 break;
6438 }
6439 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02006440
Bram Moolenaarb255b902018-04-24 21:40:10 +02006441 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name));
6442
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 if (key_names[i] != NULL)
6444 {
6445 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
6446 str[j++] = c;
6447 str[j] = NUL;
6448 if (name[0] == 'C' && name[1] == 'o')
6449 {
6450 /* Color count is not a key code. */
6451 i = atoi((char *)str);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02006452 may_adjust_color_count(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 }
6454 else
6455 {
6456 /* First delete any existing entry with the same code. */
6457 i = find_term_bykeys(str);
6458 if (i >= 0)
6459 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006460 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 }
6462 }
6463 }
6464
6465 /* May request more codes now that we received one. */
6466 ++xt_index_in;
6467 req_more_codes_from_term();
6468}
6469
6470/*
6471 * Check if there are any unanswered requests and deal with them.
6472 * This is called before starting an external program or getting direct
6473 * keyboard input. We don't want responses to be send to that program or
6474 * handled as typed text.
6475 */
6476 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006477check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478{
6479 int c;
6480
6481 /* If no codes requested or all are answered, no need to wait. */
6482 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6483 return;
6484
6485 /* Vgetc() will check for and handle any response.
6486 * Keep calling vpeekc() until we don't get any responses. */
6487 ++no_mapping;
6488 ++allow_keys;
6489 for (;;)
6490 {
6491 c = vpeekc();
6492 if (c == NUL) /* nothing available */
6493 break;
6494
6495 /* If a response is recognized it's replaced with K_IGNORE, must read
6496 * it from the input stream. If there is no K_IGNORE we can't do
6497 * anything, break here (there might be some responses further on, but
6498 * we don't want to throw away any typed chars). */
6499 if (c != K_SPECIAL && c != K_IGNORE)
6500 break;
6501 c = vgetc();
6502 if (c != K_IGNORE)
6503 {
6504 vungetc(c);
6505 break;
6506 }
6507 }
6508 --no_mapping;
6509 --allow_keys;
6510}
6511#endif
6512
6513#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6514/*
6515 * Translate an internal mapping/abbreviation representation into the
6516 * corresponding external one recognized by :map/:abbrev commands;
6517 * respects the current B/k/< settings of 'cpoption'.
6518 *
6519 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006520 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 *
6522 * It uses a growarray to build the translation string since the
6523 * latter can be wider than the original description. The caller has to
6524 * free the string afterwards.
6525 *
6526 * Returns NULL when there is a problem.
6527 */
6528 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006529translate_mapping(
6530 char_u *str,
6531 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532{
6533 garray_T ga;
6534 int c;
6535 int modifiers;
6536 int cpo_bslash;
6537 int cpo_special;
6538 int cpo_keycode;
6539
6540 ga_init(&ga);
6541 ga.ga_itemsize = 1;
6542 ga.ga_growsize = 40;
6543
6544 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6545 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6546 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6547
6548 for (; *str; ++str)
6549 {
6550 c = *str;
6551 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6552 {
6553 modifiers = 0;
6554 if (str[1] == KS_MODIFIER)
6555 {
6556 str++;
6557 modifiers = *++str;
6558 c = *++str;
6559 }
6560 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6561 {
6562 int i;
6563
6564 /* try to find special key in termcodes */
6565 for (i = 0; i < tc_len; ++i)
6566 if (termcodes[i].name[0] == str[1]
6567 && termcodes[i].name[1] == str[2])
6568 break;
6569 if (i < tc_len)
6570 {
6571 ga_concat(&ga, termcodes[i].code);
6572 str += 2;
6573 continue; /* for (str) */
6574 }
6575 }
6576 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6577 {
6578 if (expmap && cpo_special)
6579 {
6580 ga_clear(&ga);
6581 return NULL;
6582 }
6583 c = TO_SPECIAL(str[1], str[2]);
6584 if (c == K_ZERO) /* display <Nul> as ^@ */
6585 c = NUL;
6586 str += 2;
6587 }
6588 if (IS_SPECIAL(c) || modifiers) /* special key */
6589 {
6590 if (expmap && cpo_special)
6591 {
6592 ga_clear(&ga);
6593 return NULL;
6594 }
6595 ga_concat(&ga, get_special_key_name(c, modifiers));
6596 continue; /* for (str) */
6597 }
6598 }
6599 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6600 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6601 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6602 if (c)
6603 ga_append(&ga, c);
6604 }
6605 ga_append(&ga, NUL);
6606 return (char_u *)(ga.ga_data);
6607}
6608#endif
6609
6610#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6611static char ksme_str[20];
6612static char ksmr_str[20];
6613static char ksmd_str[20];
6614
6615/*
6616 * For Win32 console: update termcap codes for existing console attributes.
6617 */
6618 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006619update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620{
6621 struct builtin_term *p;
6622
6623 p = find_builtin_term(DEFAULT_TERM);
6624 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6625 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6626 attr | 0x08); /* FOREGROUND_INTENSITY */
6627 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6628 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6629
6630 while (p->bt_string != NULL)
6631 {
6632 if (p->bt_entry == (int)KS_ME)
6633 p->bt_string = &ksme_str[0];
6634 else if (p->bt_entry == (int)KS_MR)
6635 p->bt_string = &ksmr_str[0];
6636 else if (p->bt_entry == (int)KS_MD)
6637 p->bt_string = &ksmd_str[0];
6638 ++p;
6639 }
6640}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006641
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006642# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006643struct ks_tbl_s
6644{
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006645 int code; /* value of KS_ */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006646 char *vtp; /* code in vtp mode */
6647 char *buf; /* buffer in non-vtp mode */
6648 char *vbuf; /* buffer in vtp mode */
6649};
6650
6651static struct ks_tbl_s ks_tbl[] =
6652{
6653 {(int)KS_ME, "\033|0m" }, /* normal */
6654 {(int)KS_MR, "\033|7m" }, /* reverse */
6655 {(int)KS_MD, "\033|1m" }, /* bold */
6656 {(int)KS_SO, "\033|91m"}, /* standout: bright red text */
6657 {(int)KS_SE, "\033|39m"}, /* standout end: default color */
6658 {(int)KS_CZH, "\033|95m"}, /* italic: bright magenta text */
6659 {(int)KS_CZR, "\033|0m",}, /* italic end */
6660 {(int)KS_US, "\033|4m",}, /* underscore */
6661 {(int)KS_UE, "\033|24m"}, /* underscore end */
6662 {(int)KS_NAME, NULL}
6663};
6664
6665 static struct builtin_term *
6666find_first_tcap(
6667 char_u *name,
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006668 int code)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006669{
6670 struct builtin_term *p;
6671
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006672 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006673 if (p->bt_entry == code)
6674 return p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006675 return NULL;
6676}
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006677# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006678
6679/*
6680 * For Win32 console: replace the sequence immediately after termguicolors.
6681 */
6682 void
6683swap_tcap(void)
6684{
6685# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006686 static int init_done = FALSE;
6687 static int last_tgc;
6688 struct ks_tbl_s *ks;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006689 struct builtin_term *bt;
6690
6691 /* buffer initialization */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006692 if (!init_done)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006693 {
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006694 for (ks = ks_tbl; ks->vtp != NULL; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006695 {
6696 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006697 if (bt != NULL)
6698 {
6699 ks->buf = bt->bt_string;
6700 ks->vbuf = ks->vtp;
6701 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006702 }
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006703 init_done = TRUE;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006704 last_tgc = p_tgc;
6705 return;
6706 }
6707
6708 if (last_tgc != p_tgc)
6709 {
6710 if (p_tgc)
6711 {
6712 /* switch to special character sequence */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006713 for (ks = ks_tbl; ks->vtp != NULL; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006714 {
6715 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006716 if (bt != NULL)
6717 {
6718 ks->buf = bt->bt_string;
6719 bt->bt_string = ks->vbuf;
6720 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006721 }
6722 }
6723 else
6724 {
6725 /* switch to index color */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006726 for (ks = ks_tbl; ks->vtp != NULL; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006727 {
6728 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006729 if (bt != NULL)
6730 {
6731 ks->vbuf = bt->bt_string;
6732 bt->bt_string = ks->buf;
6733 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006734 }
6735 }
6736
6737 last_tgc = p_tgc;
6738 }
6739# endif
6740}
6741
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006743
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006744#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006745 static int
6746hex_digit(int c)
6747{
6748 if (isdigit(c))
6749 return c - '0';
6750 c = TOLOWER_ASC(c);
6751 if (c >= 'a' && c <= 'f')
6752 return c - 'a' + 10;
6753 return 0x1ffffff;
6754}
6755
6756 guicolor_T
6757gui_get_color_cmn(char_u *name)
6758{
Bram Moolenaar28726652017-01-06 18:16:19 +01006759 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6760 * values as used by the MS-Windows GDI api. It should be used only for
6761 * MS-Windows GDI builds. */
6762# if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI)
6763# undef RGB
6764# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006765# ifndef RGB
6766# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6767# endif
6768# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006769 FILE *fd;
6770 char line[LINE_LEN];
6771 char_u *fname;
6772 int r, g, b, i;
6773 guicolor_T color;
6774
6775 struct rgbcolor_table_S {
6776 char_u *color_name;
6777 guicolor_T color;
6778 };
6779
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006780 /* Only non X11 colors (not present in rgb.txt) and colors in
6781 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006782 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006783 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6784 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6785 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6786 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6787 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6788 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6789 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6790 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6791 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6792 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6793 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6794 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6795 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006796 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6797 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006798 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarecadf432018-03-20 11:17:04 +01006799 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006800 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006801 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6802 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6803 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6804 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6805 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6806 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6807 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6808 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6809 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006810 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006811 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006812 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6813 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006814 };
6815
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006816 static struct rgbcolor_table_S *colornames_table;
6817 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006818
6819 if (name[0] == '#' && STRLEN(name) == 7)
6820 {
6821 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006822 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006823 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6824 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6825 if (color > 0xffffff)
6826 return INVALCOLOR;
6827 return color;
6828 }
6829
6830 /* Check if the name is one of the colors we know */
6831 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6832 if (STRICMP(name, rgb_table[i].color_name) == 0)
6833 return rgb_table[i].color;
6834
6835 /*
6836 * Last attempt. Look in the file "$VIM/rgb.txt".
6837 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006838 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02006839 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006840 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02006841
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006842 /* colornames_table not yet initialized */
6843 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
6844 if (fname == NULL)
6845 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006846
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006847 fd = fopen((char *)fname, "rt");
6848 vim_free(fname);
6849 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02006850 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006851 if (p_verbose > 1)
6852 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt"));
6853 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006854 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006855
6856 for (counting = 1; counting >= 0; --counting)
6857 {
6858 if (!counting)
6859 {
6860 colornames_table = (struct rgbcolor_table_S *)alloc(
6861 (unsigned)(sizeof(struct rgbcolor_table_S) * size));
6862 if (colornames_table == NULL)
6863 {
6864 fclose(fd);
6865 return INVALCOLOR;
6866 }
6867 rewind(fd);
6868 }
6869 size = 0;
6870
6871 while (!feof(fd))
6872 {
6873 size_t len;
6874 int pos;
6875
6876 ignoredp = fgets(line, LINE_LEN, fd);
6877 len = strlen(line);
6878
6879 if (len <= 1 || line[len - 1] != '\n')
6880 continue;
6881
6882 line[len - 1] = '\0';
6883
6884 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
6885 if (i != 3)
6886 continue;
6887
6888 if (!counting)
6889 {
6890 char_u *s = vim_strsave((char_u *)line + pos);
6891
6892 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006893 {
6894 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006895 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006896 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006897 colornames_table[size].color_name = s;
6898 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6899 }
6900 size++;
6901 }
6902 }
6903 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02006904 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006905
6906 for (i = 0; i < size; i++)
6907 if (STRICMP(name, colornames_table[i].color_name) == 0)
6908 return colornames_table[i].color;
6909
Bram Moolenaarab302212016-04-26 20:59:29 +02006910 return INVALCOLOR;
6911}
Bram Moolenaar26af85d2017-07-23 16:45:10 +02006912
6913 guicolor_T
6914gui_get_rgb_color_cmn(int r, int g, int b)
6915{
6916 guicolor_T color = RGB(r, g, b);
6917
6918 if (color > 0xffffff)
6919 return INVALCOLOR;
6920 return color;
6921}
Bram Moolenaarab302212016-04-26 20:59:29 +02006922#endif