blob: 4a202bb50f19502e3405f6455f99b55e71c48b1a [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);
79static void term_color(char_u *s, int n);
80static void gather_termleader(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000081#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010082static void req_codes_from_term(void);
83static void req_more_codes_from_term(void);
84static void got_code_from_term(char_u *code, int len);
85static void check_for_codes_from_term(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000086#endif
87#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000088 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
89 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010090static int get_bytes_from_buf(char_u *, char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010092static void del_termcode_idx(int idx);
93static int term_is_builtin(char_u *name);
94static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010096static void switch_to_8bit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#endif
98
99#ifdef HAVE_TGETENT
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100100static char_u *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
102/*
103 * Here is our own prototype for tgetstr(), any prototypes from the include
104 * files have been disabled by the define at the start of this file.
105 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100106char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
108# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200109 /* Change this to "if 1" to debug what happens with termresponse. */
110# if 0
111# define DEBUG_TERMRESPONSE
112 static void log_tr(char *msg);
113# define LOG_TR(msg) log_tr(msg)
114# else
115# define LOG_TR(msg)
116# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200117
118# define STATUS_GET 1 /* send request when switching to RAW mode */
119# define STATUS_SENT 2 /* did send request, waiting for response */
120# define STATUS_GOT 3 /* received response */
121
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122/* Request Terminal Version status: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200123static int crv_status = STATUS_GET;
124
Bram Moolenaar9584b312013-03-13 19:29:28 +0100125/* Request Cursor position report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200126static int u7_status = STATUS_GET;
127
Bram Moolenaar9377df32017-10-15 13:22:01 +0200128# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200129/* Request foreground color report: */
130static int rfg_status = STATUS_GET;
131static int fg_r = 0;
132static int fg_g = 0;
133static int fg_b = 0;
134static int bg_r = 255;
135static int bg_g = 255;
136static int bg_b = 255;
Bram Moolenaar9377df32017-10-15 13:22:01 +0200137# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200138
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200139/* Request background color report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200140static int rbg_status = STATUS_GET;
141
Bram Moolenaar4db25542017-08-28 22:43:05 +0200142/* Request cursor blinking mode report: */
143static int rbm_status = STATUS_GET;
144
145/* Request cursor style report: */
146static int rcs_status = STATUS_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147# endif
148
149/*
150 * Don't declare these variables if termcap.h contains them.
151 * Autoconf checks if these variables should be declared extern (not all
152 * systems have them).
153 * Some versions define ospeed to be speed_t, but that is incompatible with
154 * BSD, where ospeed is short and speed_t is long.
155 */
156# ifndef HAVE_OSPEED
157# ifdef OSPEED_EXTERN
158extern short ospeed;
159# else
160short ospeed;
161# endif
162# endif
163# ifndef HAVE_UP_BC_PC
164# ifdef UP_BC_PC_EXTERN
165extern char *UP, *BC, PC;
166# else
167char *UP, *BC, PC;
168# endif
169# endif
170
171# define TGETSTR(s, p) vim_tgetstr((s), (p))
172# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100173static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174#endif /* HAVE_TGETENT */
175
176static int detected_8bit = FALSE; /* detected 8-bit terminal */
177
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200178#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200179/* When the cursor shape was detected these values are used:
Bram Moolenaar4db25542017-08-28 22:43:05 +0200180 * 1: block, 2: underline, 3: vertical bar */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200181static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200182
183/* The blink flag from the style response may be inverted from the actual
184 * blinking state, xterm XORs the flags. */
185static int initial_cursor_shape_blink = FALSE;
186
187/* The blink flag from the blinking-cursor mode response */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200188static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200189#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200190
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000191static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192{
193
194#if defined(FEAT_GUI)
195/*
196 * GUI pseudo term-cap.
197 */
198 {(int)KS_NAME, "gui"},
199 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
200 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
201# ifdef TERMINFO
202 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
203# else
204 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
205# endif
206 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
207# ifdef TERMINFO
208 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
209 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211# else
212 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
213 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215# endif
216 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
217 /* attributes switched on with 'h', off with * 'H' */
218 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
219 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
220 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
221 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
222 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
223 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
224 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000225 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
226 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200227 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, /* HL_STRIKETHROUGH */
228 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, /* HL_STRIKETHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
230 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
231 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
232 {(int)KS_MS, "y"},
233 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100234 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 {(int)KS_LE, "\b"}, /* cursor-left = BS */
236 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
237# ifdef TERMINFO
238 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
239# else
240 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
241# endif
242 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000243 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244#endif
245
246#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
249/*
250 * Amiga console window, default for Amiga
251 */
252 {(int)KS_NAME, "amiga"},
253 {(int)KS_CE, "\033[K"},
254 {(int)KS_CD, "\033[J"},
255 {(int)KS_AL, "\033[L"},
256# ifdef TERMINFO
257 {(int)KS_CAL, "\033[%p1%dL"},
258# else
259 {(int)KS_CAL, "\033[%dL"},
260# endif
261 {(int)KS_DL, "\033[M"},
262# ifdef TERMINFO
263 {(int)KS_CDL, "\033[%p1%dM"},
264# else
265 {(int)KS_CDL, "\033[%dM"},
266# endif
267 {(int)KS_CL, "\014"},
268 {(int)KS_VI, "\033[0 p"},
269 {(int)KS_VE, "\033[1 p"},
270 {(int)KS_ME, "\033[0m"},
271 {(int)KS_MR, "\033[7m"},
272 {(int)KS_MD, "\033[1m"},
273 {(int)KS_SE, "\033[0m"},
274 {(int)KS_SO, "\033[33m"},
275 {(int)KS_US, "\033[4m"},
276 {(int)KS_UE, "\033[0m"},
277 {(int)KS_CZH, "\033[3m"},
278 {(int)KS_CZR, "\033[0m"},
279#if defined(__MORPHOS__) || defined(__AROS__)
280 {(int)KS_CCO, "8"}, /* allow 8 colors */
281# ifdef TERMINFO
282 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
283 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
284# else
285 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
286 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
287# endif
288 {(int)KS_OP, "\033[m"}, /* reset colors */
289#endif
290 {(int)KS_MS, "y"},
291 {(int)KS_UT, "y"}, /* guessed */
292 {(int)KS_LE, "\b"},
293# ifdef TERMINFO
294 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
295# else
296 {(int)KS_CM, "\033[%i%d;%dH"},
297# endif
298#if defined(__MORPHOS__)
299 {(int)KS_SR, "\033M"},
300#endif
301# ifdef TERMINFO
302 {(int)KS_CRI, "\033[%p1%dC"},
303# else
304 {(int)KS_CRI, "\033[%dC"},
305# endif
306 {K_UP, "\233A"},
307 {K_DOWN, "\233B"},
308 {K_LEFT, "\233D"},
309 {K_RIGHT, "\233C"},
310 {K_S_UP, "\233T"},
311 {K_S_DOWN, "\233S"},
312 {K_S_LEFT, "\233 A"},
313 {K_S_RIGHT, "\233 @"},
314 {K_S_TAB, "\233Z"},
315 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
316 {K_F2, "\233\061~"},
317 {K_F3, "\233\062~"},
318 {K_F4, "\233\063~"},
319 {K_F5, "\233\064~"},
320 {K_F6, "\233\065~"},
321 {K_F7, "\233\066~"},
322 {K_F8, "\233\067~"},
323 {K_F9, "\233\070~"},
324 {K_F10, "\233\071~"},
325 {K_S_F1, "\233\061\060~"},
326 {K_S_F2, "\233\061\061~"},
327 {K_S_F3, "\233\061\062~"},
328 {K_S_F4, "\233\061\063~"},
329 {K_S_F5, "\233\061\064~"},
330 {K_S_F6, "\233\061\065~"},
331 {K_S_F7, "\233\061\066~"},
332 {K_S_F8, "\233\061\067~"},
333 {K_S_F9, "\233\061\070~"},
334 {K_S_F10, "\233\061\071~"},
335 {K_HELP, "\233?~"},
336 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
337 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
338 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
339 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
340 {K_END, "\233\064\065~"}, /* 101 key keyboard */
341
342 {BT_EXTRA_KEYS, ""},
343 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
344 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
345 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
346# endif
347
348# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
349/*
350 * almost standard ANSI terminal, default for bebox
351 */
352 {(int)KS_NAME, "beos-ansi"},
353 {(int)KS_CE, "\033[K"},
354 {(int)KS_CD, "\033[J"},
355 {(int)KS_AL, "\033[L"},
356# ifdef TERMINFO
357 {(int)KS_CAL, "\033[%p1%dL"},
358# else
359 {(int)KS_CAL, "\033[%dL"},
360# endif
361 {(int)KS_DL, "\033[M"},
362# ifdef TERMINFO
363 {(int)KS_CDL, "\033[%p1%dM"},
364# else
365 {(int)KS_CDL, "\033[%dM"},
366# endif
367#ifdef BEOS_PR_OR_BETTER
368# ifdef TERMINFO
369 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
370# else
371 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
372# endif
373#endif
374 {(int)KS_CL, "\033[H\033[2J"},
375#ifdef notyet
376 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
377 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
378#endif
379 {(int)KS_ME, "\033[m"}, /* normal mode */
380 {(int)KS_MR, "\033[7m"}, /* reverse */
381 {(int)KS_MD, "\033[1m"}, /* bold */
382 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
383 {(int)KS_SE, "\033[m"}, /* standout end */
384 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
385 {(int)KS_CZR, "\033[m"}, /* italic end */
386 {(int)KS_US, "\033[4m"}, /* underscore mode */
387 {(int)KS_UE, "\033[m"}, /* underscore end */
388 {(int)KS_CCO, "8"}, /* allow 8 colors */
389# ifdef TERMINFO
390 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
391 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
392# else
393 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
394 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
395# endif
396 {(int)KS_OP, "\033[m"}, /* reset colors */
397 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
398 {(int)KS_UT, "y"}, /* guessed */
399 {(int)KS_LE, "\b"},
400# ifdef TERMINFO
401 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
402# else
403 {(int)KS_CM, "\033[%i%d;%dH"},
404# endif
405 {(int)KS_SR, "\033M"},
406# ifdef TERMINFO
407 {(int)KS_CRI, "\033[%p1%dC"},
408# else
409 {(int)KS_CRI, "\033[%dC"},
410# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200411# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200413# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414
415 {K_UP, "\033[A"},
416 {K_DOWN, "\033[B"},
417 {K_LEFT, "\033[D"},
418 {K_RIGHT, "\033[C"},
419# endif
420
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200421# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422/*
423 * standard ANSI terminal, default for unix
424 */
425 {(int)KS_NAME, "ansi"},
426 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
427 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
428# ifdef TERMINFO
429 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
430# else
431 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
432# endif
433 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
434# ifdef TERMINFO
435 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
436# else
437 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
438# endif
439 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
440 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
441 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
442 {(int)KS_MS, "y"},
443 {(int)KS_UT, "y"}, /* guessed */
444 {(int)KS_LE, "\b"},
445# ifdef TERMINFO
446 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
447# else
448 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
449# endif
450# ifdef TERMINFO
451 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
452# else
453 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
454# endif
455# endif
456
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200457# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458/*
459 * These codes are valid when nansi.sys or equivalent has been installed.
460 * Function keys on a PC are preceded with a NUL. These are converted into
461 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
462 * CTRL-arrow is used instead of SHIFT-arrow.
463 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 {(int)KS_NAME, "pcansi"},
465 {(int)KS_DL, "\033[M"},
466 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 {(int)KS_CE, "\033[K"},
468 {(int)KS_CL, "\033[2J"},
469 {(int)KS_ME, "\033[0m"},
470 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
471 {(int)KS_MD, "\033[1m"}, /* bold: white text */
472 {(int)KS_SE, "\033[0m"}, /* standout end */
473 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
474 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
475 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
476 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
477 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
478 {(int)KS_CCO, "8"}, /* allow 8 colors */
479# ifdef TERMINFO
480 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
481 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
482# else
483 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
484 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
485# endif
486 {(int)KS_OP, "\033[0m"}, /* reset colors */
487 {(int)KS_MS, "y"},
488 {(int)KS_UT, "y"}, /* guessed */
489 {(int)KS_LE, "\b"},
490# ifdef TERMINFO
491 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
492# else
493 {(int)KS_CM, "\033[%i%d;%dH"},
494# endif
495# ifdef TERMINFO
496 {(int)KS_CRI, "\033[%p1%dC"},
497# else
498 {(int)KS_CRI, "\033[%dC"},
499# endif
500 {K_UP, "\316H"},
501 {K_DOWN, "\316P"},
502 {K_LEFT, "\316K"},
503 {K_RIGHT, "\316M"},
504 {K_S_LEFT, "\316s"},
505 {K_S_RIGHT, "\316t"},
506 {K_F1, "\316;"},
507 {K_F2, "\316<"},
508 {K_F3, "\316="},
509 {K_F4, "\316>"},
510 {K_F5, "\316?"},
511 {K_F6, "\316@"},
512 {K_F7, "\316A"},
513 {K_F8, "\316B"},
514 {K_F9, "\316C"},
515 {K_F10, "\316D"},
516 {K_F11, "\316\205"}, /* guessed */
517 {K_F12, "\316\206"}, /* guessed */
518 {K_S_F1, "\316T"},
519 {K_S_F2, "\316U"},
520 {K_S_F3, "\316V"},
521 {K_S_F4, "\316W"},
522 {K_S_F5, "\316X"},
523 {K_S_F6, "\316Y"},
524 {K_S_F7, "\316Z"},
525 {K_S_F8, "\316["},
526 {K_S_F9, "\316\\"},
527 {K_S_F10, "\316]"},
528 {K_S_F11, "\316\207"}, /* guessed */
529 {K_S_F12, "\316\210"}, /* guessed */
530 {K_INS, "\316R"},
531 {K_DEL, "\316S"},
532 {K_HOME, "\316G"},
533 {K_END, "\316O"},
534 {K_PAGEDOWN, "\316Q"},
535 {K_PAGEUP, "\316I"},
536# endif
537
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200538# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539/*
540 * These codes are valid for the Win32 Console . The entries that start with
541 * ESC | are translated into console calls in os_win32.c. The function keys
542 * are also translated in os_win32.c.
543 */
544 {(int)KS_NAME, "win32"},
545 {(int)KS_CE, "\033|K"}, /* clear to end of line */
546 {(int)KS_AL, "\033|L"}, /* add new blank line */
547# ifdef TERMINFO
548 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
549# else
550 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
551# endif
552 {(int)KS_DL, "\033|M"}, /* delete line */
553# ifdef TERMINFO
554 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
555# else
556 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
557# endif
558 {(int)KS_CL, "\033|J"}, /* clear screen */
559 {(int)KS_CD, "\033|j"}, /* clear to end of display */
560 {(int)KS_VI, "\033|v"}, /* cursor invisible */
561 {(int)KS_VE, "\033|V"}, /* cursor visible */
562
563 {(int)KS_ME, "\033|0m"}, /* normal */
564 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
565 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
566#if 1
567 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
568 {(int)KS_SE, "\033|0m"}, /* standout end */
569#else
570 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
571 {(int)KS_SE, "\033|f"}, /* standout end */
572#endif
573 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
574 {(int)KS_CZR, "\033|0m"}, /* italic end */
575 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
576 {(int)KS_UE, "\033|0m"}, /* underscore end */
577 {(int)KS_CCO, "16"}, /* allow 16 colors */
578# ifdef TERMINFO
579 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
580 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
581# else
582 {(int)KS_CAB, "\033|%db"}, /* set background color */
583 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
584# endif
585
586 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
587 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100588 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 {(int)KS_LE, "\b"},
590# ifdef TERMINFO
591 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
592# else
593 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
594# endif
595 {(int)KS_VB, "\033|B"}, /* visual bell */
596 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
597 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
598# ifdef TERMINFO
599 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
600# else
601 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
602# endif
603
604 {K_UP, "\316H"},
605 {K_DOWN, "\316P"},
606 {K_LEFT, "\316K"},
607 {K_RIGHT, "\316M"},
608 {K_S_UP, "\316\304"},
609 {K_S_DOWN, "\316\317"},
610 {K_S_LEFT, "\316\311"},
611 {K_C_LEFT, "\316s"},
612 {K_S_RIGHT, "\316\313"},
613 {K_C_RIGHT, "\316t"},
614 {K_S_TAB, "\316\017"},
615 {K_F1, "\316;"},
616 {K_F2, "\316<"},
617 {K_F3, "\316="},
618 {K_F4, "\316>"},
619 {K_F5, "\316?"},
620 {K_F6, "\316@"},
621 {K_F7, "\316A"},
622 {K_F8, "\316B"},
623 {K_F9, "\316C"},
624 {K_F10, "\316D"},
625 {K_F11, "\316\205"},
626 {K_F12, "\316\206"},
627 {K_S_F1, "\316T"},
628 {K_S_F2, "\316U"},
629 {K_S_F3, "\316V"},
630 {K_S_F4, "\316W"},
631 {K_S_F5, "\316X"},
632 {K_S_F6, "\316Y"},
633 {K_S_F7, "\316Z"},
634 {K_S_F8, "\316["},
635 {K_S_F9, "\316\\"},
636 {K_S_F10, "\316]"},
637 {K_S_F11, "\316\207"},
638 {K_S_F12, "\316\210"},
639 {K_INS, "\316R"},
640 {K_DEL, "\316S"},
641 {K_HOME, "\316G"},
642 {K_S_HOME, "\316\302"},
643 {K_C_HOME, "\316w"},
644 {K_END, "\316O"},
645 {K_S_END, "\316\315"},
646 {K_C_END, "\316u"},
647 {K_PAGEDOWN, "\316Q"},
648 {K_PAGEUP, "\316I"},
649 {K_KPLUS, "\316N"},
650 {K_KMINUS, "\316J"},
651 {K_KMULTIPLY, "\316\067"},
652 {K_K0, "\316\332"},
653 {K_K1, "\316\336"},
654 {K_K2, "\316\342"},
655 {K_K3, "\316\346"},
656 {K_K4, "\316\352"},
657 {K_K5, "\316\356"},
658 {K_K6, "\316\362"},
659 {K_K7, "\316\366"},
660 {K_K8, "\316\372"},
661 {K_K9, "\316\376"},
662# endif
663
664# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
665/*
666 * VT320 is working as an ANSI terminal compatible DEC terminal.
667 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
668 * Note: K_F1...K_F5 are for internal use, should not be defined.
669 * TODO:- rewrite ESC[ codes to CSI
670 * - keyboard languages (CSI ? 26 n)
671 */
672 {(int)KS_NAME, "vt320"},
673 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
674 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
675# ifdef TERMINFO
676 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
677# else
678 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
679# endif
680 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
681# ifdef TERMINFO
682 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
683# else
684 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
685# endif
686 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000687 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
688 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
690 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000691 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
692 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
693 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
694 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
695 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
696 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
697 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
698 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
699 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
700 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 {(int)KS_MS, "y"},
702 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100703 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 {(int)KS_LE, "\b"},
705# ifdef TERMINFO
706 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
707 ESC_STR "[%i%p1%d;%p2%dH")},
708# else
709 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
710# endif
711# ifdef TERMINFO
712 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
713# else
714 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
715# endif
716 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
717 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
718 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
719 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000720 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
721 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
722 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
723 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
724 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
726 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
727 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
728 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
729 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000730 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
732 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
733 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
734 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
735 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
736 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
737 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
738 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
739 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
740 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
741 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
742 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
743 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
744 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
745 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
746 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
747 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
748 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
749 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
750 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
751 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
752# endif
753
754# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
755/*
756 * Ordinary vt52
757 */
758 {(int)KS_NAME, "vt52"},
759 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
760 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100761# ifdef TERMINFO
762 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
763 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
764# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100766# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100768 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
770 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 {K_UP, IF_EB("\033A", ESC_STR "A")},
772 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
773 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
774 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100775 {K_F1, IF_EB("\033P", ESC_STR "P")},
776 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
777 {K_F3, IF_EB("\033R", ESC_STR "R")},
778# ifdef __MINT__
779 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
780 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
781 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
782 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
783 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
785 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
786 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
787 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 {K_F4, IF_EB("\033S", ESC_STR "S")},
789 {K_F5, IF_EB("\033T", ESC_STR "T")},
790 {K_F6, IF_EB("\033U", ESC_STR "U")},
791 {K_F7, IF_EB("\033V", ESC_STR "V")},
792 {K_F8, IF_EB("\033W", ESC_STR "W")},
793 {K_F9, IF_EB("\033X", ESC_STR "X")},
794 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
795 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
796 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
797 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
798 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
799 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
800 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
801 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
802 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
803 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
804 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
805 {K_INS, IF_EB("\033I", ESC_STR "I")},
806 {K_HOME, IF_EB("\033E", ESC_STR "E")},
807 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
808 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
809# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 {(int)KS_MS, "y"},
812# endif
813# endif
814
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200815# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200816 {(int)KS_NAME, "xterm"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
818 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
819# ifdef TERMINFO
820 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
821# else
822 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
823# endif
824 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
825# ifdef TERMINFO
826 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
827# else
828 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
829# endif
830# ifdef TERMINFO
831 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
832 ESC_STR "[%i%p1%d;%p2%dr")},
833# else
834 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
835# endif
836 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
837 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
838 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
839 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
840 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
841 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
842 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200843 {(int)KS_STE, IF_EB("\033[29m", ESC_STR "[29m")},
844 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 {(int)KS_MS, "y"},
846 {(int)KS_UT, "y"},
847 {(int)KS_LE, "\b"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200848 {(int)KS_VI, IF_EB("\033[?25l", ESC_STR "[?25l")},
849 {(int)KS_VE, IF_EB("\033[?25h", ESC_STR "[?25h")},
Bram Moolenaar93c92ef2017-08-19 21:11:57 +0200850 {(int)KS_VS, IF_EB("\033[?12h", ESC_STR "[?12h")},
Bram Moolenaarce1c3272017-08-20 15:05:15 +0200851 {(int)KS_CVS, IF_EB("\033[?12l", ESC_STR "[?12l")},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200852# ifdef TERMINFO
853 {(int)KS_CSH, IF_EB("\033[%p1%d q", ESC_STR "[%p1%d q")},
854# else
855 {(int)KS_CSH, IF_EB("\033[%d q", ESC_STR "[%d q")},
856# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +0200857 {(int)KS_CRC, IF_EB("\033[?12$p", ESC_STR "[?12$p")},
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200858 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859# ifdef TERMINFO
860 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
861 ESC_STR "[%i%p1%d;%p2%dH")},
862# else
863 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
864# endif
865 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
866# ifdef TERMINFO
867 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
868# else
869 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
870# endif
871 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
872 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
873# ifdef FEAT_XTERM_SAVE
874 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
875 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
876 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
877# endif
878 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
879 {(int)KS_CIE, "\007"},
880 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
881 {(int)KS_FS, "\007"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200882 {(int)KS_CSC, IF_EB("\033]12;", ESC_STR "]12;")},
883 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884# ifdef TERMINFO
885 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
886 ESC_STR "[8;%p1%d;%p2%dt")},
887 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
888 ESC_STR "[3;%p1%d;%p2%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200889 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890# else
891 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
892 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200893 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894# endif
895 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200896 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200897 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100898 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200899# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200900 /* These are printf strings, not terminal codes. */
901 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
902 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
903# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +0100904 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")},
905 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000906
907 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
908 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
909 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
910 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
911 /* An extra set of cursor keys for vt100 mode */
912 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
913 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
914 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
915 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000917 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
918 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
919 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
920 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000921 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
922 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
923 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
924 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
925 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
926 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
927 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
928 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
929 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
930 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
931 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
932 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000934 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
935 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
936 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
937 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000938 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
939 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000940 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000941 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000942 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000943 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000944 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
945 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000946 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000947 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000948 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000949 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
950 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100951 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
952 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
953 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
954 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
955 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
956 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
957 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
958 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */
959 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000962 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
963 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
964 /* F14 and F15 are missing, because they send the same codes as the undo
965 * and help key, although they don't work on all keyboards. */
966 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
967 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
968 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
969 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
970 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
971
972 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
973 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
974 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
975 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
976 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
977 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
978 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
979 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
980 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
981 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
982
983 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
984 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
985 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
986 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
987 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
988 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
989 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990# endif
991
992# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
993/*
994 * iris-ansi for Silicon Graphics machines.
995 */
996 {(int)KS_NAME, "iris-ansi"},
997 {(int)KS_CE, "\033[K"},
998 {(int)KS_CD, "\033[J"},
999 {(int)KS_AL, "\033[L"},
1000# ifdef TERMINFO
1001 {(int)KS_CAL, "\033[%p1%dL"},
1002# else
1003 {(int)KS_CAL, "\033[%dL"},
1004# endif
1005 {(int)KS_DL, "\033[M"},
1006# ifdef TERMINFO
1007 {(int)KS_CDL, "\033[%p1%dM"},
1008# else
1009 {(int)KS_CDL, "\033[%dM"},
1010# endif
1011#if 0 /* The scroll region is not working as Vim expects. */
1012# ifdef TERMINFO
1013 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1014# else
1015 {(int)KS_CS, "\033[%i%d;%dr"},
1016# endif
1017#endif
1018 {(int)KS_CL, "\033[H\033[2J"},
1019 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
1020 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1021 {(int)KS_TI, "\033[=6h"},
1022 {(int)KS_TE, "\033[=6l"},
1023 {(int)KS_SE, "\033[21;27m"},
1024 {(int)KS_SO, "\033[1;7m"},
1025 {(int)KS_ME, "\033[m"},
1026 {(int)KS_MR, "\033[7m"},
1027 {(int)KS_MD, "\033[1m"},
1028 {(int)KS_CCO, "8"}, /* allow 8 colors */
1029 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
1030 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
1031 {(int)KS_US, "\033[4m"}, /* underline on */
1032 {(int)KS_UE, "\033[24m"}, /* underline off */
1033# ifdef TERMINFO
1034 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
1035 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1036 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
1037 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
1038# else
1039 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1040 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1041 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1042 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1043# endif
1044 {(int)KS_MS, "y"}, /* guessed */
1045 {(int)KS_UT, "y"}, /* guessed */
1046 {(int)KS_LE, "\b"},
1047# ifdef TERMINFO
1048 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1049# else
1050 {(int)KS_CM, "\033[%i%d;%dH"},
1051# endif
1052 {(int)KS_SR, "\033M"},
1053# ifdef TERMINFO
1054 {(int)KS_CRI, "\033[%p1%dC"},
1055# else
1056 {(int)KS_CRI, "\033[%dC"},
1057# endif
1058 {(int)KS_CIS, "\033P3.y"},
1059 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1060 {(int)KS_TS, "\033P1.y"},
1061 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1062# ifdef TERMINFO
1063 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1064 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1065# else
1066 {(int)KS_CWS, "\033[203;%d;%d/y"},
1067 {(int)KS_CWP, "\033[205;%d;%d/y"},
1068# endif
1069 {K_UP, "\033[A"},
1070 {K_DOWN, "\033[B"},
1071 {K_LEFT, "\033[D"},
1072 {K_RIGHT, "\033[C"},
1073 {K_S_UP, "\033[161q"},
1074 {K_S_DOWN, "\033[164q"},
1075 {K_S_LEFT, "\033[158q"},
1076 {K_S_RIGHT, "\033[167q"},
1077 {K_F1, "\033[001q"},
1078 {K_F2, "\033[002q"},
1079 {K_F3, "\033[003q"},
1080 {K_F4, "\033[004q"},
1081 {K_F5, "\033[005q"},
1082 {K_F6, "\033[006q"},
1083 {K_F7, "\033[007q"},
1084 {K_F8, "\033[008q"},
1085 {K_F9, "\033[009q"},
1086 {K_F10, "\033[010q"},
1087 {K_F11, "\033[011q"},
1088 {K_F12, "\033[012q"},
1089 {K_S_F1, "\033[013q"},
1090 {K_S_F2, "\033[014q"},
1091 {K_S_F3, "\033[015q"},
1092 {K_S_F4, "\033[016q"},
1093 {K_S_F5, "\033[017q"},
1094 {K_S_F6, "\033[018q"},
1095 {K_S_F7, "\033[019q"},
1096 {K_S_F8, "\033[020q"},
1097 {K_S_F9, "\033[021q"},
1098 {K_S_F10, "\033[022q"},
1099 {K_S_F11, "\033[023q"},
1100 {K_S_F12, "\033[024q"},
1101 {K_INS, "\033[139q"},
1102 {K_HOME, "\033[H"},
1103 {K_END, "\033[146q"},
1104 {K_PAGEUP, "\033[150q"},
1105 {K_PAGEDOWN, "\033[154q"},
1106# endif
1107
1108# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1109/*
1110 * for debugging
1111 */
1112 {(int)KS_NAME, "debug"},
1113 {(int)KS_CE, "[CE]"},
1114 {(int)KS_CD, "[CD]"},
1115 {(int)KS_AL, "[AL]"},
1116# ifdef TERMINFO
1117 {(int)KS_CAL, "[CAL%p1%d]"},
1118# else
1119 {(int)KS_CAL, "[CAL%d]"},
1120# endif
1121 {(int)KS_DL, "[DL]"},
1122# ifdef TERMINFO
1123 {(int)KS_CDL, "[CDL%p1%d]"},
1124# else
1125 {(int)KS_CDL, "[CDL%d]"},
1126# endif
1127# ifdef TERMINFO
1128 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1129# else
1130 {(int)KS_CS, "[%dCS%d]"},
1131# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001132# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001134# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136# endif
1137# ifdef TERMINFO
1138 {(int)KS_CAB, "[CAB%p1%d]"},
1139 {(int)KS_CAF, "[CAF%p1%d]"},
1140 {(int)KS_CSB, "[CSB%p1%d]"},
1141 {(int)KS_CSF, "[CSF%p1%d]"},
1142# else
1143 {(int)KS_CAB, "[CAB%d]"},
1144 {(int)KS_CAF, "[CAF%d]"},
1145 {(int)KS_CSB, "[CSB%d]"},
1146 {(int)KS_CSF, "[CSF%d]"},
1147# endif
1148 {(int)KS_OP, "[OP]"},
1149 {(int)KS_LE, "[LE]"},
1150 {(int)KS_CL, "[CL]"},
1151 {(int)KS_VI, "[VI]"},
1152 {(int)KS_VE, "[VE]"},
1153 {(int)KS_VS, "[VS]"},
1154 {(int)KS_ME, "[ME]"},
1155 {(int)KS_MR, "[MR]"},
1156 {(int)KS_MB, "[MB]"},
1157 {(int)KS_MD, "[MD]"},
1158 {(int)KS_SE, "[SE]"},
1159 {(int)KS_SO, "[SO]"},
1160 {(int)KS_UE, "[UE]"},
1161 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001162 {(int)KS_UCE, "[UCE]"},
1163 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001164 {(int)KS_STE, "[STE]"},
1165 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 {(int)KS_MS, "[MS]"},
1167 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001168 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169# ifdef TERMINFO
1170 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1171# else
1172 {(int)KS_CM, "[%dCM%d]"},
1173# endif
1174 {(int)KS_SR, "[SR]"},
1175# ifdef TERMINFO
1176 {(int)KS_CRI, "[CRI%p1%d]"},
1177# else
1178 {(int)KS_CRI, "[CRI%d]"},
1179# endif
1180 {(int)KS_VB, "[VB]"},
1181 {(int)KS_KS, "[KS]"},
1182 {(int)KS_KE, "[KE]"},
1183 {(int)KS_TI, "[TI]"},
1184 {(int)KS_TE, "[TE]"},
1185 {(int)KS_CIS, "[CIS]"},
1186 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001187 {(int)KS_CSC, "[CSC]"},
1188 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 {(int)KS_TS, "[TS]"},
1190 {(int)KS_FS, "[FS]"},
1191# ifdef TERMINFO
1192 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1193 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1194# else
1195 {(int)KS_CWS, "[%dCWS%d]"},
1196 {(int)KS_CWP, "[%dCWP%d]"},
1197# endif
1198 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001199 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001200 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001201 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 {K_UP, "[KU]"},
1203 {K_DOWN, "[KD]"},
1204 {K_LEFT, "[KL]"},
1205 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001206 {K_XUP, "[xKU]"},
1207 {K_XDOWN, "[xKD]"},
1208 {K_XLEFT, "[xKL]"},
1209 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 {K_S_UP, "[S-KU]"},
1211 {K_S_DOWN, "[S-KD]"},
1212 {K_S_LEFT, "[S-KL]"},
1213 {K_C_LEFT, "[C-KL]"},
1214 {K_S_RIGHT, "[S-KR]"},
1215 {K_C_RIGHT, "[C-KR]"},
1216 {K_F1, "[F1]"},
1217 {K_XF1, "[xF1]"},
1218 {K_F2, "[F2]"},
1219 {K_XF2, "[xF2]"},
1220 {K_F3, "[F3]"},
1221 {K_XF3, "[xF3]"},
1222 {K_F4, "[F4]"},
1223 {K_XF4, "[xF4]"},
1224 {K_F5, "[F5]"},
1225 {K_F6, "[F6]"},
1226 {K_F7, "[F7]"},
1227 {K_F8, "[F8]"},
1228 {K_F9, "[F9]"},
1229 {K_F10, "[F10]"},
1230 {K_F11, "[F11]"},
1231 {K_F12, "[F12]"},
1232 {K_S_F1, "[S-F1]"},
1233 {K_S_XF1, "[S-xF1]"},
1234 {K_S_F2, "[S-F2]"},
1235 {K_S_XF2, "[S-xF2]"},
1236 {K_S_F3, "[S-F3]"},
1237 {K_S_XF3, "[S-xF3]"},
1238 {K_S_F4, "[S-F4]"},
1239 {K_S_XF4, "[S-xF4]"},
1240 {K_S_F5, "[S-F5]"},
1241 {K_S_F6, "[S-F6]"},
1242 {K_S_F7, "[S-F7]"},
1243 {K_S_F8, "[S-F8]"},
1244 {K_S_F9, "[S-F9]"},
1245 {K_S_F10, "[S-F10]"},
1246 {K_S_F11, "[S-F11]"},
1247 {K_S_F12, "[S-F12]"},
1248 {K_HELP, "[HELP]"},
1249 {K_UNDO, "[UNDO]"},
1250 {K_BS, "[BS]"},
1251 {K_INS, "[INS]"},
1252 {K_KINS, "[KINS]"},
1253 {K_DEL, "[DEL]"},
1254 {K_KDEL, "[KDEL]"},
1255 {K_HOME, "[HOME]"},
1256 {K_S_HOME, "[C-HOME]"},
1257 {K_C_HOME, "[C-HOME]"},
1258 {K_KHOME, "[KHOME]"},
1259 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001260 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 {K_END, "[END]"},
1262 {K_S_END, "[C-END]"},
1263 {K_C_END, "[C-END]"},
1264 {K_KEND, "[KEND]"},
1265 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001266 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 {K_PAGEUP, "[PAGEUP]"},
1268 {K_PAGEDOWN, "[PAGEDOWN]"},
1269 {K_KPAGEUP, "[KPAGEUP]"},
1270 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1271 {K_MOUSE, "[MOUSE]"},
1272 {K_KPLUS, "[KPLUS]"},
1273 {K_KMINUS, "[KMINUS]"},
1274 {K_KDIVIDE, "[KDIVIDE]"},
1275 {K_KMULTIPLY, "[KMULTIPLY]"},
1276 {K_KENTER, "[KENTER]"},
1277 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001278 {K_PS, "[PASTE-START]"},
1279 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 {K_K0, "[K0]"},
1281 {K_K1, "[K1]"},
1282 {K_K2, "[K2]"},
1283 {K_K3, "[K3]"},
1284 {K_K4, "[K4]"},
1285 {K_K5, "[K5]"},
1286 {K_K6, "[K6]"},
1287 {K_K7, "[K7]"},
1288 {K_K8, "[K8]"},
1289 {K_K9, "[K9]"},
1290# endif
1291
1292#endif /* NO_BUILTIN_TCAPS */
1293
1294/*
1295 * The most minimal terminal: only clear screen and cursor positioning
1296 * Always included.
1297 */
1298 {(int)KS_NAME, "dumb"},
1299 {(int)KS_CL, "\014"},
1300#ifdef TERMINFO
1301 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1302 ESC_STR "[%i%p1%d;%p2%dH")},
1303#else
1304 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1305#endif
1306
1307/*
1308 * end marker
1309 */
1310 {(int)KS_NAME, NULL}
1311
1312}; /* end of builtin_termcaps */
1313
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001314#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001315 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001316termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001317{
Bram Moolenaarab302212016-04-26 20:59:29 +02001318 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001319}
1320
1321 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001322termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001323{
1324 guicolor_T t;
1325
1326 if (*name == NUL)
1327 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001328 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001329
1330 if (t == INVALCOLOR)
1331 EMSG2(_("E254: Cannot allocate color %s"), name);
1332 return t;
1333}
1334
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001335 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001336termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001337{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001338 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001339}
1340#endif
1341
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342/*
1343 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1344 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345#ifdef AMIGA
1346# define DEFAULT_TERM (char_u *)"amiga"
1347#endif
1348
1349#ifdef MSWIN
1350# define DEFAULT_TERM (char_u *)"win32"
1351#endif
1352
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353#if defined(UNIX) && !defined(__MINT__)
1354# define DEFAULT_TERM (char_u *)"ansi"
1355#endif
1356
1357#ifdef __MINT__
1358# define DEFAULT_TERM (char_u *)"vt52"
1359#endif
1360
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361#ifdef VMS
1362# define DEFAULT_TERM (char_u *)"vt320"
1363#endif
1364
1365#ifdef __BEOS__
1366# undef DEFAULT_TERM
1367# define DEFAULT_TERM (char_u *)"beos-ansi"
1368#endif
1369
1370#ifndef DEFAULT_TERM
1371# define DEFAULT_TERM (char_u *)"dumb"
1372#endif
1373
1374/*
1375 * Term_strings contains currently used terminal output strings.
1376 * It is initialized with the default values by parse_builtin_tcap().
1377 * The values can be changed by setting the option with the same name.
1378 */
1379char_u *(term_strings[(int)KS_LAST + 1]);
1380
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001381static int need_gather = FALSE; /* need to fill termleader[] */
1382static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001384static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02001385static int is_not_xterm = FALSE; /* recognized not-really-xterm */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386#endif
1387
1388 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001389find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390{
1391 struct builtin_term *p;
1392
1393 p = builtin_termcaps;
1394 while (p->bt_string != NULL)
1395 {
1396 if (p->bt_entry == (int)KS_NAME)
1397 {
1398#ifdef UNIX
1399 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1400 return p;
1401 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1402 return p;
1403 else
1404#endif
1405#ifdef VMS
1406 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1407 return p;
1408 else
1409#endif
1410 if (STRCMP(term, p->bt_string) == 0)
1411 return p;
1412 }
1413 ++p;
1414 }
1415 return p;
1416}
1417
1418/*
1419 * Parsing of the builtin termcap entries.
1420 * Caller should check if 'name' is a valid builtin term.
1421 * The terminal's name is not set, as this is already done in termcapinit().
1422 */
1423 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001424parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425{
1426 struct builtin_term *p;
1427 char_u name[2];
1428 int term_8bit;
1429
1430 p = find_builtin_term(term);
1431 term_8bit = term_is_8bit(term);
1432
1433 /* Do not parse if builtin term not found */
1434 if (p->bt_string == NULL)
1435 return;
1436
1437 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1438 {
1439 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1440 {
1441 /* Only set the value if it wasn't set yet. */
1442 if (term_strings[p->bt_entry] == NULL
1443 || term_strings[p->bt_entry] == empty_option)
1444 {
1445 /* 8bit terminal: use CSI instead of <Esc>[ */
1446 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1447 {
1448 char_u *s, *t;
1449
1450 s = vim_strsave((char_u *)p->bt_string);
1451 if (s != NULL)
1452 {
1453 for (t = s; *t; ++t)
1454 if (term_7to8bit(t))
1455 {
1456 *t = term_7to8bit(t);
1457 STRCPY(t + 1, t + 2);
1458 }
1459 term_strings[p->bt_entry] = s;
1460 set_term_option_alloced(&term_strings[p->bt_entry]);
1461 }
1462 }
1463 else
1464 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1465 }
1466 }
1467 else
1468 {
1469 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1470 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1471 if (find_termcode(name) == NULL)
1472 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1473 }
1474 }
1475}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001476
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477/*
1478 * Set number of colors.
1479 * Store it as a number in t_colors.
1480 * Store it as a string in T_CCO (using nr_colors[]).
1481 */
1482 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001483set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484{
1485 char_u nr_colors[20]; /* string for number of colors */
1486
1487 t_colors = nr;
1488 if (t_colors > 1)
1489 sprintf((char *)nr_colors, "%d", t_colors);
1490 else
1491 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001492 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001494
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001495#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001496/*
1497 * Set the color count to "val" and redraw if it changed.
1498 */
1499 static void
1500may_adjust_color_count(int val)
1501{
1502 if (val != t_colors)
1503 {
1504 /* Nr of colors changed, initialize highlighting and
1505 * redraw everything. This causes a redraw, which usually
1506 * clears the message. Try keeping the message if it
1507 * might work. */
1508 set_keep_msg_from_hist();
1509 set_color_count(val);
1510 init_highlight(TRUE, FALSE);
1511# ifdef DEBUG_TERMRESPONSE
1512 {
1513 char buf[100];
1514 int r = redraw_asap(CLEAR);
1515
1516 sprintf(buf, "Received t_Co, redraw_asap(): %d", r);
1517 log_tr(buf);
1518 }
1519# else
1520 redraw_asap(CLEAR);
1521# endif
1522 }
1523}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524#endif
1525
1526#ifdef HAVE_TGETENT
1527static char *(key_names[]) =
1528{
1529#ifdef FEAT_TERMRESPONSE
1530 /* Do this one first, it may cause a screen redraw. */
1531 "Co",
1532#endif
1533 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 "#2", "#4", "%i", "*7",
1535 "k1", "k2", "k3", "k4", "k5", "k6",
1536 "k7", "k8", "k9", "k;", "F1", "F2",
1537 "%1", "&8", "kb", "kI", "kD", "kh",
1538 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1539 NULL
1540};
1541#endif
1542
1543/*
1544 * Set terminal options for terminal "term".
1545 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1546 *
1547 * While doing this, until ttest(), some options may be NULL, be careful.
1548 */
1549 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001550set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551{
1552 struct builtin_term *termp;
1553#ifdef HAVE_TGETENT
1554 int builtin_first = p_tbi;
1555 int try;
1556 int termcap_cleared = FALSE;
1557#endif
1558 int width = 0, height = 0;
1559 char_u *error_msg = NULL;
1560 char_u *bs_p, *del_p;
1561
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001562 /* In silect mode (ex -s) we don't use the 'term' option. */
1563 if (silent_mode)
1564 return OK;
1565
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 detected_8bit = FALSE; /* reset 8-bit detection */
1567
1568 if (term_is_builtin(term))
1569 {
1570 term += 8;
1571#ifdef HAVE_TGETENT
1572 builtin_first = 1;
1573#endif
1574 }
1575
1576/*
1577 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1578 * If builtin_first is TRUE:
1579 * 0. try builtin termcap
1580 * 1. try external termcap
1581 * 2. if both fail default to a builtin terminal
1582 * If builtin_first is FALSE:
1583 * 1. try external termcap
1584 * 2. try builtin termcap, if both fail default to a builtin terminal
1585 */
1586#ifdef HAVE_TGETENT
1587 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1588 {
1589 /*
1590 * Use external termcap
1591 */
1592 if (try == 1)
1593 {
1594 char_u *p;
1595 static char_u tstrbuf[TBUFSZ];
1596 int i;
1597 char_u tbuf[TBUFSZ];
1598 char_u *tp;
1599 static struct {
1600 enum SpecialKey dest; /* index in term_strings[] */
1601 char *name; /* termcap name for string */
1602 } string_names[] =
1603 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1604 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1605 {KS_CL, "cl"}, {KS_CD, "cd"},
1606 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
Bram Moolenaarce1c3272017-08-20 15:05:15 +02001607 {KS_ME, "me"}, {KS_MR, "mr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1609 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001610 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001611 {KS_STE,"Te"}, {KS_STS,"Ts"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001612 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1614 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1615 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1616 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1617 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
Bram Moolenaarce1c3272017-08-20 15:05:15 +02001618 {KS_VS, "vs"}, {KS_CVS, "VS"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 {KS_CIS, "IS"}, {KS_CIE, "IE"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001620 {KS_CSC, "SC"}, {KS_CEC, "EC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 {KS_TS, "ts"}, {KS_FS, "fs"},
1622 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001623 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001624 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001625 {KS_8F, "8f"}, {KS_8B, "8b"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001626 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1627 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 {(enum SpecialKey)0, NULL}
1629 };
1630
1631 /*
1632 * If the external termcap does not have a matching entry, try the
1633 * builtin ones.
1634 */
1635 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1636 {
1637 tp = tstrbuf;
1638 if (!termcap_cleared)
1639 {
1640 clear_termoptions(); /* clear old options */
1641 termcap_cleared = TRUE;
1642 }
1643
1644 /* get output strings */
1645 for (i = 0; string_names[i].name != NULL; ++i)
1646 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001647 if (TERM_STR(string_names[i].dest) == NULL
1648 || TERM_STR(string_names[i].dest) == empty_option)
1649 TERM_STR(string_names[i].dest) =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 TGETSTR(string_names[i].name, &tp);
1651 }
1652
1653 /* tgetflag() returns 1 if the flag is present, 0 if not and
1654 * possibly -1 if the flag doesn't exist. */
1655 if ((T_MS == NULL || T_MS == empty_option)
1656 && tgetflag("ms") > 0)
1657 T_MS = (char_u *)"y";
1658 if ((T_XS == NULL || T_XS == empty_option)
1659 && tgetflag("xs") > 0)
1660 T_XS = (char_u *)"y";
Bram Moolenaar494838a2015-02-10 19:20:37 +01001661 if ((T_XN == NULL || T_XN == empty_option)
1662 && tgetflag("xn") > 0)
1663 T_XN = (char_u *)"y";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 if ((T_DB == NULL || T_DB == empty_option)
1665 && tgetflag("db") > 0)
1666 T_DB = (char_u *)"y";
1667 if ((T_DA == NULL || T_DA == empty_option)
1668 && tgetflag("da") > 0)
1669 T_DA = (char_u *)"y";
1670 if ((T_UT == NULL || T_UT == empty_option)
1671 && tgetflag("ut") > 0)
1672 T_UT = (char_u *)"y";
1673
1674
1675 /*
1676 * get key codes
1677 */
1678 for (i = 0; key_names[i] != NULL; ++i)
1679 {
1680 if (find_termcode((char_u *)key_names[i]) == NULL)
1681 {
1682 p = TGETSTR(key_names[i], &tp);
1683 /* if cursor-left == backspace, ignore it (televideo
1684 * 925) */
1685 if (p != NULL
1686 && (*p != Ctrl_H
1687 || key_names[i][0] != 'k'
1688 || key_names[i][1] != 'l'))
1689 add_termcode((char_u *)key_names[i], p, FALSE);
1690 }
1691 }
1692
1693 if (height == 0)
1694 height = tgetnum("li");
1695 if (width == 0)
1696 width = tgetnum("co");
1697
1698 /*
1699 * Get number of colors (if not done already).
1700 */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001701 if (TERM_STR(KS_CCO) == NULL
1702 || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 set_color_count(tgetnum("Co"));
1704
1705# ifndef hpux
1706 BC = (char *)TGETSTR("bc", &tp);
1707 UP = (char *)TGETSTR("up", &tp);
1708 p = TGETSTR("pc", &tp);
1709 if (p)
1710 PC = *p;
1711# endif /* hpux */
1712 }
1713 }
1714 else /* try == 0 || try == 2 */
1715#endif /* HAVE_TGETENT */
1716 /*
1717 * Use builtin termcap
1718 */
1719 {
1720#ifdef HAVE_TGETENT
1721 /*
1722 * If builtin termcap was already used, there is no need to search
1723 * for the builtin termcap again, quit now.
1724 */
1725 if (try == 2 && builtin_first && termcap_cleared)
1726 break;
1727#endif
1728 /*
1729 * search for 'term' in builtin_termcaps[]
1730 */
1731 termp = find_builtin_term(term);
1732 if (termp->bt_string == NULL) /* did not find it */
1733 {
1734#ifdef HAVE_TGETENT
1735 /*
1736 * If try == 0, first try the external termcap. If that is not
1737 * found we'll get back here with try == 2.
1738 * If termcap_cleared is set we used the external termcap,
1739 * don't complain about not finding the term in the builtin
1740 * termcap.
1741 */
1742 if (try == 0) /* try external one */
1743 continue;
1744 if (termcap_cleared) /* found in external termcap */
1745 break;
1746#endif
1747
1748 mch_errmsg("\r\n");
1749 if (error_msg != NULL)
1750 {
1751 mch_errmsg((char *)error_msg);
1752 mch_errmsg("\r\n");
1753 }
1754 mch_errmsg("'");
1755 mch_errmsg((char *)term);
1756 mch_errmsg(_("' not known. Available builtin terminals are:"));
1757 mch_errmsg("\r\n");
1758 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1759 ++termp)
1760 {
1761 if (termp->bt_entry == (int)KS_NAME)
1762 {
1763#ifdef HAVE_TGETENT
1764 mch_errmsg(" builtin_");
1765#else
1766 mch_errmsg(" ");
1767#endif
1768 mch_errmsg(termp->bt_string);
1769 mch_errmsg("\r\n");
1770 }
1771 }
1772 /* when user typed :set term=xxx, quit here */
1773 if (starting != NO_SCREEN)
1774 {
1775 screen_start(); /* don't know where cursor is now */
1776 wait_return(TRUE);
1777 return FAIL;
1778 }
1779 term = DEFAULT_TERM;
1780 mch_errmsg(_("defaulting to '"));
1781 mch_errmsg((char *)term);
1782 mch_errmsg("'\r\n");
1783 if (emsg_silent == 0)
1784 {
1785 screen_start(); /* don't know where cursor is now */
1786 out_flush();
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001787 if (!is_not_a_term())
1788 ui_delay(2000L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001790 set_string_option_direct((char_u *)"term", -1, term,
1791 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 display_errors();
1793 }
1794 out_flush();
1795#ifdef HAVE_TGETENT
1796 if (!termcap_cleared)
1797 {
1798#endif
1799 clear_termoptions(); /* clear old options */
1800#ifdef HAVE_TGETENT
1801 termcap_cleared = TRUE;
1802 }
1803#endif
1804 parse_builtin_tcap(term);
1805#ifdef FEAT_GUI
1806 if (term_is_gui(term))
1807 {
1808 out_flush();
1809 gui_init();
1810 /* If starting the GUI failed, don't do any of the other
1811 * things for this terminal */
1812 if (!gui.in_use)
1813 return FAIL;
1814#ifdef HAVE_TGETENT
1815 break; /* don't try using external termcap */
1816#endif
1817 }
1818#endif /* FEAT_GUI */
1819 }
1820#ifdef HAVE_TGETENT
1821 }
1822#endif
1823
1824/*
1825 * special: There is no info in the termcap about whether the cursor
1826 * positioning is relative to the start of the screen or to the start of the
1827 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1828 * relative.
1829 */
1830 if (STRCMP(term, "pcterm") == 0)
1831 T_CCS = (char_u *)"yes";
1832 else
1833 T_CCS = empty_option;
1834
1835#ifdef UNIX
1836/*
1837 * Any "stty" settings override the default for t_kb from the termcap.
1838 * This is in os_unix.c, because it depends a lot on the version of unix that
1839 * is being used.
1840 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1841 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001842# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001844# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 get_stty();
1846#endif
1847
1848/*
1849 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1850 * didn't work, use the default CTRL-H
1851 * The default for t_kD is DEL, unless t_kb is DEL.
1852 * The vim_strsave'd strings are probably lost forever, well it's only two
1853 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1854 * directly.
1855 */
1856#ifdef FEAT_GUI
1857 if (!gui.in_use)
1858#endif
1859 {
1860 bs_p = find_termcode((char_u *)"kb");
1861 del_p = find_termcode((char_u *)"kD");
1862 if (bs_p == NULL || *bs_p == NUL)
1863 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1864 if ((del_p == NULL || *del_p == NUL) &&
1865 (bs_p == NULL || *bs_p != DEL))
1866 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1867 }
1868
1869#if defined(UNIX) || defined(VMS)
1870 term_is_xterm = vim_is_xterm(term);
1871#endif
1872
1873#ifdef FEAT_MOUSE
1874# if defined(UNIX) || defined(VMS)
1875# ifdef FEAT_MOUSE_TTY
1876 /*
1877 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1878 * The termcode for the mouse is added as a side effect in option.c.
1879 */
1880 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02001881 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001884 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 {
1886 if (use_xterm_mouse())
1887 p = NULL; /* keep existing value, might be "xterm2" */
1888 else
1889 p = (char_u *)"xterm";
1890 }
1891# endif
1892 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001893 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001895 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1896 * "xterm2" in check_termcode(). */
1897 reset_option_was_set((char_u *)"ttym");
1898 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (p == NULL
1900# ifdef FEAT_GUI
1901 || gui.in_use
1902# endif
1903 )
1904 check_mouse_termcode(); /* set mouse termcode anyway */
1905 }
1906# endif
1907# else
1908 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1909# endif
1910#endif /* FEAT_MOUSE */
1911
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912#ifdef USE_TERM_CONSOLE
1913 /* DEFAULT_TERM indicates that it is the machine console. */
1914 if (STRCMP(term, DEFAULT_TERM) != 0)
1915 term_console = FALSE;
1916 else
1917 {
1918 term_console = TRUE;
1919# ifdef AMIGA
1920 win_resize_on(); /* enable window resizing reports */
1921# endif
1922 }
1923#endif
1924
1925#if defined(UNIX) || defined(VMS)
1926 /*
1927 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1928 */
1929 if (vim_is_fastterm(term))
1930 p_tf = TRUE;
1931#endif
1932#ifdef USE_TERM_CONSOLE
1933 /*
1934 * 'ttyfast' is default on consoles
1935 */
1936 if (term_console)
1937 p_tf = TRUE;
1938#endif
1939
1940 ttest(TRUE); /* make sure we have a valid set of terminal codes */
1941
1942 full_screen = TRUE; /* we can use termcap codes from now on */
1943 set_term_defaults(); /* use current values as defaults */
1944#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001945 LOG_TR("setting crv_status to STATUS_GET");
1946 crv_status = STATUS_GET; /* Get terminal version later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#endif
1948
1949 /*
1950 * Initialize the terminal with the appropriate termcap codes.
1951 * Set the mouse and window title if possible.
1952 * Don't do this when starting, need to parse the .vimrc first, because it
1953 * may redefine t_TI etc.
1954 */
1955 if (starting != NO_SCREEN)
1956 {
1957 starttermcap(); /* may change terminal mode */
1958#ifdef FEAT_MOUSE
1959 setmouse(); /* may start using the mouse */
1960#endif
1961#ifdef FEAT_TITLE
1962 maketitle(); /* may display window title */
1963#endif
1964 }
1965
1966 /* display initial screen after ttest() checking. jw. */
1967 if (width <= 0 || height <= 0)
1968 {
1969 /* termcap failed to report size */
1970 /* set defaults, in case ui_get_shellsize() also fails */
1971 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001972#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 height = 25; /* console is often 25 lines */
1974#else
1975 height = 24; /* most terminals are 24 lines */
1976#endif
1977 }
1978 set_shellsize(width, height, FALSE); /* may change Rows */
1979 if (starting != NO_SCREEN)
1980 {
1981 if (scroll_region)
1982 scroll_region_reset(); /* In case Rows changed */
1983 check_map_keycodes(); /* check mappings for terminal codes used */
1984
1985#ifdef FEAT_AUTOCMD
1986 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001987 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988
1989 /*
1990 * Execute the TermChanged autocommands for each buffer that is
1991 * loaded.
1992 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001993 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02001994 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 {
1996 if (curbuf->b_ml.ml_mfp != NULL)
1997 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
1998 curbuf);
1999 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002000 if (bufref_valid(&old_curbuf))
2001 curbuf = old_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 }
2003#endif
2004 }
2005
2006#ifdef FEAT_TERMRESPONSE
2007 may_req_termresponse();
2008#endif
2009
2010 return OK;
2011}
2012
2013#if defined(FEAT_MOUSE) || defined(PROTO)
2014
2015# ifdef FEAT_MOUSE_TTY
2016# define HMT_NORMAL 1
2017# define HMT_NETTERM 2
2018# define HMT_DEC 4
2019# define HMT_JSBTERM 8
2020# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002021# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002022# define HMT_SGR 64
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002023# define HMT_SGR_REL 128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024static int has_mouse_termcode = 0;
2025# endif
2026
Bram Moolenaar864207d2008-06-24 22:14:38 +00002027# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002029set_mouse_termcode(
2030 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2031 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032{
2033 char_u name[2];
2034
2035 name[0] = n;
2036 name[1] = KE_FILLER;
2037 add_termcode(name, s, FALSE);
2038# ifdef FEAT_MOUSE_TTY
2039# ifdef FEAT_MOUSE_JSB
2040 if (n == KS_JSBTERM_MOUSE)
2041 has_mouse_termcode |= HMT_JSBTERM;
2042 else
2043# endif
2044# ifdef FEAT_MOUSE_NET
2045 if (n == KS_NETTERM_MOUSE)
2046 has_mouse_termcode |= HMT_NETTERM;
2047 else
2048# endif
2049# ifdef FEAT_MOUSE_DEC
2050 if (n == KS_DEC_MOUSE)
2051 has_mouse_termcode |= HMT_DEC;
2052 else
2053# endif
2054# ifdef FEAT_MOUSE_PTERM
2055 if (n == KS_PTERM_MOUSE)
2056 has_mouse_termcode |= HMT_PTERM;
2057 else
2058# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002059# ifdef FEAT_MOUSE_URXVT
2060 if (n == KS_URXVT_MOUSE)
2061 has_mouse_termcode |= HMT_URXVT;
2062 else
2063# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002064# ifdef FEAT_MOUSE_SGR
2065 if (n == KS_SGR_MOUSE)
2066 has_mouse_termcode |= HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002067 else if (n == KS_SGR_MOUSE_RELEASE)
2068 has_mouse_termcode |= HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002069 else
2070# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 has_mouse_termcode |= HMT_NORMAL;
2072# endif
2073}
2074# endif
2075
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002076# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002077 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002079del_mouse_termcode(
2080 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081{
2082 char_u name[2];
2083
2084 name[0] = n;
2085 name[1] = KE_FILLER;
2086 del_termcode(name);
2087# ifdef FEAT_MOUSE_TTY
2088# ifdef FEAT_MOUSE_JSB
2089 if (n == KS_JSBTERM_MOUSE)
2090 has_mouse_termcode &= ~HMT_JSBTERM;
2091 else
2092# endif
2093# ifdef FEAT_MOUSE_NET
2094 if (n == KS_NETTERM_MOUSE)
2095 has_mouse_termcode &= ~HMT_NETTERM;
2096 else
2097# endif
2098# ifdef FEAT_MOUSE_DEC
2099 if (n == KS_DEC_MOUSE)
2100 has_mouse_termcode &= ~HMT_DEC;
2101 else
2102# endif
2103# ifdef FEAT_MOUSE_PTERM
2104 if (n == KS_PTERM_MOUSE)
2105 has_mouse_termcode &= ~HMT_PTERM;
2106 else
2107# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002108# ifdef FEAT_MOUSE_URXVT
2109 if (n == KS_URXVT_MOUSE)
2110 has_mouse_termcode &= ~HMT_URXVT;
2111 else
2112# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002113# ifdef FEAT_MOUSE_SGR
2114 if (n == KS_SGR_MOUSE)
2115 has_mouse_termcode &= ~HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002116 else if (n == KS_SGR_MOUSE_RELEASE)
2117 has_mouse_termcode &= ~HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002118 else
2119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 has_mouse_termcode &= ~HMT_NORMAL;
2121# endif
2122}
2123# endif
2124#endif
2125
2126#ifdef HAVE_TGETENT
2127/*
2128 * Call tgetent()
2129 * Return error message if it fails, NULL if it's OK.
2130 */
2131 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002132tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133{
2134 int i;
2135
2136 i = TGETENT(tbuf, term);
2137 if (i < 0 /* -1 is always an error */
2138# ifdef TGETENT_ZERO_ERR
2139 || i == 0 /* sometimes zero is also an error */
2140# endif
2141 )
2142 {
2143 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2144 * tgetent() with the always existing "dumb" entry to avoid a crash or
2145 * hang. */
2146 (void)TGETENT(tbuf, "dumb");
2147
2148 if (i < 0)
2149# ifdef TGETENT_ZERO_ERR
2150 return (char_u *)_("E557: Cannot open termcap file");
2151 if (i == 0)
2152# endif
2153#ifdef TERMINFO
2154 return (char_u *)_("E558: Terminal entry not found in terminfo");
2155#else
2156 return (char_u *)_("E559: Terminal entry not found in termcap");
2157#endif
2158 }
2159 return NULL;
2160}
2161
2162/*
2163 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2164 * Fix that here.
2165 */
2166 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002167vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168{
2169 char *p;
2170
2171 p = tgetstr(s, (char **)pp);
2172 if (p == (char *)-1)
2173 p = NULL;
2174 return (char_u *)p;
2175}
2176#endif /* HAVE_TGETENT */
2177
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002178#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179/*
2180 * Get Columns and Rows from the termcap. Used after a window signal if the
2181 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2182 * and "li" entries never change. But on some systems this works.
2183 * Errors while getting the entries are ignored.
2184 */
2185 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002186getlinecol(
2187 long *cp, /* pointer to columns */
2188 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189{
2190 char_u tbuf[TBUFSZ];
2191
2192 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2193 {
2194 if (*cp == 0)
2195 *cp = tgetnum("co");
2196 if (*rp == 0)
2197 *rp = tgetnum("li");
2198 }
2199}
2200#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2201
2202/*
2203 * Get a string entry from the termcap and add it to the list of termcodes.
2204 * Used for <t_xx> special keys.
2205 * Give an error message for failure when not sourcing.
2206 * If force given, replace an existing entry.
2207 * Return FAIL if the entry was not found, OK if the entry was added.
2208 */
2209 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002210add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211{
2212 char_u *term;
2213 int key;
2214 struct builtin_term *termp;
2215#ifdef HAVE_TGETENT
2216 char_u *string;
2217 int i;
2218 int builtin_first;
2219 char_u tbuf[TBUFSZ];
2220 char_u tstrbuf[TBUFSZ];
2221 char_u *tp = tstrbuf;
2222 char_u *error_msg = NULL;
2223#endif
2224
2225/*
2226 * If the GUI is running or will start in a moment, we only support the keys
2227 * that the GUI can produce.
2228 */
2229#ifdef FEAT_GUI
2230 if (gui.in_use || gui.starting)
2231 return gui_mch_haskey(name);
2232#endif
2233
2234 if (!force && find_termcode(name) != NULL) /* it's already there */
2235 return OK;
2236
2237 term = T_NAME;
2238 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2239 return FAIL;
2240
2241 if (term_is_builtin(term)) /* name starts with "builtin_" */
2242 {
2243 term += 8;
2244#ifdef HAVE_TGETENT
2245 builtin_first = TRUE;
2246#endif
2247 }
2248#ifdef HAVE_TGETENT
2249 else
2250 builtin_first = p_tbi;
2251#endif
2252
2253#ifdef HAVE_TGETENT
2254/*
2255 * We can get the entry from the builtin termcap and from the external one.
2256 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2257 * builtin termcap first.
2258 * If 'ttybuiltin' is off, try external termcap first.
2259 */
2260 for (i = 0; i < 2; ++i)
2261 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002262 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263#endif
2264 /*
2265 * Search in builtin termcap
2266 */
2267 {
2268 termp = find_builtin_term(term);
2269 if (termp->bt_string != NULL) /* found it */
2270 {
2271 key = TERMCAP2KEY(name[0], name[1]);
2272 while (termp->bt_entry != (int)KS_NAME)
2273 {
2274 if ((int)termp->bt_entry == key)
2275 {
2276 add_termcode(name, (char_u *)termp->bt_string,
2277 term_is_8bit(term));
2278 return OK;
2279 }
2280 ++termp;
2281 }
2282 }
2283 }
2284#ifdef HAVE_TGETENT
2285 else
2286 /*
2287 * Search in external termcap
2288 */
2289 {
2290 error_msg = tgetent_error(tbuf, term);
2291 if (error_msg == NULL)
2292 {
2293 string = TGETSTR((char *)name, &tp);
2294 if (string != NULL && *string != NUL)
2295 {
2296 add_termcode(name, string, FALSE);
2297 return OK;
2298 }
2299 }
2300 }
2301 }
2302#endif
2303
2304 if (sourcing_name == NULL)
2305 {
2306#ifdef HAVE_TGETENT
2307 if (error_msg != NULL)
2308 EMSG(error_msg);
2309 else
2310#endif
2311 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2312 }
2313 return FAIL;
2314}
2315
2316 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002317term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318{
2319 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2320}
2321
2322/*
2323 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2324 * Assume that the terminal is using 8-bit controls when the name contains
2325 * "8bit", like in "xterm-8bit".
2326 */
2327 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002328term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2331}
2332
2333/*
2334 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002335 * <Esc>[ -> CSI <M_C_[>
2336 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 * <Esc>O -> <M-C-O>
2338 */
2339 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002340term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341{
2342 if (*p == ESC)
2343 {
2344 if (p[1] == '[')
2345 return CSI;
2346 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002347 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 if (p[1] == 'O')
2349 return 0x8f;
2350 }
2351 return 0;
2352}
2353
2354#ifdef FEAT_GUI
2355 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002356term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357{
2358 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2359}
2360#endif
2361
2362#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2363
2364 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002365tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366{
2367 static char_u buf[16];
2368 char_u *p;
2369
2370 p = buf + 15;
2371 *p = '\0';
2372 do
2373 {
2374 --p;
2375 *p = (char_u) (i % 10 + '0');
2376 i /= 10;
2377 }
2378 while (i > 0 && p > buf);
2379 return p;
2380}
2381#endif
2382
2383#ifndef HAVE_TGETENT
2384
2385/*
2386 * minimal tgoto() implementation.
2387 * no padding and we only parse for %i %d and %+char
2388 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002389static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002391 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002392tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393{
2394 static char buf[30];
2395 char *p, *s, *e;
2396
2397 if (!cm)
2398 return "OOPS";
2399 e = buf + 29;
2400 for (s = buf; s < e && *cm; cm++)
2401 {
2402 if (*cm != '%')
2403 {
2404 *s++ = *cm;
2405 continue;
2406 }
2407 switch (*++cm)
2408 {
2409 case 'd':
2410 p = (char *)tltoa((unsigned long)y);
2411 y = x;
2412 while (*p)
2413 *s++ = *p++;
2414 break;
2415 case 'i':
2416 x++;
2417 y++;
2418 break;
2419 case '+':
2420 *s++ = (char)(*++cm + y);
2421 y = x;
2422 break;
2423 case '%':
2424 *s++ = *cm;
2425 break;
2426 default:
2427 return "OOPS";
2428 }
2429 }
2430 *s = '\0';
2431 return buf;
2432}
2433
2434#endif /* HAVE_TGETENT */
2435
2436/*
2437 * Set the terminal name and initialize the terminal options.
2438 * If "name" is NULL or empty, get the terminal name from the environment.
2439 * If that fails, use the default terminal name.
2440 */
2441 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002442termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443{
2444 char_u *term;
2445
2446 if (name != NULL && *name == NUL)
2447 name = NULL; /* empty name is equal to no name */
2448 term = name;
2449
2450#ifdef __BEOS__
2451 /*
2452 * TERM environment variable is normally set to 'ansi' on the Bebox;
2453 * Since the BeBox doesn't quite support full ANSI yet, we use our
2454 * own custom 'ansi-beos' termcap instead, unless the -T option has
2455 * been given on the command line.
2456 */
2457 if (term == NULL
2458 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2459 term = DEFAULT_TERM;
2460#endif
2461#ifndef MSWIN
2462 if (term == NULL)
2463 term = mch_getenv((char_u *)"TERM");
2464#endif
2465 if (term == NULL || *term == NUL)
2466 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002467 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468
2469 /* Set the default terminal name. */
2470 set_string_default("term", term);
2471 set_string_default("ttytype", term);
2472
2473 /*
2474 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2475 */
2476 set_termname(T_NAME != NULL ? T_NAME : term);
2477}
2478
2479/*
2480 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2481 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002482#define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2484static char_u out_buf[OUT_SIZE + 1];
2485static int out_pos = 0; /* number of chars in out_buf */
2486
2487/*
2488 * out_flush(): flush the output buffer
2489 */
2490 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002491out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492{
2493 int len;
2494
2495 if (out_pos != 0)
2496 {
2497 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2498 len = out_pos;
2499 out_pos = 0;
2500 ui_write(out_buf, len);
2501 }
2502}
2503
2504#if defined(FEAT_MBYTE) || defined(PROTO)
2505/*
2506 * Sometimes a byte out of a multi-byte character is written with out_char().
2507 * To avoid flushing half of the character, call this function first.
2508 */
2509 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002510out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511{
2512 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2513 out_flush();
2514}
2515#endif
2516
2517#ifdef FEAT_GUI
2518/*
2519 * out_trash(): Throw away the contents of the output buffer
2520 */
2521 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002522out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523{
2524 out_pos = 0;
2525}
2526#endif
2527
2528/*
2529 * out_char(c): put a byte into the output buffer.
2530 * Flush it if it becomes full.
2531 * This should not be used for outputting text on the screen (use functions
2532 * like msg_puts() and screen_putchar() for that).
2533 */
2534 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002535out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536{
2537#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2538 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2539 out_char('\r');
2540#endif
2541
2542 out_buf[out_pos++] = c;
2543
2544 /* For testing we flush each time. */
2545 if (out_pos >= OUT_SIZE || p_wd)
2546 out_flush();
2547}
2548
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002549static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550
2551/*
2552 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2553 */
2554 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002555out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556{
2557#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2558 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2559 out_char_nf('\r');
2560#endif
2561
2562 out_buf[out_pos++] = c;
2563
2564 if (out_pos >= OUT_SIZE)
2565 out_flush();
2566}
2567
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002568#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2569 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570/*
2571 * A never-padding out_str.
2572 * use this whenever you don't want to run the string through tputs.
2573 * tputs above is harmless, but tputs from the termcap library
2574 * is likely to strip off leading digits, that it mistakes for padding
2575 * information, and "%i", "%d", etc.
2576 * This should only be used for writing terminal codes, not for outputting
2577 * normal text (use functions like msg_puts() and screen_putchar() for that).
2578 */
2579 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002580out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581{
2582 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2583 out_flush();
2584 while (*s)
2585 out_char_nf(*s++);
2586
2587 /* For testing we write one string at a time. */
2588 if (p_wd)
2589 out_flush();
2590}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592
2593/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002594 * A conditional-flushing out_str, mainly for visualbell.
2595 * Handles a delay internally, because termlib may not respect the delay or do
2596 * it at the wrong time.
2597 * Note: Only for terminal strings.
2598 */
2599 void
2600out_str_cf(char_u *s)
2601{
2602 if (s != NULL && *s)
2603 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002604#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002605 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002606#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002607
2608#ifdef FEAT_GUI
2609 /* Don't use tputs() when GUI is used, ncurses crashes. */
2610 if (gui.in_use)
2611 {
2612 out_str_nf(s);
2613 return;
2614 }
2615#endif
2616 if (out_pos > OUT_SIZE - 20)
2617 out_flush();
2618#ifdef HAVE_TGETENT
2619 for (p = s; *s; ++s)
2620 {
2621 /* flush just before delay command */
2622 if (*s == '$' && *(s + 1) == '<')
2623 {
2624 char_u save_c = *s;
2625 int duration = atoi((char *)s + 2);
2626
2627 *s = NUL;
2628 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2629 *s = save_c;
2630 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002631# ifdef ELAPSED_FUNC
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002632 /* Only sleep here if we can limit this happening in
2633 * vim_beep(). */
2634 p = vim_strchr(s, '>');
2635 if (p == NULL || duration <= 0)
2636 {
2637 /* can't parse the time, don't sleep here */
2638 p = s;
2639 }
2640 else
2641 {
2642 ++p;
2643 do_sleep(duration);
2644 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002645# else
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002646 /* Rely on the terminal library to sleep. */
2647 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002648# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002649 break;
2650 }
2651 }
2652 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2653#else
2654 while (*s)
2655 out_char_nf(*s++);
2656#endif
2657
2658 /* For testing we write one string at a time. */
2659 if (p_wd)
2660 out_flush();
2661 }
2662}
2663
2664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 * out_str(s): Put a character string a byte at a time into the output buffer.
2666 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2667 * This should only be used for writing terminal codes, not for outputting
2668 * normal text (use functions like msg_puts() and screen_putchar() for that).
2669 */
2670 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002671out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672{
2673 if (s != NULL && *s)
2674 {
2675#ifdef FEAT_GUI
2676 /* Don't use tputs() when GUI is used, ncurses crashes. */
2677 if (gui.in_use)
2678 {
2679 out_str_nf(s);
2680 return;
2681 }
2682#endif
2683 /* avoid terminal strings being split up */
2684 if (out_pos > OUT_SIZE - 20)
2685 out_flush();
2686#ifdef HAVE_TGETENT
2687 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2688#else
2689 while (*s)
2690 out_char_nf(*s++);
2691#endif
2692
2693 /* For testing we write one string at a time. */
2694 if (p_wd)
2695 out_flush();
2696 }
2697}
2698
2699/*
2700 * cursor positioning using termcap parser. (jw)
2701 */
2702 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002703term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704{
2705 OUT_STR(tgoto((char *)T_CM, col, row));
2706}
2707
2708 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002709term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710{
2711 OUT_STR(tgoto((char *)T_CRI, 0, i));
2712}
2713
2714 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002715term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716{
2717 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2718}
2719
2720 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002721term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2724}
2725
2726#if defined(HAVE_TGETENT) || defined(PROTO)
2727 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002728term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729{
2730 /* Can't handle a negative value here */
2731 if (x < 0)
2732 x = 0;
2733 if (y < 0)
2734 y = 0;
2735 OUT_STR(tgoto((char *)T_CWP, y, x));
2736}
2737
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002738# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2739/*
2740 * Return TRUE if we can request the terminal for a response.
2741 */
2742 static int
2743can_get_termresponse()
2744{
2745 return cur_tmode == TMODE_RAW
2746 && termcap_active
2747# ifdef UNIX
2748 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
2749# endif
2750 && p_ek;
2751}
2752
2753static int winpos_x;
2754static int winpos_y;
2755static int waiting_for_winpos = FALSE;
2756
2757/*
2758 * Try getting the Vim window position from the terminal.
2759 * Returns OK or FAIL.
2760 */
2761 int
2762term_get_winpos(int *x, int *y)
2763{
2764 int count = 0;
2765
2766 if (*T_CGP == NUL || !can_get_termresponse())
2767 return FAIL;
2768 winpos_x = -1;
2769 winpos_y = -1;
2770 waiting_for_winpos = TRUE;
2771 OUT_STR(T_CGP);
2772 out_flush();
2773
2774 /* Try reading the result for 100 msec. */
2775 while (count++ < 10)
2776 {
2777 (void)vpeekc_nomap();
2778 if (winpos_x >= 0 && winpos_y >= 0)
2779 {
2780 *x = winpos_x;
2781 *y = winpos_y;
2782 waiting_for_winpos = FALSE;
2783 return OK;
2784 }
2785 ui_delay(10, FALSE);
2786 }
2787 waiting_for_winpos = FALSE;
2788 return FALSE;
2789}
2790# endif
2791
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002793term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002795 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796}
2797#endif
2798
2799 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002800term_fg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801{
2802 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2803 if (*T_CAF)
2804 term_color(T_CAF, n);
2805 else if (*T_CSF)
2806 term_color(T_CSF, n);
2807}
2808
2809 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002810term_bg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811{
2812 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2813 if (*T_CAB)
2814 term_color(T_CAB, n);
2815 else if (*T_CSB)
2816 term_color(T_CSB, n);
2817}
2818
2819 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002820term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821{
2822 char buf[20];
2823 int i = 2; /* index in s[] just after <Esc>[ or CSI */
2824
2825 /* Special handling of 16 colors, because termcap can't handle it */
2826 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2827 /* Also accept CSI instead of <Esc>[ */
2828 if (n >= 8 && t_colors >= 16
2829 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2830 && s[i] != NUL
2831 && (STRCMP(s + i + 1, "%p1%dm") == 0
2832 || STRCMP(s + i + 1, "%dm") == 0)
2833 && (s[i] == '3' || s[i] == '4'))
2834 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002836 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002838 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839#endif
Bram Moolenaar827b1652016-05-05 18:14:03 +02002840 sprintf(buf, format,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2842 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2843 : (n >= 16 ? "48;5;" : "10"));
2844 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2845 }
2846 else
2847 OUT_STR(tgoto((char *)s, 0, n));
2848}
2849
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002850#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002851
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002852#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2853#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2854#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002855
2856 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002857term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002858{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002859#define MAX_COLOR_STR_LEN 100
2860 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002861
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002862 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002863 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002864 OUT_STR(buf);
2865}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002866
2867 void
2868term_fg_rgb_color(guicolor_T rgb)
2869{
2870 term_rgb_color(T_8F, rgb);
2871}
2872
2873 void
2874term_bg_rgb_color(guicolor_T rgb)
2875{
2876 term_rgb_color(T_8B, rgb);
2877}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002878#endif
2879
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002880#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2881 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882/*
2883 * Generic function to set window title, using t_ts and t_fs.
2884 */
2885 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002886term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887{
2888 /* t_ts takes one argument: column in status line */
2889 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2890 out_str_nf(title);
2891 out_str(T_FS); /* set title end */
2892 out_flush();
2893}
2894#endif
2895
2896/*
2897 * Make sure we have a valid set or terminal options.
2898 * Replace all entries that are NULL by empty_option
2899 */
2900 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002901ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002903 char_u *env_colors;
2904
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 check_options(); /* make sure no options are NULL */
2906
2907 /*
2908 * MUST have "cm": cursor motion.
2909 */
2910 if (*T_CM == NUL)
2911 EMSG(_("E437: terminal capability \"cm\" required"));
2912
2913 /*
2914 * if "cs" defined, use a scroll region, it's faster.
2915 */
2916 if (*T_CS != NUL)
2917 scroll_region = TRUE;
2918 else
2919 scroll_region = FALSE;
2920
2921 if (pairs)
2922 {
2923 /*
2924 * optional pairs
2925 */
2926 /* TP goes to normal mode for TI (invert) and TB (bold) */
2927 if (*T_ME == NUL)
2928 T_ME = T_MR = T_MD = T_MB = empty_option;
2929 if (*T_SO == NUL || *T_SE == NUL)
2930 T_SO = T_SE = empty_option;
2931 if (*T_US == NUL || *T_UE == NUL)
2932 T_US = T_UE = empty_option;
2933 if (*T_CZH == NUL || *T_CZR == NUL)
2934 T_CZH = T_CZR = empty_option;
2935
2936 /* T_VE is needed even though T_VI is not defined */
2937 if (*T_VE == NUL)
2938 T_VI = empty_option;
2939
2940 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2941 if (*T_ME == NUL)
2942 {
2943 T_ME = T_SE;
2944 T_MR = T_SO;
2945 T_MD = T_SO;
2946 }
2947
2948 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2949 if (*T_SO == NUL)
2950 {
2951 T_SE = T_ME;
2952 if (*T_MR == NUL)
2953 T_SO = T_MD;
2954 else
2955 T_SO = T_MR;
2956 }
2957
2958 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2959 if (*T_CZH == NUL)
2960 {
2961 T_CZR = T_ME;
2962 if (*T_MR == NUL)
2963 T_CZH = T_MD;
2964 else
2965 T_CZH = T_MR;
2966 }
2967
2968 /* "Sb" and "Sf" come in pairs */
2969 if (*T_CSB == NUL || *T_CSF == NUL)
2970 {
2971 T_CSB = empty_option;
2972 T_CSF = empty_option;
2973 }
2974
2975 /* "AB" and "AF" come in pairs */
2976 if (*T_CAB == NUL || *T_CAF == NUL)
2977 {
2978 T_CAB = empty_option;
2979 T_CAF = empty_option;
2980 }
2981
2982 /* if 'Sb' and 'AB' are not defined, reset "Co" */
2983 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00002984 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985
2986 /* Set 'weirdinvert' according to value of 't_xs' */
2987 p_wiv = (*T_XS != NUL);
2988 }
2989 need_gather = TRUE;
2990
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002991 /* Set t_colors to the value of $COLORS or t_Co. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 t_colors = atoi((char *)T_CCO);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002993 env_colors = mch_getenv((char_u *)"COLORS");
2994 if (env_colors != NULL && isdigit(*env_colors))
2995 {
2996 int colors = atoi((char *)env_colors);
2997
2998 if (colors != t_colors)
2999 set_color_count(colors);
3000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001}
3002
3003#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3004 || defined(PROTO)
3005/*
3006 * Represent the given long_u as individual bytes, with the most significant
3007 * byte first, and store them in dst.
3008 */
3009 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003010add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011{
3012 int i;
3013 int shift;
3014
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003015 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 {
3017 shift = 8 * (sizeof(long_u) - i);
3018 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3019 }
3020}
3021
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003022static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023
3024/*
3025 * Interpret the next string of bytes in buf as a long integer, with the most
3026 * significant byte first. Note that it is assumed that buf has been through
3027 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3028 * Puts result in val, and returns the number of bytes read from buf
3029 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3030 * were present.
3031 */
3032 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003033get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034{
3035 int len;
3036 char_u bytes[sizeof(long_u)];
3037 int i;
3038 int shift;
3039
3040 *val = 0;
3041 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3042 if (len != -1)
3043 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003044 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 {
3046 shift = 8 * (sizeof(long_u) - 1 - i);
3047 *val += (long_u)bytes[i] << shift;
3048 }
3049 }
3050 return len;
3051}
3052#endif
3053
3054#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00003055 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
3056 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057/*
3058 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3059 * that buf has been through inchar(). Returns the actual number of bytes used
3060 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3061 * available.
3062 */
3063 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003064get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065{
3066 int len = 0;
3067 int i;
3068 char_u c;
3069
3070 for (i = 0; i < num_bytes; i++)
3071 {
3072 if ((c = buf[len++]) == NUL)
3073 return -1;
3074 if (c == K_SPECIAL)
3075 {
3076 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3077 return -1;
3078 if (buf[len++] == (int)KS_ZERO)
3079 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003080 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3081 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3082 if (buf[len++] == (int)KE_CSI)
3083 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003085 else if (c == CSI && buf[len] == KS_EXTRA
3086 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003087 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3088 * the start of a special key, see add_to_input_buf_csi(). */
3089 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 bytes[i] = c;
3091 }
3092 return len;
3093}
3094#endif
3095
3096/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003097 * Check if the new shell size is valid, correct it if it's too small or way
3098 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 */
3100 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003101check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 if (Rows < min_rows()) /* need room for one window and command line */
3104 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003105 limit_screen_size();
3106}
3107
3108/*
3109 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3110 */
3111 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003112limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003113{
3114 if (Columns < MIN_COLUMNS)
3115 Columns = MIN_COLUMNS;
3116 else if (Columns > 10000)
3117 Columns = 10000;
3118 if (Rows > 1000)
3119 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120}
3121
Bram Moolenaar86b68352004-12-27 21:59:20 +00003122/*
3123 * Invoked just before the screen structures are going to be (re)allocated.
3124 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003126win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127{
3128 static int old_Rows = 0;
3129 static int old_Columns = 0;
3130
3131 if (old_Rows != Rows || old_Columns != Columns)
3132 ui_new_shellsize();
3133 if (old_Rows != Rows)
3134 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003135 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003136 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003137 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 old_Rows = Rows;
3139 shell_new_rows(); /* update window sizes */
3140 }
3141 if (old_Columns != Columns)
3142 {
3143 old_Columns = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 shell_new_columns(); /* update window sizes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 }
3146}
3147
3148/*
3149 * Call this function when the Vim shell has been resized in any way.
3150 * Will obtain the current size and redraw (also when size didn't change).
3151 */
3152 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003153shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154{
3155 set_shellsize(0, 0, FALSE);
3156}
3157
3158/*
3159 * Check if the shell size changed. Handle a resize.
3160 * When the size didn't change, nothing happens.
3161 */
3162 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003163shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
3165 int old_Rows = Rows;
3166 int old_Columns = Columns;
3167
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003168 if (!exiting
3169#ifdef FEAT_GUI
3170 /* Do not get the size when executing a shell command during
3171 * startup. */
3172 && !gui.starting
3173#endif
3174 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003175 {
3176 (void)ui_get_shellsize();
3177 check_shellsize();
3178 if (old_Rows != Rows || old_Columns != Columns)
3179 shell_resized();
3180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181}
3182
3183/*
3184 * Set size of the Vim shell.
3185 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3186 * window size (this is used for the :win command).
3187 * If 'mustset' is FALSE, we may try to get the real window size and if
3188 * it fails use 'width' and 'height'.
3189 */
3190 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003191set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192{
3193 static int busy = FALSE;
3194
3195 /*
3196 * Avoid recursiveness, can happen when setting the window size causes
3197 * another window-changed signal.
3198 */
3199 if (busy)
3200 return;
3201
3202 if (width < 0 || height < 0) /* just checking... */
3203 return;
3204
Bram Moolenaara971b822011-09-14 14:43:25 +02003205 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003207 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 State = SETWSIZE;
3209 return;
3210 }
3211
Bram Moolenaara971b822011-09-14 14:43:25 +02003212 /* curwin->w_buffer can be NULL when we are closing a window and the
3213 * buffer has already been closed and removing a scrollbar causes a resize
3214 * event. Don't resize then, it will happen after entering another buffer.
3215 */
3216 if (curwin->w_buffer == NULL)
3217 return;
3218
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 ++busy;
3220
3221#ifdef AMIGA
3222 out_flush(); /* must do this before mch_get_shellsize() for
3223 some obscure reason */
3224#endif
3225
3226 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3227 {
3228 Rows = height;
3229 Columns = width;
3230 check_shellsize();
3231 ui_set_shellsize(mustset);
3232 }
3233 else
3234 check_shellsize();
3235
3236 /* The window layout used to be adjusted here, but it now happens in
3237 * screenalloc() (also invoked from screenclear()). That is because the
3238 * "busy" check above may skip this, but not screenalloc(). */
3239
3240 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3241 screenclear();
3242 else
3243 screen_start(); /* don't know where cursor is now */
3244
3245 if (starting != NO_SCREEN)
3246 {
3247#ifdef FEAT_TITLE
3248 maketitle();
3249#endif
3250 changed_line_abv_curs();
3251 invalidate_botline();
3252
3253 /*
3254 * We only redraw when it's needed:
3255 * - While at the more prompt or executing an external command, don't
3256 * redraw, but position the cursor.
3257 * - While editing the command line, only redraw that.
3258 * - in Ex mode, don't redraw anything.
3259 * - Otherwise, redraw right now, and position the cursor.
3260 * Always need to call update_screen() or screenalloc(), to make
3261 * sure Rows/Columns and the size of ScreenLines[] is correct!
3262 */
3263 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3264 || exmode_active)
3265 {
3266 screenalloc(FALSE);
3267 repeat_message();
3268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 else
3270 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003271#ifdef FEAT_SCROLLBIND
3272 if (curwin->w_p_scb)
3273 do_check_scrollbind(TRUE);
3274#endif
3275 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003276 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003277 update_screen(NOT_VALID);
3278 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003279 }
3280 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003281 {
3282 update_topline();
3283#if defined(FEAT_INS_EXPAND)
3284 if (pum_visible())
3285 {
3286 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003287 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003288 }
Bram Moolenaar280f1262006-01-30 00:14:18 +00003289#endif
Bram Moolenaara5e66212017-09-29 22:42:33 +02003290 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003291 if (redrawing())
3292 setcursor();
3293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 }
3295 cursor_on(); /* redrawing may have switched it off */
3296 }
3297 out_flush();
3298 --busy;
3299}
3300
3301/*
3302 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3303 * commands and Ex mode).
3304 */
3305 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003306settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308#ifdef FEAT_GUI
3309 /* don't set the term where gvim was started to any mode */
3310 if (gui.in_use)
3311 return;
3312#endif
3313
3314 if (full_screen)
3315 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 /*
3317 * When returning after calling a shell we want to really set the
3318 * terminal to raw mode, even though we think it already is, because
3319 * the shell program may have reset the terminal mode.
3320 * When we think the terminal is normal, don't try to set it to
3321 * normal again, because that causes problems (logout!) on some
3322 * machines.
3323 */
3324 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3325 {
3326#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003327# ifdef FEAT_GUI
3328 if (!gui.in_use && !gui.starting)
3329# endif
3330 {
3331 /* May need to check for T_CRV response and termcodes, it
3332 * doesn't work in Cooked mode, an external program may get
3333 * them. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003334 if (tmode != TMODE_RAW && (crv_status == STATUS_SENT
3335 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003336#ifdef FEAT_TERMINAL
3337 || rfg_status == STATUS_SENT
3338#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003339 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003340 || rbm_status == STATUS_SENT
3341 || rcs_status == STATUS_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003342 (void)vpeekc_nomap();
3343 check_for_codes_from_term();
3344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345#endif
3346#ifdef FEAT_MOUSE_TTY
3347 if (tmode != TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003348 mch_setmouse(FALSE); /* switch mouse off */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003350 if (tmode != TMODE_RAW)
3351 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 out_flush();
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003353 mch_settmode(tmode); /* machine specific function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 cur_tmode = tmode;
3355#ifdef FEAT_MOUSE
3356 if (tmode == TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003357 setmouse(); /* may switch mouse on */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003359 if (tmode == TMODE_RAW)
3360 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 out_flush();
3362 }
3363#ifdef FEAT_TERMRESPONSE
3364 may_req_termresponse();
3365#endif
3366 }
3367}
3368
3369 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003370starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371{
3372 if (full_screen && !termcap_active)
3373 {
3374 out_str(T_TI); /* start termcap mode */
3375 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003376 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 out_flush();
3378 termcap_active = TRUE;
3379 screen_start(); /* don't know where cursor is now */
3380#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003381# ifdef FEAT_GUI
3382 if (!gui.in_use && !gui.starting)
3383# endif
3384 {
3385 may_req_termresponse();
3386 /* Immediately check for a response. If t_Co changes, we don't
3387 * want to redraw with wrong colors first. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003388 if (crv_status == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003389 check_for_codes_from_term();
3390 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391#endif
3392 }
3393}
3394
3395 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003396stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397{
3398 screen_stop_highlight();
3399 reset_cterm_colors();
3400 if (termcap_active)
3401 {
3402#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003403# ifdef FEAT_GUI
3404 if (!gui.in_use && !gui.starting)
3405# endif
3406 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003407 /* May need to discard T_CRV, T_U7 or T_RBG response. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003408 if (crv_status == STATUS_SENT
3409 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003410# ifdef FEAT_TERMINAL
3411 || rfg_status == STATUS_SENT
3412# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003413 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003414 || rbm_status == STATUS_SENT
3415 || rcs_status == STATUS_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003416 {
3417# ifdef UNIX
3418 /* Give the terminal a chance to respond. */
3419 mch_delay(100L, FALSE);
3420# endif
3421# ifdef TCIFLUSH
3422 /* Discard data received but not read. */
3423 if (exiting)
3424 tcflush(fileno(stdin), TCIFLUSH);
3425# endif
3426 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003427 /* Check for termcodes first, otherwise an external program may
3428 * get them. */
3429 check_for_codes_from_term();
3430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003432 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 out_str(T_KE); /* stop "keypad transmit" mode */
3434 out_flush();
3435 termcap_active = FALSE;
3436 cursor_on(); /* just in case it is still off */
3437 out_str(T_TE); /* stop termcap mode */
3438 screen_start(); /* don't know where cursor is now */
3439 out_flush();
3440 }
3441}
3442
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003443#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444/*
3445 * Request version string (for xterm) when needed.
3446 * Only do this after switching to raw mode, otherwise the result will be
3447 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003448 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003449 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 * Only do this after termcap mode has been started, otherwise the codes for
3451 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003452 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3453 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003454 * On Unix only do it when both output and input are a tty (avoid writing
3455 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 * The result is caught in check_termcode().
3457 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003458 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003459may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003461 if (crv_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003462 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003463 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 && *T_CRV != NUL)
3465 {
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003466 LOG_TR("Sending CRV request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 out_str(T_CRV);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003468 crv_status = STATUS_SENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 /* check for the characters now, otherwise they might be eaten by
3470 * get_keystroke() */
3471 out_flush();
3472 (void)vpeekc_nomap();
3473 }
3474}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003475
3476# if defined(FEAT_MBYTE) || defined(PROTO)
3477/*
3478 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003479 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003480 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003481 * If the terminal treats \u25bd as single width, the position is (1, 1),
3482 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003483 * This function has the side effect that changes cursor position, so
3484 * it must be called immediately after entering termcap mode.
3485 */
3486 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003487may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003488{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003489 if (u7_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003490 && can_get_termresponse()
3491 && starting == 0
Bram Moolenaar9584b312013-03-13 19:29:28 +01003492 && *T_U7 != NUL
3493 && !option_was_set((char_u *)"ambiwidth"))
3494 {
3495 char_u buf[16];
3496
Bram Moolenaar2951b772013-07-03 12:45:31 +02003497 LOG_TR("Sending U7 request");
3498 /* Do this in the second row. In the first row the returned sequence
3499 * may be CSI 1;2R, which is the same as <S-F3>. */
3500 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003501 buf[mb_char2bytes(0x25bd, buf)] = 0;
3502 out_str(buf);
3503 out_str(T_U7);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003504 u7_status = STATUS_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003505 out_flush();
Bram Moolenaar976787d2017-06-04 15:45:50 +02003506
3507 /* This overwrites a few characters on the screen, a redraw is needed
3508 * after this. Clear them out for now. */
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003509 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003510 out_str((char_u *)" ");
3511 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003512
Bram Moolenaar9584b312013-03-13 19:29:28 +01003513 /* check for the characters now, otherwise they might be eaten by
3514 * get_keystroke() */
3515 out_flush();
3516 (void)vpeekc_nomap();
3517 }
3518}
3519# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003520
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003521/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003522 * Similar to requesting the version string: Request the terminal background
3523 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003524 */
3525 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003526may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003527{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003528 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003529 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003530 int didit = FALSE;
3531
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003532# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003533 /* Only request foreground if t_RF is set. */
3534 if (rfg_status == STATUS_GET && *T_RFG != NUL)
3535 {
3536 LOG_TR("Sending FG request");
3537 out_str(T_RFG);
3538 rfg_status = STATUS_SENT;
3539 didit = TRUE;
3540 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003541# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003542
3543 /* Only request background if t_RB is set. */
3544 if (rbg_status == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003545 {
3546 LOG_TR("Sending BG request");
3547 out_str(T_RBG);
3548 rbg_status = STATUS_SENT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003549 didit = TRUE;
3550 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003551
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003552 if (didit)
3553 {
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003554 /* check for the characters now, otherwise they might be eaten by
3555 * get_keystroke() */
3556 out_flush();
3557 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003558 }
3559 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003560}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003561
Bram Moolenaar2951b772013-07-03 12:45:31 +02003562# ifdef DEBUG_TERMRESPONSE
3563 static void
3564log_tr(char *msg)
3565{
3566 static FILE *fd_tr = NULL;
3567 static proftime_T start;
3568 proftime_T now;
3569
3570 if (fd_tr == NULL)
3571 {
3572 fd_tr = fopen("termresponse.log", "w");
3573 profile_start(&start);
3574 }
3575 now = start;
3576 profile_end(&now);
3577 fprintf(fd_tr, "%s: %s %s\n",
3578 profile_msg(&now),
3579 must_redraw == NOT_VALID ? "NV"
3580 : must_redraw == CLEAR ? "CL" : " ",
3581 msg);
3582}
3583# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584#endif
3585
3586/*
3587 * Return TRUE when saving and restoring the screen.
3588 */
3589 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003590swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591{
3592 return (full_screen && *T_TI != NUL);
3593}
3594
3595#ifdef FEAT_MOUSE
3596/*
3597 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3598 */
3599 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003600setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601{
3602# ifdef FEAT_MOUSE_TTY
3603 int checkfor;
3604# endif
3605
3606# ifdef FEAT_MOUSESHAPE
3607 update_mouseshape(-1);
3608# endif
3609
3610# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3611# ifdef FEAT_GUI
3612 /* In the GUI the mouse is always enabled. */
3613 if (gui.in_use)
3614 return;
3615# endif
3616 /* be quick when mouse is off */
3617 if (*p_mouse == NUL || has_mouse_termcode == 0)
3618 return;
3619
3620 /* don't switch mouse on when not in raw mode (Ex mode) */
3621 if (cur_tmode != TMODE_RAW)
3622 {
3623 mch_setmouse(FALSE);
3624 return;
3625 }
3626
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 if (VIsual_active)
3628 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003629 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 checkfor = MOUSE_RETURN;
3631 else if (State & INSERT)
3632 checkfor = MOUSE_INSERT;
3633 else if (State & CMDLINE)
3634 checkfor = MOUSE_COMMAND;
3635 else if (State == CONFIRM || State == EXTERNCMD)
3636 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3637 else
3638 checkfor = MOUSE_NORMAL; /* assume normal mode */
3639
3640 if (mouse_has(checkfor))
3641 mch_setmouse(TRUE);
3642 else
3643 mch_setmouse(FALSE);
3644# endif
3645}
3646
3647/*
3648 * Return TRUE if
3649 * - "c" is in 'mouse', or
3650 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3651 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3652 * normal editing mode (not at hit-return message).
3653 */
3654 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003655mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656{
3657 char_u *p;
3658
3659 for (p = p_mouse; *p; ++p)
3660 switch (*p)
3661 {
3662 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3663 return TRUE;
3664 break;
3665 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3666 return TRUE;
3667 break;
3668 default: if (c == *p) return TRUE; break;
3669 }
3670 return FALSE;
3671}
3672
3673/*
3674 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3675 */
3676 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003677mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678{
3679 return (p_mousem[0] == 'p');
3680}
3681#endif
3682
3683/*
3684 * By outputting the 'cursor very visible' termcap code, for some windowed
3685 * terminals this makes the screen scrolled to the correct position.
3686 * Used when starting Vim or returning from a shell.
3687 */
3688 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003689scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003691 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 {
3693 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003694 out_str(T_CVS);
3695 screen_start(); /* don't know where cursor is now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 }
3697}
3698
3699static int cursor_is_off = FALSE;
3700
3701/*
3702 * Enable the cursor.
3703 */
3704 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003705cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706{
3707 if (cursor_is_off)
3708 {
3709 out_str(T_VE);
3710 cursor_is_off = FALSE;
3711 }
3712}
3713
3714/*
3715 * Disable the cursor.
3716 */
3717 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003718cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003720 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 {
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003722 out_str(T_VI); /* disable cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 cursor_is_off = TRUE;
3724 }
3725}
3726
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003727#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003729 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003730 */
3731 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003732term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003733{
Bram Moolenaarc9770922017-08-12 20:11:53 +02003734 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003735 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003736
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003737 /* Only do something when redrawing the screen and we can restore the
3738 * mode. */
3739 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003740 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003741# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003742 if (forced && initial_cursor_shape > 0)
3743 /* Restore to initial values. */
3744 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003745# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003746 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003747 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003748
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003749 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003750 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003751 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003752 {
3753 if (*T_CSR != NUL)
3754 p = T_CSR; /* Replace mode cursor */
3755 else
3756 p = T_CSI; /* fall back to Insert mode cursor */
3757 if (*p != NUL)
3758 {
3759 out_str(p);
3760 showing_mode = REPLACE;
3761 }
3762 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003763 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003764 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003765 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003766 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003767 {
3768 out_str(T_CSI); /* Insert mode cursor */
3769 showing_mode = INSERT;
3770 }
3771 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003772 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003773 {
3774 out_str(T_CEI); /* non-Insert mode cursor */
3775 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003776 }
3777}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003778
3779# if defined(FEAT_TERMINAL) || defined(PROTO)
3780 void
3781term_cursor_color(char_u *color)
3782{
3783 if (*T_CSC != NUL)
3784 {
3785 out_str(T_CSC); /* set cursor color start */
3786 out_str_nf(color);
3787 out_str(T_CEC); /* set cursor color end */
3788 out_flush();
3789 }
3790}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02003791# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003792
Bram Moolenaar4db25542017-08-28 22:43:05 +02003793 int
3794blink_state_is_inverted()
3795{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003796#ifdef FEAT_TERMRESPONSE
Bram Moolenaar4db25542017-08-28 22:43:05 +02003797 return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
3798 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003799#else
3800 return FALSE;
3801#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02003802}
3803
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003804/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003805 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003806 */
3807 void
3808term_cursor_shape(int shape, int blink)
3809{
3810 if (*T_CSH != NUL)
3811 {
3812 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
3813 out_flush();
3814 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02003815 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003816 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02003817 int do_blink = blink;
3818
3819 /* t_SH is empty: try setting just the blink state.
3820 * The blink flags are XORed together, if the initial blinking from
3821 * style and shape differs, we need to invert the flag here. */
3822 if (blink_state_is_inverted())
3823 do_blink = !blink;
3824
3825 if (do_blink && *T_VS != NUL)
3826 {
3827 out_str(T_VS);
3828 out_flush();
3829 }
3830 else if (!do_blink && *T_CVS != NUL)
3831 {
3832 out_str(T_CVS);
3833 out_flush();
3834 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003835 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003836}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003837#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003838
3839/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 * Set scrolling region for window 'wp'.
3841 * The region starts 'off' lines from the start of the window.
3842 * Also set the vertical scroll region for a vertically split window. Always
3843 * the full width of the window, excluding the vertical separator.
3844 */
3845 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003846scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847{
3848 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3849 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003851 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
3852 wp->w_wincol));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 screen_start(); /* don't know where cursor is now */
3854}
3855
3856/*
3857 * Reset scrolling region to the whole screen.
3858 */
3859 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003860scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861{
3862 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 if (*T_CSV != NUL)
3864 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 screen_start(); /* don't know where cursor is now */
3866}
3867
3868
3869/*
3870 * List of terminal codes that are currently recognized.
3871 */
3872
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003873static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874{
3875 char_u name[2]; /* termcap name of entry */
3876 char_u *code; /* terminal code (in allocated memory) */
3877 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003878 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879} *termcodes = NULL;
3880
3881static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3882static int tc_len = 0; /* current number of entries in termcodes[] */
3883
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003884static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003885
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003887clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888{
3889 while (tc_len > 0)
3890 vim_free(termcodes[--tc_len].code);
3891 vim_free(termcodes);
3892 termcodes = NULL;
3893 tc_max_len = 0;
3894
3895#ifdef HAVE_TGETENT
3896 BC = (char *)empty_option;
3897 UP = (char *)empty_option;
3898 PC = NUL; /* set pad character to NUL */
3899 ospeed = 0;
3900#endif
3901
3902 need_gather = TRUE; /* need to fill termleader[] */
3903}
3904
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003905#define ATC_FROM_TERM 55
3906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907/*
3908 * Add a new entry to the list of terminal codes.
3909 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003910 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3911 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 */
3913 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003914add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915{
3916 struct termcode *new_tc;
3917 int i, j;
3918 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003919 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920
3921 if (string == NULL || *string == NUL)
3922 {
3923 del_termcode(name);
3924 return;
3925 }
3926
Bram Moolenaar45500912014-07-09 20:51:07 +02003927#if defined(WIN3264) && !defined(FEAT_GUI)
3928 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 if (s == NULL)
3933 return;
3934
3935 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003936 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003938 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 s[0] = term_7to8bit(string);
3940 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003941
3942#if defined(WIN3264) && !defined(FEAT_GUI)
3943 if (s[0] == K_NUL)
3944 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003945 STRMOVE(s + 1, s);
3946 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02003947 }
3948#endif
3949
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003950 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951
3952 need_gather = TRUE; /* need to fill termleader[] */
3953
3954 /*
3955 * need to make space for more entries
3956 */
3957 if (tc_len == tc_max_len)
3958 {
3959 tc_max_len += 20;
3960 new_tc = (struct termcode *)alloc(
3961 (unsigned)(tc_max_len * sizeof(struct termcode)));
3962 if (new_tc == NULL)
3963 {
3964 tc_max_len -= 20;
3965 return;
3966 }
3967 for (i = 0; i < tc_len; ++i)
3968 new_tc[i] = termcodes[i];
3969 vim_free(termcodes);
3970 termcodes = new_tc;
3971 }
3972
3973 /*
3974 * Look for existing entry with the same name, it is replaced.
3975 * Look for an existing entry that is alphabetical higher, the new entry
3976 * is inserted in front of it.
3977 */
3978 for (i = 0; i < tc_len; ++i)
3979 {
3980 if (termcodes[i].name[0] < name[0])
3981 continue;
3982 if (termcodes[i].name[0] == name[0])
3983 {
3984 if (termcodes[i].name[1] < name[1])
3985 continue;
3986 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003987 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 */
3989 if (termcodes[i].name[1] == name[1])
3990 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003991 if (flags == ATC_FROM_TERM && (j = termcode_star(
3992 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003993 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003994 /* Don't replace ESC[123;*X or ESC O*X with another when
3995 * invoked from got_code_from_term(). */
3996 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003997 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003998 && s[len - 1]
3999 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004000 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004001 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004002 vim_free(s);
4003 return;
4004 }
4005 }
4006 else
4007 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004008 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004009 vim_free(termcodes[i].code);
4010 --tc_len;
4011 break;
4012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 }
4014 }
4015 /*
4016 * Found alphabetical larger entry, move rest to insert new entry
4017 */
4018 for (j = tc_len; j > i; --j)
4019 termcodes[j] = termcodes[j - 1];
4020 break;
4021 }
4022
4023 termcodes[i].name[0] = name[0];
4024 termcodes[i].name[1] = name[1];
4025 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004026 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004027
4028 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4029 * accept modifiers. */
4030 termcodes[i].modlen = 0;
4031 j = termcode_star(s, len);
4032 if (j > 0)
4033 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 ++tc_len;
4035}
4036
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004037/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004038 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004039 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004040 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004041 */
4042 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004043termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004044{
4045 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
4046 if (len >= 3 && code[len - 2] == '*')
4047 {
4048 if (len >= 5 && code[len - 3] == ';')
4049 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004050 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004051 return 1;
4052 }
4053 return 0;
4054}
4055
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004057find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058{
4059 int i;
4060
4061 for (i = 0; i < tc_len; ++i)
4062 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4063 return termcodes[i].code;
4064 return NULL;
4065}
4066
4067#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4068 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004069get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070{
4071 if (i >= tc_len)
4072 return NULL;
4073 return &termcodes[i].name[0];
4074}
4075#endif
4076
4077 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004078del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079{
4080 int i;
4081
4082 if (termcodes == NULL) /* nothing there yet */
4083 return;
4084
4085 need_gather = TRUE; /* need to fill termleader[] */
4086
4087 for (i = 0; i < tc_len; ++i)
4088 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4089 {
4090 del_termcode_idx(i);
4091 return;
4092 }
4093 /* not found. Give error message? */
4094}
4095
4096 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004097del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098{
4099 int i;
4100
4101 vim_free(termcodes[idx].code);
4102 --tc_len;
4103 for (i = idx; i < tc_len; ++i)
4104 termcodes[i] = termcodes[i + 1];
4105}
4106
4107#ifdef FEAT_TERMRESPONSE
4108/*
4109 * Called when detected that the terminal sends 8-bit codes.
4110 * Convert all 7-bit codes to their 8-bit equivalent.
4111 */
4112 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004113switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114{
4115 int i;
4116 int c;
4117
4118 /* Only need to do something when not already using 8-bit codes. */
4119 if (!term_is_8bit(T_NAME))
4120 {
4121 for (i = 0; i < tc_len; ++i)
4122 {
4123 c = term_7to8bit(termcodes[i].code);
4124 if (c != 0)
4125 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004126 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 termcodes[i].code[0] = c;
4128 }
4129 }
4130 need_gather = TRUE; /* need to fill termleader[] */
4131 }
4132 detected_8bit = TRUE;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004133 LOG_TR("Switching to 8 bit");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134}
4135#endif
4136
4137#ifdef CHECK_DOUBLE_CLICK
4138static linenr_T orig_topline = 0;
4139# ifdef FEAT_DIFF
4140static int orig_topfill = 0;
4141# endif
4142#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004143#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144/*
4145 * Checking for double clicks ourselves.
4146 * "orig_topline" is used to avoid detecting a double-click when the window
4147 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4148 */
4149/*
4150 * Set orig_topline. Used when jumping to another window, so that a double
4151 * click still works.
4152 */
4153 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004154set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155{
4156 orig_topline = wp->w_topline;
4157# ifdef FEAT_DIFF
4158 orig_topfill = wp->w_topfill;
4159# endif
4160}
4161#endif
4162
4163/*
4164 * Check if typebuf.tb_buf[] contains a terminal key code.
4165 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4166 * + max_offset].
4167 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004168 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 * With a match, the match is removed, the replacement code is inserted in
4170 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4171 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004172 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4173 * "buflen" is then the length of the string in buf[] and is updated for
4174 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 */
4176 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004177check_termcode(
4178 int max_offset,
4179 char_u *buf,
4180 int bufsize,
4181 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182{
4183 char_u *tp;
4184 char_u *p;
4185 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004186 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004188 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 int offset;
4190 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004191 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02004192 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004193 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 int new_slen;
4195 int extra;
4196 char_u string[MAX_KEY_CODE_LEN + 1];
4197 int i, j;
4198 int idx = 0;
4199#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004200# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4201 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 char_u bytes[6];
4203 int num_bytes;
4204# endif
4205 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 int is_click, is_drag;
4207 int wheel_code = 0;
4208 int current_button;
4209 static int held_button = MOUSE_RELEASE;
4210 static int orig_num_clicks = 1;
4211 static int orig_mouse_code = 0x0;
4212# ifdef CHECK_DOUBLE_CLICK
4213 static int orig_mouse_col = 0;
4214 static int orig_mouse_row = 0;
4215 static struct timeval orig_mouse_time = {0, 0};
4216 /* time of previous mouse click */
4217 struct timeval mouse_time; /* time of current mouse click */
4218 long timediff; /* elapsed time in msec */
4219# endif
4220#endif
4221 int cpo_koffset;
4222#ifdef FEAT_MOUSE_GPM
4223 extern int gpm_flag; /* gpm library variable */
4224#endif
4225
4226 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4227
4228 /*
4229 * Speed up the checks for terminal codes by gathering all first bytes
4230 * used in termleader[]. Often this is just a single <Esc>.
4231 */
4232 if (need_gather)
4233 gather_termleader();
4234
4235 /*
4236 * Check at several positions in typebuf.tb_buf[], to catch something like
4237 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4238 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004239 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 * This is used often, KEEP IT FAST!
4241 */
4242 for (offset = 0; offset < max_offset; ++offset)
4243 {
4244 if (buf == NULL)
4245 {
4246 if (offset >= typebuf.tb_len)
4247 break;
4248 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4249 len = typebuf.tb_len - offset; /* length of the input */
4250 }
4251 else
4252 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004253 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 break;
4255 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004256 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 }
4258
4259 /*
4260 * Don't check characters after K_SPECIAL, those are already
4261 * translated terminal chars (avoid translating ~@^Hx).
4262 */
4263 if (*tp == K_SPECIAL)
4264 {
4265 offset += 2; /* there are always 2 extra characters */
4266 continue;
4267 }
4268
4269 /*
4270 * Skip this position if the character does not appear as the first
4271 * character in term_strings. This speeds up a lot, since most
4272 * termcodes start with the same character (ESC or CSI).
4273 */
4274 i = *tp;
4275 for (p = termleader; *p && *p != i; ++p)
4276 ;
4277 if (*p == NUL)
4278 continue;
4279
4280 /*
4281 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4282 * are in Insert mode.
4283 */
4284 if (*tp == ESC && !p_ek && (State & INSERT))
4285 continue;
4286
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004288 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004289 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290
4291#ifdef FEAT_GUI
4292 if (gui.in_use)
4293 {
4294 /*
4295 * GUI special key codes are all of the form [CSI xx].
4296 */
4297 if (*tp == CSI) /* Special key from GUI */
4298 {
4299 if (len < 3)
4300 return -1; /* Shouldn't happen */
4301 slen = 3;
4302 key_name[0] = tp[1];
4303 key_name[1] = tp[2];
4304 }
4305 }
4306 else
4307#endif /* FEAT_GUI */
4308 {
4309 for (idx = 0; idx < tc_len; ++idx)
4310 {
4311 /*
4312 * Ignore the entry if we are not at the start of
4313 * typebuf.tb_buf[]
4314 * and there are not enough characters to make a match.
4315 * But only when the 'K' flag is in 'cpoptions'.
4316 */
4317 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004318 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 if (cpo_koffset && offset && len < slen)
4320 continue;
4321 if (STRNCMP(termcodes[idx].code, tp,
4322 (size_t)(slen > len ? len : slen)) == 0)
4323 {
4324 if (len < slen) /* got a partial sequence */
4325 return -1; /* need to get more chars */
4326
4327 /*
4328 * When found a keypad key, check if there is another key
4329 * that matches and use that one. This makes <Home> to be
4330 * found instead of <kHome> when they produce the same
4331 * key code.
4332 */
4333 if (termcodes[idx].name[0] == 'K'
4334 && VIM_ISDIGIT(termcodes[idx].name[1]))
4335 {
4336 for (j = idx + 1; j < tc_len; ++j)
4337 if (termcodes[j].len == slen &&
4338 STRNCMP(termcodes[idx].code,
4339 termcodes[j].code, slen) == 0)
4340 {
4341 idx = j;
4342 break;
4343 }
4344 }
4345
4346 key_name[0] = termcodes[idx].name[0];
4347 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 break;
4349 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004350
4351 /*
4352 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004353 * <Esc>[123;*X (modslen == slen - 3)
4354 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4355 * When there is a modifier the * matches a number.
4356 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004357 */
4358 if (termcodes[idx].modlen > 0)
4359 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004360 modslen = termcodes[idx].modlen;
4361 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004362 continue;
4363 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004364 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004365 {
4366 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004367
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004368 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004369 return -1; /* need to get more chars */
4370
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004371 if (tp[modslen] == termcodes[idx].code[slen - 1])
4372 slen = modslen + 1; /* no modifiers */
4373 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004374 continue; /* no match */
4375 else
4376 {
4377 /* Skip over the digits, the final char must
4378 * follow. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004379 for (j = slen - 2; j < len && (isdigit(tp[j])
4380 || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004381 ;
4382 ++j;
4383 if (len < j) /* got a partial sequence */
4384 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004385 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4386 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004387
Bram Moolenaara529ce02017-06-22 22:37:57 +02004388 modifiers_start = tp + slen - 2;
4389
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004390 /* Match! Convert modifier bits. */
Bram Moolenaara529ce02017-06-22 22:37:57 +02004391 n = atoi((char *)modifiers_start) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004392 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004393 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004394 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004395 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004396 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004397 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004398 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004399 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004400
4401 slen = j;
4402 }
4403 key_name[0] = termcodes[idx].name[0];
4404 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004405 break;
4406 }
4407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 }
4409 }
4410
4411#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004412 if (key_name[0] == NUL
Bram Moolenaara529ce02017-06-22 22:37:57 +02004413 /* Mouse codes of DEC and pterm start with <ESC>[. When
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004414 * detecting the start of these mouse codes they might as well be
4415 * another key code or terminal response. */
4416# ifdef FEAT_MOUSE_DEC
4417 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004418# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004419# ifdef FEAT_MOUSE_PTERM
4420 || key_name[0] == KS_PTERM_MOUSE
4421# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004422 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004424 /* Check for some responses from the terminal starting with
4425 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004426 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004427 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004428 * Libvterm returns {x} == 0, {vers} == 100, {y} == 0.
Bram Moolenaar9584b312013-03-13 19:29:28 +01004429 * Also eat other possible responses to t_RV, rxvt returns
4430 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4431 * mrxvt has been reported to have "+" in the version. Assume
4432 * the escape sequence ends with a letter or one of "{|}~".
4433 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004434 * - Cursor position report: <Esc>[{row};{col}R
4435 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004436 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004437 *
4438 * - window position reply: <Esc>[3;{x};{y}t
Bram Moolenaar9584b312013-03-13 19:29:28 +01004439 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004440 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004441
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004442 if ((*T_CRV != NUL || *T_U7 != NUL || waiting_for_winpos)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004443 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004444 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004445 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 {
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004447 int col = 0;
4448 int semicols = 0;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004449#ifdef FEAT_MBYTE
Bram Moolenaarc41053062014-03-25 13:46:26 +01004450 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004451#endif
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004452
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004454 for (i = 2 + (tp[0] != CSI); i < len
4455 && !(tp[i] >= '{' && tp[i] <= '~')
4456 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004457 if (tp[i] == ';' && ++semicols == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004458 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004459 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004460#ifdef FEAT_MBYTE
4461 row_char = tp[i - 1];
4462#endif
4463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004465 {
4466 LOG_TR("Not enough characters for CRV");
4467 return -1;
4468 }
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004469 if (extra > 0)
4470 col = atoi((char *)tp + extra);
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004471
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004472#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004473 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4474 * u7_status is not "sent", it may be from a previous Vim that
4475 * just exited. But not for <S-F3>, it sends something
4476 * similar, check for row and column to make sense. */
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004477 if (semicols == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004478 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004479 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004480 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004481 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004482
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004483 LOG_TR("Received U7 status");
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004484 u7_status = STATUS_GOT;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004485# ifdef FEAT_AUTOCMD
4486 did_cursorhold = TRUE;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004487# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004488 if (col == 2)
4489 aw = "single";
4490 else if (col == 3)
4491 aw = "double";
4492 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4493 {
4494 /* Setting the option causes a screen redraw. Do
4495 * that right away if possible, keeping any
4496 * messages. */
4497 set_option_value((char_u *)"ambw", 0L,
4498 (char_u *)aw, 0);
4499# ifdef DEBUG_TERMRESPONSE
4500 {
4501 char buf[100];
4502 int r = redraw_asap(CLEAR);
4503
4504 sprintf(buf,
4505 "set 'ambiwidth', redraw_asap(): %d",
4506 r);
4507 log_tr(buf);
4508 }
4509# else
4510 redraw_asap(CLEAR);
4511# endif
4512 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004513 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004514 key_name[0] = (int)KS_EXTRA;
4515 key_name[1] = (int)KE_IGNORE;
4516 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004517# ifdef FEAT_EVAL
4518 set_vim_var_string(VV_TERMU7RESP, tp, slen);
4519# endif
Bram Moolenaar9584b312013-03-13 19:29:28 +01004520 }
4521 else
4522#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004524 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 {
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004526 int version = col;
4527
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004528 LOG_TR("Received CRV response");
4529 crv_status = STATUS_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004530# ifdef FEAT_AUTOCMD
4531 did_cursorhold = TRUE;
4532# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533
4534 /* If this code starts with CSI, you can bet that the
4535 * terminal uses 8-bit codes. */
4536 if (tp[0] == CSI)
4537 switch_to_8bit();
4538
4539 /* rxvt sends its version number: "20703" is 2.7.3.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004540 * Screen sends 40500.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 * Ignore it for when the user has set 'term' to xterm,
4542 * even though it's an rxvt. */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004543 if (version > 20000)
4544 version = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004546 if (tp[1 + (tp[0] != CSI)] == '>' && semicols == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004548 int need_flush = FALSE;
4549
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004550 /* Only set 'ttymouse' automatically if it was not set
4551 * by the user already. */
4552 if (!option_was_set((char_u *)"ttym"))
4553 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004554# ifdef TTYM_SGR
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004555 if (version >= 277)
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004556 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004557 (char_u *)"sgr", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004558 else
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004559# endif
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004560 /* if xterm version >= 95 use mouse dragging */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004561 if (version >= 95)
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004562 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 (char_u *)"xterm2", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004564 }
4565
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 /* if xterm version >= 141 try to get termcap codes */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004567 if (version >= 141)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004569 LOG_TR("Enable checking for XT codes");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 check_for_codes = TRUE;
4571 need_gather = TRUE;
4572 req_codes_from_term();
4573 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004574
4575 /* libvterm sends 0;100;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004576 if (version == 100
Bram Moolenaare9224602017-08-26 15:29:47 +02004577 && STRNCMP(tp + extra - 2, "0;100;0c", 8) == 0)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004578 {
4579 /* If run from Vim $COLORS is set to the number of
4580 * colors the terminal supports. Otherwise assume
4581 * 256, libvterm supports even more. */
4582 if (mch_getenv((char_u *)"COLORS") == NULL)
4583 may_adjust_color_count(256);
4584 }
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004585
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004586 /* Detect terminals that set $TERM to something like
4587 * "xterm-256colors" but are not fully xterm
4588 * compatible. */
Bram Moolenaarc2127982017-09-11 20:34:13 +02004589
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004590 /* Mac Terminal.app sends 1;95;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004591 if (version == 95
Bram Moolenaare9224602017-08-26 15:29:47 +02004592 && STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0)
Bram Moolenaara0a6f272017-10-04 18:04:16 +02004593 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004594 is_not_xterm = TRUE;
Bram Moolenaara0a6f272017-10-04 18:04:16 +02004595 is_mac_terminal = TRUE;
4596 }
Bram Moolenaarc2127982017-09-11 20:34:13 +02004597
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004598 /* Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004599 * xfce4-terminal sends 1;2802;0.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004600 * screen sends 83;40500;0
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004601 * Assuming any version number over 2500 is not an
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004602 * xterm (without the limit for rxvt and screen). */
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004603 if (col >= 2500)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004604 is_not_xterm = TRUE;
4605
Bram Moolenaar2e49b6b2017-09-06 22:08:16 +02004606 /* PuTTY sends 0;136;0
4607 * vandyke SecureCRT sends 1;136;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004608 if (version == 136
Bram Moolenaar618d6d22017-09-07 12:59:25 +02004609 && STRNCMP(tp + extra - 1, ";136;0c", 7) == 0)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004610 is_not_xterm = TRUE;
4611
4612 /* Konsole sends 0;115;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004613 if (version == 115
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004614 && STRNCMP(tp + extra - 2, "0;115;0c", 8) == 0)
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004615 is_not_xterm = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004616
4617 /* Only request the cursor style if t_SH and t_RS are
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004618 * set. Only supported properly by xterm since version
4619 * 279 (otherwise it returns 0x18).
4620 * Not for Terminal.app, it can't handle t_RS, it
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004621 * echoes the characters to the screen. */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004622 if (rcs_status == STATUS_GET
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004623 && version >= 279
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004624 && !is_not_xterm
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004625 && *T_CSH != NUL
4626 && *T_CRS != NUL)
4627 {
4628 LOG_TR("Sending cursor style request");
4629 out_str(T_CRS);
Bram Moolenaar4db25542017-08-28 22:43:05 +02004630 rcs_status = STATUS_SENT;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004631 need_flush = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004632 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004633
4634 /* Only request the cursor blink mode if t_RC set. Not
4635 * for Gnome terminal, it can't handle t_RC, it
4636 * echoes the characters to the screen. */
4637 if (rbm_status == STATUS_GET
4638 && !is_not_xterm
4639 && *T_CRC != NUL)
4640 {
4641 LOG_TR("Sending cursor blink mode request");
4642 out_str(T_CRC);
4643 rbm_status = STATUS_SENT;
4644 need_flush = TRUE;
4645 }
4646
4647 if (need_flush)
4648 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004650 slen = i + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651# ifdef FEAT_EVAL
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004652 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653# endif
4654# ifdef FEAT_AUTOCMD
4655 apply_autocmds(EVENT_TERMRESPONSE,
4656 NULL, NULL, FALSE, curbuf);
4657# endif
4658 key_name[0] = (int)KS_EXTRA;
4659 key_name[1] = (int)KE_IGNORE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 }
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004661
Bram Moolenaar4db25542017-08-28 22:43:05 +02004662 /* Check blinking cursor from xterm:
4663 * {lead}?12;1$y set
4664 * {lead}?12;2$y not set
4665 *
4666 * {lead} can be <Esc>[ or CSI
4667 */
4668 else if (rbm_status == STATUS_SENT
4669 && tp[(j = 1 + (tp[0] == ESC))] == '?'
4670 && i == j + 6
4671 && tp[j + 1] == '1'
4672 && tp[j + 2] == '2'
4673 && tp[j + 3] == ';'
4674 && tp[i - 1] == '$'
4675 && tp[i] == 'y')
4676 {
4677 initial_cursor_blink = (tp[j + 4] == '1');
4678 rbm_status = STATUS_GOT;
4679 LOG_TR("Received cursor blinking mode response");
4680 key_name[0] = (int)KS_EXTRA;
4681 key_name[1] = (int)KE_IGNORE;
4682 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004683# ifdef FEAT_EVAL
4684 set_vim_var_string(VV_TERMBLINKRESP, tp, slen);
4685# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004686 }
4687
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004688 /*
4689 * Check for a window position response from the terminal:
4690 * {lead}3;{x}:{y}t
4691 */
4692 else if (waiting_for_winpos
4693 && ((len >= 4 && tp[0] == ESC && tp[1] == '[')
4694 || (len >= 3 && tp[0] == CSI))
4695 && tp[(j = 1 + (tp[0] == ESC))] == '3'
4696 && tp[j + 1] == ';')
4697 {
4698 j += 2;
4699 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4700 ;
4701 if (i < len && tp[i] == ';')
4702 {
4703 winpos_x = atoi((char *)tp + j);
4704 j = i + 1;
4705 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4706 ;
4707 if (i < len && tp[i] == 't')
4708 {
4709 winpos_y = atoi((char *)tp + j);
4710 /* got finished code: consume it */
4711 key_name[0] = (int)KS_EXTRA;
4712 key_name[1] = (int)KE_IGNORE;
4713 slen = i + 1;
4714 }
4715 }
4716 if (i == len)
4717 {
4718 LOG_TR("not enough characters for winpos");
4719 return -1;
4720 }
4721 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004722 }
4723
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004724 /* Check for fore/background color response from the terminal:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004725 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004726 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004727 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004728 * {code} is 10 for foreground, 11 for background
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004729 * {lead} can be <Esc>] or OSC
4730 * {tail} can be '\007', <Esc>\ or STERM.
4731 *
4732 * Consume any code that starts with "{lead}11;", it's also
4733 * possible that "rgba" is following.
4734 */
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004735 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004736 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4737 || tp[0] == OSC))
4738 {
4739 j = 1 + (tp[0] == ESC);
4740 if (len >= j + 3 && (argp[0] != '1'
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004741 || (argp[1] != '1' && argp[1] != '0')
4742 || argp[2] != ';'))
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004743 i = 0; /* no match */
4744 else
4745 for (i = j; i < len; ++i)
4746 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4747 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004748 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004749 int is_bg = argp[1] == '1';
4750
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004751 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004752 && tp[j + 11] == '/' && tp[j + 16] == '/')
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004753 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004754 int rval = hexhex2nr(tp + j + 7);
4755 int gval = hexhex2nr(tp + j + 12);
4756 int bval = hexhex2nr(tp + j + 17);
4757
4758 if (is_bg)
4759 {
4760 char *newval = (3 * '6' < tp[j+7] + tp[j+12]
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004761 + tp[j+17]) ? "light" : "dark";
4762
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004763 LOG_TR("Received RBG response");
4764 rbg_status = STATUS_GOT;
4765#ifdef FEAT_TERMINAL
4766 bg_r = rval;
4767 bg_g = gval;
4768 bg_b = bval;
4769#endif
4770 if (!option_was_set((char_u *)"bg")
4771 && STRCMP(p_bg, newval) != 0)
4772 {
4773 /* value differs, apply it */
4774 set_option_value((char_u *)"bg", 0L,
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004775 (char_u *)newval, 0);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004776 reset_option_was_set((char_u *)"bg");
4777 redraw_asap(CLEAR);
4778 }
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004779 }
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004780#ifdef FEAT_TERMINAL
4781 else
4782 {
4783 LOG_TR("Received RFG response");
4784 rfg_status = STATUS_GOT;
4785 fg_r = rval;
4786 fg_g = gval;
4787 fg_b = bval;
4788 }
4789#endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004790 }
4791
4792 /* got finished code: consume it */
4793 key_name[0] = (int)KS_EXTRA;
4794 key_name[1] = (int)KE_IGNORE;
4795 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004796# ifdef FEAT_EVAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004797 set_vim_var_string(is_bg ? VV_TERMRBGRESP
4798 : VV_TERMRFGRESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004799# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004800 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004801 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004802 if (i == len)
4803 {
4804 LOG_TR("not enough characters for RB");
4805 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004806 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 }
4808
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004809 /* Check for key code response from xterm:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004810 * {lead}{flag}+r<hex bytes><{tail}
4811 *
4812 * {lead} can be <Esc>P or DCS
4813 * {flag} can be '0' or '1'
4814 * {tail} can be Esc>\ or STERM
4815 *
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004816 * Check for cursor shape response from xterm:
4817 * {lead}1$r<number> q{tail}
4818 *
4819 * {lead} can be <Esc>P or DCS
4820 * {tail} can be Esc>\ or STERM
4821 *
4822 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004823 */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004824 else if ((check_for_codes || rcs_status == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004825 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 || tp[0] == DCS))
4827 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004828 j = 1 + (tp[0] == ESC);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004829 if (len < j + 3)
4830 i = len; /* need more chars */
4831 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004832 i = 0; /* no match */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004833 else if (argp[1] == '+')
4834 /* key code response */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004835 for (i = j; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004836 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004837 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 || tp[i] == STERM)
4839 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004840 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 got_code_from_term(tp + j, i);
4842 key_name[0] = (int)KS_EXTRA;
4843 key_name[1] = (int)KE_IGNORE;
4844 slen = i + 1 + (tp[i] == ESC);
4845 break;
4846 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004847 }
4848 else if ((len >= j + 6 && isdigit(argp[3]))
4849 && argp[4] == ' '
4850 && argp[5] == 'q')
4851 {
4852 /* cursor shape response */
4853 i = j + 6;
4854 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
4855 || tp[i] == STERM)
4856 {
4857 int number = argp[3] - '0';
4858
4859 /* 0, 1 = block blink, 2 = block
4860 * 3 = underline blink, 4 = underline
4861 * 5 = vertical bar blink, 6 = vertical bar */
4862 number = number == 0 ? 1 : number;
4863 initial_cursor_shape = (number + 1) / 2;
Bram Moolenaarce1c3272017-08-20 15:05:15 +02004864 /* The blink flag is actually inverted, compared to
4865 * the value set with T_SH. */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004866 initial_cursor_shape_blink =
4867 (number & 1) ? FALSE : TRUE;
4868 rcs_status = STATUS_GOT;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004869 LOG_TR("Received cursor shape response");
4870
4871 key_name[0] = (int)KS_EXTRA;
4872 key_name[1] = (int)KE_IGNORE;
4873 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004874# ifdef FEAT_EVAL
4875 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
4876# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004877 }
4878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879
4880 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004881 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004882 /* These codes arrive many together, each code can be
4883 * truncated at any point. */
Bram Moolenaar2951b772013-07-03 12:45:31 +02004884 LOG_TR("not enough characters for XT");
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004885 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004886 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 }
4888 }
4889#endif
4890
4891 if (key_name[0] == NUL)
4892 continue; /* No match at this position, try next one */
4893
4894 /* We only get here when we have a complete termcode match */
4895
4896#ifdef FEAT_MOUSE
4897# ifdef FEAT_GUI
4898 /*
4899 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4900 * so that we know which window to scroll later.
4901 */
4902 if (gui.in_use
4903 && key_name[0] == (int)KS_EXTRA
4904 && (key_name[1] == (int)KE_X1MOUSE
4905 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004906 || key_name[1] == (int)KE_MOUSELEFT
4907 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 || key_name[1] == (int)KE_MOUSEDOWN
4909 || key_name[1] == (int)KE_MOUSEUP))
4910 {
4911 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4912 if (num_bytes == -1) /* not enough coordinates */
4913 return -1;
4914 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4915 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4916 slen += num_bytes;
4917 }
4918 else
4919# endif
4920 /*
4921 * If it is a mouse click, get the coordinates.
4922 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004923 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004925 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926# endif
4927# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004928 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929# endif
4930# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004931 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932# endif
4933# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004934 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004936# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004937 || key_name[0] == KS_URXVT_MOUSE
4938# endif
4939# ifdef FEAT_MOUSE_SGR
4940 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02004941 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004942# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 )
4944 {
4945 is_click = is_drag = FALSE;
4946
Bram Moolenaar864207d2008-06-24 22:14:38 +00004947# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4948 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 if (key_name[0] == (int)KS_MOUSE)
4950 {
4951 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004952 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 * s == encoded button state:
4954 * 0x20 = left button down
4955 * 0x21 = middle button down
4956 * 0x22 = right button down
4957 * 0x23 = any button release
4958 * 0x60 = button 4 down (scroll wheel down)
4959 * 0x61 = button 5 down (scroll wheel up)
4960 * add 0x04 for SHIFT
4961 * add 0x08 for ALT
4962 * add 0x10 for CTRL
4963 * add 0x20 for mouse drag (0x40 is drag with left button)
4964 * c == column + ' ' + 1 == column + 33
4965 * r == row + ' ' + 1 == row + 33
4966 *
4967 * The coordinates are passed on through global variables.
4968 * Ugly, but this avoids trouble with mouse clicks at an
4969 * unexpected moment and allows for mapping them.
4970 */
4971 for (;;)
4972 {
4973#ifdef FEAT_GUI
4974 if (gui.in_use)
4975 {
4976 /* GUI uses more bits for columns > 223 */
4977 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
4978 if (num_bytes == -1) /* not enough coordinates */
4979 return -1;
4980 mouse_code = bytes[0];
4981 mouse_col = 128 * (bytes[1] - ' ' - 1)
4982 + bytes[2] - ' ' - 1;
4983 mouse_row = 128 * (bytes[3] - ' ' - 1)
4984 + bytes[4] - ' ' - 1;
4985 }
4986 else
4987#endif
4988 {
4989 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
4990 if (num_bytes == -1) /* not enough coordinates */
4991 return -1;
4992 mouse_code = bytes[0];
4993 mouse_col = bytes[1] - ' ' - 1;
4994 mouse_row = bytes[2] - ' ' - 1;
4995 }
4996 slen += num_bytes;
4997
4998 /* If the following bytes is also a mouse code and it has
4999 * the same code, dump this one and get the next. This
5000 * makes dragging a whole lot faster. */
5001#ifdef FEAT_GUI
5002 if (gui.in_use)
5003 j = 3;
5004 else
5005#endif
5006 j = termcodes[idx].len;
5007 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
5008 && tp[slen + j] == mouse_code
5009 && tp[slen + j + 1] != NUL
5010 && tp[slen + j + 2] != NUL
5011#ifdef FEAT_GUI
5012 && (!gui.in_use
5013 || (tp[slen + j + 3] != NUL
5014 && tp[slen + j + 4] != NUL))
5015#endif
5016 )
5017 slen += j;
5018 else
5019 break;
5020 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005021 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005023# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
5024 if (key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005025 || key_name[0] == KS_SGR_MOUSE
5026 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005027 {
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005028 /* URXVT 1015 mouse reporting mode:
5029 * Almost identical to xterm mouse mode, except the values
5030 * are decimal instead of bytes.
5031 *
5032 * \033[%d;%d;%dM
5033 * ^-- row
5034 * ^----- column
5035 * ^-------- code
5036 *
5037 * SGR 1006 mouse reporting mode:
5038 * Almost identical to xterm mouse mode, except the values
5039 * are decimal instead of bytes.
5040 *
5041 * \033[<%d;%d;%dM
5042 * ^-- row
5043 * ^----- column
5044 * ^-------- code
5045 *
5046 * \033[<%d;%d;%dm : mouse release event
5047 * ^-- row
5048 * ^----- column
5049 * ^-------- code
5050 */
5051 p = modifiers_start;
5052 if (p == NULL)
5053 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005054
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005055 mouse_code = getdigits(&p);
5056 if (*p++ != ';')
5057 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005058
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005059 /* when mouse reporting is SGR, add 32 to mouse code */
5060 if (key_name[0] == KS_SGR_MOUSE
5061 || key_name[0] == KS_SGR_MOUSE_RELEASE)
5062 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005063
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005064 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
5065 mouse_code |= MOUSE_RELEASE;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005066
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005067 mouse_col = getdigits(&p) - 1;
5068 if (*p++ != ';')
5069 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005070
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005071 mouse_row = getdigits(&p) - 1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005072
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005073 /* The modifiers were the mouse coordinates, not the
5074 * modifier keys (alt/shift/ctrl/meta) state. */
5075 modifiers = 0;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005076 }
5077# endif
5078
5079 if (key_name[0] == (int)KS_MOUSE
5080#ifdef FEAT_MOUSE_URXVT
5081 || key_name[0] == (int)KS_URXVT_MOUSE
5082#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005083#ifdef FEAT_MOUSE_SGR
5084 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005085 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005086#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005087 )
5088 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005089# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 /*
5091 * Handle mouse events.
5092 * Recognize the xterm mouse wheel, but not in the GUI, the
5093 * Linux console with GPM and the MS-DOS or Win32 console
5094 * (multi-clicks use >= 0x60).
5095 */
5096 if (mouse_code >= MOUSEWHEEL_LOW
5097# ifdef FEAT_GUI
5098 && !gui.in_use
5099# endif
5100# ifdef FEAT_MOUSE_GPM
5101 && gpm_flag == 0
5102# endif
5103 )
5104 {
5105 /* Keep the mouse_code before it's changed, so that we
5106 * remember that it was a mouse wheel click. */
5107 wheel_code = mouse_code;
5108 }
5109# ifdef FEAT_MOUSE_XTERM
5110 else if (held_button == MOUSE_RELEASE
5111# ifdef FEAT_GUI
5112 && !gui.in_use
5113# endif
5114 && (mouse_code == 0x23 || mouse_code == 0x24))
5115 {
5116 /* Apparently used by rxvt scroll wheel. */
5117 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW;
5118 }
5119# endif
5120
5121# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5122 else if (use_xterm_mouse() > 1)
5123 {
5124 if (mouse_code & MOUSE_DRAG_XTERM)
5125 mouse_code |= MOUSE_DRAG;
5126 }
5127# endif
5128# ifdef FEAT_XCLIPBOARD
5129 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
5130 {
5131 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
5132 stop_xterm_trace();
5133 else
5134 start_xterm_trace(mouse_code);
5135 }
5136# endif
5137# endif
5138 }
5139# endif /* !UNIX || FEAT_MOUSE_XTERM */
5140# ifdef FEAT_MOUSE_NET
5141 if (key_name[0] == (int)KS_NETTERM_MOUSE)
5142 {
5143 int mc, mr;
5144
5145 /* expect a rather limited sequence like: balancing {
5146 * \033}6,45\r
5147 * '6' is the row, 45 is the column
5148 */
5149 p = tp + slen;
5150 mr = getdigits(&p);
5151 if (*p++ != ',')
5152 return -1;
5153 mc = getdigits(&p);
5154 if (*p++ != '\r')
5155 return -1;
5156
5157 mouse_col = mc - 1;
5158 mouse_row = mr - 1;
5159 mouse_code = MOUSE_LEFT;
5160 slen += (int)(p - (tp + slen));
5161 }
5162# endif /* FEAT_MOUSE_NET */
5163# ifdef FEAT_MOUSE_JSB
5164 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
5165 {
5166 int mult, val, iter, button, status;
5167
5168 /* JSBTERM Input Model
5169 * \033[0~zw uniq escape sequence
5170 * (L-x) Left button pressed - not pressed x not reporting
5171 * (M-x) Middle button pressed - not pressed x not reporting
5172 * (R-x) Right button pressed - not pressed x not reporting
5173 * (SDmdu) Single , Double click, m mouse move d button down
5174 * u button up
5175 * ### X cursor position padded to 3 digits
5176 * ### Y cursor position padded to 3 digits
5177 * (s-x) SHIFT key pressed - not pressed x not reporting
5178 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005179 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 */
5181
5182 p = tp + slen;
5183 button = mouse_code = 0;
5184 switch (*p++)
5185 {
5186 case 'L': button = 1; break;
5187 case '-': break;
5188 case 'x': break; /* ignore sequence */
5189 default: return -1; /* Unknown Result */
5190 }
5191 switch (*p++)
5192 {
5193 case 'M': button |= 2; break;
5194 case '-': break;
5195 case 'x': break; /* ignore sequence */
5196 default: return -1; /* Unknown Result */
5197 }
5198 switch (*p++)
5199 {
5200 case 'R': button |= 4; break;
5201 case '-': break;
5202 case 'x': break; /* ignore sequence */
5203 default: return -1; /* Unknown Result */
5204 }
5205 status = *p++;
5206 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5207 mult /= 10, p++)
5208 if (*p >= '0' && *p <= '9')
5209 val += (*p - '0') * mult;
5210 else
5211 return -1;
5212 mouse_col = val;
5213 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5214 mult /= 10, p++)
5215 if (*p >= '0' && *p <= '9')
5216 val += (*p - '0') * mult;
5217 else
5218 return -1;
5219 mouse_row = val;
5220 switch (*p++)
5221 {
5222 case 's': button |= 8; break; /* SHIFT key Pressed */
5223 case '-': break; /* Not Pressed */
5224 case 'x': break; /* Not Reporting */
5225 default: return -1; /* Unknown Result */
5226 }
5227 switch (*p++)
5228 {
5229 case 'c': button |= 16; break; /* CTRL key Pressed */
5230 case '-': break; /* Not Pressed */
5231 case 'x': break; /* Not Reporting */
5232 default: return -1; /* Unknown Result */
5233 }
5234 if (*p++ != '\033')
5235 return -1;
5236 if (*p++ != '\\')
5237 return -1;
5238 switch (status)
5239 {
5240 case 'D': /* Double Click */
5241 case 'S': /* Single Click */
5242 if (button & 1) mouse_code |= MOUSE_LEFT;
5243 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5244 if (button & 4) mouse_code |= MOUSE_RIGHT;
5245 if (button & 8) mouse_code |= MOUSE_SHIFT;
5246 if (button & 16) mouse_code |= MOUSE_CTRL;
5247 break;
5248 case 'm': /* Mouse move */
5249 if (button & 1) mouse_code |= MOUSE_LEFT;
5250 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5251 if (button & 4) mouse_code |= MOUSE_RIGHT;
5252 if (button & 8) mouse_code |= MOUSE_SHIFT;
5253 if (button & 16) mouse_code |= MOUSE_CTRL;
5254 if ((button & 7) != 0)
5255 {
5256 held_button = mouse_code;
5257 mouse_code |= MOUSE_DRAG;
5258 }
5259 is_drag = TRUE;
5260 showmode();
5261 break;
5262 case 'd': /* Button Down */
5263 if (button & 1) mouse_code |= MOUSE_LEFT;
5264 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5265 if (button & 4) mouse_code |= MOUSE_RIGHT;
5266 if (button & 8) mouse_code |= MOUSE_SHIFT;
5267 if (button & 16) mouse_code |= MOUSE_CTRL;
5268 break;
5269 case 'u': /* Button Up */
5270 if (button & 1)
5271 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
5272 if (button & 2)
5273 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
5274 if (button & 4)
5275 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
5276 if (button & 8)
5277 mouse_code |= MOUSE_SHIFT;
5278 if (button & 16)
5279 mouse_code |= MOUSE_CTRL;
5280 break;
5281 default: return -1; /* Unknown Result */
5282 }
5283
5284 slen += (p - (tp + slen));
5285 }
5286# endif /* FEAT_MOUSE_JSB */
5287# ifdef FEAT_MOUSE_DEC
5288 if (key_name[0] == (int)KS_DEC_MOUSE)
5289 {
5290 /* The DEC Locator Input Model
5291 * Netterm delivers the code sequence:
5292 * \033[2;4;24;80&w (left button down)
5293 * \033[3;0;24;80&w (left button up)
5294 * \033[6;1;24;80&w (right button down)
5295 * \033[7;0;24;80&w (right button up)
5296 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
5297 * Pe is the event code
5298 * Pb is the button code
5299 * Pr is the row coordinate
5300 * Pc is the column coordinate
5301 * Pp is the third coordinate (page number)
5302 * Pe, the event code indicates what event caused this report
5303 * The following event codes are defined:
5304 * 0 - request, the terminal received an explicit request
5305 * for a locator report, but the locator is unavailable
5306 * 1 - request, the terminal received an explicit request
5307 * for a locator report
5308 * 2 - left button down
5309 * 3 - left button up
5310 * 4 - middle button down
5311 * 5 - middle button up
5312 * 6 - right button down
5313 * 7 - right button up
5314 * 8 - fourth button down
5315 * 9 - fourth button up
5316 * 10 - locator outside filter rectangle
5317 * Pb, the button code, ASCII decimal 0-15 indicating which
5318 * buttons are down if any. The state of the four buttons
5319 * on the locator correspond to the low four bits of the
5320 * decimal value,
5321 * "1" means button depressed
5322 * 0 - no buttons down,
5323 * 1 - right,
5324 * 2 - middle,
5325 * 4 - left,
5326 * 8 - fourth
5327 * Pr is the row coordinate of the locator position in the page,
5328 * encoded as an ASCII decimal value.
5329 * If Pr is omitted, the locator position is undefined
5330 * (outside the terminal window for example).
5331 * Pc is the column coordinate of the locator position in the
5332 * page, encoded as an ASCII decimal value.
5333 * If Pc is omitted, the locator position is undefined
5334 * (outside the terminal window for example).
5335 * Pp is the page coordinate of the locator position
5336 * encoded as an ASCII decimal value.
5337 * The page coordinate may be omitted if the locator is on
5338 * page one (the default). We ignore it anyway.
5339 */
5340 int Pe, Pb, Pr, Pc;
5341
5342 p = tp + slen;
5343
5344 /* get event status */
5345 Pe = getdigits(&p);
5346 if (*p++ != ';')
5347 return -1;
5348
5349 /* get button status */
5350 Pb = getdigits(&p);
5351 if (*p++ != ';')
5352 return -1;
5353
5354 /* get row status */
5355 Pr = getdigits(&p);
5356 if (*p++ != ';')
5357 return -1;
5358
5359 /* get column status */
5360 Pc = getdigits(&p);
5361
5362 /* the page parameter is optional */
5363 if (*p == ';')
5364 {
5365 p++;
5366 (void)getdigits(&p);
5367 }
5368 if (*p++ != '&')
5369 return -1;
5370 if (*p++ != 'w')
5371 return -1;
5372
5373 mouse_code = 0;
5374 switch (Pe)
5375 {
5376 case 0: return -1; /* position request while unavailable */
5377 case 1: /* a response to a locator position request includes
5378 the status of all buttons */
5379 Pb &= 7; /* mask off and ignore fourth button */
5380 if (Pb & 4)
5381 mouse_code = MOUSE_LEFT;
5382 if (Pb & 2)
5383 mouse_code = MOUSE_MIDDLE;
5384 if (Pb & 1)
5385 mouse_code = MOUSE_RIGHT;
5386 if (Pb)
5387 {
5388 held_button = mouse_code;
5389 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005390 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 }
5392 is_drag = TRUE;
5393 showmode();
5394 break;
5395 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005396 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 break;
5398 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5399 break;
5400 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005401 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 break;
5403 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5404 break;
5405 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005406 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 break;
5408 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5409 break;
5410 case 8: return -1; /* fourth button down */
5411 case 9: return -1; /* fourth button up */
5412 case 10: return -1; /* mouse outside of filter rectangle */
5413 default: return -1; /* should never occur */
5414 }
5415
5416 mouse_col = Pc - 1;
5417 mouse_row = Pr - 1;
5418
5419 slen += (int)(p - (tp + slen));
5420 }
5421# endif /* FEAT_MOUSE_DEC */
5422# ifdef FEAT_MOUSE_PTERM
5423 if (key_name[0] == (int)KS_PTERM_MOUSE)
5424 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005425 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426
5427 p = tp + slen;
5428
5429 action = getdigits(&p);
5430 if (*p++ != ';')
5431 return -1;
5432
5433 mouse_row = getdigits(&p);
5434 if (*p++ != ';')
5435 return -1;
5436 mouse_col = getdigits(&p);
5437 if (*p++ != ';')
5438 return -1;
5439
5440 button = getdigits(&p);
5441 mouse_code = 0;
5442
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005443 switch (button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 {
5445 case 4: mouse_code = MOUSE_LEFT; break;
5446 case 1: mouse_code = MOUSE_RIGHT; break;
5447 case 2: mouse_code = MOUSE_MIDDLE; break;
5448 default: return -1;
5449 }
5450
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005451 switch (action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 {
5453 case 31: /* Initial press */
5454 if (*p++ != ';')
5455 return -1;
5456
5457 num_clicks = getdigits(&p); /* Not used */
5458 break;
5459
5460 case 32: /* Release */
5461 mouse_code |= MOUSE_RELEASE;
5462 break;
5463
5464 case 33: /* Drag */
5465 held_button = mouse_code;
5466 mouse_code |= MOUSE_DRAG;
5467 break;
5468
5469 default:
5470 return -1;
5471 }
5472
5473 if (*p++ != 't')
5474 return -1;
5475
5476 slen += (p - (tp + slen));
5477 }
5478# endif /* FEAT_MOUSE_PTERM */
5479
5480 /* Interpret the mouse code */
5481 current_button = (mouse_code & MOUSE_CLICK_MASK);
5482 if (current_button == MOUSE_RELEASE
5483# ifdef FEAT_MOUSE_XTERM
5484 && wheel_code == 0
5485# endif
5486 )
5487 {
5488 /*
5489 * If we get a mouse drag or release event when
5490 * there is no mouse button held down (held_button ==
5491 * MOUSE_RELEASE), produce a K_IGNORE below.
5492 * (can happen when you hold down two buttons
5493 * and then let them go, or click in the menu bar, but not
5494 * on a menu, and drag into the text).
5495 */
5496 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5497 is_drag = TRUE;
5498 current_button = held_button;
5499 }
5500 else if (wheel_code == 0)
5501 {
5502# ifdef CHECK_DOUBLE_CLICK
5503# ifdef FEAT_MOUSE_GPM
5504# ifdef FEAT_GUI
5505 /*
5506 * Only for Unix, when GUI or gpm is not active, we handle
5507 * multi-clicks here.
5508 */
5509 if (gpm_flag == 0 && !gui.in_use)
5510# else
5511 if (gpm_flag == 0)
5512# endif
5513# else
5514# ifdef FEAT_GUI
5515 if (!gui.in_use)
5516# endif
5517# endif
5518 {
5519 /*
5520 * Compute the time elapsed since the previous mouse click.
5521 */
5522 gettimeofday(&mouse_time, NULL);
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005523 if (orig_mouse_time.tv_sec == 0)
5524 {
5525 /*
5526 * Avoid computing the difference between mouse_time
5527 * and orig_mouse_time for the first click, as the
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005528 * difference would be huge and would cause
5529 * multiplication overflow.
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005530 */
5531 timediff = p_mouset;
5532 }
5533 else
5534 {
5535 timediff = (mouse_time.tv_usec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005536 - orig_mouse_time.tv_usec) / 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005537 if (timediff < 0)
5538 --orig_mouse_time.tv_sec;
5539 timediff += (mouse_time.tv_sec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005540 - orig_mouse_time.tv_sec) * 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005541 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 orig_mouse_time = mouse_time;
5543 if (mouse_code == orig_mouse_code
5544 && timediff < p_mouset
5545 && orig_num_clicks != 4
5546 && orig_mouse_col == mouse_col
5547 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005548 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005550 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005552 )
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005553 /* Double click in tab pages line also works
5554 * when window contents changes. */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005555 || (mouse_row == 0 && firstwin->w_winrow > 0))
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005556 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 ++orig_num_clicks;
5558 else
5559 orig_num_clicks = 1;
5560 orig_mouse_col = mouse_col;
5561 orig_mouse_row = mouse_row;
5562 orig_topline = curwin->w_topline;
5563#ifdef FEAT_DIFF
5564 orig_topfill = curwin->w_topfill;
5565#endif
5566 }
5567# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5568 else
5569 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5570# endif
5571# else
5572 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5573# endif
5574 is_click = TRUE;
5575 orig_mouse_code = mouse_code;
5576 }
5577 if (!is_drag)
5578 held_button = mouse_code & MOUSE_CLICK_MASK;
5579
5580 /*
5581 * Translate the actual mouse event into a pseudo mouse event.
5582 * First work out what modifiers are to be used.
5583 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 if (orig_mouse_code & MOUSE_SHIFT)
5585 modifiers |= MOD_MASK_SHIFT;
5586 if (orig_mouse_code & MOUSE_CTRL)
5587 modifiers |= MOD_MASK_CTRL;
5588 if (orig_mouse_code & MOUSE_ALT)
5589 modifiers |= MOD_MASK_ALT;
5590 if (orig_num_clicks == 2)
5591 modifiers |= MOD_MASK_2CLICK;
5592 else if (orig_num_clicks == 3)
5593 modifiers |= MOD_MASK_3CLICK;
5594 else if (orig_num_clicks == 4)
5595 modifiers |= MOD_MASK_4CLICK;
5596
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005597 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets
5598 * added, then it's not mouse up/down. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 key_name[0] = (int)KS_EXTRA;
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005600 if (wheel_code != 0
5601 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005602 {
5603 if (wheel_code & MOUSE_CTRL)
5604 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005605 if (wheel_code & MOUSE_ALT)
5606 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 key_name[1] = (wheel_code & 1)
5608 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 else
5611 key_name[1] = get_pseudo_mouse_code(current_button,
5612 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005613
5614 /* Make sure the mouse position is valid. Some terminals may
5615 * return weird values. */
5616 if (mouse_col >= Columns)
5617 mouse_col = Columns - 1;
5618 if (mouse_row >= Rows)
5619 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 }
5621#endif /* FEAT_MOUSE */
5622
5623#ifdef FEAT_GUI
5624 /*
5625 * If using the GUI, then we get menu and scrollbar events.
5626 *
5627 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5628 * four bytes which are to be taken as a pointer to the vimmenu_T
5629 * structure.
5630 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005631 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005632 * is one byte with the tab index.
5633 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5635 * by one byte representing the scrollbar number, and then four bytes
5636 * representing a long_u which is the new value of the scrollbar.
5637 *
5638 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5639 * KE_FILLER followed by four bytes representing a long_u which is the
5640 * new value of the scrollbar.
5641 */
5642# ifdef FEAT_MENU
5643 else if (key_name[0] == (int)KS_MENU)
5644 {
5645 long_u val;
5646
5647 num_bytes = get_long_from_buf(tp + slen, &val);
5648 if (num_bytes == -1)
5649 return -1;
5650 current_menu = (vimmenu_T *)val;
5651 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005652
5653 /* The menu may have been deleted right after it was used, check
5654 * for that. */
5655 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5656 {
5657 key_name[0] = KS_EXTRA;
5658 key_name[1] = (int)KE_IGNORE;
5659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 }
5661# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005662# ifdef FEAT_GUI_TABLINE
5663 else if (key_name[0] == (int)KS_TABLINE)
5664 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005665 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005666 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5667 if (num_bytes == -1)
5668 return -1;
5669 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005670 if (current_tab == 255) /* -1 in a byte gives 255 */
5671 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005672 slen += num_bytes;
5673 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005674 else if (key_name[0] == (int)KS_TABMENU)
5675 {
5676 /* Selecting tabline tab or using its menu. */
5677 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5678 if (num_bytes == -1)
5679 return -1;
5680 current_tab = (int)bytes[0];
5681 current_tabmenu = (int)bytes[1];
5682 slen += num_bytes;
5683 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005684# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685# ifndef USE_ON_FLY_SCROLL
5686 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5687 {
5688 long_u val;
5689
5690 /* Get the last scrollbar event in the queue of the same type */
5691 j = 0;
5692 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5693 && tp[j + 2] != NUL; ++i)
5694 {
5695 j += 3;
5696 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5697 if (num_bytes == -1)
5698 break;
5699 if (i == 0)
5700 current_scrollbar = (int)bytes[0];
5701 else if (current_scrollbar != (int)bytes[0])
5702 break;
5703 j += num_bytes;
5704 num_bytes = get_long_from_buf(tp + j, &val);
5705 if (num_bytes == -1)
5706 break;
5707 scrollbar_value = val;
5708 j += num_bytes;
5709 slen = j;
5710 }
5711 if (i == 0) /* not enough characters to make one */
5712 return -1;
5713 }
5714 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5715 {
5716 long_u val;
5717
5718 /* Get the last horiz. scrollbar event in the queue */
5719 j = 0;
5720 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5721 && tp[j + 2] != NUL; ++i)
5722 {
5723 j += 3;
5724 num_bytes = get_long_from_buf(tp + j, &val);
5725 if (num_bytes == -1)
5726 break;
5727 scrollbar_value = val;
5728 j += num_bytes;
5729 slen = j;
5730 }
5731 if (i == 0) /* not enough characters to make one */
5732 return -1;
5733 }
5734# endif /* !USE_ON_FLY_SCROLL */
5735#endif /* FEAT_GUI */
5736
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005737 /*
5738 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5739 */
5740 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5741
5742 /*
5743 * Add any modifier codes to our string.
5744 */
5745 new_slen = 0; /* Length of what will replace the termcode */
5746 if (modifiers != 0)
5747 {
5748 /* Some keys have the modifier included. Need to handle that here
5749 * to make mappings work. */
5750 key = simplify_key(key, &modifiers);
5751 if (modifiers != 0)
5752 {
5753 string[new_slen++] = K_SPECIAL;
5754 string[new_slen++] = (int)KS_MODIFIER;
5755 string[new_slen++] = modifiers;
5756 }
5757 }
5758
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005760 key_name[0] = KEY2TERMCAP0(key);
5761 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005763 {
5764 /* from ":set <M-b>=xx" */
5765#ifdef FEAT_MBYTE
5766 if (has_mbyte)
5767 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5768 else
5769#endif
5770 string[new_slen++] = key_name[1];
5771 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005772 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5773 && key_name[1] == KE_IGNORE)
5774 {
5775 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5776 * to indicate what happened. */
5777 retval = KEYLEN_REMOVED;
5778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 else
5780 {
5781 string[new_slen++] = K_SPECIAL;
5782 string[new_slen++] = key_name[0];
5783 string[new_slen++] = key_name[1];
5784 }
5785 string[new_slen] = NUL;
5786 extra = new_slen - slen;
5787 if (buf == NULL)
5788 {
5789 if (extra < 0)
5790 /* remove matched chars, taking care of noremap */
5791 del_typebuf(-extra, offset);
5792 else if (extra > 0)
5793 /* insert the extra space we need */
5794 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5795
5796 /*
5797 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5798 * typebuf.tb_buf[]!
5799 */
5800 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5801 (size_t)new_slen);
5802 }
5803 else
5804 {
5805 if (extra < 0)
5806 /* remove matched characters */
5807 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005808 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005810 {
5811 /* Insert the extra space we need. If there is insufficient
5812 * space return -1. */
5813 if (*buflen + extra + new_slen >= bufsize)
5814 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005816 (size_t)(*buflen - offset));
5817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005819 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005821 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 }
5823
Bram Moolenaar2951b772013-07-03 12:45:31 +02005824#ifdef FEAT_TERMRESPONSE
5825 LOG_TR("normal character");
5826#endif
5827
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 return 0; /* no match found */
5829}
5830
Bram Moolenaar9377df32017-10-15 13:22:01 +02005831#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005832/*
5833 * Get the text foreground color, if known.
5834 */
5835 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005836term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005837{
5838 if (rfg_status == STATUS_GOT)
5839 {
5840 *r = fg_r;
5841 *g = fg_g;
5842 *b = fg_b;
5843 }
5844}
5845
5846/*
5847 * Get the text background color, if known.
5848 */
5849 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005850term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005851{
5852 if (rbg_status == STATUS_GOT)
5853 {
5854 *r = bg_r;
5855 *g = bg_g;
5856 *b = bg_b;
5857 }
5858}
5859#endif
5860
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861/*
5862 * Replace any terminal code strings in from[] with the equivalent internal
5863 * vim representation. This is used for the "from" and "to" part of a
5864 * mapping, and the "to" part of a menu command.
5865 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5866 * '<'.
5867 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5868 *
5869 * The replacement is done in result[] and finally copied into allocated
5870 * memory. If this all works well *bufp is set to the allocated memory and a
5871 * pointer to it is returned. If something fails *bufp is set to NULL and from
5872 * is returned.
5873 *
5874 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5875 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5876 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5877 * instead of a CTRL-V.
5878 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005879 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005880replace_termcodes(
5881 char_u *from,
5882 char_u **bufp,
5883 int from_part,
5884 int do_lt, /* also translate <lt> */
5885 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886{
5887 int i;
5888 int slen;
5889 int key;
5890 int dlen = 0;
5891 char_u *src;
5892 int do_backslash; /* backslash is a special character */
5893 int do_special; /* recognize <> key codes */
5894 int do_key_code; /* recognize raw key codes */
5895 char_u *result; /* buffer for resulting string */
5896
5897 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005898 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5900
5901 /*
5902 * Allocate space for the translation. Worst case a single character is
5903 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5904 */
5905 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5906 if (result == NULL) /* out of memory */
5907 {
5908 *bufp = NULL;
5909 return from;
5910 }
5911
5912 src = from;
5913
5914 /*
5915 * Check for #n at start only: function key n
5916 */
5917 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
5918 {
5919 result[dlen++] = K_SPECIAL;
5920 result[dlen++] = 'k';
5921 if (src[1] == '0')
5922 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5923 else
5924 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5925 src += 2;
5926 }
5927
5928 /*
5929 * Copy each byte from *from to result[dlen]
5930 */
5931 while (*src != NUL)
5932 {
5933 /*
5934 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005935 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 */
5937 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
5938 {
5939#ifdef FEAT_EVAL
5940 /*
5941 * Replace <SID> by K_SNR <script-nr> _.
5942 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5943 */
5944 if (STRNICMP(src, "<SID>", 5) == 0)
5945 {
5946 if (current_SID <= 0)
5947 EMSG(_(e_usingsid));
5948 else
5949 {
5950 src += 5;
5951 result[dlen++] = K_SPECIAL;
5952 result[dlen++] = (int)KS_EXTRA;
5953 result[dlen++] = (int)KE_SNR;
5954 sprintf((char *)result + dlen, "%ld", (long)current_SID);
5955 dlen += (int)STRLEN(result + dlen);
5956 result[dlen++] = '_';
5957 continue;
5958 }
5959 }
5960#endif
5961
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02005962 slen = trans_special(&src, result + dlen, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 if (slen)
5964 {
5965 dlen += slen;
5966 continue;
5967 }
5968 }
5969
5970 /*
5971 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5972 * Note that this is also checked after replacing the <> form.
5973 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5974 * it could be a character in the file.
5975 */
5976 if (do_key_code)
5977 {
5978 i = find_term_bykeys(src);
5979 if (i >= 0)
5980 {
5981 result[dlen++] = K_SPECIAL;
5982 result[dlen++] = termcodes[i].name[0];
5983 result[dlen++] = termcodes[i].name[1];
5984 src += termcodes[i].len;
5985 /* If terminal code matched, continue after it. */
5986 continue;
5987 }
5988 }
5989
5990#ifdef FEAT_EVAL
5991 if (do_special)
5992 {
5993 char_u *p, *s, len;
5994
5995 /*
5996 * Replace <Leader> by the value of "mapleader".
5997 * Replace <LocalLeader> by the value of "maplocalleader".
5998 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5999 */
6000 if (STRNICMP(src, "<Leader>", 8) == 0)
6001 {
6002 len = 8;
6003 p = get_var_value((char_u *)"g:mapleader");
6004 }
6005 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
6006 {
6007 len = 13;
6008 p = get_var_value((char_u *)"g:maplocalleader");
6009 }
6010 else
6011 {
6012 len = 0;
6013 p = NULL;
6014 }
6015 if (len != 0)
6016 {
6017 /* Allow up to 8 * 6 characters for "mapleader". */
6018 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
6019 s = (char_u *)"\\";
6020 else
6021 s = p;
6022 while (*s != NUL)
6023 result[dlen++] = *s++;
6024 src += len;
6025 continue;
6026 }
6027 }
6028#endif
6029
6030 /*
6031 * Remove CTRL-V and ignore the next character.
6032 * For "from" side the CTRL-V at the end is included, for the "to"
6033 * part it is removed.
6034 * If 'cpoptions' does not contain 'B', also accept a backslash.
6035 */
6036 key = *src;
6037 if (key == Ctrl_V || (do_backslash && key == '\\'))
6038 {
6039 ++src; /* skip CTRL-V or backslash */
6040 if (*src == NUL)
6041 {
6042 if (from_part)
6043 result[dlen++] = key;
6044 break;
6045 }
6046 }
6047
6048#ifdef FEAT_MBYTE
6049 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006050 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051#endif
6052 {
6053 /*
6054 * If the character is K_SPECIAL, replace it with K_SPECIAL
6055 * KS_SPECIAL KE_FILLER.
6056 * If compiled with the GUI replace CSI with K_CSI.
6057 */
6058 if (*src == K_SPECIAL)
6059 {
6060 result[dlen++] = K_SPECIAL;
6061 result[dlen++] = KS_SPECIAL;
6062 result[dlen++] = KE_FILLER;
6063 }
6064# ifdef FEAT_GUI
6065 else if (*src == CSI)
6066 {
6067 result[dlen++] = K_SPECIAL;
6068 result[dlen++] = KS_EXTRA;
6069 result[dlen++] = (int)KE_CSI;
6070 }
6071# endif
6072 else
6073 result[dlen++] = *src;
6074 ++src;
6075 }
6076 }
6077 result[dlen] = NUL;
6078
6079 /*
6080 * Copy the new string to allocated memory.
6081 * If this fails, just return from.
6082 */
6083 if ((*bufp = vim_strsave(result)) != NULL)
6084 from = *bufp;
6085 vim_free(result);
6086 return from;
6087}
6088
6089/*
6090 * Find a termcode with keys 'src' (must be NUL terminated).
6091 * Return the index in termcodes[], or -1 if not found.
6092 */
6093 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006094find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095{
6096 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006097 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098
6099 for (i = 0; i < tc_len; ++i)
6100 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01006101 if (slen == termcodes[i].len
6102 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 return i;
6104 }
6105 return -1;
6106}
6107
6108/*
6109 * Gather the first characters in the terminal key codes into a string.
6110 * Used to speed up check_termcode().
6111 */
6112 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006113gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114{
6115 int i;
6116 int len = 0;
6117
6118#ifdef FEAT_GUI
6119 if (gui.in_use)
6120 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
6121#endif
6122#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02006123 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124 termleader[len++] = DCS; /* the termcode response starts with DCS
6125 in 8-bit mode */
6126#endif
6127 termleader[len] = NUL;
6128
6129 for (i = 0; i < tc_len; ++i)
6130 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
6131 {
6132 termleader[len++] = termcodes[i].code[0];
6133 termleader[len] = NUL;
6134 }
6135
6136 need_gather = FALSE;
6137}
6138
6139/*
6140 * Show all termcodes (for ":set termcap")
6141 * This code looks a lot like showoptions(), but is different.
6142 */
6143 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006144show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145{
6146 int col;
6147 int *items;
6148 int item_count;
6149 int run;
6150 int row, rows;
6151 int cols;
6152 int i;
6153 int len;
6154
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006155#define INC3 27 /* try to make three columns */
6156#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157#define GAP 2 /* spaces between columns */
6158
6159 if (tc_len == 0) /* no terminal codes (must be GUI) */
6160 return;
6161 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
6162 if (items == NULL)
6163 return;
6164
6165 /* Highlight title */
6166 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
6167
6168 /*
6169 * do the loop two times:
6170 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006171 * 2. display the medium items (medium length strings)
6172 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006174 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 {
6176 /*
6177 * collect the items in items[]
6178 */
6179 item_count = 0;
6180 for (i = 0; i < tc_len; i++)
6181 {
6182 len = show_one_termcode(termcodes[i].name,
6183 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006184 if (len <= INC3 - GAP ? run == 1
6185 : len <= INC2 - GAP ? run == 2
6186 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 items[item_count++] = i;
6188 }
6189
6190 /*
6191 * display the items
6192 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006193 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006195 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 if (cols == 0)
6197 cols = 1;
6198 rows = (item_count + cols - 1) / cols;
6199 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006200 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 rows = item_count;
6202 for (row = 0; row < rows && !got_int; ++row)
6203 {
6204 msg_putchar('\n'); /* go to next line */
6205 if (got_int) /* 'q' typed in more */
6206 break;
6207 col = 0;
6208 for (i = row; i < item_count; i += rows)
6209 {
6210 msg_col = col; /* make columns */
6211 show_one_termcode(termcodes[items[i]].name,
6212 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006213 if (run == 2)
6214 col += INC2;
6215 else
6216 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 }
6218 out_flush();
6219 ui_breakcheck();
6220 }
6221 }
6222 vim_free(items);
6223}
6224
6225/*
6226 * Show one termcode entry.
6227 * Output goes into IObuff[]
6228 */
6229 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006230show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231{
6232 char_u *p;
6233 int len;
6234
6235 if (name[0] > '~')
6236 {
6237 IObuff[0] = ' ';
6238 IObuff[1] = ' ';
6239 IObuff[2] = ' ';
6240 IObuff[3] = ' ';
6241 }
6242 else
6243 {
6244 IObuff[0] = 't';
6245 IObuff[1] = '_';
6246 IObuff[2] = name[0];
6247 IObuff[3] = name[1];
6248 }
6249 IObuff[4] = ' ';
6250
6251 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
6252 if (p[1] != 't')
6253 STRCPY(IObuff + 5, p);
6254 else
6255 IObuff[5] = NUL;
6256 len = (int)STRLEN(IObuff);
6257 do
6258 IObuff[len++] = ' ';
6259 while (len < 17);
6260 IObuff[len] = NUL;
6261 if (code == NULL)
6262 len += 4;
6263 else
6264 len += vim_strsize(code);
6265
6266 if (printit)
6267 {
6268 msg_puts(IObuff);
6269 if (code == NULL)
6270 msg_puts((char_u *)"NULL");
6271 else
6272 msg_outtrans(code);
6273 }
6274 return len;
6275}
6276
6277#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
6278/*
6279 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
6280 * termcap codes from the terminal itself.
6281 * We get them one by one to avoid a very long response string.
6282 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02006283static int xt_index_in = 0;
6284static int xt_index_out = 0;
6285
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006287req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288{
6289 xt_index_out = 0;
6290 xt_index_in = 0;
6291 req_more_codes_from_term();
6292}
6293
6294 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006295req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296{
6297 char buf[11];
6298 int old_idx = xt_index_out;
6299
6300 /* Don't do anything when going to exit. */
6301 if (exiting)
6302 return;
6303
6304 /* Send up to 10 more requests out than we received. Avoid sending too
6305 * many, there can be a buffer overflow somewhere. */
6306 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
6307 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02006308# ifdef DEBUG_TERMRESPONSE
6309 char dbuf[100];
6310
6311 sprintf(dbuf, "Requesting XT %d: %s",
6312 xt_index_out, key_names[xt_index_out]);
6313 log_tr(dbuf);
6314# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 sprintf(buf, "\033P+q%02x%02x\033\\",
6316 key_names[xt_index_out][0], key_names[xt_index_out][1]);
6317 out_str_nf((char_u *)buf);
6318 ++xt_index_out;
6319 }
6320
6321 /* Send the codes out right away. */
6322 if (xt_index_out != old_idx)
6323 out_flush();
6324}
6325
6326/*
6327 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
6328 * A "0" instead of the "1" indicates a code that isn't supported.
6329 * Both <name> and <string> are encoded in hex.
6330 * "code" points to the "0" or "1".
6331 */
6332 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006333got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334{
6335#define XT_LEN 100
6336 char_u name[3];
6337 char_u str[XT_LEN];
6338 int i;
6339 int j = 0;
6340 int c;
6341
6342 /* A '1' means the code is supported, a '0' means it isn't.
6343 * When half the length is > XT_LEN we can't use it.
6344 * Our names are currently all 2 characters. */
6345 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
6346 {
6347 /* Get the name from the response and find it in the table. */
6348 name[0] = hexhex2nr(code + 3);
6349 name[1] = hexhex2nr(code + 5);
6350 name[2] = NUL;
6351 for (i = 0; key_names[i] != NULL; ++i)
6352 {
6353 if (STRCMP(key_names[i], name) == 0)
6354 {
6355 xt_index_in = i;
6356 break;
6357 }
6358 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02006359# ifdef DEBUG_TERMRESPONSE
6360 {
6361 char buf[100];
6362
6363 sprintf(buf, "Received XT %d: %s", xt_index_in, (char *)name);
6364 log_tr(buf);
6365 }
6366# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 if (key_names[i] != NULL)
6368 {
6369 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
6370 str[j++] = c;
6371 str[j] = NUL;
6372 if (name[0] == 'C' && name[1] == 'o')
6373 {
6374 /* Color count is not a key code. */
6375 i = atoi((char *)str);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02006376 may_adjust_color_count(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377 }
6378 else
6379 {
6380 /* First delete any existing entry with the same code. */
6381 i = find_term_bykeys(str);
6382 if (i >= 0)
6383 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006384 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 }
6386 }
6387 }
6388
6389 /* May request more codes now that we received one. */
6390 ++xt_index_in;
6391 req_more_codes_from_term();
6392}
6393
6394/*
6395 * Check if there are any unanswered requests and deal with them.
6396 * This is called before starting an external program or getting direct
6397 * keyboard input. We don't want responses to be send to that program or
6398 * handled as typed text.
6399 */
6400 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006401check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402{
6403 int c;
6404
6405 /* If no codes requested or all are answered, no need to wait. */
6406 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6407 return;
6408
6409 /* Vgetc() will check for and handle any response.
6410 * Keep calling vpeekc() until we don't get any responses. */
6411 ++no_mapping;
6412 ++allow_keys;
6413 for (;;)
6414 {
6415 c = vpeekc();
6416 if (c == NUL) /* nothing available */
6417 break;
6418
6419 /* If a response is recognized it's replaced with K_IGNORE, must read
6420 * it from the input stream. If there is no K_IGNORE we can't do
6421 * anything, break here (there might be some responses further on, but
6422 * we don't want to throw away any typed chars). */
6423 if (c != K_SPECIAL && c != K_IGNORE)
6424 break;
6425 c = vgetc();
6426 if (c != K_IGNORE)
6427 {
6428 vungetc(c);
6429 break;
6430 }
6431 }
6432 --no_mapping;
6433 --allow_keys;
6434}
6435#endif
6436
6437#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6438/*
6439 * Translate an internal mapping/abbreviation representation into the
6440 * corresponding external one recognized by :map/:abbrev commands;
6441 * respects the current B/k/< settings of 'cpoption'.
6442 *
6443 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006444 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 *
6446 * It uses a growarray to build the translation string since the
6447 * latter can be wider than the original description. The caller has to
6448 * free the string afterwards.
6449 *
6450 * Returns NULL when there is a problem.
6451 */
6452 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006453translate_mapping(
6454 char_u *str,
6455 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456{
6457 garray_T ga;
6458 int c;
6459 int modifiers;
6460 int cpo_bslash;
6461 int cpo_special;
6462 int cpo_keycode;
6463
6464 ga_init(&ga);
6465 ga.ga_itemsize = 1;
6466 ga.ga_growsize = 40;
6467
6468 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6469 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6470 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6471
6472 for (; *str; ++str)
6473 {
6474 c = *str;
6475 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6476 {
6477 modifiers = 0;
6478 if (str[1] == KS_MODIFIER)
6479 {
6480 str++;
6481 modifiers = *++str;
6482 c = *++str;
6483 }
6484 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6485 {
6486 int i;
6487
6488 /* try to find special key in termcodes */
6489 for (i = 0; i < tc_len; ++i)
6490 if (termcodes[i].name[0] == str[1]
6491 && termcodes[i].name[1] == str[2])
6492 break;
6493 if (i < tc_len)
6494 {
6495 ga_concat(&ga, termcodes[i].code);
6496 str += 2;
6497 continue; /* for (str) */
6498 }
6499 }
6500 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6501 {
6502 if (expmap && cpo_special)
6503 {
6504 ga_clear(&ga);
6505 return NULL;
6506 }
6507 c = TO_SPECIAL(str[1], str[2]);
6508 if (c == K_ZERO) /* display <Nul> as ^@ */
6509 c = NUL;
6510 str += 2;
6511 }
6512 if (IS_SPECIAL(c) || modifiers) /* special key */
6513 {
6514 if (expmap && cpo_special)
6515 {
6516 ga_clear(&ga);
6517 return NULL;
6518 }
6519 ga_concat(&ga, get_special_key_name(c, modifiers));
6520 continue; /* for (str) */
6521 }
6522 }
6523 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6524 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6525 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6526 if (c)
6527 ga_append(&ga, c);
6528 }
6529 ga_append(&ga, NUL);
6530 return (char_u *)(ga.ga_data);
6531}
6532#endif
6533
6534#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6535static char ksme_str[20];
6536static char ksmr_str[20];
6537static char ksmd_str[20];
6538
6539/*
6540 * For Win32 console: update termcap codes for existing console attributes.
6541 */
6542 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006543update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544{
6545 struct builtin_term *p;
6546
6547 p = find_builtin_term(DEFAULT_TERM);
6548 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6549 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6550 attr | 0x08); /* FOREGROUND_INTENSITY */
6551 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6552 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6553
6554 while (p->bt_string != NULL)
6555 {
6556 if (p->bt_entry == (int)KS_ME)
6557 p->bt_string = &ksme_str[0];
6558 else if (p->bt_entry == (int)KS_MR)
6559 p->bt_string = &ksmr_str[0];
6560 else if (p->bt_entry == (int)KS_MD)
6561 p->bt_string = &ksmd_str[0];
6562 ++p;
6563 }
6564}
6565#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006566
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006567#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006568 static int
6569hex_digit(int c)
6570{
6571 if (isdigit(c))
6572 return c - '0';
6573 c = TOLOWER_ASC(c);
6574 if (c >= 'a' && c <= 'f')
6575 return c - 'a' + 10;
6576 return 0x1ffffff;
6577}
6578
6579 guicolor_T
6580gui_get_color_cmn(char_u *name)
6581{
Bram Moolenaar28726652017-01-06 18:16:19 +01006582 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6583 * values as used by the MS-Windows GDI api. It should be used only for
6584 * MS-Windows GDI builds. */
6585# if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI)
6586# undef RGB
6587# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006588# ifndef RGB
6589# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6590# endif
6591# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006592 FILE *fd;
6593 char line[LINE_LEN];
6594 char_u *fname;
6595 int r, g, b, i;
6596 guicolor_T color;
6597
6598 struct rgbcolor_table_S {
6599 char_u *color_name;
6600 guicolor_T color;
6601 };
6602
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006603 /* Only non X11 colors (not present in rgb.txt) and colors in
6604 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006605 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006606 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6607 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6608 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6609 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6610 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6611 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6612 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6613 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6614 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6615 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6616 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6617 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6618 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006619 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6620 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006621 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006622 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006623 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6624 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6625 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6626 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6627 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6628 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6629 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6630 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6631 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006632 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006633 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006634 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6635 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006636 };
6637
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006638 static struct rgbcolor_table_S *colornames_table;
6639 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006640
6641 if (name[0] == '#' && STRLEN(name) == 7)
6642 {
6643 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006644 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006645 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6646 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6647 if (color > 0xffffff)
6648 return INVALCOLOR;
6649 return color;
6650 }
6651
6652 /* Check if the name is one of the colors we know */
6653 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6654 if (STRICMP(name, rgb_table[i].color_name) == 0)
6655 return rgb_table[i].color;
6656
6657 /*
6658 * Last attempt. Look in the file "$VIM/rgb.txt".
6659 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006660 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02006661 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006662 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02006663
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006664 /* colornames_table not yet initialized */
6665 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
6666 if (fname == NULL)
6667 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006668
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006669 fd = fopen((char *)fname, "rt");
6670 vim_free(fname);
6671 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02006672 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006673 if (p_verbose > 1)
6674 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt"));
6675 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006676 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006677
6678 for (counting = 1; counting >= 0; --counting)
6679 {
6680 if (!counting)
6681 {
6682 colornames_table = (struct rgbcolor_table_S *)alloc(
6683 (unsigned)(sizeof(struct rgbcolor_table_S) * size));
6684 if (colornames_table == NULL)
6685 {
6686 fclose(fd);
6687 return INVALCOLOR;
6688 }
6689 rewind(fd);
6690 }
6691 size = 0;
6692
6693 while (!feof(fd))
6694 {
6695 size_t len;
6696 int pos;
6697
6698 ignoredp = fgets(line, LINE_LEN, fd);
6699 len = strlen(line);
6700
6701 if (len <= 1 || line[len - 1] != '\n')
6702 continue;
6703
6704 line[len - 1] = '\0';
6705
6706 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
6707 if (i != 3)
6708 continue;
6709
6710 if (!counting)
6711 {
6712 char_u *s = vim_strsave((char_u *)line + pos);
6713
6714 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006715 {
6716 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006717 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006718 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006719 colornames_table[size].color_name = s;
6720 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6721 }
6722 size++;
6723 }
6724 }
6725 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02006726 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006727
6728 for (i = 0; i < size; i++)
6729 if (STRICMP(name, colornames_table[i].color_name) == 0)
6730 return colornames_table[i].color;
6731
Bram Moolenaarab302212016-04-26 20:59:29 +02006732 return INVALCOLOR;
6733}
Bram Moolenaar26af85d2017-07-23 16:45:10 +02006734
6735 guicolor_T
6736gui_get_rgb_color_cmn(int r, int g, int b)
6737{
6738 guicolor_T color = RGB(r, g, b);
6739
6740 if (color > 0xffffff)
6741 return INVALCOLOR;
6742 return color;
6743}
Bram Moolenaarab302212016-04-26 20:59:29 +02006744#endif