blob: 12c4f2e5bd6c2ffef3b8ef48b625f4b96efeb1fc [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 *
11 * term.c: functions for controlling the terminal
12 *
Bram Moolenaar48e330a2016-02-23 14:53:34 +010013 * primitive termcap support for Amiga and Win32 included
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * NOTE: padding and variable substitution is not performed,
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies.
17 */
18
19/*
20 * Some systems have a prototype for tgetstr() with (char *) instead of
21 * (char **). This define removes that prototype. We include our own prototype
22 * below.
23 */
24
25#define tgetstr tgetstr_defined_wrong
26#include "vim.h"
27
28#ifdef HAVE_TGETENT
29# ifdef HAVE_TERMIOS_H
30# include <termios.h> /* seems to be required for some Linux */
31# endif
32# ifdef HAVE_TERMCAP_H
33# include <termcap.h>
34# endif
35
36/*
37 * A few linux systems define outfuntype in termcap.h to be used as the third
38 * argument for tputs().
39 */
40# ifdef VMS
41# define TPUTSFUNCAST
42# else
43# ifdef HAVE_OUTFUNTYPE
44# define TPUTSFUNCAST (outfuntype)
45# else
46# define TPUTSFUNCAST (int (*)())
47# endif
48# endif
49#endif
50
51#undef tgetstr
52
53/*
54 * Here are the builtin termcap entries. They are not stored as complete
Bram Moolenaare60acc12011-05-10 16:41:25 +020055 * structures with all entries, as such a structure is too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 *
57 * The entries are compact, therefore they normally are included even when
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc.
60 *
61 * Each termcap is a list of builtin_term structures. It always starts with
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all
63 * details.
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code.
65 *
66 * Entries marked with "guessed" may be wrong.
67 */
68struct builtin_term
69{
70 int bt_entry;
71 char *bt_string;
72};
73
74/* start of keys that are not directly used by Vim but can be mapped */
75#define BT_EXTRA_KEYS 0x101
76
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010077static struct builtin_term *find_builtin_term(char_u *name);
78static void parse_builtin_tcap(char_u *s);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010079static void gather_termleader(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010081static void req_codes_from_term(void);
82static void req_more_codes_from_term(void);
83static void got_code_from_term(char_u *code, int len);
84static void check_for_codes_from_term(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000085#endif
86#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000087 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
88 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010089static int get_bytes_from_buf(char_u *, char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000090#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010091static void del_termcode_idx(int idx);
92static int term_is_builtin(char_u *name);
93static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010095static void switch_to_8bit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#endif
97
98#ifdef HAVE_TGETENT
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010099static char_u *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100
101/*
102 * Here is our own prototype for tgetstr(), any prototypes from the include
103 * files have been disabled by the define at the start of this file.
104 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100105char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106
107# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200108 /* Change this to "if 1" to debug what happens with termresponse. */
109# if 0
110# define DEBUG_TERMRESPONSE
111 static void log_tr(char *msg);
112# define LOG_TR(msg) log_tr(msg)
113# else
114# define LOG_TR(msg)
115# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200116
117# define STATUS_GET 1 /* send request when switching to RAW mode */
118# define STATUS_SENT 2 /* did send request, waiting for response */
119# define STATUS_GOT 3 /* received response */
120
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121/* Request Terminal Version status: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200122static int crv_status = STATUS_GET;
123
Bram Moolenaar9584b312013-03-13 19:29:28 +0100124/* Request Cursor position report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200125static int u7_status = STATUS_GET;
126
Bram Moolenaar9377df32017-10-15 13:22:01 +0200127# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200128/* Request foreground color report: */
129static int rfg_status = STATUS_GET;
130static int fg_r = 0;
131static int fg_g = 0;
132static int fg_b = 0;
133static int bg_r = 255;
134static int bg_g = 255;
135static int bg_b = 255;
Bram Moolenaar9377df32017-10-15 13:22:01 +0200136# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200137
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200138/* Request background color report: */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200139static int rbg_status = STATUS_GET;
140
Bram Moolenaar4db25542017-08-28 22:43:05 +0200141/* Request cursor blinking mode report: */
142static int rbm_status = STATUS_GET;
143
144/* Request cursor style report: */
145static int rcs_status = STATUS_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146# endif
147
148/*
149 * Don't declare these variables if termcap.h contains them.
150 * Autoconf checks if these variables should be declared extern (not all
151 * systems have them).
152 * Some versions define ospeed to be speed_t, but that is incompatible with
153 * BSD, where ospeed is short and speed_t is long.
154 */
155# ifndef HAVE_OSPEED
156# ifdef OSPEED_EXTERN
157extern short ospeed;
158# else
159short ospeed;
160# endif
161# endif
162# ifndef HAVE_UP_BC_PC
163# ifdef UP_BC_PC_EXTERN
164extern char *UP, *BC, PC;
165# else
166char *UP, *BC, PC;
167# endif
168# endif
169
170# define TGETSTR(s, p) vim_tgetstr((s), (p))
171# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100172static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#endif /* HAVE_TGETENT */
174
175static int detected_8bit = FALSE; /* detected 8-bit terminal */
176
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200177#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200178/* When the cursor shape was detected these values are used:
Bram Moolenaar4db25542017-08-28 22:43:05 +0200179 * 1: block, 2: underline, 3: vertical bar */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200180static int initial_cursor_shape = 0;
Bram Moolenaar4db25542017-08-28 22:43:05 +0200181
182/* The blink flag from the style response may be inverted from the actual
183 * blinking state, xterm XORs the flags. */
184static int initial_cursor_shape_blink = FALSE;
185
186/* The blink flag from the blinking-cursor mode response */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200187static int initial_cursor_blink = FALSE;
Bram Moolenaar37b9b812017-08-19 23:23:43 +0200188#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200189
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000190static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191{
192
193#if defined(FEAT_GUI)
194/*
195 * GUI pseudo term-cap.
196 */
197 {(int)KS_NAME, "gui"},
198 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
199 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
200# ifdef TERMINFO
201 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
202# else
203 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
204# endif
205 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
206# ifdef TERMINFO
207 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
208 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210# else
211 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
212 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214# endif
215 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
216 /* attributes switched on with 'h', off with * 'H' */
217 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
218 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
219 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
220 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
221 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
222 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
223 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000224 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
225 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200226 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, /* HL_STRIKETHROUGH */
227 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, /* HL_STRIKETHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
229 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
230 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
231 {(int)KS_MS, "y"},
232 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100233 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 {(int)KS_LE, "\b"}, /* cursor-left = BS */
235 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
236# ifdef TERMINFO
237 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
238# else
239 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
240# endif
241 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000242 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243#endif
244
245#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
247# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
248/*
249 * Amiga console window, default for Amiga
250 */
251 {(int)KS_NAME, "amiga"},
252 {(int)KS_CE, "\033[K"},
253 {(int)KS_CD, "\033[J"},
254 {(int)KS_AL, "\033[L"},
255# ifdef TERMINFO
256 {(int)KS_CAL, "\033[%p1%dL"},
257# else
258 {(int)KS_CAL, "\033[%dL"},
259# endif
260 {(int)KS_DL, "\033[M"},
261# ifdef TERMINFO
262 {(int)KS_CDL, "\033[%p1%dM"},
263# else
264 {(int)KS_CDL, "\033[%dM"},
265# endif
266 {(int)KS_CL, "\014"},
267 {(int)KS_VI, "\033[0 p"},
268 {(int)KS_VE, "\033[1 p"},
269 {(int)KS_ME, "\033[0m"},
270 {(int)KS_MR, "\033[7m"},
271 {(int)KS_MD, "\033[1m"},
272 {(int)KS_SE, "\033[0m"},
273 {(int)KS_SO, "\033[33m"},
274 {(int)KS_US, "\033[4m"},
275 {(int)KS_UE, "\033[0m"},
276 {(int)KS_CZH, "\033[3m"},
277 {(int)KS_CZR, "\033[0m"},
278#if defined(__MORPHOS__) || defined(__AROS__)
279 {(int)KS_CCO, "8"}, /* allow 8 colors */
280# ifdef TERMINFO
281 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
282 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
283# else
284 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
285 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
286# endif
287 {(int)KS_OP, "\033[m"}, /* reset colors */
288#endif
289 {(int)KS_MS, "y"},
290 {(int)KS_UT, "y"}, /* guessed */
291 {(int)KS_LE, "\b"},
292# ifdef TERMINFO
293 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
294# else
295 {(int)KS_CM, "\033[%i%d;%dH"},
296# endif
297#if defined(__MORPHOS__)
298 {(int)KS_SR, "\033M"},
299#endif
300# ifdef TERMINFO
301 {(int)KS_CRI, "\033[%p1%dC"},
302# else
303 {(int)KS_CRI, "\033[%dC"},
304# endif
305 {K_UP, "\233A"},
306 {K_DOWN, "\233B"},
307 {K_LEFT, "\233D"},
308 {K_RIGHT, "\233C"},
309 {K_S_UP, "\233T"},
310 {K_S_DOWN, "\233S"},
311 {K_S_LEFT, "\233 A"},
312 {K_S_RIGHT, "\233 @"},
313 {K_S_TAB, "\233Z"},
314 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
315 {K_F2, "\233\061~"},
316 {K_F3, "\233\062~"},
317 {K_F4, "\233\063~"},
318 {K_F5, "\233\064~"},
319 {K_F6, "\233\065~"},
320 {K_F7, "\233\066~"},
321 {K_F8, "\233\067~"},
322 {K_F9, "\233\070~"},
323 {K_F10, "\233\071~"},
324 {K_S_F1, "\233\061\060~"},
325 {K_S_F2, "\233\061\061~"},
326 {K_S_F3, "\233\061\062~"},
327 {K_S_F4, "\233\061\063~"},
328 {K_S_F5, "\233\061\064~"},
329 {K_S_F6, "\233\061\065~"},
330 {K_S_F7, "\233\061\066~"},
331 {K_S_F8, "\233\061\067~"},
332 {K_S_F9, "\233\061\070~"},
333 {K_S_F10, "\233\061\071~"},
334 {K_HELP, "\233?~"},
335 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
336 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
337 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
338 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
339 {K_END, "\233\064\065~"}, /* 101 key keyboard */
340
341 {BT_EXTRA_KEYS, ""},
342 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
343 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
344 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
345# endif
346
347# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
348/*
349 * almost standard ANSI terminal, default for bebox
350 */
351 {(int)KS_NAME, "beos-ansi"},
352 {(int)KS_CE, "\033[K"},
353 {(int)KS_CD, "\033[J"},
354 {(int)KS_AL, "\033[L"},
355# ifdef TERMINFO
356 {(int)KS_CAL, "\033[%p1%dL"},
357# else
358 {(int)KS_CAL, "\033[%dL"},
359# endif
360 {(int)KS_DL, "\033[M"},
361# ifdef TERMINFO
362 {(int)KS_CDL, "\033[%p1%dM"},
363# else
364 {(int)KS_CDL, "\033[%dM"},
365# endif
366#ifdef BEOS_PR_OR_BETTER
367# ifdef TERMINFO
368 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
369# else
370 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
371# endif
372#endif
373 {(int)KS_CL, "\033[H\033[2J"},
374#ifdef notyet
375 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
376 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
377#endif
378 {(int)KS_ME, "\033[m"}, /* normal mode */
379 {(int)KS_MR, "\033[7m"}, /* reverse */
380 {(int)KS_MD, "\033[1m"}, /* bold */
381 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
382 {(int)KS_SE, "\033[m"}, /* standout end */
383 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
384 {(int)KS_CZR, "\033[m"}, /* italic end */
385 {(int)KS_US, "\033[4m"}, /* underscore mode */
386 {(int)KS_UE, "\033[m"}, /* underscore end */
387 {(int)KS_CCO, "8"}, /* allow 8 colors */
388# ifdef TERMINFO
389 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
390 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
391# else
392 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
393 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
394# endif
395 {(int)KS_OP, "\033[m"}, /* reset colors */
396 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
397 {(int)KS_UT, "y"}, /* guessed */
398 {(int)KS_LE, "\b"},
399# ifdef TERMINFO
400 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
401# else
402 {(int)KS_CM, "\033[%i%d;%dH"},
403# endif
404 {(int)KS_SR, "\033M"},
405# ifdef TERMINFO
406 {(int)KS_CRI, "\033[%p1%dC"},
407# else
408 {(int)KS_CRI, "\033[%dC"},
409# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200410# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200412# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
414 {K_UP, "\033[A"},
415 {K_DOWN, "\033[B"},
416 {K_LEFT, "\033[D"},
417 {K_RIGHT, "\033[C"},
418# endif
419
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200420# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421/*
422 * standard ANSI terminal, default for unix
423 */
424 {(int)KS_NAME, "ansi"},
425 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
426 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
427# ifdef TERMINFO
428 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
429# else
430 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
431# endif
432 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
433# ifdef TERMINFO
434 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
435# else
436 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
437# endif
438 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
439 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
440 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
441 {(int)KS_MS, "y"},
442 {(int)KS_UT, "y"}, /* guessed */
443 {(int)KS_LE, "\b"},
444# ifdef TERMINFO
445 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
446# else
447 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
448# endif
449# ifdef TERMINFO
450 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
451# else
452 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
453# endif
454# endif
455
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200456# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457/*
458 * These codes are valid when nansi.sys or equivalent has been installed.
459 * Function keys on a PC are preceded with a NUL. These are converted into
460 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
461 * CTRL-arrow is used instead of SHIFT-arrow.
462 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 {(int)KS_NAME, "pcansi"},
464 {(int)KS_DL, "\033[M"},
465 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466 {(int)KS_CE, "\033[K"},
467 {(int)KS_CL, "\033[2J"},
468 {(int)KS_ME, "\033[0m"},
469 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
470 {(int)KS_MD, "\033[1m"}, /* bold: white text */
471 {(int)KS_SE, "\033[0m"}, /* standout end */
472 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
473 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
474 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
475 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
476 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
477 {(int)KS_CCO, "8"}, /* allow 8 colors */
478# ifdef TERMINFO
479 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
480 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
481# else
482 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
483 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
484# endif
485 {(int)KS_OP, "\033[0m"}, /* reset colors */
486 {(int)KS_MS, "y"},
487 {(int)KS_UT, "y"}, /* guessed */
488 {(int)KS_LE, "\b"},
489# ifdef TERMINFO
490 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
491# else
492 {(int)KS_CM, "\033[%i%d;%dH"},
493# endif
494# ifdef TERMINFO
495 {(int)KS_CRI, "\033[%p1%dC"},
496# else
497 {(int)KS_CRI, "\033[%dC"},
498# endif
499 {K_UP, "\316H"},
500 {K_DOWN, "\316P"},
501 {K_LEFT, "\316K"},
502 {K_RIGHT, "\316M"},
503 {K_S_LEFT, "\316s"},
504 {K_S_RIGHT, "\316t"},
505 {K_F1, "\316;"},
506 {K_F2, "\316<"},
507 {K_F3, "\316="},
508 {K_F4, "\316>"},
509 {K_F5, "\316?"},
510 {K_F6, "\316@"},
511 {K_F7, "\316A"},
512 {K_F8, "\316B"},
513 {K_F9, "\316C"},
514 {K_F10, "\316D"},
515 {K_F11, "\316\205"}, /* guessed */
516 {K_F12, "\316\206"}, /* guessed */
517 {K_S_F1, "\316T"},
518 {K_S_F2, "\316U"},
519 {K_S_F3, "\316V"},
520 {K_S_F4, "\316W"},
521 {K_S_F5, "\316X"},
522 {K_S_F6, "\316Y"},
523 {K_S_F7, "\316Z"},
524 {K_S_F8, "\316["},
525 {K_S_F9, "\316\\"},
526 {K_S_F10, "\316]"},
527 {K_S_F11, "\316\207"}, /* guessed */
528 {K_S_F12, "\316\210"}, /* guessed */
529 {K_INS, "\316R"},
530 {K_DEL, "\316S"},
531 {K_HOME, "\316G"},
532 {K_END, "\316O"},
533 {K_PAGEDOWN, "\316Q"},
534 {K_PAGEUP, "\316I"},
535# endif
536
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200537# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538/*
539 * These codes are valid for the Win32 Console . The entries that start with
540 * ESC | are translated into console calls in os_win32.c. The function keys
541 * are also translated in os_win32.c.
542 */
543 {(int)KS_NAME, "win32"},
544 {(int)KS_CE, "\033|K"}, /* clear to end of line */
545 {(int)KS_AL, "\033|L"}, /* add new blank line */
546# ifdef TERMINFO
547 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
548# else
549 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
550# endif
551 {(int)KS_DL, "\033|M"}, /* delete line */
552# ifdef TERMINFO
553 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
554# else
555 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
556# endif
557 {(int)KS_CL, "\033|J"}, /* clear screen */
558 {(int)KS_CD, "\033|j"}, /* clear to end of display */
559 {(int)KS_VI, "\033|v"}, /* cursor invisible */
560 {(int)KS_VE, "\033|V"}, /* cursor visible */
561
562 {(int)KS_ME, "\033|0m"}, /* normal */
563 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
564 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
565#if 1
566 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
567 {(int)KS_SE, "\033|0m"}, /* standout end */
568#else
569 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
570 {(int)KS_SE, "\033|f"}, /* standout end */
571#endif
572 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
573 {(int)KS_CZR, "\033|0m"}, /* italic end */
574 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
575 {(int)KS_UE, "\033|0m"}, /* underscore end */
576 {(int)KS_CCO, "16"}, /* allow 16 colors */
577# ifdef TERMINFO
578 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
579 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
580# else
581 {(int)KS_CAB, "\033|%db"}, /* set background color */
582 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
583# endif
584
585 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
586 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100587 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 {(int)KS_LE, "\b"},
589# ifdef TERMINFO
590 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
591# else
592 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
593# endif
594 {(int)KS_VB, "\033|B"}, /* visual bell */
595 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
596 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
597# ifdef TERMINFO
598 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
599# else
600 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
601# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100602# ifdef FEAT_TERMGUICOLORS
603 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
604 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
605# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
607 {K_UP, "\316H"},
608 {K_DOWN, "\316P"},
609 {K_LEFT, "\316K"},
610 {K_RIGHT, "\316M"},
611 {K_S_UP, "\316\304"},
612 {K_S_DOWN, "\316\317"},
613 {K_S_LEFT, "\316\311"},
614 {K_C_LEFT, "\316s"},
615 {K_S_RIGHT, "\316\313"},
616 {K_C_RIGHT, "\316t"},
617 {K_S_TAB, "\316\017"},
618 {K_F1, "\316;"},
619 {K_F2, "\316<"},
620 {K_F3, "\316="},
621 {K_F4, "\316>"},
622 {K_F5, "\316?"},
623 {K_F6, "\316@"},
624 {K_F7, "\316A"},
625 {K_F8, "\316B"},
626 {K_F9, "\316C"},
627 {K_F10, "\316D"},
628 {K_F11, "\316\205"},
629 {K_F12, "\316\206"},
630 {K_S_F1, "\316T"},
631 {K_S_F2, "\316U"},
632 {K_S_F3, "\316V"},
633 {K_S_F4, "\316W"},
634 {K_S_F5, "\316X"},
635 {K_S_F6, "\316Y"},
636 {K_S_F7, "\316Z"},
637 {K_S_F8, "\316["},
638 {K_S_F9, "\316\\"},
639 {K_S_F10, "\316]"},
640 {K_S_F11, "\316\207"},
641 {K_S_F12, "\316\210"},
642 {K_INS, "\316R"},
643 {K_DEL, "\316S"},
644 {K_HOME, "\316G"},
645 {K_S_HOME, "\316\302"},
646 {K_C_HOME, "\316w"},
647 {K_END, "\316O"},
648 {K_S_END, "\316\315"},
649 {K_C_END, "\316u"},
650 {K_PAGEDOWN, "\316Q"},
651 {K_PAGEUP, "\316I"},
652 {K_KPLUS, "\316N"},
653 {K_KMINUS, "\316J"},
654 {K_KMULTIPLY, "\316\067"},
655 {K_K0, "\316\332"},
656 {K_K1, "\316\336"},
657 {K_K2, "\316\342"},
658 {K_K3, "\316\346"},
659 {K_K4, "\316\352"},
660 {K_K5, "\316\356"},
661 {K_K6, "\316\362"},
662 {K_K7, "\316\366"},
663 {K_K8, "\316\372"},
664 {K_K9, "\316\376"},
665# endif
666
667# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
668/*
669 * VT320 is working as an ANSI terminal compatible DEC terminal.
670 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
671 * Note: K_F1...K_F5 are for internal use, should not be defined.
672 * TODO:- rewrite ESC[ codes to CSI
673 * - keyboard languages (CSI ? 26 n)
674 */
675 {(int)KS_NAME, "vt320"},
676 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
677 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
678# ifdef TERMINFO
679 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
680# else
681 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
682# endif
683 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
684# ifdef TERMINFO
685 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
686# else
687 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
688# endif
689 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000690 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
691 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
693 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000694 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
695 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
696 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
697 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
698 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
699 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
700 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
701 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
702 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
703 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 {(int)KS_MS, "y"},
705 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100706 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 {(int)KS_LE, "\b"},
708# ifdef TERMINFO
709 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
710 ESC_STR "[%i%p1%d;%p2%dH")},
711# else
712 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
713# endif
714# ifdef TERMINFO
715 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
716# else
717 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
718# endif
719 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
720 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
721 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
722 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000723 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
724 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
725 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
726 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
727 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
729 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
730 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
731 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
732 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000733 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
735 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
736 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
737 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
738 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
739 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
740 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
741 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
742 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
743 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
744 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
745 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
746 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
747 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
748 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
749 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
750 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
751 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
752 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
753 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
754 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
755# endif
756
757# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
758/*
759 * Ordinary vt52
760 */
761 {(int)KS_NAME, "vt52"},
762 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
763 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100764# ifdef TERMINFO
765 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
766 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
767# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100769# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100771 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
773 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 {K_UP, IF_EB("\033A", ESC_STR "A")},
775 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
776 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
777 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100778 {K_F1, IF_EB("\033P", ESC_STR "P")},
779 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
780 {K_F3, IF_EB("\033R", ESC_STR "R")},
781# ifdef __MINT__
782 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
783 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
784 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
785 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
786 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
788 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
789 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
790 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 {K_F4, IF_EB("\033S", ESC_STR "S")},
792 {K_F5, IF_EB("\033T", ESC_STR "T")},
793 {K_F6, IF_EB("\033U", ESC_STR "U")},
794 {K_F7, IF_EB("\033V", ESC_STR "V")},
795 {K_F8, IF_EB("\033W", ESC_STR "W")},
796 {K_F9, IF_EB("\033X", ESC_STR "X")},
797 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
798 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
799 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
800 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
801 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
802 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
803 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
804 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
805 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
806 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
807 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
808 {K_INS, IF_EB("\033I", ESC_STR "I")},
809 {K_HOME, IF_EB("\033E", ESC_STR "E")},
810 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
811 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
812# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 {(int)KS_MS, "y"},
815# endif
816# endif
817
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200818# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200819 {(int)KS_NAME, "xterm"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
821 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
822# ifdef TERMINFO
823 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
824# else
825 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
826# endif
827 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
828# ifdef TERMINFO
829 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
830# else
831 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
832# endif
833# ifdef TERMINFO
834 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
835 ESC_STR "[%i%p1%d;%p2%dr")},
836# else
837 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
838# endif
839 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
840 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
841 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
842 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
843 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
844 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
845 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +0200846 {(int)KS_STE, IF_EB("\033[29m", ESC_STR "[29m")},
847 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 {(int)KS_MS, "y"},
849 {(int)KS_UT, "y"},
850 {(int)KS_LE, "\b"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200851 {(int)KS_VI, IF_EB("\033[?25l", ESC_STR "[?25l")},
852 {(int)KS_VE, IF_EB("\033[?25h", ESC_STR "[?25h")},
Bram Moolenaar93c92ef2017-08-19 21:11:57 +0200853 {(int)KS_VS, IF_EB("\033[?12h", ESC_STR "[?12h")},
Bram Moolenaarce1c3272017-08-20 15:05:15 +0200854 {(int)KS_CVS, IF_EB("\033[?12l", ESC_STR "[?12l")},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200855# ifdef TERMINFO
856 {(int)KS_CSH, IF_EB("\033[%p1%d q", ESC_STR "[%p1%d q")},
857# else
858 {(int)KS_CSH, IF_EB("\033[%d q", ESC_STR "[%d q")},
859# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +0200860 {(int)KS_CRC, IF_EB("\033[?12$p", ESC_STR "[?12$p")},
Bram Moolenaar3eee06e2017-08-19 19:40:50 +0200861 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862# ifdef TERMINFO
863 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
864 ESC_STR "[%i%p1%d;%p2%dH")},
865# else
866 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
867# endif
868 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
869# ifdef TERMINFO
870 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
871# else
872 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
873# endif
874 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
875 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
876# ifdef FEAT_XTERM_SAVE
877 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
878 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
879 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
880# endif
881 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
882 {(int)KS_CIE, "\007"},
883 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
884 {(int)KS_FS, "\007"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +0200885 {(int)KS_CSC, IF_EB("\033]12;", ESC_STR "]12;")},
886 {(int)KS_CEC, "\007"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887# ifdef TERMINFO
888 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
889 ESC_STR "[8;%p1%d;%p2%dt")},
890 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
891 ESC_STR "[3;%p1%d;%p2%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200892 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893# else
894 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
895 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
Bram Moolenaarba6ec182017-04-04 22:41:10 +0200896 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897# endif
898 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +0200899 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200900 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100901 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200902# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200903 /* These are printf strings, not terminal codes. */
904 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
905 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
906# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +0100907 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")},
908 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000909
910 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
911 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
912 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
913 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
914 /* An extra set of cursor keys for vt100 mode */
915 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
916 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
917 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
918 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000920 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
921 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
922 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
923 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000924 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
925 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
926 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
927 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
928 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
929 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
930 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
931 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
932 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
933 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
934 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
935 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000937 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
938 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
939 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
940 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000941 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
942 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000943 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000944 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000945 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000946 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000947 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
948 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000949 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000950 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000951 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000952 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
953 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100954 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
955 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
956 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
957 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
958 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
959 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
960 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
961 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */
962 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963
964 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000965 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
966 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
967 /* F14 and F15 are missing, because they send the same codes as the undo
968 * and help key, although they don't work on all keyboards. */
969 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
970 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
971 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
972 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
973 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
974
975 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
976 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
977 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
978 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
979 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
980 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
981 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
982 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
983 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
984 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
985
986 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
987 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
988 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
989 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
990 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
991 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
992 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993# endif
994
995# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
996/*
997 * iris-ansi for Silicon Graphics machines.
998 */
999 {(int)KS_NAME, "iris-ansi"},
1000 {(int)KS_CE, "\033[K"},
1001 {(int)KS_CD, "\033[J"},
1002 {(int)KS_AL, "\033[L"},
1003# ifdef TERMINFO
1004 {(int)KS_CAL, "\033[%p1%dL"},
1005# else
1006 {(int)KS_CAL, "\033[%dL"},
1007# endif
1008 {(int)KS_DL, "\033[M"},
1009# ifdef TERMINFO
1010 {(int)KS_CDL, "\033[%p1%dM"},
1011# else
1012 {(int)KS_CDL, "\033[%dM"},
1013# endif
1014#if 0 /* The scroll region is not working as Vim expects. */
1015# ifdef TERMINFO
1016 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1017# else
1018 {(int)KS_CS, "\033[%i%d;%dr"},
1019# endif
1020#endif
1021 {(int)KS_CL, "\033[H\033[2J"},
1022 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
1023 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1024 {(int)KS_TI, "\033[=6h"},
1025 {(int)KS_TE, "\033[=6l"},
1026 {(int)KS_SE, "\033[21;27m"},
1027 {(int)KS_SO, "\033[1;7m"},
1028 {(int)KS_ME, "\033[m"},
1029 {(int)KS_MR, "\033[7m"},
1030 {(int)KS_MD, "\033[1m"},
1031 {(int)KS_CCO, "8"}, /* allow 8 colors */
1032 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
1033 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
1034 {(int)KS_US, "\033[4m"}, /* underline on */
1035 {(int)KS_UE, "\033[24m"}, /* underline off */
1036# ifdef TERMINFO
1037 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
1038 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1039 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
1040 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
1041# else
1042 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1043 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1044 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1045 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1046# endif
1047 {(int)KS_MS, "y"}, /* guessed */
1048 {(int)KS_UT, "y"}, /* guessed */
1049 {(int)KS_LE, "\b"},
1050# ifdef TERMINFO
1051 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1052# else
1053 {(int)KS_CM, "\033[%i%d;%dH"},
1054# endif
1055 {(int)KS_SR, "\033M"},
1056# ifdef TERMINFO
1057 {(int)KS_CRI, "\033[%p1%dC"},
1058# else
1059 {(int)KS_CRI, "\033[%dC"},
1060# endif
1061 {(int)KS_CIS, "\033P3.y"},
1062 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1063 {(int)KS_TS, "\033P1.y"},
1064 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1065# ifdef TERMINFO
1066 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1067 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1068# else
1069 {(int)KS_CWS, "\033[203;%d;%d/y"},
1070 {(int)KS_CWP, "\033[205;%d;%d/y"},
1071# endif
1072 {K_UP, "\033[A"},
1073 {K_DOWN, "\033[B"},
1074 {K_LEFT, "\033[D"},
1075 {K_RIGHT, "\033[C"},
1076 {K_S_UP, "\033[161q"},
1077 {K_S_DOWN, "\033[164q"},
1078 {K_S_LEFT, "\033[158q"},
1079 {K_S_RIGHT, "\033[167q"},
1080 {K_F1, "\033[001q"},
1081 {K_F2, "\033[002q"},
1082 {K_F3, "\033[003q"},
1083 {K_F4, "\033[004q"},
1084 {K_F5, "\033[005q"},
1085 {K_F6, "\033[006q"},
1086 {K_F7, "\033[007q"},
1087 {K_F8, "\033[008q"},
1088 {K_F9, "\033[009q"},
1089 {K_F10, "\033[010q"},
1090 {K_F11, "\033[011q"},
1091 {K_F12, "\033[012q"},
1092 {K_S_F1, "\033[013q"},
1093 {K_S_F2, "\033[014q"},
1094 {K_S_F3, "\033[015q"},
1095 {K_S_F4, "\033[016q"},
1096 {K_S_F5, "\033[017q"},
1097 {K_S_F6, "\033[018q"},
1098 {K_S_F7, "\033[019q"},
1099 {K_S_F8, "\033[020q"},
1100 {K_S_F9, "\033[021q"},
1101 {K_S_F10, "\033[022q"},
1102 {K_S_F11, "\033[023q"},
1103 {K_S_F12, "\033[024q"},
1104 {K_INS, "\033[139q"},
1105 {K_HOME, "\033[H"},
1106 {K_END, "\033[146q"},
1107 {K_PAGEUP, "\033[150q"},
1108 {K_PAGEDOWN, "\033[154q"},
1109# endif
1110
1111# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1112/*
1113 * for debugging
1114 */
1115 {(int)KS_NAME, "debug"},
1116 {(int)KS_CE, "[CE]"},
1117 {(int)KS_CD, "[CD]"},
1118 {(int)KS_AL, "[AL]"},
1119# ifdef TERMINFO
1120 {(int)KS_CAL, "[CAL%p1%d]"},
1121# else
1122 {(int)KS_CAL, "[CAL%d]"},
1123# endif
1124 {(int)KS_DL, "[DL]"},
1125# ifdef TERMINFO
1126 {(int)KS_CDL, "[CDL%p1%d]"},
1127# else
1128 {(int)KS_CDL, "[CDL%d]"},
1129# endif
1130# ifdef TERMINFO
1131 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1132# else
1133 {(int)KS_CS, "[%dCS%d]"},
1134# endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02001135# ifdef TERMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
Bram Moolenaar4033c552017-09-16 20:54:51 +02001137# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 {(int)KS_CSV, "[%dCSV%d]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139# endif
1140# ifdef TERMINFO
1141 {(int)KS_CAB, "[CAB%p1%d]"},
1142 {(int)KS_CAF, "[CAF%p1%d]"},
1143 {(int)KS_CSB, "[CSB%p1%d]"},
1144 {(int)KS_CSF, "[CSF%p1%d]"},
1145# else
1146 {(int)KS_CAB, "[CAB%d]"},
1147 {(int)KS_CAF, "[CAF%d]"},
1148 {(int)KS_CSB, "[CSB%d]"},
1149 {(int)KS_CSF, "[CSF%d]"},
1150# endif
1151 {(int)KS_OP, "[OP]"},
1152 {(int)KS_LE, "[LE]"},
1153 {(int)KS_CL, "[CL]"},
1154 {(int)KS_VI, "[VI]"},
1155 {(int)KS_VE, "[VE]"},
1156 {(int)KS_VS, "[VS]"},
1157 {(int)KS_ME, "[ME]"},
1158 {(int)KS_MR, "[MR]"},
1159 {(int)KS_MB, "[MB]"},
1160 {(int)KS_MD, "[MD]"},
1161 {(int)KS_SE, "[SE]"},
1162 {(int)KS_SO, "[SO]"},
1163 {(int)KS_UE, "[UE]"},
1164 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001165 {(int)KS_UCE, "[UCE]"},
1166 {(int)KS_UCS, "[UCS]"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001167 {(int)KS_STE, "[STE]"},
1168 {(int)KS_STS, "[STS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 {(int)KS_MS, "[MS]"},
1170 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001171 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172# ifdef TERMINFO
1173 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1174# else
1175 {(int)KS_CM, "[%dCM%d]"},
1176# endif
1177 {(int)KS_SR, "[SR]"},
1178# ifdef TERMINFO
1179 {(int)KS_CRI, "[CRI%p1%d]"},
1180# else
1181 {(int)KS_CRI, "[CRI%d]"},
1182# endif
1183 {(int)KS_VB, "[VB]"},
1184 {(int)KS_KS, "[KS]"},
1185 {(int)KS_KE, "[KE]"},
1186 {(int)KS_TI, "[TI]"},
1187 {(int)KS_TE, "[TE]"},
1188 {(int)KS_CIS, "[CIS]"},
1189 {(int)KS_CIE, "[CIE]"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001190 {(int)KS_CSC, "[CSC]"},
1191 {(int)KS_CEC, "[CEC]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 {(int)KS_TS, "[TS]"},
1193 {(int)KS_FS, "[FS]"},
1194# ifdef TERMINFO
1195 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1196 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1197# else
1198 {(int)KS_CWS, "[%dCWS%d]"},
1199 {(int)KS_CWP, "[%dCWP%d]"},
1200# endif
1201 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001202 {(int)KS_U7, "[U7]"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001203 {(int)KS_RFG, "[RFG]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001204 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 {K_UP, "[KU]"},
1206 {K_DOWN, "[KD]"},
1207 {K_LEFT, "[KL]"},
1208 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001209 {K_XUP, "[xKU]"},
1210 {K_XDOWN, "[xKD]"},
1211 {K_XLEFT, "[xKL]"},
1212 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 {K_S_UP, "[S-KU]"},
1214 {K_S_DOWN, "[S-KD]"},
1215 {K_S_LEFT, "[S-KL]"},
1216 {K_C_LEFT, "[C-KL]"},
1217 {K_S_RIGHT, "[S-KR]"},
1218 {K_C_RIGHT, "[C-KR]"},
1219 {K_F1, "[F1]"},
1220 {K_XF1, "[xF1]"},
1221 {K_F2, "[F2]"},
1222 {K_XF2, "[xF2]"},
1223 {K_F3, "[F3]"},
1224 {K_XF3, "[xF3]"},
1225 {K_F4, "[F4]"},
1226 {K_XF4, "[xF4]"},
1227 {K_F5, "[F5]"},
1228 {K_F6, "[F6]"},
1229 {K_F7, "[F7]"},
1230 {K_F8, "[F8]"},
1231 {K_F9, "[F9]"},
1232 {K_F10, "[F10]"},
1233 {K_F11, "[F11]"},
1234 {K_F12, "[F12]"},
1235 {K_S_F1, "[S-F1]"},
1236 {K_S_XF1, "[S-xF1]"},
1237 {K_S_F2, "[S-F2]"},
1238 {K_S_XF2, "[S-xF2]"},
1239 {K_S_F3, "[S-F3]"},
1240 {K_S_XF3, "[S-xF3]"},
1241 {K_S_F4, "[S-F4]"},
1242 {K_S_XF4, "[S-xF4]"},
1243 {K_S_F5, "[S-F5]"},
1244 {K_S_F6, "[S-F6]"},
1245 {K_S_F7, "[S-F7]"},
1246 {K_S_F8, "[S-F8]"},
1247 {K_S_F9, "[S-F9]"},
1248 {K_S_F10, "[S-F10]"},
1249 {K_S_F11, "[S-F11]"},
1250 {K_S_F12, "[S-F12]"},
1251 {K_HELP, "[HELP]"},
1252 {K_UNDO, "[UNDO]"},
1253 {K_BS, "[BS]"},
1254 {K_INS, "[INS]"},
1255 {K_KINS, "[KINS]"},
1256 {K_DEL, "[DEL]"},
1257 {K_KDEL, "[KDEL]"},
1258 {K_HOME, "[HOME]"},
1259 {K_S_HOME, "[C-HOME]"},
1260 {K_C_HOME, "[C-HOME]"},
1261 {K_KHOME, "[KHOME]"},
1262 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001263 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 {K_END, "[END]"},
1265 {K_S_END, "[C-END]"},
1266 {K_C_END, "[C-END]"},
1267 {K_KEND, "[KEND]"},
1268 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001269 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 {K_PAGEUP, "[PAGEUP]"},
1271 {K_PAGEDOWN, "[PAGEDOWN]"},
1272 {K_KPAGEUP, "[KPAGEUP]"},
1273 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1274 {K_MOUSE, "[MOUSE]"},
1275 {K_KPLUS, "[KPLUS]"},
1276 {K_KMINUS, "[KMINUS]"},
1277 {K_KDIVIDE, "[KDIVIDE]"},
1278 {K_KMULTIPLY, "[KMULTIPLY]"},
1279 {K_KENTER, "[KENTER]"},
1280 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001281 {K_PS, "[PASTE-START]"},
1282 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 {K_K0, "[K0]"},
1284 {K_K1, "[K1]"},
1285 {K_K2, "[K2]"},
1286 {K_K3, "[K3]"},
1287 {K_K4, "[K4]"},
1288 {K_K5, "[K5]"},
1289 {K_K6, "[K6]"},
1290 {K_K7, "[K7]"},
1291 {K_K8, "[K8]"},
1292 {K_K9, "[K9]"},
1293# endif
1294
1295#endif /* NO_BUILTIN_TCAPS */
1296
1297/*
1298 * The most minimal terminal: only clear screen and cursor positioning
1299 * Always included.
1300 */
1301 {(int)KS_NAME, "dumb"},
1302 {(int)KS_CL, "\014"},
1303#ifdef TERMINFO
1304 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1305 ESC_STR "[%i%p1%d;%p2%dH")},
1306#else
1307 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1308#endif
1309
1310/*
1311 * end marker
1312 */
1313 {(int)KS_NAME, NULL}
1314
1315}; /* end of builtin_termcaps */
1316
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001317#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001318 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001319termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001320{
Bram Moolenaarab302212016-04-26 20:59:29 +02001321 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001322}
1323
1324 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001325termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001326{
1327 guicolor_T t;
1328
1329 if (*name == NUL)
1330 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001331 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001332
1333 if (t == INVALCOLOR)
1334 EMSG2(_("E254: Cannot allocate color %s"), name);
1335 return t;
1336}
1337
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001338 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001339termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001340{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001341 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001342}
1343#endif
1344
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345/*
1346 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1347 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348#ifdef AMIGA
1349# define DEFAULT_TERM (char_u *)"amiga"
1350#endif
1351
1352#ifdef MSWIN
1353# define DEFAULT_TERM (char_u *)"win32"
1354#endif
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356#if defined(UNIX) && !defined(__MINT__)
1357# define DEFAULT_TERM (char_u *)"ansi"
1358#endif
1359
1360#ifdef __MINT__
1361# define DEFAULT_TERM (char_u *)"vt52"
1362#endif
1363
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364#ifdef VMS
1365# define DEFAULT_TERM (char_u *)"vt320"
1366#endif
1367
1368#ifdef __BEOS__
1369# undef DEFAULT_TERM
1370# define DEFAULT_TERM (char_u *)"beos-ansi"
1371#endif
1372
1373#ifndef DEFAULT_TERM
1374# define DEFAULT_TERM (char_u *)"dumb"
1375#endif
1376
1377/*
1378 * Term_strings contains currently used terminal output strings.
1379 * It is initialized with the default values by parse_builtin_tcap().
1380 * The values can be changed by setting the option with the same name.
1381 */
1382char_u *(term_strings[(int)KS_LAST + 1]);
1383
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001384static int need_gather = FALSE; /* need to fill termleader[] */
1385static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001387static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02001388static int is_not_xterm = FALSE; /* recognized not-really-xterm */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389#endif
1390
1391 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001392find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393{
1394 struct builtin_term *p;
1395
1396 p = builtin_termcaps;
1397 while (p->bt_string != NULL)
1398 {
1399 if (p->bt_entry == (int)KS_NAME)
1400 {
1401#ifdef UNIX
1402 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1403 return p;
1404 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1405 return p;
1406 else
1407#endif
1408#ifdef VMS
1409 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1410 return p;
1411 else
1412#endif
1413 if (STRCMP(term, p->bt_string) == 0)
1414 return p;
1415 }
1416 ++p;
1417 }
1418 return p;
1419}
1420
1421/*
1422 * Parsing of the builtin termcap entries.
1423 * Caller should check if 'name' is a valid builtin term.
1424 * The terminal's name is not set, as this is already done in termcapinit().
1425 */
1426 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001427parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428{
1429 struct builtin_term *p;
1430 char_u name[2];
1431 int term_8bit;
1432
1433 p = find_builtin_term(term);
1434 term_8bit = term_is_8bit(term);
1435
1436 /* Do not parse if builtin term not found */
1437 if (p->bt_string == NULL)
1438 return;
1439
1440 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1441 {
1442 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1443 {
1444 /* Only set the value if it wasn't set yet. */
1445 if (term_strings[p->bt_entry] == NULL
1446 || term_strings[p->bt_entry] == empty_option)
1447 {
1448 /* 8bit terminal: use CSI instead of <Esc>[ */
1449 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1450 {
1451 char_u *s, *t;
1452
1453 s = vim_strsave((char_u *)p->bt_string);
1454 if (s != NULL)
1455 {
1456 for (t = s; *t; ++t)
1457 if (term_7to8bit(t))
1458 {
1459 *t = term_7to8bit(t);
1460 STRCPY(t + 1, t + 2);
1461 }
1462 term_strings[p->bt_entry] = s;
1463 set_term_option_alloced(&term_strings[p->bt_entry]);
1464 }
1465 }
1466 else
1467 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1468 }
1469 }
1470 else
1471 {
1472 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1473 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1474 if (find_termcode(name) == NULL)
1475 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1476 }
1477 }
1478}
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001479
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480/*
1481 * Set number of colors.
1482 * Store it as a number in t_colors.
1483 * Store it as a string in T_CCO (using nr_colors[]).
1484 */
1485 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001486set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487{
1488 char_u nr_colors[20]; /* string for number of colors */
1489
1490 t_colors = nr;
1491 if (t_colors > 1)
1492 sprintf((char *)nr_colors, "%d", t_colors);
1493 else
1494 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001495 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496}
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001497
Bram Moolenaard7d3cbe2017-07-22 21:15:42 +02001498#if defined(FEAT_TERMRESPONSE)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02001499/*
1500 * Set the color count to "val" and redraw if it changed.
1501 */
1502 static void
1503may_adjust_color_count(int val)
1504{
1505 if (val != t_colors)
1506 {
1507 /* Nr of colors changed, initialize highlighting and
1508 * redraw everything. This causes a redraw, which usually
1509 * clears the message. Try keeping the message if it
1510 * might work. */
1511 set_keep_msg_from_hist();
1512 set_color_count(val);
1513 init_highlight(TRUE, FALSE);
1514# ifdef DEBUG_TERMRESPONSE
1515 {
1516 char buf[100];
1517 int r = redraw_asap(CLEAR);
1518
1519 sprintf(buf, "Received t_Co, redraw_asap(): %d", r);
1520 log_tr(buf);
1521 }
1522# else
1523 redraw_asap(CLEAR);
1524# endif
1525 }
1526}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527#endif
1528
1529#ifdef HAVE_TGETENT
1530static char *(key_names[]) =
1531{
1532#ifdef FEAT_TERMRESPONSE
1533 /* Do this one first, it may cause a screen redraw. */
1534 "Co",
1535#endif
1536 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 "#2", "#4", "%i", "*7",
1538 "k1", "k2", "k3", "k4", "k5", "k6",
1539 "k7", "k8", "k9", "k;", "F1", "F2",
1540 "%1", "&8", "kb", "kI", "kD", "kh",
1541 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1542 NULL
1543};
1544#endif
1545
1546/*
1547 * Set terminal options for terminal "term".
1548 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1549 *
1550 * While doing this, until ttest(), some options may be NULL, be careful.
1551 */
1552 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001553set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554{
1555 struct builtin_term *termp;
1556#ifdef HAVE_TGETENT
1557 int builtin_first = p_tbi;
1558 int try;
1559 int termcap_cleared = FALSE;
1560#endif
1561 int width = 0, height = 0;
1562 char_u *error_msg = NULL;
1563 char_u *bs_p, *del_p;
1564
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001565 /* In silect mode (ex -s) we don't use the 'term' option. */
1566 if (silent_mode)
1567 return OK;
1568
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 detected_8bit = FALSE; /* reset 8-bit detection */
1570
1571 if (term_is_builtin(term))
1572 {
1573 term += 8;
1574#ifdef HAVE_TGETENT
1575 builtin_first = 1;
1576#endif
1577 }
1578
1579/*
1580 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1581 * If builtin_first is TRUE:
1582 * 0. try builtin termcap
1583 * 1. try external termcap
1584 * 2. if both fail default to a builtin terminal
1585 * If builtin_first is FALSE:
1586 * 1. try external termcap
1587 * 2. try builtin termcap, if both fail default to a builtin terminal
1588 */
1589#ifdef HAVE_TGETENT
1590 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1591 {
1592 /*
1593 * Use external termcap
1594 */
1595 if (try == 1)
1596 {
1597 char_u *p;
1598 static char_u tstrbuf[TBUFSZ];
1599 int i;
1600 char_u tbuf[TBUFSZ];
1601 char_u *tp;
1602 static struct {
1603 enum SpecialKey dest; /* index in term_strings[] */
1604 char *name; /* termcap name for string */
1605 } string_names[] =
1606 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1607 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1608 {KS_CL, "cl"}, {KS_CD, "cd"},
1609 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
Bram Moolenaarce1c3272017-08-20 15:05:15 +02001610 {KS_ME, "me"}, {KS_MR, "mr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1612 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001613 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02001614 {KS_STE,"Te"}, {KS_STS,"Ts"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001615 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1617 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1618 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1619 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1620 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
Bram Moolenaarce1c3272017-08-20 15:05:15 +02001621 {KS_VS, "vs"}, {KS_CVS, "VS"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 {KS_CIS, "IS"}, {KS_CIE, "IE"},
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001623 {KS_CSC, "SC"}, {KS_CEC, "EC"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 {KS_TS, "ts"}, {KS_FS, "fs"},
1625 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001626 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02001627 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001628 {KS_8F, "8f"}, {KS_8B, "8b"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001629 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1630 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 {(enum SpecialKey)0, NULL}
1632 };
1633
1634 /*
1635 * If the external termcap does not have a matching entry, try the
1636 * builtin ones.
1637 */
1638 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1639 {
1640 tp = tstrbuf;
1641 if (!termcap_cleared)
1642 {
1643 clear_termoptions(); /* clear old options */
1644 termcap_cleared = TRUE;
1645 }
1646
1647 /* get output strings */
1648 for (i = 0; string_names[i].name != NULL; ++i)
1649 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001650 if (TERM_STR(string_names[i].dest) == NULL
1651 || TERM_STR(string_names[i].dest) == empty_option)
1652 TERM_STR(string_names[i].dest) =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 TGETSTR(string_names[i].name, &tp);
1654 }
1655
1656 /* tgetflag() returns 1 if the flag is present, 0 if not and
1657 * possibly -1 if the flag doesn't exist. */
1658 if ((T_MS == NULL || T_MS == empty_option)
1659 && tgetflag("ms") > 0)
1660 T_MS = (char_u *)"y";
1661 if ((T_XS == NULL || T_XS == empty_option)
1662 && tgetflag("xs") > 0)
1663 T_XS = (char_u *)"y";
Bram Moolenaar494838a2015-02-10 19:20:37 +01001664 if ((T_XN == NULL || T_XN == empty_option)
1665 && tgetflag("xn") > 0)
1666 T_XN = (char_u *)"y";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 if ((T_DB == NULL || T_DB == empty_option)
1668 && tgetflag("db") > 0)
1669 T_DB = (char_u *)"y";
1670 if ((T_DA == NULL || T_DA == empty_option)
1671 && tgetflag("da") > 0)
1672 T_DA = (char_u *)"y";
1673 if ((T_UT == NULL || T_UT == empty_option)
1674 && tgetflag("ut") > 0)
1675 T_UT = (char_u *)"y";
1676
1677
1678 /*
1679 * get key codes
1680 */
1681 for (i = 0; key_names[i] != NULL; ++i)
1682 {
1683 if (find_termcode((char_u *)key_names[i]) == NULL)
1684 {
1685 p = TGETSTR(key_names[i], &tp);
1686 /* if cursor-left == backspace, ignore it (televideo
1687 * 925) */
1688 if (p != NULL
1689 && (*p != Ctrl_H
1690 || key_names[i][0] != 'k'
1691 || key_names[i][1] != 'l'))
1692 add_termcode((char_u *)key_names[i], p, FALSE);
1693 }
1694 }
1695
1696 if (height == 0)
1697 height = tgetnum("li");
1698 if (width == 0)
1699 width = tgetnum("co");
1700
1701 /*
1702 * Get number of colors (if not done already).
1703 */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001704 if (TERM_STR(KS_CCO) == NULL
1705 || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 set_color_count(tgetnum("Co"));
1707
1708# ifndef hpux
1709 BC = (char *)TGETSTR("bc", &tp);
1710 UP = (char *)TGETSTR("up", &tp);
1711 p = TGETSTR("pc", &tp);
1712 if (p)
1713 PC = *p;
1714# endif /* hpux */
1715 }
1716 }
1717 else /* try == 0 || try == 2 */
1718#endif /* HAVE_TGETENT */
1719 /*
1720 * Use builtin termcap
1721 */
1722 {
1723#ifdef HAVE_TGETENT
1724 /*
1725 * If builtin termcap was already used, there is no need to search
1726 * for the builtin termcap again, quit now.
1727 */
1728 if (try == 2 && builtin_first && termcap_cleared)
1729 break;
1730#endif
1731 /*
1732 * search for 'term' in builtin_termcaps[]
1733 */
1734 termp = find_builtin_term(term);
1735 if (termp->bt_string == NULL) /* did not find it */
1736 {
1737#ifdef HAVE_TGETENT
1738 /*
1739 * If try == 0, first try the external termcap. If that is not
1740 * found we'll get back here with try == 2.
1741 * If termcap_cleared is set we used the external termcap,
1742 * don't complain about not finding the term in the builtin
1743 * termcap.
1744 */
1745 if (try == 0) /* try external one */
1746 continue;
1747 if (termcap_cleared) /* found in external termcap */
1748 break;
1749#endif
1750
1751 mch_errmsg("\r\n");
1752 if (error_msg != NULL)
1753 {
1754 mch_errmsg((char *)error_msg);
1755 mch_errmsg("\r\n");
1756 }
1757 mch_errmsg("'");
1758 mch_errmsg((char *)term);
1759 mch_errmsg(_("' not known. Available builtin terminals are:"));
1760 mch_errmsg("\r\n");
1761 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1762 ++termp)
1763 {
1764 if (termp->bt_entry == (int)KS_NAME)
1765 {
1766#ifdef HAVE_TGETENT
1767 mch_errmsg(" builtin_");
1768#else
1769 mch_errmsg(" ");
1770#endif
1771 mch_errmsg(termp->bt_string);
1772 mch_errmsg("\r\n");
1773 }
1774 }
1775 /* when user typed :set term=xxx, quit here */
1776 if (starting != NO_SCREEN)
1777 {
1778 screen_start(); /* don't know where cursor is now */
1779 wait_return(TRUE);
1780 return FAIL;
1781 }
1782 term = DEFAULT_TERM;
1783 mch_errmsg(_("defaulting to '"));
1784 mch_errmsg((char *)term);
1785 mch_errmsg("'\r\n");
1786 if (emsg_silent == 0)
1787 {
1788 screen_start(); /* don't know where cursor is now */
1789 out_flush();
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001790 if (!is_not_a_term())
1791 ui_delay(2000L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001793 set_string_option_direct((char_u *)"term", -1, term,
1794 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 display_errors();
1796 }
1797 out_flush();
1798#ifdef HAVE_TGETENT
1799 if (!termcap_cleared)
1800 {
1801#endif
1802 clear_termoptions(); /* clear old options */
1803#ifdef HAVE_TGETENT
1804 termcap_cleared = TRUE;
1805 }
1806#endif
1807 parse_builtin_tcap(term);
1808#ifdef FEAT_GUI
1809 if (term_is_gui(term))
1810 {
1811 out_flush();
1812 gui_init();
1813 /* If starting the GUI failed, don't do any of the other
1814 * things for this terminal */
1815 if (!gui.in_use)
1816 return FAIL;
1817#ifdef HAVE_TGETENT
1818 break; /* don't try using external termcap */
1819#endif
1820 }
1821#endif /* FEAT_GUI */
1822 }
1823#ifdef HAVE_TGETENT
1824 }
1825#endif
1826
1827/*
1828 * special: There is no info in the termcap about whether the cursor
1829 * positioning is relative to the start of the screen or to the start of the
1830 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1831 * relative.
1832 */
1833 if (STRCMP(term, "pcterm") == 0)
1834 T_CCS = (char_u *)"yes";
1835 else
1836 T_CCS = empty_option;
1837
1838#ifdef UNIX
1839/*
1840 * Any "stty" settings override the default for t_kb from the termcap.
1841 * This is in os_unix.c, because it depends a lot on the version of unix that
1842 * is being used.
1843 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1844 */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001845# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 if (!gui.in_use)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001847# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 get_stty();
1849#endif
1850
1851/*
1852 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1853 * didn't work, use the default CTRL-H
1854 * The default for t_kD is DEL, unless t_kb is DEL.
1855 * The vim_strsave'd strings are probably lost forever, well it's only two
1856 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1857 * directly.
1858 */
1859#ifdef FEAT_GUI
1860 if (!gui.in_use)
1861#endif
1862 {
1863 bs_p = find_termcode((char_u *)"kb");
1864 del_p = find_termcode((char_u *)"kD");
1865 if (bs_p == NULL || *bs_p == NUL)
1866 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1867 if ((del_p == NULL || *del_p == NUL) &&
1868 (bs_p == NULL || *bs_p != DEL))
1869 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1870 }
1871
1872#if defined(UNIX) || defined(VMS)
1873 term_is_xterm = vim_is_xterm(term);
1874#endif
1875
1876#ifdef FEAT_MOUSE
1877# if defined(UNIX) || defined(VMS)
1878# ifdef FEAT_MOUSE_TTY
1879 /*
1880 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1881 * The termcode for the mouse is added as a side effect in option.c.
1882 */
1883 {
Bram Moolenaar6d006f92017-06-23 22:35:34 +02001884 char_u *p = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001887 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 {
1889 if (use_xterm_mouse())
1890 p = NULL; /* keep existing value, might be "xterm2" */
1891 else
1892 p = (char_u *)"xterm";
1893 }
1894# endif
1895 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001896 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001898 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1899 * "xterm2" in check_termcode(). */
1900 reset_option_was_set((char_u *)"ttym");
1901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 if (p == NULL
1903# ifdef FEAT_GUI
1904 || gui.in_use
1905# endif
1906 )
1907 check_mouse_termcode(); /* set mouse termcode anyway */
1908 }
1909# endif
1910# else
1911 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1912# endif
1913#endif /* FEAT_MOUSE */
1914
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915#ifdef USE_TERM_CONSOLE
1916 /* DEFAULT_TERM indicates that it is the machine console. */
1917 if (STRCMP(term, DEFAULT_TERM) != 0)
1918 term_console = FALSE;
1919 else
1920 {
1921 term_console = TRUE;
1922# ifdef AMIGA
1923 win_resize_on(); /* enable window resizing reports */
1924# endif
1925 }
1926#endif
1927
1928#if defined(UNIX) || defined(VMS)
1929 /*
1930 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1931 */
1932 if (vim_is_fastterm(term))
1933 p_tf = TRUE;
1934#endif
1935#ifdef USE_TERM_CONSOLE
1936 /*
1937 * 'ttyfast' is default on consoles
1938 */
1939 if (term_console)
1940 p_tf = TRUE;
1941#endif
1942
1943 ttest(TRUE); /* make sure we have a valid set of terminal codes */
1944
1945 full_screen = TRUE; /* we can use termcap codes from now on */
1946 set_term_defaults(); /* use current values as defaults */
1947#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02001948 LOG_TR("setting crv_status to STATUS_GET");
1949 crv_status = STATUS_GET; /* Get terminal version later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950#endif
1951
1952 /*
1953 * Initialize the terminal with the appropriate termcap codes.
1954 * Set the mouse and window title if possible.
1955 * Don't do this when starting, need to parse the .vimrc first, because it
1956 * may redefine t_TI etc.
1957 */
1958 if (starting != NO_SCREEN)
1959 {
1960 starttermcap(); /* may change terminal mode */
1961#ifdef FEAT_MOUSE
1962 setmouse(); /* may start using the mouse */
1963#endif
1964#ifdef FEAT_TITLE
1965 maketitle(); /* may display window title */
1966#endif
1967 }
1968
1969 /* display initial screen after ttest() checking. jw. */
1970 if (width <= 0 || height <= 0)
1971 {
1972 /* termcap failed to report size */
1973 /* set defaults, in case ui_get_shellsize() also fails */
1974 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001975#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 height = 25; /* console is often 25 lines */
1977#else
1978 height = 24; /* most terminals are 24 lines */
1979#endif
1980 }
1981 set_shellsize(width, height, FALSE); /* may change Rows */
1982 if (starting != NO_SCREEN)
1983 {
1984 if (scroll_region)
1985 scroll_region_reset(); /* In case Rows changed */
1986 check_map_keycodes(); /* check mappings for terminal codes used */
1987
1988#ifdef FEAT_AUTOCMD
1989 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001990 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991
1992 /*
1993 * Execute the TermChanged autocommands for each buffer that is
1994 * loaded.
1995 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001996 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02001997 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 {
1999 if (curbuf->b_ml.ml_mfp != NULL)
2000 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2001 curbuf);
2002 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02002003 if (bufref_valid(&old_curbuf))
2004 curbuf = old_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 }
2006#endif
2007 }
2008
2009#ifdef FEAT_TERMRESPONSE
2010 may_req_termresponse();
2011#endif
2012
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002013#if defined(WIN3264) && !defined(FEAT_GUI) && defined(FEAT_TERMGUICOLORS)
2014 if (STRCMP(term, "win32") == 0)
2015 set_color_count((p_tgc) ? 256 : 16);
2016#endif
2017
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 return OK;
2019}
2020
2021#if defined(FEAT_MOUSE) || defined(PROTO)
2022
2023# ifdef FEAT_MOUSE_TTY
2024# define HMT_NORMAL 1
2025# define HMT_NETTERM 2
2026# define HMT_DEC 4
2027# define HMT_JSBTERM 8
2028# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002029# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002030# define HMT_SGR 64
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002031# define HMT_SGR_REL 128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032static int has_mouse_termcode = 0;
2033# endif
2034
Bram Moolenaar864207d2008-06-24 22:14:38 +00002035# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002037set_mouse_termcode(
2038 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2039 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040{
2041 char_u name[2];
2042
2043 name[0] = n;
2044 name[1] = KE_FILLER;
2045 add_termcode(name, s, FALSE);
2046# ifdef FEAT_MOUSE_TTY
2047# ifdef FEAT_MOUSE_JSB
2048 if (n == KS_JSBTERM_MOUSE)
2049 has_mouse_termcode |= HMT_JSBTERM;
2050 else
2051# endif
2052# ifdef FEAT_MOUSE_NET
2053 if (n == KS_NETTERM_MOUSE)
2054 has_mouse_termcode |= HMT_NETTERM;
2055 else
2056# endif
2057# ifdef FEAT_MOUSE_DEC
2058 if (n == KS_DEC_MOUSE)
2059 has_mouse_termcode |= HMT_DEC;
2060 else
2061# endif
2062# ifdef FEAT_MOUSE_PTERM
2063 if (n == KS_PTERM_MOUSE)
2064 has_mouse_termcode |= HMT_PTERM;
2065 else
2066# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002067# ifdef FEAT_MOUSE_URXVT
2068 if (n == KS_URXVT_MOUSE)
2069 has_mouse_termcode |= HMT_URXVT;
2070 else
2071# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002072# ifdef FEAT_MOUSE_SGR
2073 if (n == KS_SGR_MOUSE)
2074 has_mouse_termcode |= HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002075 else if (n == KS_SGR_MOUSE_RELEASE)
2076 has_mouse_termcode |= HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002077 else
2078# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 has_mouse_termcode |= HMT_NORMAL;
2080# endif
2081}
2082# endif
2083
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002084# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002085 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002087del_mouse_termcode(
2088 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089{
2090 char_u name[2];
2091
2092 name[0] = n;
2093 name[1] = KE_FILLER;
2094 del_termcode(name);
2095# ifdef FEAT_MOUSE_TTY
2096# ifdef FEAT_MOUSE_JSB
2097 if (n == KS_JSBTERM_MOUSE)
2098 has_mouse_termcode &= ~HMT_JSBTERM;
2099 else
2100# endif
2101# ifdef FEAT_MOUSE_NET
2102 if (n == KS_NETTERM_MOUSE)
2103 has_mouse_termcode &= ~HMT_NETTERM;
2104 else
2105# endif
2106# ifdef FEAT_MOUSE_DEC
2107 if (n == KS_DEC_MOUSE)
2108 has_mouse_termcode &= ~HMT_DEC;
2109 else
2110# endif
2111# ifdef FEAT_MOUSE_PTERM
2112 if (n == KS_PTERM_MOUSE)
2113 has_mouse_termcode &= ~HMT_PTERM;
2114 else
2115# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002116# ifdef FEAT_MOUSE_URXVT
2117 if (n == KS_URXVT_MOUSE)
2118 has_mouse_termcode &= ~HMT_URXVT;
2119 else
2120# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002121# ifdef FEAT_MOUSE_SGR
2122 if (n == KS_SGR_MOUSE)
2123 has_mouse_termcode &= ~HMT_SGR;
Bram Moolenaar6d006f92017-06-23 22:35:34 +02002124 else if (n == KS_SGR_MOUSE_RELEASE)
2125 has_mouse_termcode &= ~HMT_SGR_REL;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002126 else
2127# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 has_mouse_termcode &= ~HMT_NORMAL;
2129# endif
2130}
2131# endif
2132#endif
2133
2134#ifdef HAVE_TGETENT
2135/*
2136 * Call tgetent()
2137 * Return error message if it fails, NULL if it's OK.
2138 */
2139 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002140tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141{
2142 int i;
2143
2144 i = TGETENT(tbuf, term);
2145 if (i < 0 /* -1 is always an error */
2146# ifdef TGETENT_ZERO_ERR
2147 || i == 0 /* sometimes zero is also an error */
2148# endif
2149 )
2150 {
2151 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2152 * tgetent() with the always existing "dumb" entry to avoid a crash or
2153 * hang. */
2154 (void)TGETENT(tbuf, "dumb");
2155
2156 if (i < 0)
2157# ifdef TGETENT_ZERO_ERR
2158 return (char_u *)_("E557: Cannot open termcap file");
2159 if (i == 0)
2160# endif
2161#ifdef TERMINFO
2162 return (char_u *)_("E558: Terminal entry not found in terminfo");
2163#else
2164 return (char_u *)_("E559: Terminal entry not found in termcap");
2165#endif
2166 }
2167 return NULL;
2168}
2169
2170/*
2171 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2172 * Fix that here.
2173 */
2174 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002175vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176{
2177 char *p;
2178
2179 p = tgetstr(s, (char **)pp);
2180 if (p == (char *)-1)
2181 p = NULL;
2182 return (char_u *)p;
2183}
2184#endif /* HAVE_TGETENT */
2185
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002186#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187/*
2188 * Get Columns and Rows from the termcap. Used after a window signal if the
2189 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2190 * and "li" entries never change. But on some systems this works.
2191 * Errors while getting the entries are ignored.
2192 */
2193 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002194getlinecol(
2195 long *cp, /* pointer to columns */
2196 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197{
2198 char_u tbuf[TBUFSZ];
2199
2200 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2201 {
2202 if (*cp == 0)
2203 *cp = tgetnum("co");
2204 if (*rp == 0)
2205 *rp = tgetnum("li");
2206 }
2207}
2208#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2209
2210/*
2211 * Get a string entry from the termcap and add it to the list of termcodes.
2212 * Used for <t_xx> special keys.
2213 * Give an error message for failure when not sourcing.
2214 * If force given, replace an existing entry.
2215 * Return FAIL if the entry was not found, OK if the entry was added.
2216 */
2217 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002218add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219{
2220 char_u *term;
2221 int key;
2222 struct builtin_term *termp;
2223#ifdef HAVE_TGETENT
2224 char_u *string;
2225 int i;
2226 int builtin_first;
2227 char_u tbuf[TBUFSZ];
2228 char_u tstrbuf[TBUFSZ];
2229 char_u *tp = tstrbuf;
2230 char_u *error_msg = NULL;
2231#endif
2232
2233/*
2234 * If the GUI is running or will start in a moment, we only support the keys
2235 * that the GUI can produce.
2236 */
2237#ifdef FEAT_GUI
2238 if (gui.in_use || gui.starting)
2239 return gui_mch_haskey(name);
2240#endif
2241
2242 if (!force && find_termcode(name) != NULL) /* it's already there */
2243 return OK;
2244
2245 term = T_NAME;
2246 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2247 return FAIL;
2248
2249 if (term_is_builtin(term)) /* name starts with "builtin_" */
2250 {
2251 term += 8;
2252#ifdef HAVE_TGETENT
2253 builtin_first = TRUE;
2254#endif
2255 }
2256#ifdef HAVE_TGETENT
2257 else
2258 builtin_first = p_tbi;
2259#endif
2260
2261#ifdef HAVE_TGETENT
2262/*
2263 * We can get the entry from the builtin termcap and from the external one.
2264 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2265 * builtin termcap first.
2266 * If 'ttybuiltin' is off, try external termcap first.
2267 */
2268 for (i = 0; i < 2; ++i)
2269 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002270 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271#endif
2272 /*
2273 * Search in builtin termcap
2274 */
2275 {
2276 termp = find_builtin_term(term);
2277 if (termp->bt_string != NULL) /* found it */
2278 {
2279 key = TERMCAP2KEY(name[0], name[1]);
2280 while (termp->bt_entry != (int)KS_NAME)
2281 {
2282 if ((int)termp->bt_entry == key)
2283 {
2284 add_termcode(name, (char_u *)termp->bt_string,
2285 term_is_8bit(term));
2286 return OK;
2287 }
2288 ++termp;
2289 }
2290 }
2291 }
2292#ifdef HAVE_TGETENT
2293 else
2294 /*
2295 * Search in external termcap
2296 */
2297 {
2298 error_msg = tgetent_error(tbuf, term);
2299 if (error_msg == NULL)
2300 {
2301 string = TGETSTR((char *)name, &tp);
2302 if (string != NULL && *string != NUL)
2303 {
2304 add_termcode(name, string, FALSE);
2305 return OK;
2306 }
2307 }
2308 }
2309 }
2310#endif
2311
2312 if (sourcing_name == NULL)
2313 {
2314#ifdef HAVE_TGETENT
2315 if (error_msg != NULL)
2316 EMSG(error_msg);
2317 else
2318#endif
2319 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2320 }
2321 return FAIL;
2322}
2323
2324 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002325term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326{
2327 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2328}
2329
2330/*
2331 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2332 * Assume that the terminal is using 8-bit controls when the name contains
2333 * "8bit", like in "xterm-8bit".
2334 */
2335 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002336term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337{
2338 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2339}
2340
2341/*
2342 * Translate terminal control chars from 7-bit to 8-bit:
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002343 * <Esc>[ -> CSI <M_C_[>
2344 * <Esc>] -> OSC <M-C-]>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 * <Esc>O -> <M-C-O>
2346 */
2347 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002348term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349{
2350 if (*p == ESC)
2351 {
2352 if (p[1] == '[')
2353 return CSI;
2354 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002355 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 if (p[1] == 'O')
2357 return 0x8f;
2358 }
2359 return 0;
2360}
2361
2362#ifdef FEAT_GUI
2363 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002364term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365{
2366 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2367}
2368#endif
2369
2370#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2371
2372 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002373tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374{
2375 static char_u buf[16];
2376 char_u *p;
2377
2378 p = buf + 15;
2379 *p = '\0';
2380 do
2381 {
2382 --p;
2383 *p = (char_u) (i % 10 + '0');
2384 i /= 10;
2385 }
2386 while (i > 0 && p > buf);
2387 return p;
2388}
2389#endif
2390
2391#ifndef HAVE_TGETENT
2392
2393/*
2394 * minimal tgoto() implementation.
2395 * no padding and we only parse for %i %d and %+char
2396 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002397static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002399 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002400tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401{
2402 static char buf[30];
2403 char *p, *s, *e;
2404
2405 if (!cm)
2406 return "OOPS";
2407 e = buf + 29;
2408 for (s = buf; s < e && *cm; cm++)
2409 {
2410 if (*cm != '%')
2411 {
2412 *s++ = *cm;
2413 continue;
2414 }
2415 switch (*++cm)
2416 {
2417 case 'd':
2418 p = (char *)tltoa((unsigned long)y);
2419 y = x;
2420 while (*p)
2421 *s++ = *p++;
2422 break;
2423 case 'i':
2424 x++;
2425 y++;
2426 break;
2427 case '+':
2428 *s++ = (char)(*++cm + y);
2429 y = x;
2430 break;
2431 case '%':
2432 *s++ = *cm;
2433 break;
2434 default:
2435 return "OOPS";
2436 }
2437 }
2438 *s = '\0';
2439 return buf;
2440}
2441
2442#endif /* HAVE_TGETENT */
2443
2444/*
2445 * Set the terminal name and initialize the terminal options.
2446 * If "name" is NULL or empty, get the terminal name from the environment.
2447 * If that fails, use the default terminal name.
2448 */
2449 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002450termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451{
2452 char_u *term;
2453
2454 if (name != NULL && *name == NUL)
2455 name = NULL; /* empty name is equal to no name */
2456 term = name;
2457
2458#ifdef __BEOS__
2459 /*
2460 * TERM environment variable is normally set to 'ansi' on the Bebox;
2461 * Since the BeBox doesn't quite support full ANSI yet, we use our
2462 * own custom 'ansi-beos' termcap instead, unless the -T option has
2463 * been given on the command line.
2464 */
2465 if (term == NULL
2466 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2467 term = DEFAULT_TERM;
2468#endif
2469#ifndef MSWIN
2470 if (term == NULL)
2471 term = mch_getenv((char_u *)"TERM");
2472#endif
2473 if (term == NULL || *term == NUL)
2474 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002475 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
2477 /* Set the default terminal name. */
2478 set_string_default("term", term);
2479 set_string_default("ttytype", term);
2480
2481 /*
2482 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2483 */
2484 set_termname(T_NAME != NULL ? T_NAME : term);
2485}
2486
2487/*
2488 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2489 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002490#define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2492static char_u out_buf[OUT_SIZE + 1];
2493static int out_pos = 0; /* number of chars in out_buf */
2494
2495/*
2496 * out_flush(): flush the output buffer
2497 */
2498 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002499out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500{
2501 int len;
2502
2503 if (out_pos != 0)
2504 {
2505 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2506 len = out_pos;
2507 out_pos = 0;
2508 ui_write(out_buf, len);
2509 }
2510}
2511
Bram Moolenaara338adc2018-01-31 20:51:47 +01002512/*
Bram Moolenaard23a8232018-02-10 18:45:26 +01002513 * out_flush_cursor(): flush the output buffer and redraw the cursor.
2514 * Does not flush recursively in the GUI to avoid slow drawing.
Bram Moolenaara338adc2018-01-31 20:51:47 +01002515 */
2516 void
2517out_flush_cursor(
2518 int force UNUSED, /* when TRUE, update cursor even when not moved */
2519 int clear_selection UNUSED) /* clear selection under cursor */
2520{
2521 mch_disable_flush();
2522 out_flush();
2523 mch_enable_flush();
2524#ifdef FEAT_GUI
2525 if (gui.in_use)
2526 {
2527 gui_update_cursor(force, clear_selection);
2528 gui_may_flush();
2529 }
2530#endif
2531}
2532
2533
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534#if defined(FEAT_MBYTE) || defined(PROTO)
2535/*
2536 * Sometimes a byte out of a multi-byte character is written with out_char().
2537 * To avoid flushing half of the character, call this function first.
2538 */
2539 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002540out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2543 out_flush();
2544}
2545#endif
2546
2547#ifdef FEAT_GUI
2548/*
2549 * out_trash(): Throw away the contents of the output buffer
2550 */
2551 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002552out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553{
2554 out_pos = 0;
2555}
2556#endif
2557
2558/*
2559 * out_char(c): put a byte into the output buffer.
2560 * Flush it if it becomes full.
2561 * This should not be used for outputting text on the screen (use functions
2562 * like msg_puts() and screen_putchar() for that).
2563 */
2564 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002565out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
Bram Moolenaard0573012017-10-28 21:11:06 +02002567#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2569 out_char('\r');
2570#endif
2571
2572 out_buf[out_pos++] = c;
2573
2574 /* For testing we flush each time. */
2575 if (out_pos >= OUT_SIZE || p_wd)
2576 out_flush();
2577}
2578
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002579static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580
2581/*
2582 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2583 */
2584 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002585out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
Bram Moolenaard0573012017-10-28 21:11:06 +02002587#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2589 out_char_nf('\r');
2590#endif
2591
2592 out_buf[out_pos++] = c;
2593
2594 if (out_pos >= OUT_SIZE)
2595 out_flush();
2596}
2597
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002598#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2599 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600/*
2601 * A never-padding out_str.
2602 * use this whenever you don't want to run the string through tputs.
2603 * tputs above is harmless, but tputs from the termcap library
2604 * is likely to strip off leading digits, that it mistakes for padding
2605 * information, and "%i", "%d", etc.
2606 * This should only be used for writing terminal codes, not for outputting
2607 * normal text (use functions like msg_puts() and screen_putchar() for that).
2608 */
2609 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002610out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
2612 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2613 out_flush();
2614 while (*s)
2615 out_char_nf(*s++);
2616
2617 /* For testing we write one string at a time. */
2618 if (p_wd)
2619 out_flush();
2620}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002621#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622
2623/*
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002624 * A conditional-flushing out_str, mainly for visualbell.
2625 * Handles a delay internally, because termlib may not respect the delay or do
2626 * it at the wrong time.
2627 * Note: Only for terminal strings.
2628 */
2629 void
2630out_str_cf(char_u *s)
2631{
2632 if (s != NULL && *s)
2633 {
Bram Moolenaarc2226842017-06-29 22:27:24 +02002634#ifdef HAVE_TGETENT
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002635 char_u *p;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002636#endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002637
2638#ifdef FEAT_GUI
2639 /* Don't use tputs() when GUI is used, ncurses crashes. */
2640 if (gui.in_use)
2641 {
2642 out_str_nf(s);
2643 return;
2644 }
2645#endif
2646 if (out_pos > OUT_SIZE - 20)
2647 out_flush();
2648#ifdef HAVE_TGETENT
2649 for (p = s; *s; ++s)
2650 {
2651 /* flush just before delay command */
2652 if (*s == '$' && *(s + 1) == '<')
2653 {
2654 char_u save_c = *s;
2655 int duration = atoi((char *)s + 2);
2656
2657 *s = NUL;
2658 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2659 *s = save_c;
2660 out_flush();
Bram Moolenaarc2226842017-06-29 22:27:24 +02002661# ifdef ELAPSED_FUNC
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002662 /* Only sleep here if we can limit this happening in
2663 * vim_beep(). */
2664 p = vim_strchr(s, '>');
2665 if (p == NULL || duration <= 0)
2666 {
2667 /* can't parse the time, don't sleep here */
2668 p = s;
2669 }
2670 else
2671 {
2672 ++p;
2673 do_sleep(duration);
2674 }
Bram Moolenaarc2226842017-06-29 22:27:24 +02002675# else
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002676 /* Rely on the terminal library to sleep. */
2677 p = s;
Bram Moolenaarc2226842017-06-29 22:27:24 +02002678# endif
Bram Moolenaar2e147ca2017-06-27 17:09:37 +02002679 break;
2680 }
2681 }
2682 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
2683#else
2684 while (*s)
2685 out_char_nf(*s++);
2686#endif
2687
2688 /* For testing we write one string at a time. */
2689 if (p_wd)
2690 out_flush();
2691 }
2692}
2693
2694/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 * out_str(s): Put a character string a byte at a time into the output buffer.
2696 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2697 * This should only be used for writing terminal codes, not for outputting
2698 * normal text (use functions like msg_puts() and screen_putchar() for that).
2699 */
2700 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002701out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702{
2703 if (s != NULL && *s)
2704 {
2705#ifdef FEAT_GUI
2706 /* Don't use tputs() when GUI is used, ncurses crashes. */
2707 if (gui.in_use)
2708 {
2709 out_str_nf(s);
2710 return;
2711 }
2712#endif
2713 /* avoid terminal strings being split up */
2714 if (out_pos > OUT_SIZE - 20)
2715 out_flush();
2716#ifdef HAVE_TGETENT
2717 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2718#else
2719 while (*s)
2720 out_char_nf(*s++);
2721#endif
2722
2723 /* For testing we write one string at a time. */
2724 if (p_wd)
2725 out_flush();
2726 }
2727}
2728
2729/*
2730 * cursor positioning using termcap parser. (jw)
2731 */
2732 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002733term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 OUT_STR(tgoto((char *)T_CM, col, row));
2736}
2737
2738 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002739term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
2741 OUT_STR(tgoto((char *)T_CRI, 0, i));
2742}
2743
2744 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002745term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746{
2747 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2748}
2749
2750 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002751term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752{
2753 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2754}
2755
2756#if defined(HAVE_TGETENT) || defined(PROTO)
2757 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002758term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760 /* Can't handle a negative value here */
2761 if (x < 0)
2762 x = 0;
2763 if (y < 0)
2764 y = 0;
2765 OUT_STR(tgoto((char *)T_CWP, y, x));
2766}
2767
Bram Moolenaarba6ec182017-04-04 22:41:10 +02002768# if defined(FEAT_TERMRESPONSE) || defined(PROTO)
2769/*
2770 * Return TRUE if we can request the terminal for a response.
2771 */
2772 static int
2773can_get_termresponse()
2774{
2775 return cur_tmode == TMODE_RAW
2776 && termcap_active
2777# ifdef UNIX
2778 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
2779# endif
2780 && p_ek;
2781}
2782
2783static int winpos_x;
2784static int winpos_y;
2785static int waiting_for_winpos = FALSE;
2786
2787/*
2788 * Try getting the Vim window position from the terminal.
2789 * Returns OK or FAIL.
2790 */
2791 int
2792term_get_winpos(int *x, int *y)
2793{
2794 int count = 0;
2795
2796 if (*T_CGP == NUL || !can_get_termresponse())
2797 return FAIL;
2798 winpos_x = -1;
2799 winpos_y = -1;
2800 waiting_for_winpos = TRUE;
2801 OUT_STR(T_CGP);
2802 out_flush();
2803
2804 /* Try reading the result for 100 msec. */
2805 while (count++ < 10)
2806 {
2807 (void)vpeekc_nomap();
2808 if (winpos_x >= 0 && winpos_y >= 0)
2809 {
2810 *x = winpos_x;
2811 *y = winpos_y;
2812 waiting_for_winpos = FALSE;
2813 return OK;
2814 }
2815 ui_delay(10, FALSE);
2816 }
2817 waiting_for_winpos = FALSE;
2818 return FALSE;
2819}
2820# endif
2821
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 void
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002823term_set_winsize(int height, int width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002825 OUT_STR(tgoto((char *)T_CWS, width, height));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826}
2827#endif
2828
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002830term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831{
2832 char buf[20];
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002833 int i = *s == CSI ? 1 : 2;
2834 /* index in s[] just after <Esc>[ or CSI */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835
2836 /* Special handling of 16 colors, because termcap can't handle it */
2837 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2838 /* Also accept CSI instead of <Esc>[ */
2839 if (n >= 8 && t_colors >= 16
2840 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2841 && s[i] != NUL
2842 && (STRCMP(s + i + 1, "%p1%dm") == 0
2843 || STRCMP(s + i + 1, "%dm") == 0)
2844 && (s[i] == '3' || s[i] == '4'))
2845 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002847 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002849 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850#endif
Bram Moolenaar827b1652016-05-05 18:14:03 +02002851 sprintf(buf, format,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2853 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2854 : (n >= 16 ? "48;5;" : "10"));
2855 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2856 }
2857 else
2858 OUT_STR(tgoto((char *)s, 0, n));
2859}
2860
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002861 void
2862term_fg_color(int n)
2863{
2864 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2865 if (*T_CAF)
2866 term_color(T_CAF, n);
2867 else if (*T_CSF)
2868 term_color(T_CSF, n);
2869}
2870
2871 void
2872term_bg_color(int n)
2873{
2874 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2875 if (*T_CAB)
2876 term_color(T_CAB, n);
2877 else if (*T_CSB)
2878 term_color(T_CSB, n);
2879}
2880
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002881#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002882
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002883#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2884#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2885#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002886
2887 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002888term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002889{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002890#define MAX_COLOR_STR_LEN 100
2891 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002892
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002893 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002894 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002895 OUT_STR(buf);
2896}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002897
2898 void
2899term_fg_rgb_color(guicolor_T rgb)
2900{
2901 term_rgb_color(T_8F, rgb);
2902}
2903
2904 void
2905term_bg_rgb_color(guicolor_T rgb)
2906{
2907 term_rgb_color(T_8B, rgb);
2908}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002909#endif
2910
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002911#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2912 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913/*
2914 * Generic function to set window title, using t_ts and t_fs.
2915 */
2916 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002917term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918{
2919 /* t_ts takes one argument: column in status line */
2920 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2921 out_str_nf(title);
2922 out_str(T_FS); /* set title end */
2923 out_flush();
2924}
2925#endif
2926
2927/*
2928 * Make sure we have a valid set or terminal options.
2929 * Replace all entries that are NULL by empty_option
2930 */
2931 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002932ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933{
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02002934 char_u *env_colors;
2935
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 check_options(); /* make sure no options are NULL */
2937
2938 /*
2939 * MUST have "cm": cursor motion.
2940 */
2941 if (*T_CM == NUL)
2942 EMSG(_("E437: terminal capability \"cm\" required"));
2943
2944 /*
2945 * if "cs" defined, use a scroll region, it's faster.
2946 */
2947 if (*T_CS != NUL)
2948 scroll_region = TRUE;
2949 else
2950 scroll_region = FALSE;
2951
2952 if (pairs)
2953 {
2954 /*
2955 * optional pairs
2956 */
2957 /* TP goes to normal mode for TI (invert) and TB (bold) */
2958 if (*T_ME == NUL)
2959 T_ME = T_MR = T_MD = T_MB = empty_option;
2960 if (*T_SO == NUL || *T_SE == NUL)
2961 T_SO = T_SE = empty_option;
2962 if (*T_US == NUL || *T_UE == NUL)
2963 T_US = T_UE = empty_option;
2964 if (*T_CZH == NUL || *T_CZR == NUL)
2965 T_CZH = T_CZR = empty_option;
2966
2967 /* T_VE is needed even though T_VI is not defined */
2968 if (*T_VE == NUL)
2969 T_VI = empty_option;
2970
2971 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2972 if (*T_ME == NUL)
2973 {
2974 T_ME = T_SE;
2975 T_MR = T_SO;
2976 T_MD = T_SO;
2977 }
2978
2979 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2980 if (*T_SO == NUL)
2981 {
2982 T_SE = T_ME;
2983 if (*T_MR == NUL)
2984 T_SO = T_MD;
2985 else
2986 T_SO = T_MR;
2987 }
2988
2989 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2990 if (*T_CZH == NUL)
2991 {
2992 T_CZR = T_ME;
2993 if (*T_MR == NUL)
2994 T_CZH = T_MD;
2995 else
2996 T_CZH = T_MR;
2997 }
2998
2999 /* "Sb" and "Sf" come in pairs */
3000 if (*T_CSB == NUL || *T_CSF == NUL)
3001 {
3002 T_CSB = empty_option;
3003 T_CSF = empty_option;
3004 }
3005
3006 /* "AB" and "AF" come in pairs */
3007 if (*T_CAB == NUL || *T_CAF == NUL)
3008 {
3009 T_CAB = empty_option;
3010 T_CAF = empty_option;
3011 }
3012
3013 /* if 'Sb' and 'AB' are not defined, reset "Co" */
3014 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00003015 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016
3017 /* Set 'weirdinvert' according to value of 't_xs' */
3018 p_wiv = (*T_XS != NUL);
3019 }
3020 need_gather = TRUE;
3021
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003022 /* Set t_colors to the value of $COLORS or t_Co. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 t_colors = atoi((char *)T_CCO);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02003024 env_colors = mch_getenv((char_u *)"COLORS");
3025 if (env_colors != NULL && isdigit(*env_colors))
3026 {
3027 int colors = atoi((char *)env_colors);
3028
3029 if (colors != t_colors)
3030 set_color_count(colors);
3031 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032}
3033
3034#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3035 || defined(PROTO)
3036/*
3037 * Represent the given long_u as individual bytes, with the most significant
3038 * byte first, and store them in dst.
3039 */
3040 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003041add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042{
3043 int i;
3044 int shift;
3045
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003046 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 {
3048 shift = 8 * (sizeof(long_u) - i);
3049 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3050 }
3051}
3052
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003053static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054
3055/*
3056 * Interpret the next string of bytes in buf as a long integer, with the most
3057 * significant byte first. Note that it is assumed that buf has been through
3058 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3059 * Puts result in val, and returns the number of bytes read from buf
3060 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3061 * were present.
3062 */
3063 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003064get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065{
3066 int len;
3067 char_u bytes[sizeof(long_u)];
3068 int i;
3069 int shift;
3070
3071 *val = 0;
3072 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3073 if (len != -1)
3074 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003075 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 {
3077 shift = 8 * (sizeof(long_u) - 1 - i);
3078 *val += (long_u)bytes[i] << shift;
3079 }
3080 }
3081 return len;
3082}
3083#endif
3084
3085#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00003086 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
3087 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088/*
3089 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3090 * that buf has been through inchar(). Returns the actual number of bytes used
3091 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3092 * available.
3093 */
3094 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003095get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096{
3097 int len = 0;
3098 int i;
3099 char_u c;
3100
3101 for (i = 0; i < num_bytes; i++)
3102 {
3103 if ((c = buf[len++]) == NUL)
3104 return -1;
3105 if (c == K_SPECIAL)
3106 {
3107 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3108 return -1;
3109 if (buf[len++] == (int)KS_ZERO)
3110 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003111 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3112 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3113 if (buf[len++] == (int)KE_CSI)
3114 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003116 else if (c == CSI && buf[len] == KS_EXTRA
3117 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003118 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3119 * the start of a special key, see add_to_input_buf_csi(). */
3120 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 bytes[i] = c;
3122 }
3123 return len;
3124}
3125#endif
3126
3127/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003128 * Check if the new shell size is valid, correct it if it's too small or way
3129 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 */
3131 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003132check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 if (Rows < min_rows()) /* need room for one window and command line */
3135 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003136 limit_screen_size();
3137}
3138
3139/*
3140 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3141 */
3142 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003143limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003144{
3145 if (Columns < MIN_COLUMNS)
3146 Columns = MIN_COLUMNS;
3147 else if (Columns > 10000)
3148 Columns = 10000;
3149 if (Rows > 1000)
3150 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151}
3152
Bram Moolenaar86b68352004-12-27 21:59:20 +00003153/*
3154 * Invoked just before the screen structures are going to be (re)allocated.
3155 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003157win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158{
3159 static int old_Rows = 0;
3160 static int old_Columns = 0;
3161
3162 if (old_Rows != Rows || old_Columns != Columns)
3163 ui_new_shellsize();
3164 if (old_Rows != Rows)
3165 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003166 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003167 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003168 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 old_Rows = Rows;
3170 shell_new_rows(); /* update window sizes */
3171 }
3172 if (old_Columns != Columns)
3173 {
3174 old_Columns = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 shell_new_columns(); /* update window sizes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 }
3177}
3178
3179/*
3180 * Call this function when the Vim shell has been resized in any way.
3181 * Will obtain the current size and redraw (also when size didn't change).
3182 */
3183 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003184shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
3186 set_shellsize(0, 0, FALSE);
3187}
3188
3189/*
3190 * Check if the shell size changed. Handle a resize.
3191 * When the size didn't change, nothing happens.
3192 */
3193 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003194shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195{
3196 int old_Rows = Rows;
3197 int old_Columns = Columns;
3198
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003199 if (!exiting
3200#ifdef FEAT_GUI
3201 /* Do not get the size when executing a shell command during
3202 * startup. */
3203 && !gui.starting
3204#endif
3205 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003206 {
3207 (void)ui_get_shellsize();
3208 check_shellsize();
3209 if (old_Rows != Rows || old_Columns != Columns)
3210 shell_resized();
3211 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212}
3213
3214/*
3215 * Set size of the Vim shell.
3216 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3217 * window size (this is used for the :win command).
3218 * If 'mustset' is FALSE, we may try to get the real window size and if
3219 * it fails use 'width' and 'height'.
3220 */
3221 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003222set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223{
3224 static int busy = FALSE;
3225
3226 /*
3227 * Avoid recursiveness, can happen when setting the window size causes
3228 * another window-changed signal.
3229 */
3230 if (busy)
3231 return;
3232
3233 if (width < 0 || height < 0) /* just checking... */
3234 return;
3235
Bram Moolenaara971b822011-09-14 14:43:25 +02003236 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003238 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 State = SETWSIZE;
3240 return;
3241 }
3242
Bram Moolenaara971b822011-09-14 14:43:25 +02003243 /* curwin->w_buffer can be NULL when we are closing a window and the
3244 * buffer has already been closed and removing a scrollbar causes a resize
3245 * event. Don't resize then, it will happen after entering another buffer.
3246 */
3247 if (curwin->w_buffer == NULL)
3248 return;
3249
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 ++busy;
3251
3252#ifdef AMIGA
3253 out_flush(); /* must do this before mch_get_shellsize() for
3254 some obscure reason */
3255#endif
3256
3257 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3258 {
3259 Rows = height;
3260 Columns = width;
3261 check_shellsize();
3262 ui_set_shellsize(mustset);
3263 }
3264 else
3265 check_shellsize();
3266
3267 /* The window layout used to be adjusted here, but it now happens in
3268 * screenalloc() (also invoked from screenclear()). That is because the
3269 * "busy" check above may skip this, but not screenalloc(). */
3270
3271 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3272 screenclear();
3273 else
3274 screen_start(); /* don't know where cursor is now */
3275
3276 if (starting != NO_SCREEN)
3277 {
3278#ifdef FEAT_TITLE
3279 maketitle();
3280#endif
3281 changed_line_abv_curs();
3282 invalidate_botline();
3283
3284 /*
3285 * We only redraw when it's needed:
3286 * - While at the more prompt or executing an external command, don't
3287 * redraw, but position the cursor.
3288 * - While editing the command line, only redraw that.
3289 * - in Ex mode, don't redraw anything.
3290 * - Otherwise, redraw right now, and position the cursor.
3291 * Always need to call update_screen() or screenalloc(), to make
3292 * sure Rows/Columns and the size of ScreenLines[] is correct!
3293 */
3294 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3295 || exmode_active)
3296 {
3297 screenalloc(FALSE);
3298 repeat_message();
3299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 else
3301 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003302#ifdef FEAT_SCROLLBIND
3303 if (curwin->w_p_scb)
3304 do_check_scrollbind(TRUE);
3305#endif
3306 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003307 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003308 update_screen(NOT_VALID);
3309 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003310 }
3311 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003312 {
3313 update_topline();
3314#if defined(FEAT_INS_EXPAND)
3315 if (pum_visible())
3316 {
3317 redraw_later(NOT_VALID);
Bram Moolenaara5e66212017-09-29 22:42:33 +02003318 ins_compl_show_pum();
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003319 }
Bram Moolenaar280f1262006-01-30 00:14:18 +00003320#endif
Bram Moolenaara5e66212017-09-29 22:42:33 +02003321 update_screen(NOT_VALID);
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003322 if (redrawing())
3323 setcursor();
3324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 }
3326 cursor_on(); /* redrawing may have switched it off */
3327 }
3328 out_flush();
3329 --busy;
3330}
3331
3332/*
3333 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3334 * commands and Ex mode).
3335 */
3336 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003337settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338{
3339#ifdef FEAT_GUI
3340 /* don't set the term where gvim was started to any mode */
3341 if (gui.in_use)
3342 return;
3343#endif
3344
3345 if (full_screen)
3346 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 /*
3348 * When returning after calling a shell we want to really set the
3349 * terminal to raw mode, even though we think it already is, because
3350 * the shell program may have reset the terminal mode.
3351 * When we think the terminal is normal, don't try to set it to
3352 * normal again, because that causes problems (logout!) on some
3353 * machines.
3354 */
3355 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3356 {
3357#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003358# ifdef FEAT_GUI
3359 if (!gui.in_use && !gui.starting)
3360# endif
3361 {
3362 /* May need to check for T_CRV response and termcodes, it
3363 * doesn't work in Cooked mode, an external program may get
3364 * them. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003365 if (tmode != TMODE_RAW && (crv_status == STATUS_SENT
3366 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003367#ifdef FEAT_TERMINAL
3368 || rfg_status == STATUS_SENT
3369#endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003370 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003371 || rbm_status == STATUS_SENT
3372 || rcs_status == STATUS_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003373 (void)vpeekc_nomap();
3374 check_for_codes_from_term();
3375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376#endif
3377#ifdef FEAT_MOUSE_TTY
3378 if (tmode != TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003379 mch_setmouse(FALSE); /* switch mouse off */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003381 if (tmode != TMODE_RAW)
3382 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 out_flush();
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003384 mch_settmode(tmode); /* machine specific function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 cur_tmode = tmode;
3386#ifdef FEAT_MOUSE
3387 if (tmode == TMODE_RAW)
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003388 setmouse(); /* may switch mouse on */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389#endif
Bram Moolenaar62cf09b2017-04-20 19:44:09 +02003390 if (tmode == TMODE_RAW)
3391 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 out_flush();
3393 }
3394#ifdef FEAT_TERMRESPONSE
3395 may_req_termresponse();
3396#endif
3397 }
3398}
3399
3400 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003401starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402{
3403 if (full_screen && !termcap_active)
3404 {
3405 out_str(T_TI); /* start termcap mode */
3406 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003407 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 out_flush();
3409 termcap_active = TRUE;
3410 screen_start(); /* don't know where cursor is now */
3411#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003412# ifdef FEAT_GUI
3413 if (!gui.in_use && !gui.starting)
3414# endif
3415 {
3416 may_req_termresponse();
3417 /* Immediately check for a response. If t_Co changes, we don't
3418 * want to redraw with wrong colors first. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003419 if (crv_status == STATUS_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003420 check_for_codes_from_term();
3421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422#endif
3423 }
3424}
3425
3426 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003427stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428{
3429 screen_stop_highlight();
3430 reset_cterm_colors();
3431 if (termcap_active)
3432 {
3433#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003434# ifdef FEAT_GUI
3435 if (!gui.in_use && !gui.starting)
3436# endif
3437 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003438 /* May need to discard T_CRV, T_U7 or T_RBG response. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003439 if (crv_status == STATUS_SENT
3440 || u7_status == STATUS_SENT
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003441# ifdef FEAT_TERMINAL
3442 || rfg_status == STATUS_SENT
3443# endif
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003444 || rbg_status == STATUS_SENT
Bram Moolenaar4db25542017-08-28 22:43:05 +02003445 || rbm_status == STATUS_SENT
3446 || rcs_status == STATUS_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003447 {
3448# ifdef UNIX
3449 /* Give the terminal a chance to respond. */
3450 mch_delay(100L, FALSE);
3451# endif
3452# ifdef TCIFLUSH
3453 /* Discard data received but not read. */
3454 if (exiting)
3455 tcflush(fileno(stdin), TCIFLUSH);
3456# endif
3457 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003458 /* Check for termcodes first, otherwise an external program may
3459 * get them. */
3460 check_for_codes_from_term();
3461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003463 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 out_str(T_KE); /* stop "keypad transmit" mode */
3465 out_flush();
3466 termcap_active = FALSE;
3467 cursor_on(); /* just in case it is still off */
3468 out_str(T_TE); /* stop termcap mode */
3469 screen_start(); /* don't know where cursor is now */
3470 out_flush();
3471 }
3472}
3473
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003474#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475/*
3476 * Request version string (for xterm) when needed.
3477 * Only do this after switching to raw mode, otherwise the result will be
3478 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003479 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003480 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 * Only do this after termcap mode has been started, otherwise the codes for
3482 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003483 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3484 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003485 * On Unix only do it when both output and input are a tty (avoid writing
3486 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 * The result is caught in check_termcode().
3488 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003489 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003490may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003492 if (crv_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003493 && can_get_termresponse()
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003494 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 && *T_CRV != NUL)
3496 {
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003497 LOG_TR("Sending CRV request");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 out_str(T_CRV);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003499 crv_status = STATUS_SENT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 /* check for the characters now, otherwise they might be eaten by
3501 * get_keystroke() */
3502 out_flush();
3503 (void)vpeekc_nomap();
3504 }
3505}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003506
3507# if defined(FEAT_MBYTE) || defined(PROTO)
3508/*
3509 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003510 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003511 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003512 * If the terminal treats \u25bd as single width, the position is (1, 1),
3513 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003514 * This function has the side effect that changes cursor position, so
3515 * it must be called immediately after entering termcap mode.
3516 */
3517 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003518may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003519{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003520 if (u7_status == STATUS_GET
Bram Moolenaarba6ec182017-04-04 22:41:10 +02003521 && can_get_termresponse()
3522 && starting == 0
Bram Moolenaar9584b312013-03-13 19:29:28 +01003523 && *T_U7 != NUL
3524 && !option_was_set((char_u *)"ambiwidth"))
3525 {
3526 char_u buf[16];
3527
Bram Moolenaar2951b772013-07-03 12:45:31 +02003528 LOG_TR("Sending U7 request");
3529 /* Do this in the second row. In the first row the returned sequence
3530 * may be CSI 1;2R, which is the same as <S-F3>. */
3531 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003532 buf[mb_char2bytes(0x25bd, buf)] = 0;
3533 out_str(buf);
3534 out_str(T_U7);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003535 u7_status = STATUS_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003536 out_flush();
Bram Moolenaar976787d2017-06-04 15:45:50 +02003537
3538 /* This overwrites a few characters on the screen, a redraw is needed
3539 * after this. Clear them out for now. */
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003540 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003541 out_str((char_u *)" ");
3542 term_windgoto(0, 0);
Bram Moolenaar976787d2017-06-04 15:45:50 +02003543
Bram Moolenaar05684312017-12-09 15:11:24 +01003544 /* Need to reset the known cursor position. */
3545 screen_start();
3546
Bram Moolenaar9584b312013-03-13 19:29:28 +01003547 /* check for the characters now, otherwise they might be eaten by
3548 * get_keystroke() */
3549 out_flush();
3550 (void)vpeekc_nomap();
3551 }
3552}
3553# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003554
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003555/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003556 * Similar to requesting the version string: Request the terminal background
3557 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003558 */
3559 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003560may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003561{
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003562 if (can_get_termresponse() && starting == 0)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003563 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003564 int didit = FALSE;
3565
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003566# ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003567 /* Only request foreground if t_RF is set. */
3568 if (rfg_status == STATUS_GET && *T_RFG != NUL)
3569 {
3570 LOG_TR("Sending FG request");
3571 out_str(T_RFG);
3572 rfg_status = STATUS_SENT;
3573 didit = TRUE;
3574 }
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02003575# endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003576
3577 /* Only request background if t_RB is set. */
3578 if (rbg_status == STATUS_GET && *T_RBG != NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003579 {
3580 LOG_TR("Sending BG request");
3581 out_str(T_RBG);
3582 rbg_status = STATUS_SENT;
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003583 didit = TRUE;
3584 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003585
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02003586 if (didit)
3587 {
Bram Moolenaar833e0e32017-08-26 15:16:03 +02003588 /* check for the characters now, otherwise they might be eaten by
3589 * get_keystroke() */
3590 out_flush();
3591 (void)vpeekc_nomap();
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003592 }
3593 }
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003594}
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003595
Bram Moolenaar2951b772013-07-03 12:45:31 +02003596# ifdef DEBUG_TERMRESPONSE
3597 static void
3598log_tr(char *msg)
3599{
3600 static FILE *fd_tr = NULL;
3601 static proftime_T start;
3602 proftime_T now;
3603
3604 if (fd_tr == NULL)
3605 {
3606 fd_tr = fopen("termresponse.log", "w");
3607 profile_start(&start);
3608 }
3609 now = start;
3610 profile_end(&now);
3611 fprintf(fd_tr, "%s: %s %s\n",
3612 profile_msg(&now),
3613 must_redraw == NOT_VALID ? "NV"
3614 : must_redraw == CLEAR ? "CL" : " ",
3615 msg);
3616}
3617# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618#endif
3619
3620/*
3621 * Return TRUE when saving and restoring the screen.
3622 */
3623 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003624swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625{
3626 return (full_screen && *T_TI != NUL);
3627}
3628
3629#ifdef FEAT_MOUSE
3630/*
3631 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3632 */
3633 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003634setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635{
3636# ifdef FEAT_MOUSE_TTY
3637 int checkfor;
3638# endif
3639
3640# ifdef FEAT_MOUSESHAPE
3641 update_mouseshape(-1);
3642# endif
3643
3644# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3645# ifdef FEAT_GUI
3646 /* In the GUI the mouse is always enabled. */
3647 if (gui.in_use)
3648 return;
3649# endif
3650 /* be quick when mouse is off */
3651 if (*p_mouse == NUL || has_mouse_termcode == 0)
3652 return;
3653
3654 /* don't switch mouse on when not in raw mode (Ex mode) */
3655 if (cur_tmode != TMODE_RAW)
3656 {
3657 mch_setmouse(FALSE);
3658 return;
3659 }
3660
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 if (VIsual_active)
3662 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003663 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 checkfor = MOUSE_RETURN;
3665 else if (State & INSERT)
3666 checkfor = MOUSE_INSERT;
3667 else if (State & CMDLINE)
3668 checkfor = MOUSE_COMMAND;
3669 else if (State == CONFIRM || State == EXTERNCMD)
3670 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3671 else
3672 checkfor = MOUSE_NORMAL; /* assume normal mode */
3673
3674 if (mouse_has(checkfor))
3675 mch_setmouse(TRUE);
3676 else
3677 mch_setmouse(FALSE);
3678# endif
3679}
3680
3681/*
3682 * Return TRUE if
3683 * - "c" is in 'mouse', or
3684 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3685 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3686 * normal editing mode (not at hit-return message).
3687 */
3688 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003689mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690{
3691 char_u *p;
3692
3693 for (p = p_mouse; *p; ++p)
3694 switch (*p)
3695 {
3696 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3697 return TRUE;
3698 break;
3699 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3700 return TRUE;
3701 break;
3702 default: if (c == *p) return TRUE; break;
3703 }
3704 return FALSE;
3705}
3706
3707/*
3708 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3709 */
3710 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003711mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712{
3713 return (p_mousem[0] == 'p');
3714}
3715#endif
3716
3717/*
3718 * By outputting the 'cursor very visible' termcap code, for some windowed
3719 * terminals this makes the screen scrolled to the correct position.
3720 * Used when starting Vim or returning from a shell.
3721 */
3722 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003723scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003725 if (*T_VS != NUL && *T_CVS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 {
3727 out_str(T_VS);
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003728 out_str(T_CVS);
3729 screen_start(); /* don't know where cursor is now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 }
3731}
3732
3733static int cursor_is_off = FALSE;
3734
3735/*
3736 * Enable the cursor.
3737 */
3738 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003739cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740{
3741 if (cursor_is_off)
3742 {
3743 out_str(T_VE);
3744 cursor_is_off = FALSE;
3745 }
3746}
3747
3748/*
3749 * Disable the cursor.
3750 */
3751 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003752cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753{
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003754 if (full_screen && !cursor_is_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 {
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003756 out_str(T_VI); /* disable cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 cursor_is_off = TRUE;
3758 }
3759}
3760
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003761#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003763 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003764 */
3765 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003766term_cursor_mode(int forced)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003767{
Bram Moolenaarc9770922017-08-12 20:11:53 +02003768 static int showing_mode = -1;
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003769 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003770
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003771 /* Only do something when redrawing the screen and we can restore the
3772 * mode. */
3773 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003774 {
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003775# ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003776 if (forced && initial_cursor_shape > 0)
3777 /* Restore to initial values. */
3778 term_cursor_shape(initial_cursor_shape, initial_cursor_blink);
Bram Moolenaar37b9b812017-08-19 23:23:43 +02003779# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003780 return;
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02003781 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003782
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003783 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003784 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003785 if (forced || showing_mode != REPLACE)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003786 {
3787 if (*T_CSR != NUL)
3788 p = T_CSR; /* Replace mode cursor */
3789 else
3790 p = T_CSI; /* fall back to Insert mode cursor */
3791 if (*p != NUL)
3792 {
3793 out_str(p);
3794 showing_mode = REPLACE;
3795 }
3796 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003797 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003798 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003799 {
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003800 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003801 {
3802 out_str(T_CSI); /* Insert mode cursor */
3803 showing_mode = INSERT;
3804 }
3805 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003806 else if (forced || showing_mode != NORMAL)
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003807 {
3808 out_str(T_CEI); /* non-Insert mode cursor */
3809 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003810 }
3811}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003812
3813# if defined(FEAT_TERMINAL) || defined(PROTO)
3814 void
3815term_cursor_color(char_u *color)
3816{
3817 if (*T_CSC != NUL)
3818 {
3819 out_str(T_CSC); /* set cursor color start */
3820 out_str_nf(color);
3821 out_str(T_CEC); /* set cursor color end */
3822 out_flush();
3823 }
3824}
Bram Moolenaarfc8bec02017-08-19 19:57:34 +02003825# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003826
Bram Moolenaar4db25542017-08-28 22:43:05 +02003827 int
3828blink_state_is_inverted()
3829{
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003830#ifdef FEAT_TERMRESPONSE
Bram Moolenaar4db25542017-08-28 22:43:05 +02003831 return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
3832 && initial_cursor_blink != initial_cursor_shape_blink;
Bram Moolenaar3c37a8e2017-08-28 23:00:55 +02003833#else
3834 return FALSE;
3835#endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02003836}
3837
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003838/*
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003839 * "shape": 1 = block, 2 = underline, 3 = vertical bar
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003840 */
3841 void
3842term_cursor_shape(int shape, int blink)
3843{
3844 if (*T_CSH != NUL)
3845 {
3846 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink));
3847 out_flush();
3848 }
Bram Moolenaar4db25542017-08-28 22:43:05 +02003849 else
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003850 {
Bram Moolenaar4db25542017-08-28 22:43:05 +02003851 int do_blink = blink;
3852
3853 /* t_SH is empty: try setting just the blink state.
3854 * The blink flags are XORed together, if the initial blinking from
3855 * style and shape differs, we need to invert the flag here. */
3856 if (blink_state_is_inverted())
3857 do_blink = !blink;
3858
3859 if (do_blink && *T_VS != NUL)
3860 {
3861 out_str(T_VS);
3862 out_flush();
3863 }
3864 else if (!do_blink && *T_CVS != NUL)
3865 {
3866 out_str(T_CVS);
3867 out_flush();
3868 }
Bram Moolenaarce1c3272017-08-20 15:05:15 +02003869 }
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02003870}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003871#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003872
3873/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 * Set scrolling region for window 'wp'.
3875 * The region starts 'off' lines from the start of the window.
3876 * Also set the vertical scroll region for a vertically split window. Always
3877 * the full width of the window, excluding the vertical separator.
3878 */
3879 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003880scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881{
3882 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3883 W_WINROW(wp) + off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 if (*T_CSV != NUL && wp->w_width != Columns)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003885 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1,
3886 wp->w_wincol));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 screen_start(); /* don't know where cursor is now */
3888}
3889
3890/*
3891 * Reset scrolling region to the whole screen.
3892 */
3893 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003894scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895{
3896 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 if (*T_CSV != NUL)
3898 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 screen_start(); /* don't know where cursor is now */
3900}
3901
3902
3903/*
3904 * List of terminal codes that are currently recognized.
3905 */
3906
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003907static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908{
3909 char_u name[2]; /* termcap name of entry */
3910 char_u *code; /* terminal code (in allocated memory) */
3911 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003912 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913} *termcodes = NULL;
3914
3915static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3916static int tc_len = 0; /* current number of entries in termcodes[] */
3917
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003918static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003919
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003921clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922{
3923 while (tc_len > 0)
3924 vim_free(termcodes[--tc_len].code);
Bram Moolenaard23a8232018-02-10 18:45:26 +01003925 VIM_CLEAR(termcodes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 tc_max_len = 0;
3927
3928#ifdef HAVE_TGETENT
3929 BC = (char *)empty_option;
3930 UP = (char *)empty_option;
3931 PC = NUL; /* set pad character to NUL */
3932 ospeed = 0;
3933#endif
3934
3935 need_gather = TRUE; /* need to fill termleader[] */
3936}
3937
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003938#define ATC_FROM_TERM 55
3939
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940/*
3941 * Add a new entry to the list of terminal codes.
3942 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003943 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3944 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 */
3946 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003947add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948{
3949 struct termcode *new_tc;
3950 int i, j;
3951 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003952 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953
3954 if (string == NULL || *string == NUL)
3955 {
3956 del_termcode(name);
3957 return;
3958 }
3959
Bram Moolenaar45500912014-07-09 20:51:07 +02003960#if defined(WIN3264) && !defined(FEAT_GUI)
3961 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3962#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003964#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 if (s == NULL)
3966 return;
3967
3968 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003969 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003971 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 s[0] = term_7to8bit(string);
3973 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003974
3975#if defined(WIN3264) && !defined(FEAT_GUI)
3976 if (s[0] == K_NUL)
3977 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003978 STRMOVE(s + 1, s);
3979 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02003980 }
3981#endif
3982
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003983 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984
3985 need_gather = TRUE; /* need to fill termleader[] */
3986
3987 /*
3988 * need to make space for more entries
3989 */
3990 if (tc_len == tc_max_len)
3991 {
3992 tc_max_len += 20;
3993 new_tc = (struct termcode *)alloc(
3994 (unsigned)(tc_max_len * sizeof(struct termcode)));
3995 if (new_tc == NULL)
3996 {
3997 tc_max_len -= 20;
3998 return;
3999 }
4000 for (i = 0; i < tc_len; ++i)
4001 new_tc[i] = termcodes[i];
4002 vim_free(termcodes);
4003 termcodes = new_tc;
4004 }
4005
4006 /*
4007 * Look for existing entry with the same name, it is replaced.
4008 * Look for an existing entry that is alphabetical higher, the new entry
4009 * is inserted in front of it.
4010 */
4011 for (i = 0; i < tc_len; ++i)
4012 {
4013 if (termcodes[i].name[0] < name[0])
4014 continue;
4015 if (termcodes[i].name[0] == name[0])
4016 {
4017 if (termcodes[i].name[1] < name[1])
4018 continue;
4019 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004020 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 */
4022 if (termcodes[i].name[1] == name[1])
4023 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004024 if (flags == ATC_FROM_TERM && (j = termcode_star(
4025 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004026 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004027 /* Don't replace ESC[123;*X or ESC O*X with another when
4028 * invoked from got_code_from_term(). */
4029 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004030 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004031 && s[len - 1]
4032 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004033 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004034 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004035 vim_free(s);
4036 return;
4037 }
4038 }
4039 else
4040 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004041 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004042 vim_free(termcodes[i].code);
4043 --tc_len;
4044 break;
4045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 }
4047 }
4048 /*
4049 * Found alphabetical larger entry, move rest to insert new entry
4050 */
4051 for (j = tc_len; j > i; --j)
4052 termcodes[j] = termcodes[j - 1];
4053 break;
4054 }
4055
4056 termcodes[i].name[0] = name[0];
4057 termcodes[i].name[1] = name[1];
4058 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004059 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004060
4061 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
4062 * accept modifiers. */
4063 termcodes[i].modlen = 0;
4064 j = termcode_star(s, len);
4065 if (j > 0)
4066 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 ++tc_len;
4068}
4069
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004070/*
Bram Moolenaara529ce02017-06-22 22:37:57 +02004071 * Check termcode "code[len]" for ending in ;*X or *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004072 * The "X" can be any character.
Bram Moolenaara529ce02017-06-22 22:37:57 +02004073 * Return 0 if not found, 2 for ;*X and 1 for *X.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004074 */
4075 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004076termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004077{
4078 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
4079 if (len >= 3 && code[len - 2] == '*')
4080 {
4081 if (len >= 5 && code[len - 3] == ';')
4082 return 2;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004083 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004084 return 1;
4085 }
4086 return 0;
4087}
4088
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004090find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091{
4092 int i;
4093
4094 for (i = 0; i < tc_len; ++i)
4095 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4096 return termcodes[i].code;
4097 return NULL;
4098}
4099
4100#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
4101 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004102get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103{
4104 if (i >= tc_len)
4105 return NULL;
4106 return &termcodes[i].name[0];
4107}
4108#endif
4109
4110 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004111del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112{
4113 int i;
4114
4115 if (termcodes == NULL) /* nothing there yet */
4116 return;
4117
4118 need_gather = TRUE; /* need to fill termleader[] */
4119
4120 for (i = 0; i < tc_len; ++i)
4121 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
4122 {
4123 del_termcode_idx(i);
4124 return;
4125 }
4126 /* not found. Give error message? */
4127}
4128
4129 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004130del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131{
4132 int i;
4133
4134 vim_free(termcodes[idx].code);
4135 --tc_len;
4136 for (i = idx; i < tc_len; ++i)
4137 termcodes[i] = termcodes[i + 1];
4138}
4139
4140#ifdef FEAT_TERMRESPONSE
4141/*
4142 * Called when detected that the terminal sends 8-bit codes.
4143 * Convert all 7-bit codes to their 8-bit equivalent.
4144 */
4145 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004146switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147{
4148 int i;
4149 int c;
4150
4151 /* Only need to do something when not already using 8-bit codes. */
4152 if (!term_is_8bit(T_NAME))
4153 {
4154 for (i = 0; i < tc_len; ++i)
4155 {
4156 c = term_7to8bit(termcodes[i].code);
4157 if (c != 0)
4158 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00004159 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 termcodes[i].code[0] = c;
4161 }
4162 }
4163 need_gather = TRUE; /* need to fill termleader[] */
4164 }
4165 detected_8bit = TRUE;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004166 LOG_TR("Switching to 8 bit");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167}
4168#endif
4169
4170#ifdef CHECK_DOUBLE_CLICK
4171static linenr_T orig_topline = 0;
4172# ifdef FEAT_DIFF
4173static int orig_topfill = 0;
4174# endif
4175#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004176#if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177/*
4178 * Checking for double clicks ourselves.
4179 * "orig_topline" is used to avoid detecting a double-click when the window
4180 * contents scrolled (e.g., when 'scrolloff' is non-zero).
4181 */
4182/*
4183 * Set orig_topline. Used when jumping to another window, so that a double
4184 * click still works.
4185 */
4186 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004187set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188{
4189 orig_topline = wp->w_topline;
4190# ifdef FEAT_DIFF
4191 orig_topfill = wp->w_topfill;
4192# endif
4193}
4194#endif
4195
4196/*
4197 * Check if typebuf.tb_buf[] contains a terminal key code.
4198 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4199 * + max_offset].
4200 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004201 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 * With a match, the match is removed, the replacement code is inserted in
4203 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4204 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004205 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4206 * "buflen" is then the length of the string in buf[] and is updated for
4207 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 */
4209 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004210check_termcode(
4211 int max_offset,
4212 char_u *buf,
4213 int bufsize,
4214 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215{
4216 char_u *tp;
4217 char_u *p;
4218 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004219 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004221 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 int offset;
4223 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004224 int modifiers;
Bram Moolenaar090209b2017-06-23 22:45:33 +02004225 char_u *modifiers_start = NULL;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004226 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 int new_slen;
4228 int extra;
4229 char_u string[MAX_KEY_CODE_LEN + 1];
4230 int i, j;
4231 int idx = 0;
4232#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004233# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4234 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 char_u bytes[6];
4236 int num_bytes;
4237# endif
4238 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 int is_click, is_drag;
4240 int wheel_code = 0;
4241 int current_button;
4242 static int held_button = MOUSE_RELEASE;
4243 static int orig_num_clicks = 1;
4244 static int orig_mouse_code = 0x0;
4245# ifdef CHECK_DOUBLE_CLICK
4246 static int orig_mouse_col = 0;
4247 static int orig_mouse_row = 0;
4248 static struct timeval orig_mouse_time = {0, 0};
4249 /* time of previous mouse click */
4250 struct timeval mouse_time; /* time of current mouse click */
4251 long timediff; /* elapsed time in msec */
4252# endif
4253#endif
4254 int cpo_koffset;
4255#ifdef FEAT_MOUSE_GPM
4256 extern int gpm_flag; /* gpm library variable */
4257#endif
4258
4259 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4260
4261 /*
4262 * Speed up the checks for terminal codes by gathering all first bytes
4263 * used in termleader[]. Often this is just a single <Esc>.
4264 */
4265 if (need_gather)
4266 gather_termleader();
4267
4268 /*
4269 * Check at several positions in typebuf.tb_buf[], to catch something like
4270 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4271 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004272 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 * This is used often, KEEP IT FAST!
4274 */
4275 for (offset = 0; offset < max_offset; ++offset)
4276 {
4277 if (buf == NULL)
4278 {
4279 if (offset >= typebuf.tb_len)
4280 break;
4281 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4282 len = typebuf.tb_len - offset; /* length of the input */
4283 }
4284 else
4285 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004286 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 break;
4288 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004289 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 }
4291
4292 /*
4293 * Don't check characters after K_SPECIAL, those are already
4294 * translated terminal chars (avoid translating ~@^Hx).
4295 */
4296 if (*tp == K_SPECIAL)
4297 {
4298 offset += 2; /* there are always 2 extra characters */
4299 continue;
4300 }
4301
4302 /*
4303 * Skip this position if the character does not appear as the first
4304 * character in term_strings. This speeds up a lot, since most
4305 * termcodes start with the same character (ESC or CSI).
4306 */
4307 i = *tp;
4308 for (p = termleader; *p && *p != i; ++p)
4309 ;
4310 if (*p == NUL)
4311 continue;
4312
4313 /*
4314 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4315 * are in Insert mode.
4316 */
4317 if (*tp == ESC && !p_ek && (State & INSERT))
4318 continue;
4319
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004321 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004322 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323
4324#ifdef FEAT_GUI
4325 if (gui.in_use)
4326 {
4327 /*
4328 * GUI special key codes are all of the form [CSI xx].
4329 */
4330 if (*tp == CSI) /* Special key from GUI */
4331 {
4332 if (len < 3)
4333 return -1; /* Shouldn't happen */
4334 slen = 3;
4335 key_name[0] = tp[1];
4336 key_name[1] = tp[2];
4337 }
4338 }
4339 else
4340#endif /* FEAT_GUI */
4341 {
4342 for (idx = 0; idx < tc_len; ++idx)
4343 {
4344 /*
4345 * Ignore the entry if we are not at the start of
4346 * typebuf.tb_buf[]
4347 * and there are not enough characters to make a match.
4348 * But only when the 'K' flag is in 'cpoptions'.
4349 */
4350 slen = termcodes[idx].len;
Bram Moolenaara529ce02017-06-22 22:37:57 +02004351 modifiers_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 if (cpo_koffset && offset && len < slen)
4353 continue;
4354 if (STRNCMP(termcodes[idx].code, tp,
4355 (size_t)(slen > len ? len : slen)) == 0)
4356 {
4357 if (len < slen) /* got a partial sequence */
4358 return -1; /* need to get more chars */
4359
4360 /*
4361 * When found a keypad key, check if there is another key
4362 * that matches and use that one. This makes <Home> to be
4363 * found instead of <kHome> when they produce the same
4364 * key code.
4365 */
4366 if (termcodes[idx].name[0] == 'K'
4367 && VIM_ISDIGIT(termcodes[idx].name[1]))
4368 {
4369 for (j = idx + 1; j < tc_len; ++j)
4370 if (termcodes[j].len == slen &&
4371 STRNCMP(termcodes[idx].code,
4372 termcodes[j].code, slen) == 0)
4373 {
4374 idx = j;
4375 break;
4376 }
4377 }
4378
4379 key_name[0] = termcodes[idx].name[0];
4380 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 break;
4382 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004383
4384 /*
4385 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004386 * <Esc>[123;*X (modslen == slen - 3)
4387 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4388 * When there is a modifier the * matches a number.
4389 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004390 */
4391 if (termcodes[idx].modlen > 0)
4392 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004393 modslen = termcodes[idx].modlen;
4394 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004395 continue;
4396 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004397 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004398 {
4399 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004400
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004401 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004402 return -1; /* need to get more chars */
4403
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004404 if (tp[modslen] == termcodes[idx].code[slen - 1])
4405 slen = modslen + 1; /* no modifiers */
4406 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004407 continue; /* no match */
4408 else
4409 {
4410 /* Skip over the digits, the final char must
4411 * follow. */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004412 for (j = slen - 2; j < len && (isdigit(tp[j])
4413 || tp[j] == ';'); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004414 ;
4415 ++j;
4416 if (len < j) /* got a partial sequence */
4417 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004418 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4419 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004420
Bram Moolenaara529ce02017-06-22 22:37:57 +02004421 modifiers_start = tp + slen - 2;
4422
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004423 /* Match! Convert modifier bits. */
Bram Moolenaara529ce02017-06-22 22:37:57 +02004424 n = atoi((char *)modifiers_start) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004425 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004426 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004427 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004428 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004429 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004430 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004431 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004432 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004433
4434 slen = j;
4435 }
4436 key_name[0] = termcodes[idx].name[0];
4437 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004438 break;
4439 }
4440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 }
4442 }
4443
4444#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004445 if (key_name[0] == NUL
Bram Moolenaara529ce02017-06-22 22:37:57 +02004446 /* Mouse codes of DEC and pterm start with <ESC>[. When
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004447 * detecting the start of these mouse codes they might as well be
4448 * another key code or terminal response. */
4449# ifdef FEAT_MOUSE_DEC
4450 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004451# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004452# ifdef FEAT_MOUSE_PTERM
4453 || key_name[0] == KS_PTERM_MOUSE
4454# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004455 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004457 /* Check for some responses from the terminal starting with
4458 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004459 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004460 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004461 * Libvterm returns {x} == 0, {vers} == 100, {y} == 0.
Bram Moolenaar9584b312013-03-13 19:29:28 +01004462 * Also eat other possible responses to t_RV, rxvt returns
4463 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4464 * mrxvt has been reported to have "+" in the version. Assume
4465 * the escape sequence ends with a letter or one of "{|}~".
4466 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004467 * - Cursor position report: <Esc>[{row};{col}R
4468 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004469 * ambiguous-width character state.
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004470 *
4471 * - window position reply: <Esc>[3;{x};{y}t
Bram Moolenaar9584b312013-03-13 19:29:28 +01004472 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004473 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004474
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004475 if ((*T_CRV != NUL || *T_U7 != NUL || waiting_for_winpos)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004476 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004477 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004478 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 {
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004480 int col = 0;
4481 int semicols = 0;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004482#ifdef FEAT_MBYTE
Bram Moolenaarc41053062014-03-25 13:46:26 +01004483 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004484#endif
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004485
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004487 for (i = 2 + (tp[0] != CSI); i < len
4488 && !(tp[i] >= '{' && tp[i] <= '~')
4489 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004490 if (tp[i] == ';' && ++semicols == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004491 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004492 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004493#ifdef FEAT_MBYTE
4494 row_char = tp[i - 1];
4495#endif
4496 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004498 {
4499 LOG_TR("Not enough characters for CRV");
4500 return -1;
4501 }
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004502 if (extra > 0)
4503 col = atoi((char *)tp + extra);
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004504
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004505#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004506 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4507 * u7_status is not "sent", it may be from a previous Vim that
4508 * just exited. But not for <S-F3>, it sends something
4509 * similar, check for row and column to make sense. */
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004510 if (semicols == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004511 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004512 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004513 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004514 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004515
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004516 LOG_TR("Received U7 status");
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004517 u7_status = STATUS_GOT;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004518# ifdef FEAT_AUTOCMD
4519 did_cursorhold = TRUE;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004520# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004521 if (col == 2)
4522 aw = "single";
4523 else if (col == 3)
4524 aw = "double";
4525 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4526 {
4527 /* Setting the option causes a screen redraw. Do
4528 * that right away if possible, keeping any
4529 * messages. */
4530 set_option_value((char_u *)"ambw", 0L,
4531 (char_u *)aw, 0);
4532# ifdef DEBUG_TERMRESPONSE
4533 {
4534 char buf[100];
4535 int r = redraw_asap(CLEAR);
4536
4537 sprintf(buf,
4538 "set 'ambiwidth', redraw_asap(): %d",
4539 r);
4540 log_tr(buf);
4541 }
4542# else
4543 redraw_asap(CLEAR);
4544# endif
4545 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004546 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004547 key_name[0] = (int)KS_EXTRA;
4548 key_name[1] = (int)KE_IGNORE;
4549 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004550# ifdef FEAT_EVAL
4551 set_vim_var_string(VV_TERMU7RESP, tp, slen);
4552# endif
Bram Moolenaar9584b312013-03-13 19:29:28 +01004553 }
4554 else
4555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004557 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 {
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004559 int version = col;
4560
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004561 LOG_TR("Received CRV response");
4562 crv_status = STATUS_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004563# ifdef FEAT_AUTOCMD
4564 did_cursorhold = TRUE;
4565# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566
4567 /* If this code starts with CSI, you can bet that the
4568 * terminal uses 8-bit codes. */
4569 if (tp[0] == CSI)
4570 switch_to_8bit();
4571
4572 /* rxvt sends its version number: "20703" is 2.7.3.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004573 * Screen sends 40500.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 * Ignore it for when the user has set 'term' to xterm,
4575 * even though it's an rxvt. */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004576 if (version > 20000)
4577 version = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578
Bram Moolenaar8f14bb52017-07-25 22:06:43 +02004579 if (tp[1 + (tp[0] != CSI)] == '>' && semicols == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 {
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004581 int need_flush = FALSE;
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004582# ifdef FEAT_MOUSE_SGR
4583 int is_iterm2 = FALSE;
4584# endif
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004585
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 /* if xterm version >= 141 try to get termcap codes */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004587 if (version >= 141)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004589 LOG_TR("Enable checking for XT codes");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 check_for_codes = TRUE;
4591 need_gather = TRUE;
4592 req_codes_from_term();
4593 }
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004594
4595 /* libvterm sends 0;100;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004596 if (version == 100
Bram Moolenaare9224602017-08-26 15:29:47 +02004597 && STRNCMP(tp + extra - 2, "0;100;0c", 8) == 0)
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004598 {
4599 /* If run from Vim $COLORS is set to the number of
4600 * colors the terminal supports. Otherwise assume
4601 * 256, libvterm supports even more. */
4602 if (mch_getenv((char_u *)"COLORS") == NULL)
4603 may_adjust_color_count(256);
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004604# ifdef FEAT_MOUSE_SGR
4605 /* Libvterm can handle SGR mouse reporting. */
4606 if (!option_was_set((char_u *)"ttym"))
4607 set_option_value((char_u *)"ttym", 0L,
4608 (char_u *)"sgr", 0);
4609# endif
4610 }
4611
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004612 if (version == 95)
4613 {
4614 /* Mac Terminal.app sends 1;95;0 */
4615 if (STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0)
4616 {
4617 is_not_xterm = TRUE;
4618 is_mac_terminal = TRUE;
4619 }
4620# ifdef FEAT_MOUSE_SGR
Bram Moolenaar05684312017-12-09 15:11:24 +01004621 /* iTerm2 sends 0;95;0 */
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004622 if (STRNCMP(tp + extra - 2, "0;95;0c", 7) == 0)
4623 is_iterm2 = TRUE;
4624# endif
4625 }
4626
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004627 /* Only set 'ttymouse' automatically if it was not set
4628 * by the user already. */
4629 if (!option_was_set((char_u *)"ttym"))
4630 {
4631# ifdef FEAT_MOUSE_SGR
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004632 /* Xterm version 277 supports SGR. Also support
Bram Moolenaar05684312017-12-09 15:11:24 +01004633 * Terminal.app and iTerm2. */
Bram Moolenaar9c6ce0e2017-11-16 22:07:13 +01004634 if (version >= 277 || is_iterm2 || is_mac_terminal)
Bram Moolenaar52a2f0f2017-11-04 15:16:56 +01004635 set_option_value((char_u *)"ttym", 0L,
4636 (char_u *)"sgr", 0);
4637 else
4638# endif
4639 /* if xterm version >= 95 use mouse dragging */
4640 if (version >= 95)
4641 set_option_value((char_u *)"ttym", 0L,
4642 (char_u *)"xterm2", 0);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004643 }
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004644
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004645 /* Detect terminals that set $TERM to something like
4646 * "xterm-256colors" but are not fully xterm
4647 * compatible. */
Bram Moolenaarc2127982017-09-11 20:34:13 +02004648
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004649 /* Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004650 * xfce4-terminal sends 1;2802;0.
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004651 * screen sends 83;40500;0
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004652 * Assuming any version number over 2500 is not an
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004653 * xterm (without the limit for rxvt and screen). */
Bram Moolenaar3d8d2c72017-09-05 21:57:27 +02004654 if (col >= 2500)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004655 is_not_xterm = TRUE;
4656
Bram Moolenaar2e49b6b2017-09-06 22:08:16 +02004657 /* PuTTY sends 0;136;0
4658 * vandyke SecureCRT sends 1;136;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004659 if (version == 136
Bram Moolenaar618d6d22017-09-07 12:59:25 +02004660 && STRNCMP(tp + extra - 1, ";136;0c", 7) == 0)
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004661 is_not_xterm = TRUE;
4662
4663 /* Konsole sends 0;115;0 */
Bram Moolenaar995e4af2017-09-01 20:24:03 +02004664 if (version == 115
Bram Moolenaar2db0ec42017-08-31 20:17:59 +02004665 && STRNCMP(tp + extra - 2, "0;115;0c", 8) == 0)
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004666 is_not_xterm = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004667
4668 /* Only request the cursor style if t_SH and t_RS are
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004669 * set. Only supported properly by xterm since version
4670 * 279 (otherwise it returns 0x18).
4671 * Not for Terminal.app, it can't handle t_RS, it
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004672 * echoes the characters to the screen. */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004673 if (rcs_status == STATUS_GET
Bram Moolenaare22bbf62017-09-19 20:47:16 +02004674 && version >= 279
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004675 && !is_not_xterm
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004676 && *T_CSH != NUL
4677 && *T_CRS != NUL)
4678 {
4679 LOG_TR("Sending cursor style request");
4680 out_str(T_CRS);
Bram Moolenaar4db25542017-08-28 22:43:05 +02004681 rcs_status = STATUS_SENT;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004682 need_flush = TRUE;
Bram Moolenaar833e0e32017-08-26 15:16:03 +02004683 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004684
4685 /* Only request the cursor blink mode if t_RC set. Not
4686 * for Gnome terminal, it can't handle t_RC, it
4687 * echoes the characters to the screen. */
4688 if (rbm_status == STATUS_GET
4689 && !is_not_xterm
4690 && *T_CRC != NUL)
4691 {
4692 LOG_TR("Sending cursor blink mode request");
4693 out_str(T_CRC);
4694 rbm_status = STATUS_SENT;
4695 need_flush = TRUE;
4696 }
4697
4698 if (need_flush)
4699 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 }
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004701 slen = i + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702# ifdef FEAT_EVAL
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004703 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704# endif
4705# ifdef FEAT_AUTOCMD
4706 apply_autocmds(EVENT_TERMRESPONSE,
4707 NULL, NULL, FALSE, curbuf);
4708# endif
4709 key_name[0] = (int)KS_EXTRA;
4710 key_name[1] = (int)KE_IGNORE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 }
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004712
Bram Moolenaar4db25542017-08-28 22:43:05 +02004713 /* Check blinking cursor from xterm:
4714 * {lead}?12;1$y set
4715 * {lead}?12;2$y not set
4716 *
4717 * {lead} can be <Esc>[ or CSI
4718 */
4719 else if (rbm_status == STATUS_SENT
4720 && tp[(j = 1 + (tp[0] == ESC))] == '?'
4721 && i == j + 6
4722 && tp[j + 1] == '1'
4723 && tp[j + 2] == '2'
4724 && tp[j + 3] == ';'
4725 && tp[i - 1] == '$'
4726 && tp[i] == 'y')
4727 {
4728 initial_cursor_blink = (tp[j + 4] == '1');
4729 rbm_status = STATUS_GOT;
4730 LOG_TR("Received cursor blinking mode response");
4731 key_name[0] = (int)KS_EXTRA;
4732 key_name[1] = (int)KE_IGNORE;
4733 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004734# ifdef FEAT_EVAL
4735 set_vim_var_string(VV_TERMBLINKRESP, tp, slen);
4736# endif
Bram Moolenaar4db25542017-08-28 22:43:05 +02004737 }
4738
Bram Moolenaarba6ec182017-04-04 22:41:10 +02004739 /*
4740 * Check for a window position response from the terminal:
4741 * {lead}3;{x}:{y}t
4742 */
4743 else if (waiting_for_winpos
4744 && ((len >= 4 && tp[0] == ESC && tp[1] == '[')
4745 || (len >= 3 && tp[0] == CSI))
4746 && tp[(j = 1 + (tp[0] == ESC))] == '3'
4747 && tp[j + 1] == ';')
4748 {
4749 j += 2;
4750 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4751 ;
4752 if (i < len && tp[i] == ';')
4753 {
4754 winpos_x = atoi((char *)tp + j);
4755 j = i + 1;
4756 for (i = j; i < len && vim_isdigit(tp[i]); ++i)
4757 ;
4758 if (i < len && tp[i] == 't')
4759 {
4760 winpos_y = atoi((char *)tp + j);
4761 /* got finished code: consume it */
4762 key_name[0] = (int)KS_EXTRA;
4763 key_name[1] = (int)KE_IGNORE;
4764 slen = i + 1;
4765 }
4766 }
4767 if (i == len)
4768 {
4769 LOG_TR("not enough characters for winpos");
4770 return -1;
4771 }
4772 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004773 }
4774
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004775 /* Check for fore/background color response from the terminal:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004776 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004777 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004778 *
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004779 * {code} is 10 for foreground, 11 for background
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004780 * {lead} can be <Esc>] or OSC
4781 * {tail} can be '\007', <Esc>\ or STERM.
4782 *
4783 * Consume any code that starts with "{lead}11;", it's also
4784 * possible that "rgba" is following.
4785 */
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004786 else if ((*T_RBG != NUL || *T_RFG != NUL)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004787 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4788 || tp[0] == OSC))
4789 {
4790 j = 1 + (tp[0] == ESC);
4791 if (len >= j + 3 && (argp[0] != '1'
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004792 || (argp[1] != '1' && argp[1] != '0')
4793 || argp[2] != ';'))
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004794 i = 0; /* no match */
4795 else
4796 for (i = j; i < len; ++i)
4797 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4798 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004799 {
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004800 int is_bg = argp[1] == '1';
4801
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004802 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004803 && tp[j + 11] == '/' && tp[j + 16] == '/')
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004804 {
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004805#ifdef FEAT_TERMINAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004806 int rval = hexhex2nr(tp + j + 7);
4807 int gval = hexhex2nr(tp + j + 12);
4808 int bval = hexhex2nr(tp + j + 17);
Bram Moolenaar53ec7952017-11-05 21:24:23 +01004809#endif
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004810 if (is_bg)
4811 {
4812 char *newval = (3 * '6' < tp[j+7] + tp[j+12]
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004813 + tp[j+17]) ? "light" : "dark";
4814
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004815 LOG_TR("Received RBG response");
4816 rbg_status = STATUS_GOT;
4817#ifdef FEAT_TERMINAL
4818 bg_r = rval;
4819 bg_g = gval;
4820 bg_b = bval;
4821#endif
4822 if (!option_was_set((char_u *)"bg")
4823 && STRCMP(p_bg, newval) != 0)
4824 {
4825 /* value differs, apply it */
4826 set_option_value((char_u *)"bg", 0L,
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004827 (char_u *)newval, 0);
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004828 reset_option_was_set((char_u *)"bg");
4829 redraw_asap(CLEAR);
4830 }
Bram Moolenaar4b974d52017-06-04 15:37:46 +02004831 }
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004832#ifdef FEAT_TERMINAL
4833 else
4834 {
4835 LOG_TR("Received RFG response");
4836 rfg_status = STATUS_GOT;
4837 fg_r = rval;
4838 fg_g = gval;
4839 fg_b = bval;
4840 }
4841#endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004842 }
4843
4844 /* got finished code: consume it */
4845 key_name[0] = (int)KS_EXTRA;
4846 key_name[1] = (int)KE_IGNORE;
4847 slen = i + 1 + (tp[i] == ESC);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004848# ifdef FEAT_EVAL
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02004849 set_vim_var_string(is_bg ? VV_TERMRBGRESP
4850 : VV_TERMRFGRESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004851# endif
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004852 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004853 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004854 if (i == len)
4855 {
4856 LOG_TR("not enough characters for RB");
4857 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 }
4860
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004861 /* Check for key code response from xterm:
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004862 * {lead}{flag}+r<hex bytes><{tail}
4863 *
4864 * {lead} can be <Esc>P or DCS
4865 * {flag} can be '0' or '1'
4866 * {tail} can be Esc>\ or STERM
4867 *
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004868 * Check for cursor shape response from xterm:
Bram Moolenaar590ec872018-03-02 20:58:42 +01004869 * {lead}1$r<digit> q{tail}
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004870 *
4871 * {lead} can be <Esc>P or DCS
4872 * {tail} can be Esc>\ or STERM
4873 *
4874 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004875 */
Bram Moolenaar4db25542017-08-28 22:43:05 +02004876 else if ((check_for_codes || rcs_status == STATUS_SENT)
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004877 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 || tp[0] == DCS))
4879 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004880 j = 1 + (tp[0] == ESC);
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004881 if (len < j + 3)
4882 i = len; /* need more chars */
4883 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004884 i = 0; /* no match */
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004885 else if (argp[1] == '+')
4886 /* key code response */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004887 for (i = j; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004888 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004889 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 || tp[i] == STERM)
4891 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004892 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 got_code_from_term(tp + j, i);
4894 key_name[0] = (int)KS_EXTRA;
4895 key_name[1] = (int)KE_IGNORE;
4896 slen = i + 1 + (tp[i] == ESC);
4897 break;
4898 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004899 }
Bram Moolenaar590ec872018-03-02 20:58:42 +01004900 else
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004901 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01004902 /* Probably the cursor shape response. Make sure that "i"
4903 * is equal to "len" when there are not sufficient
4904 * characters. */
4905 for (i = j + 3; i < len; ++i)
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004906 {
Bram Moolenaar590ec872018-03-02 20:58:42 +01004907 if (i - j == 3 && !isdigit(tp[i]))
4908 break;
4909 if (i - j == 4 && tp[i] != ' ')
4910 break;
4911 if (i - j == 5 && tp[i] != 'q')
4912 break;
4913 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
4914 break;
4915 if ((i - j == 6 && tp[i] == STERM)
4916 || (i - j == 7 && tp[i] == '\\'))
4917 {
4918 int number = argp[3] - '0';
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004919
Bram Moolenaar590ec872018-03-02 20:58:42 +01004920 /* 0, 1 = block blink, 2 = block
4921 * 3 = underline blink, 4 = underline
4922 * 5 = vertical bar blink, 6 = vertical bar */
4923 number = number == 0 ? 1 : number;
4924 initial_cursor_shape = (number + 1) / 2;
4925 /* The blink flag is actually inverted, compared to
4926 * the value set with T_SH. */
4927 initial_cursor_shape_blink =
Bram Moolenaar4db25542017-08-28 22:43:05 +02004928 (number & 1) ? FALSE : TRUE;
Bram Moolenaar590ec872018-03-02 20:58:42 +01004929 rcs_status = STATUS_GOT;
4930 LOG_TR("Received cursor shape response");
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004931
Bram Moolenaar590ec872018-03-02 20:58:42 +01004932 key_name[0] = (int)KS_EXTRA;
4933 key_name[1] = (int)KE_IGNORE;
4934 slen = i + 1;
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004935# ifdef FEAT_EVAL
Bram Moolenaar590ec872018-03-02 20:58:42 +01004936 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02004937# endif
Bram Moolenaar590ec872018-03-02 20:58:42 +01004938 break;
4939 }
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02004940 }
4941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942
4943 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004944 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004945 /* These codes arrive many together, each code can be
4946 * truncated at any point. */
Bram Moolenaar2951b772013-07-03 12:45:31 +02004947 LOG_TR("not enough characters for XT");
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004948 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004949 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
4951 }
4952#endif
4953
4954 if (key_name[0] == NUL)
4955 continue; /* No match at this position, try next one */
4956
4957 /* We only get here when we have a complete termcode match */
4958
4959#ifdef FEAT_MOUSE
4960# ifdef FEAT_GUI
4961 /*
4962 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4963 * so that we know which window to scroll later.
4964 */
4965 if (gui.in_use
4966 && key_name[0] == (int)KS_EXTRA
4967 && (key_name[1] == (int)KE_X1MOUSE
4968 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004969 || key_name[1] == (int)KE_MOUSELEFT
4970 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 || key_name[1] == (int)KE_MOUSEDOWN
4972 || key_name[1] == (int)KE_MOUSEUP))
4973 {
4974 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4975 if (num_bytes == -1) /* not enough coordinates */
4976 return -1;
4977 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4978 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4979 slen += num_bytes;
4980 }
4981 else
4982# endif
4983 /*
4984 * If it is a mouse click, get the coordinates.
4985 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004986 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004988 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989# endif
4990# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004991 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992# endif
4993# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004994 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995# endif
4996# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004997 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004999# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005000 || key_name[0] == KS_URXVT_MOUSE
5001# endif
5002# ifdef FEAT_MOUSE_SGR
5003 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005004 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005005# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 )
5007 {
5008 is_click = is_drag = FALSE;
5009
Bram Moolenaar864207d2008-06-24 22:14:38 +00005010# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
5011 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 if (key_name[0] == (int)KS_MOUSE)
5013 {
5014 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005015 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 * s == encoded button state:
5017 * 0x20 = left button down
5018 * 0x21 = middle button down
5019 * 0x22 = right button down
5020 * 0x23 = any button release
5021 * 0x60 = button 4 down (scroll wheel down)
5022 * 0x61 = button 5 down (scroll wheel up)
5023 * add 0x04 for SHIFT
5024 * add 0x08 for ALT
5025 * add 0x10 for CTRL
5026 * add 0x20 for mouse drag (0x40 is drag with left button)
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005027 * add 0x40 for mouse move (0x80 is move, 0x81 too)
5028 * 0x43 (drag + release) is also move
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 * c == column + ' ' + 1 == column + 33
5030 * r == row + ' ' + 1 == row + 33
5031 *
5032 * The coordinates are passed on through global variables.
5033 * Ugly, but this avoids trouble with mouse clicks at an
5034 * unexpected moment and allows for mapping them.
5035 */
5036 for (;;)
5037 {
5038#ifdef FEAT_GUI
5039 if (gui.in_use)
5040 {
5041 /* GUI uses more bits for columns > 223 */
5042 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
5043 if (num_bytes == -1) /* not enough coordinates */
5044 return -1;
5045 mouse_code = bytes[0];
5046 mouse_col = 128 * (bytes[1] - ' ' - 1)
5047 + bytes[2] - ' ' - 1;
5048 mouse_row = 128 * (bytes[3] - ' ' - 1)
5049 + bytes[4] - ' ' - 1;
5050 }
5051 else
5052#endif
5053 {
5054 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
5055 if (num_bytes == -1) /* not enough coordinates */
5056 return -1;
5057 mouse_code = bytes[0];
5058 mouse_col = bytes[1] - ' ' - 1;
5059 mouse_row = bytes[2] - ' ' - 1;
5060 }
5061 slen += num_bytes;
5062
5063 /* If the following bytes is also a mouse code and it has
5064 * the same code, dump this one and get the next. This
5065 * makes dragging a whole lot faster. */
5066#ifdef FEAT_GUI
5067 if (gui.in_use)
5068 j = 3;
5069 else
5070#endif
5071 j = termcodes[idx].len;
5072 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
5073 && tp[slen + j] == mouse_code
5074 && tp[slen + j + 1] != NUL
5075 && tp[slen + j + 2] != NUL
5076#ifdef FEAT_GUI
5077 && (!gui.in_use
5078 || (tp[slen + j + 3] != NUL
5079 && tp[slen + j + 4] != NUL))
5080#endif
5081 )
5082 slen += j;
5083 else
5084 break;
5085 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005088# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
5089 if (key_name[0] == KS_URXVT_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005090 || key_name[0] == KS_SGR_MOUSE
5091 || key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005092 {
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005093 /* URXVT 1015 mouse reporting mode:
5094 * Almost identical to xterm mouse mode, except the values
5095 * are decimal instead of bytes.
5096 *
5097 * \033[%d;%d;%dM
5098 * ^-- row
5099 * ^----- column
5100 * ^-------- code
5101 *
5102 * SGR 1006 mouse reporting mode:
5103 * Almost identical to xterm mouse mode, except the values
5104 * are decimal instead of bytes.
5105 *
5106 * \033[<%d;%d;%dM
5107 * ^-- row
5108 * ^----- column
5109 * ^-------- code
5110 *
5111 * \033[<%d;%d;%dm : mouse release event
5112 * ^-- row
5113 * ^----- column
5114 * ^-------- code
5115 */
5116 p = modifiers_start;
5117 if (p == NULL)
5118 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005119
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005120 mouse_code = getdigits(&p);
5121 if (*p++ != ';')
5122 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005123
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005124 /* when mouse reporting is SGR, add 32 to mouse code */
5125 if (key_name[0] == KS_SGR_MOUSE
5126 || key_name[0] == KS_SGR_MOUSE_RELEASE)
5127 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005128
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005129 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
5130 mouse_code |= MOUSE_RELEASE;
Bram Moolenaara529ce02017-06-22 22:37:57 +02005131
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005132 mouse_col = getdigits(&p) - 1;
5133 if (*p++ != ';')
5134 return -1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005135
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005136 mouse_row = getdigits(&p) - 1;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005137
Bram Moolenaar5fe69122017-06-23 23:00:08 +02005138 /* The modifiers were the mouse coordinates, not the
5139 * modifier keys (alt/shift/ctrl/meta) state. */
5140 modifiers = 0;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005141 }
5142# endif
5143
5144 if (key_name[0] == (int)KS_MOUSE
5145#ifdef FEAT_MOUSE_URXVT
5146 || key_name[0] == (int)KS_URXVT_MOUSE
5147#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005148#ifdef FEAT_MOUSE_SGR
5149 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaara529ce02017-06-22 22:37:57 +02005150 || key_name[0] == KS_SGR_MOUSE_RELEASE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02005151#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02005152 )
5153 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005154# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 /*
5156 * Handle mouse events.
5157 * Recognize the xterm mouse wheel, but not in the GUI, the
5158 * Linux console with GPM and the MS-DOS or Win32 console
5159 * (multi-clicks use >= 0x60).
5160 */
5161 if (mouse_code >= MOUSEWHEEL_LOW
5162# ifdef FEAT_GUI
5163 && !gui.in_use
5164# endif
5165# ifdef FEAT_MOUSE_GPM
5166 && gpm_flag == 0
5167# endif
5168 )
5169 {
Bram Moolenaarbb160a12017-11-20 21:52:24 +01005170# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5171 if (use_xterm_mouse() > 1 && mouse_code >= 0x80)
5172 /* mouse-move event, using MOUSE_DRAG works */
5173 mouse_code = MOUSE_DRAG;
5174 else
5175# endif
5176 /* Keep the mouse_code before it's changed, so that we
5177 * remember that it was a mouse wheel click. */
5178 wheel_code = mouse_code;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 }
5180# ifdef FEAT_MOUSE_XTERM
5181 else if (held_button == MOUSE_RELEASE
5182# ifdef FEAT_GUI
5183 && !gui.in_use
5184# endif
5185 && (mouse_code == 0x23 || mouse_code == 0x24))
5186 {
5187 /* Apparently used by rxvt scroll wheel. */
5188 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW;
5189 }
5190# endif
5191
5192# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
5193 else if (use_xterm_mouse() > 1)
5194 {
5195 if (mouse_code & MOUSE_DRAG_XTERM)
5196 mouse_code |= MOUSE_DRAG;
5197 }
5198# endif
5199# ifdef FEAT_XCLIPBOARD
5200 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
5201 {
5202 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
5203 stop_xterm_trace();
5204 else
5205 start_xterm_trace(mouse_code);
5206 }
5207# endif
5208# endif
5209 }
5210# endif /* !UNIX || FEAT_MOUSE_XTERM */
5211# ifdef FEAT_MOUSE_NET
5212 if (key_name[0] == (int)KS_NETTERM_MOUSE)
5213 {
5214 int mc, mr;
5215
5216 /* expect a rather limited sequence like: balancing {
5217 * \033}6,45\r
5218 * '6' is the row, 45 is the column
5219 */
5220 p = tp + slen;
5221 mr = getdigits(&p);
5222 if (*p++ != ',')
5223 return -1;
5224 mc = getdigits(&p);
5225 if (*p++ != '\r')
5226 return -1;
5227
5228 mouse_col = mc - 1;
5229 mouse_row = mr - 1;
5230 mouse_code = MOUSE_LEFT;
5231 slen += (int)(p - (tp + slen));
5232 }
5233# endif /* FEAT_MOUSE_NET */
5234# ifdef FEAT_MOUSE_JSB
5235 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
5236 {
5237 int mult, val, iter, button, status;
5238
5239 /* JSBTERM Input Model
5240 * \033[0~zw uniq escape sequence
5241 * (L-x) Left button pressed - not pressed x not reporting
5242 * (M-x) Middle button pressed - not pressed x not reporting
5243 * (R-x) Right button pressed - not pressed x not reporting
5244 * (SDmdu) Single , Double click, m mouse move d button down
5245 * u button up
5246 * ### X cursor position padded to 3 digits
5247 * ### Y cursor position padded to 3 digits
5248 * (s-x) SHIFT key pressed - not pressed x not reporting
5249 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005250 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 */
5252
5253 p = tp + slen;
5254 button = mouse_code = 0;
5255 switch (*p++)
5256 {
5257 case 'L': button = 1; break;
5258 case '-': break;
5259 case 'x': break; /* ignore sequence */
5260 default: return -1; /* Unknown Result */
5261 }
5262 switch (*p++)
5263 {
5264 case 'M': button |= 2; break;
5265 case '-': break;
5266 case 'x': break; /* ignore sequence */
5267 default: return -1; /* Unknown Result */
5268 }
5269 switch (*p++)
5270 {
5271 case 'R': button |= 4; break;
5272 case '-': break;
5273 case 'x': break; /* ignore sequence */
5274 default: return -1; /* Unknown Result */
5275 }
5276 status = *p++;
5277 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5278 mult /= 10, p++)
5279 if (*p >= '0' && *p <= '9')
5280 val += (*p - '0') * mult;
5281 else
5282 return -1;
5283 mouse_col = val;
5284 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
5285 mult /= 10, p++)
5286 if (*p >= '0' && *p <= '9')
5287 val += (*p - '0') * mult;
5288 else
5289 return -1;
5290 mouse_row = val;
5291 switch (*p++)
5292 {
5293 case 's': button |= 8; break; /* SHIFT key Pressed */
5294 case '-': break; /* Not Pressed */
5295 case 'x': break; /* Not Reporting */
5296 default: return -1; /* Unknown Result */
5297 }
5298 switch (*p++)
5299 {
5300 case 'c': button |= 16; break; /* CTRL key Pressed */
5301 case '-': break; /* Not Pressed */
5302 case 'x': break; /* Not Reporting */
5303 default: return -1; /* Unknown Result */
5304 }
5305 if (*p++ != '\033')
5306 return -1;
5307 if (*p++ != '\\')
5308 return -1;
5309 switch (status)
5310 {
5311 case 'D': /* Double Click */
5312 case 'S': /* Single Click */
5313 if (button & 1) mouse_code |= MOUSE_LEFT;
5314 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5315 if (button & 4) mouse_code |= MOUSE_RIGHT;
5316 if (button & 8) mouse_code |= MOUSE_SHIFT;
5317 if (button & 16) mouse_code |= MOUSE_CTRL;
5318 break;
5319 case 'm': /* Mouse move */
5320 if (button & 1) mouse_code |= MOUSE_LEFT;
5321 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5322 if (button & 4) mouse_code |= MOUSE_RIGHT;
5323 if (button & 8) mouse_code |= MOUSE_SHIFT;
5324 if (button & 16) mouse_code |= MOUSE_CTRL;
5325 if ((button & 7) != 0)
5326 {
5327 held_button = mouse_code;
5328 mouse_code |= MOUSE_DRAG;
5329 }
5330 is_drag = TRUE;
5331 showmode();
5332 break;
5333 case 'd': /* Button Down */
5334 if (button & 1) mouse_code |= MOUSE_LEFT;
5335 if (button & 2) mouse_code |= MOUSE_MIDDLE;
5336 if (button & 4) mouse_code |= MOUSE_RIGHT;
5337 if (button & 8) mouse_code |= MOUSE_SHIFT;
5338 if (button & 16) mouse_code |= MOUSE_CTRL;
5339 break;
5340 case 'u': /* Button Up */
5341 if (button & 1)
5342 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
5343 if (button & 2)
5344 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
5345 if (button & 4)
5346 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
5347 if (button & 8)
5348 mouse_code |= MOUSE_SHIFT;
5349 if (button & 16)
5350 mouse_code |= MOUSE_CTRL;
5351 break;
5352 default: return -1; /* Unknown Result */
5353 }
5354
5355 slen += (p - (tp + slen));
5356 }
5357# endif /* FEAT_MOUSE_JSB */
5358# ifdef FEAT_MOUSE_DEC
5359 if (key_name[0] == (int)KS_DEC_MOUSE)
5360 {
5361 /* The DEC Locator Input Model
5362 * Netterm delivers the code sequence:
5363 * \033[2;4;24;80&w (left button down)
5364 * \033[3;0;24;80&w (left button up)
5365 * \033[6;1;24;80&w (right button down)
5366 * \033[7;0;24;80&w (right button up)
5367 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
5368 * Pe is the event code
5369 * Pb is the button code
5370 * Pr is the row coordinate
5371 * Pc is the column coordinate
5372 * Pp is the third coordinate (page number)
5373 * Pe, the event code indicates what event caused this report
5374 * The following event codes are defined:
5375 * 0 - request, the terminal received an explicit request
5376 * for a locator report, but the locator is unavailable
5377 * 1 - request, the terminal received an explicit request
5378 * for a locator report
5379 * 2 - left button down
5380 * 3 - left button up
5381 * 4 - middle button down
5382 * 5 - middle button up
5383 * 6 - right button down
5384 * 7 - right button up
5385 * 8 - fourth button down
5386 * 9 - fourth button up
5387 * 10 - locator outside filter rectangle
5388 * Pb, the button code, ASCII decimal 0-15 indicating which
5389 * buttons are down if any. The state of the four buttons
5390 * on the locator correspond to the low four bits of the
5391 * decimal value,
5392 * "1" means button depressed
5393 * 0 - no buttons down,
5394 * 1 - right,
5395 * 2 - middle,
5396 * 4 - left,
5397 * 8 - fourth
5398 * Pr is the row coordinate of the locator position in the page,
5399 * encoded as an ASCII decimal value.
5400 * If Pr is omitted, the locator position is undefined
5401 * (outside the terminal window for example).
5402 * Pc is the column coordinate of the locator position in the
5403 * page, encoded as an ASCII decimal value.
5404 * If Pc is omitted, the locator position is undefined
5405 * (outside the terminal window for example).
5406 * Pp is the page coordinate of the locator position
5407 * encoded as an ASCII decimal value.
5408 * The page coordinate may be omitted if the locator is on
5409 * page one (the default). We ignore it anyway.
5410 */
5411 int Pe, Pb, Pr, Pc;
5412
5413 p = tp + slen;
5414
5415 /* get event status */
5416 Pe = getdigits(&p);
5417 if (*p++ != ';')
5418 return -1;
5419
5420 /* get button status */
5421 Pb = getdigits(&p);
5422 if (*p++ != ';')
5423 return -1;
5424
5425 /* get row status */
5426 Pr = getdigits(&p);
5427 if (*p++ != ';')
5428 return -1;
5429
5430 /* get column status */
5431 Pc = getdigits(&p);
5432
5433 /* the page parameter is optional */
5434 if (*p == ';')
5435 {
5436 p++;
5437 (void)getdigits(&p);
5438 }
5439 if (*p++ != '&')
5440 return -1;
5441 if (*p++ != 'w')
5442 return -1;
5443
5444 mouse_code = 0;
5445 switch (Pe)
5446 {
5447 case 0: return -1; /* position request while unavailable */
5448 case 1: /* a response to a locator position request includes
5449 the status of all buttons */
5450 Pb &= 7; /* mask off and ignore fourth button */
5451 if (Pb & 4)
5452 mouse_code = MOUSE_LEFT;
5453 if (Pb & 2)
5454 mouse_code = MOUSE_MIDDLE;
5455 if (Pb & 1)
5456 mouse_code = MOUSE_RIGHT;
5457 if (Pb)
5458 {
5459 held_button = mouse_code;
5460 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005461 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 }
5463 is_drag = TRUE;
5464 showmode();
5465 break;
5466 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005467 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 break;
5469 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5470 break;
5471 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005472 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 break;
5474 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5475 break;
5476 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005477 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 break;
5479 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5480 break;
5481 case 8: return -1; /* fourth button down */
5482 case 9: return -1; /* fourth button up */
5483 case 10: return -1; /* mouse outside of filter rectangle */
5484 default: return -1; /* should never occur */
5485 }
5486
5487 mouse_col = Pc - 1;
5488 mouse_row = Pr - 1;
5489
5490 slen += (int)(p - (tp + slen));
5491 }
5492# endif /* FEAT_MOUSE_DEC */
5493# ifdef FEAT_MOUSE_PTERM
5494 if (key_name[0] == (int)KS_PTERM_MOUSE)
5495 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005496 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497
5498 p = tp + slen;
5499
5500 action = getdigits(&p);
5501 if (*p++ != ';')
5502 return -1;
5503
5504 mouse_row = getdigits(&p);
5505 if (*p++ != ';')
5506 return -1;
5507 mouse_col = getdigits(&p);
5508 if (*p++ != ';')
5509 return -1;
5510
5511 button = getdigits(&p);
5512 mouse_code = 0;
5513
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005514 switch (button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 {
5516 case 4: mouse_code = MOUSE_LEFT; break;
5517 case 1: mouse_code = MOUSE_RIGHT; break;
5518 case 2: mouse_code = MOUSE_MIDDLE; break;
5519 default: return -1;
5520 }
5521
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005522 switch (action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 {
5524 case 31: /* Initial press */
5525 if (*p++ != ';')
5526 return -1;
5527
5528 num_clicks = getdigits(&p); /* Not used */
5529 break;
5530
5531 case 32: /* Release */
5532 mouse_code |= MOUSE_RELEASE;
5533 break;
5534
5535 case 33: /* Drag */
5536 held_button = mouse_code;
5537 mouse_code |= MOUSE_DRAG;
5538 break;
5539
5540 default:
5541 return -1;
5542 }
5543
5544 if (*p++ != 't')
5545 return -1;
5546
5547 slen += (p - (tp + slen));
5548 }
5549# endif /* FEAT_MOUSE_PTERM */
5550
5551 /* Interpret the mouse code */
5552 current_button = (mouse_code & MOUSE_CLICK_MASK);
5553 if (current_button == MOUSE_RELEASE
5554# ifdef FEAT_MOUSE_XTERM
5555 && wheel_code == 0
5556# endif
5557 )
5558 {
5559 /*
5560 * If we get a mouse drag or release event when
5561 * there is no mouse button held down (held_button ==
5562 * MOUSE_RELEASE), produce a K_IGNORE below.
5563 * (can happen when you hold down two buttons
5564 * and then let them go, or click in the menu bar, but not
5565 * on a menu, and drag into the text).
5566 */
5567 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5568 is_drag = TRUE;
5569 current_button = held_button;
5570 }
5571 else if (wheel_code == 0)
5572 {
5573# ifdef CHECK_DOUBLE_CLICK
5574# ifdef FEAT_MOUSE_GPM
5575# ifdef FEAT_GUI
5576 /*
5577 * Only for Unix, when GUI or gpm is not active, we handle
5578 * multi-clicks here.
5579 */
5580 if (gpm_flag == 0 && !gui.in_use)
5581# else
5582 if (gpm_flag == 0)
5583# endif
5584# else
5585# ifdef FEAT_GUI
5586 if (!gui.in_use)
5587# endif
5588# endif
5589 {
5590 /*
5591 * Compute the time elapsed since the previous mouse click.
5592 */
5593 gettimeofday(&mouse_time, NULL);
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005594 if (orig_mouse_time.tv_sec == 0)
5595 {
5596 /*
5597 * Avoid computing the difference between mouse_time
5598 * and orig_mouse_time for the first click, as the
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005599 * difference would be huge and would cause
5600 * multiplication overflow.
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005601 */
5602 timediff = p_mouset;
5603 }
5604 else
5605 {
5606 timediff = (mouse_time.tv_usec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005607 - orig_mouse_time.tv_usec) / 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005608 if (timediff < 0)
5609 --orig_mouse_time.tv_sec;
5610 timediff += (mouse_time.tv_sec
Bram Moolenaare22bbf62017-09-19 20:47:16 +02005611 - orig_mouse_time.tv_sec) * 1000;
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 orig_mouse_time = mouse_time;
5614 if (mouse_code == orig_mouse_code
5615 && timediff < p_mouset
5616 && orig_num_clicks != 4
5617 && orig_mouse_col == mouse_col
5618 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005619 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005621 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005623 )
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005624 /* Double click in tab pages line also works
5625 * when window contents changes. */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005626 || (mouse_row == 0 && firstwin->w_winrow > 0))
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005627 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 ++orig_num_clicks;
5629 else
5630 orig_num_clicks = 1;
5631 orig_mouse_col = mouse_col;
5632 orig_mouse_row = mouse_row;
5633 orig_topline = curwin->w_topline;
5634#ifdef FEAT_DIFF
5635 orig_topfill = curwin->w_topfill;
5636#endif
5637 }
5638# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5639 else
5640 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5641# endif
5642# else
5643 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5644# endif
5645 is_click = TRUE;
5646 orig_mouse_code = mouse_code;
5647 }
5648 if (!is_drag)
5649 held_button = mouse_code & MOUSE_CLICK_MASK;
5650
5651 /*
5652 * Translate the actual mouse event into a pseudo mouse event.
5653 * First work out what modifiers are to be used.
5654 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 if (orig_mouse_code & MOUSE_SHIFT)
5656 modifiers |= MOD_MASK_SHIFT;
5657 if (orig_mouse_code & MOUSE_CTRL)
5658 modifiers |= MOD_MASK_CTRL;
5659 if (orig_mouse_code & MOUSE_ALT)
5660 modifiers |= MOD_MASK_ALT;
5661 if (orig_num_clicks == 2)
5662 modifiers |= MOD_MASK_2CLICK;
5663 else if (orig_num_clicks == 3)
5664 modifiers |= MOD_MASK_3CLICK;
5665 else if (orig_num_clicks == 4)
5666 modifiers |= MOD_MASK_4CLICK;
5667
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005668 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets
5669 * added, then it's not mouse up/down. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 key_name[0] = (int)KS_EXTRA;
Bram Moolenaard23a8232018-02-10 18:45:26 +01005671 if (wheel_code != 0
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005672 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005673 {
5674 if (wheel_code & MOUSE_CTRL)
5675 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005676 if (wheel_code & MOUSE_ALT)
5677 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 key_name[1] = (wheel_code & 1)
5679 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01005680 held_button = MOUSE_RELEASE;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 else
5683 key_name[1] = get_pseudo_mouse_code(current_button,
5684 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005685
5686 /* Make sure the mouse position is valid. Some terminals may
5687 * return weird values. */
5688 if (mouse_col >= Columns)
5689 mouse_col = Columns - 1;
5690 if (mouse_row >= Rows)
5691 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 }
5693#endif /* FEAT_MOUSE */
5694
5695#ifdef FEAT_GUI
5696 /*
5697 * If using the GUI, then we get menu and scrollbar events.
5698 *
5699 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5700 * four bytes which are to be taken as a pointer to the vimmenu_T
5701 * structure.
5702 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005703 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005704 * is one byte with the tab index.
5705 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5707 * by one byte representing the scrollbar number, and then four bytes
5708 * representing a long_u which is the new value of the scrollbar.
5709 *
5710 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5711 * KE_FILLER followed by four bytes representing a long_u which is the
5712 * new value of the scrollbar.
5713 */
5714# ifdef FEAT_MENU
5715 else if (key_name[0] == (int)KS_MENU)
5716 {
5717 long_u val;
5718
5719 num_bytes = get_long_from_buf(tp + slen, &val);
5720 if (num_bytes == -1)
5721 return -1;
5722 current_menu = (vimmenu_T *)val;
5723 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005724
5725 /* The menu may have been deleted right after it was used, check
5726 * for that. */
5727 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5728 {
5729 key_name[0] = KS_EXTRA;
5730 key_name[1] = (int)KE_IGNORE;
5731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732 }
5733# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005734# ifdef FEAT_GUI_TABLINE
5735 else if (key_name[0] == (int)KS_TABLINE)
5736 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005737 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005738 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5739 if (num_bytes == -1)
5740 return -1;
5741 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005742 if (current_tab == 255) /* -1 in a byte gives 255 */
5743 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005744 slen += num_bytes;
5745 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005746 else if (key_name[0] == (int)KS_TABMENU)
5747 {
5748 /* Selecting tabline tab or using its menu. */
5749 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5750 if (num_bytes == -1)
5751 return -1;
5752 current_tab = (int)bytes[0];
5753 current_tabmenu = (int)bytes[1];
5754 slen += num_bytes;
5755 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757# ifndef USE_ON_FLY_SCROLL
5758 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5759 {
5760 long_u val;
5761
5762 /* Get the last scrollbar event in the queue of the same type */
5763 j = 0;
5764 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5765 && tp[j + 2] != NUL; ++i)
5766 {
5767 j += 3;
5768 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5769 if (num_bytes == -1)
5770 break;
5771 if (i == 0)
5772 current_scrollbar = (int)bytes[0];
5773 else if (current_scrollbar != (int)bytes[0])
5774 break;
5775 j += num_bytes;
5776 num_bytes = get_long_from_buf(tp + j, &val);
5777 if (num_bytes == -1)
5778 break;
5779 scrollbar_value = val;
5780 j += num_bytes;
5781 slen = j;
5782 }
5783 if (i == 0) /* not enough characters to make one */
5784 return -1;
5785 }
5786 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5787 {
5788 long_u val;
5789
5790 /* Get the last horiz. scrollbar event in the queue */
5791 j = 0;
5792 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5793 && tp[j + 2] != NUL; ++i)
5794 {
5795 j += 3;
5796 num_bytes = get_long_from_buf(tp + j, &val);
5797 if (num_bytes == -1)
5798 break;
5799 scrollbar_value = val;
5800 j += num_bytes;
5801 slen = j;
5802 }
5803 if (i == 0) /* not enough characters to make one */
5804 return -1;
5805 }
5806# endif /* !USE_ON_FLY_SCROLL */
5807#endif /* FEAT_GUI */
5808
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005809 /*
5810 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5811 */
5812 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5813
5814 /*
5815 * Add any modifier codes to our string.
5816 */
5817 new_slen = 0; /* Length of what will replace the termcode */
5818 if (modifiers != 0)
5819 {
5820 /* Some keys have the modifier included. Need to handle that here
5821 * to make mappings work. */
5822 key = simplify_key(key, &modifiers);
5823 if (modifiers != 0)
5824 {
5825 string[new_slen++] = K_SPECIAL;
5826 string[new_slen++] = (int)KS_MODIFIER;
5827 string[new_slen++] = modifiers;
5828 }
5829 }
5830
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005832 key_name[0] = KEY2TERMCAP0(key);
5833 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005835 {
5836 /* from ":set <M-b>=xx" */
5837#ifdef FEAT_MBYTE
5838 if (has_mbyte)
5839 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5840 else
5841#endif
5842 string[new_slen++] = key_name[1];
5843 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005844 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5845 && key_name[1] == KE_IGNORE)
5846 {
5847 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5848 * to indicate what happened. */
5849 retval = KEYLEN_REMOVED;
5850 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 else
5852 {
5853 string[new_slen++] = K_SPECIAL;
5854 string[new_slen++] = key_name[0];
5855 string[new_slen++] = key_name[1];
5856 }
5857 string[new_slen] = NUL;
5858 extra = new_slen - slen;
5859 if (buf == NULL)
5860 {
5861 if (extra < 0)
5862 /* remove matched chars, taking care of noremap */
5863 del_typebuf(-extra, offset);
5864 else if (extra > 0)
5865 /* insert the extra space we need */
5866 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5867
5868 /*
5869 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5870 * typebuf.tb_buf[]!
5871 */
5872 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5873 (size_t)new_slen);
5874 }
5875 else
5876 {
5877 if (extra < 0)
5878 /* remove matched characters */
5879 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005880 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005882 {
5883 /* Insert the extra space we need. If there is insufficient
5884 * space return -1. */
5885 if (*buflen + extra + new_slen >= bufsize)
5886 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005888 (size_t)(*buflen - offset));
5889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005891 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005893 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 }
5895
Bram Moolenaar2951b772013-07-03 12:45:31 +02005896#ifdef FEAT_TERMRESPONSE
5897 LOG_TR("normal character");
5898#endif
5899
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 return 0; /* no match found */
5901}
5902
Bram Moolenaar9377df32017-10-15 13:22:01 +02005903#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005904/*
5905 * Get the text foreground color, if known.
5906 */
5907 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005908term_get_fg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005909{
5910 if (rfg_status == STATUS_GOT)
5911 {
5912 *r = fg_r;
5913 *g = fg_g;
5914 *b = fg_b;
5915 }
5916}
5917
5918/*
5919 * Get the text background color, if known.
5920 */
5921 void
Bram Moolenaar00ce63d2017-10-15 21:44:45 +02005922term_get_bg_color(char_u *r, char_u *g, char_u *b)
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02005923{
5924 if (rbg_status == STATUS_GOT)
5925 {
5926 *r = bg_r;
5927 *g = bg_g;
5928 *b = bg_b;
5929 }
5930}
5931#endif
5932
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933/*
5934 * Replace any terminal code strings in from[] with the equivalent internal
5935 * vim representation. This is used for the "from" and "to" part of a
5936 * mapping, and the "to" part of a menu command.
5937 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5938 * '<'.
5939 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5940 *
5941 * The replacement is done in result[] and finally copied into allocated
5942 * memory. If this all works well *bufp is set to the allocated memory and a
5943 * pointer to it is returned. If something fails *bufp is set to NULL and from
5944 * is returned.
5945 *
5946 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5947 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5948 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5949 * instead of a CTRL-V.
5950 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005951 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005952replace_termcodes(
5953 char_u *from,
5954 char_u **bufp,
5955 int from_part,
5956 int do_lt, /* also translate <lt> */
5957 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958{
5959 int i;
5960 int slen;
5961 int key;
5962 int dlen = 0;
5963 char_u *src;
5964 int do_backslash; /* backslash is a special character */
5965 int do_special; /* recognize <> key codes */
5966 int do_key_code; /* recognize raw key codes */
5967 char_u *result; /* buffer for resulting string */
5968
5969 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005970 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5972
5973 /*
5974 * Allocate space for the translation. Worst case a single character is
5975 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5976 */
5977 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5978 if (result == NULL) /* out of memory */
5979 {
5980 *bufp = NULL;
5981 return from;
5982 }
5983
5984 src = from;
5985
5986 /*
5987 * Check for #n at start only: function key n
5988 */
5989 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
5990 {
5991 result[dlen++] = K_SPECIAL;
5992 result[dlen++] = 'k';
5993 if (src[1] == '0')
5994 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5995 else
5996 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5997 src += 2;
5998 }
5999
6000 /*
6001 * Copy each byte from *from to result[dlen]
6002 */
6003 while (*src != NUL)
6004 {
6005 /*
6006 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006007 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 */
6009 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
6010 {
6011#ifdef FEAT_EVAL
6012 /*
6013 * Replace <SID> by K_SNR <script-nr> _.
6014 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
6015 */
6016 if (STRNICMP(src, "<SID>", 5) == 0)
6017 {
6018 if (current_SID <= 0)
6019 EMSG(_(e_usingsid));
6020 else
6021 {
6022 src += 5;
6023 result[dlen++] = K_SPECIAL;
6024 result[dlen++] = (int)KS_EXTRA;
6025 result[dlen++] = (int)KE_SNR;
6026 sprintf((char *)result + dlen, "%ld", (long)current_SID);
6027 dlen += (int)STRLEN(result + dlen);
6028 result[dlen++] = '_';
6029 continue;
6030 }
6031 }
6032#endif
6033
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02006034 slen = trans_special(&src, result + dlen, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 if (slen)
6036 {
6037 dlen += slen;
6038 continue;
6039 }
6040 }
6041
6042 /*
6043 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
6044 * Note that this is also checked after replacing the <> form.
6045 * Single character codes are NOT replaced (e.g. ^H or DEL), because
6046 * it could be a character in the file.
6047 */
6048 if (do_key_code)
6049 {
6050 i = find_term_bykeys(src);
6051 if (i >= 0)
6052 {
6053 result[dlen++] = K_SPECIAL;
6054 result[dlen++] = termcodes[i].name[0];
6055 result[dlen++] = termcodes[i].name[1];
6056 src += termcodes[i].len;
6057 /* If terminal code matched, continue after it. */
6058 continue;
6059 }
6060 }
6061
6062#ifdef FEAT_EVAL
6063 if (do_special)
6064 {
6065 char_u *p, *s, len;
6066
6067 /*
6068 * Replace <Leader> by the value of "mapleader".
6069 * Replace <LocalLeader> by the value of "maplocalleader".
6070 * If "mapleader" or "maplocalleader" isn't set use a backslash.
6071 */
6072 if (STRNICMP(src, "<Leader>", 8) == 0)
6073 {
6074 len = 8;
6075 p = get_var_value((char_u *)"g:mapleader");
6076 }
6077 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
6078 {
6079 len = 13;
6080 p = get_var_value((char_u *)"g:maplocalleader");
6081 }
6082 else
6083 {
6084 len = 0;
6085 p = NULL;
6086 }
6087 if (len != 0)
6088 {
6089 /* Allow up to 8 * 6 characters for "mapleader". */
6090 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
6091 s = (char_u *)"\\";
6092 else
6093 s = p;
6094 while (*s != NUL)
6095 result[dlen++] = *s++;
6096 src += len;
6097 continue;
6098 }
6099 }
6100#endif
6101
6102 /*
6103 * Remove CTRL-V and ignore the next character.
6104 * For "from" side the CTRL-V at the end is included, for the "to"
6105 * part it is removed.
6106 * If 'cpoptions' does not contain 'B', also accept a backslash.
6107 */
6108 key = *src;
6109 if (key == Ctrl_V || (do_backslash && key == '\\'))
6110 {
6111 ++src; /* skip CTRL-V or backslash */
6112 if (*src == NUL)
6113 {
6114 if (from_part)
6115 result[dlen++] = key;
6116 break;
6117 }
6118 }
6119
6120#ifdef FEAT_MBYTE
6121 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006122 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123#endif
6124 {
6125 /*
6126 * If the character is K_SPECIAL, replace it with K_SPECIAL
6127 * KS_SPECIAL KE_FILLER.
6128 * If compiled with the GUI replace CSI with K_CSI.
6129 */
6130 if (*src == K_SPECIAL)
6131 {
6132 result[dlen++] = K_SPECIAL;
6133 result[dlen++] = KS_SPECIAL;
6134 result[dlen++] = KE_FILLER;
6135 }
6136# ifdef FEAT_GUI
6137 else if (*src == CSI)
6138 {
6139 result[dlen++] = K_SPECIAL;
6140 result[dlen++] = KS_EXTRA;
6141 result[dlen++] = (int)KE_CSI;
6142 }
6143# endif
6144 else
6145 result[dlen++] = *src;
6146 ++src;
6147 }
6148 }
6149 result[dlen] = NUL;
6150
6151 /*
6152 * Copy the new string to allocated memory.
6153 * If this fails, just return from.
6154 */
6155 if ((*bufp = vim_strsave(result)) != NULL)
6156 from = *bufp;
6157 vim_free(result);
6158 return from;
6159}
6160
6161/*
6162 * Find a termcode with keys 'src' (must be NUL terminated).
6163 * Return the index in termcodes[], or -1 if not found.
6164 */
6165 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006166find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167{
6168 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01006169 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170
6171 for (i = 0; i < tc_len; ++i)
6172 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01006173 if (slen == termcodes[i].len
6174 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 return i;
6176 }
6177 return -1;
6178}
6179
6180/*
6181 * Gather the first characters in the terminal key codes into a string.
6182 * Used to speed up check_termcode().
6183 */
6184 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006185gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186{
6187 int i;
6188 int len = 0;
6189
6190#ifdef FEAT_GUI
6191 if (gui.in_use)
6192 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
6193#endif
6194#ifdef FEAT_TERMRESPONSE
Bram Moolenaar3eee06e2017-08-19 19:40:50 +02006195 if (check_for_codes || *T_CRS != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 termleader[len++] = DCS; /* the termcode response starts with DCS
6197 in 8-bit mode */
6198#endif
6199 termleader[len] = NUL;
6200
6201 for (i = 0; i < tc_len; ++i)
6202 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
6203 {
6204 termleader[len++] = termcodes[i].code[0];
6205 termleader[len] = NUL;
6206 }
6207
6208 need_gather = FALSE;
6209}
6210
6211/*
6212 * Show all termcodes (for ":set termcap")
6213 * This code looks a lot like showoptions(), but is different.
6214 */
6215 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006216show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217{
6218 int col;
6219 int *items;
6220 int item_count;
6221 int run;
6222 int row, rows;
6223 int cols;
6224 int i;
6225 int len;
6226
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006227#define INC3 27 /* try to make three columns */
6228#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229#define GAP 2 /* spaces between columns */
6230
6231 if (tc_len == 0) /* no terminal codes (must be GUI) */
6232 return;
6233 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
6234 if (items == NULL)
6235 return;
6236
6237 /* Highlight title */
6238 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
6239
6240 /*
6241 * do the loop two times:
6242 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006243 * 2. display the medium items (medium length strings)
6244 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006246 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 {
6248 /*
6249 * collect the items in items[]
6250 */
6251 item_count = 0;
6252 for (i = 0; i < tc_len; i++)
6253 {
6254 len = show_one_termcode(termcodes[i].name,
6255 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006256 if (len <= INC3 - GAP ? run == 1
6257 : len <= INC2 - GAP ? run == 2
6258 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259 items[item_count++] = i;
6260 }
6261
6262 /*
6263 * display the items
6264 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006265 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006267 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 if (cols == 0)
6269 cols = 1;
6270 rows = (item_count + cols - 1) / cols;
6271 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006272 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273 rows = item_count;
6274 for (row = 0; row < rows && !got_int; ++row)
6275 {
6276 msg_putchar('\n'); /* go to next line */
6277 if (got_int) /* 'q' typed in more */
6278 break;
6279 col = 0;
6280 for (i = row; i < item_count; i += rows)
6281 {
6282 msg_col = col; /* make columns */
6283 show_one_termcode(termcodes[items[i]].name,
6284 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006285 if (run == 2)
6286 col += INC2;
6287 else
6288 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 }
6290 out_flush();
6291 ui_breakcheck();
6292 }
6293 }
6294 vim_free(items);
6295}
6296
6297/*
6298 * Show one termcode entry.
6299 * Output goes into IObuff[]
6300 */
6301 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006302show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303{
6304 char_u *p;
6305 int len;
6306
6307 if (name[0] > '~')
6308 {
6309 IObuff[0] = ' ';
6310 IObuff[1] = ' ';
6311 IObuff[2] = ' ';
6312 IObuff[3] = ' ';
6313 }
6314 else
6315 {
6316 IObuff[0] = 't';
6317 IObuff[1] = '_';
6318 IObuff[2] = name[0];
6319 IObuff[3] = name[1];
6320 }
6321 IObuff[4] = ' ';
6322
6323 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
6324 if (p[1] != 't')
6325 STRCPY(IObuff + 5, p);
6326 else
6327 IObuff[5] = NUL;
6328 len = (int)STRLEN(IObuff);
6329 do
6330 IObuff[len++] = ' ';
6331 while (len < 17);
6332 IObuff[len] = NUL;
6333 if (code == NULL)
6334 len += 4;
6335 else
6336 len += vim_strsize(code);
6337
6338 if (printit)
6339 {
6340 msg_puts(IObuff);
6341 if (code == NULL)
6342 msg_puts((char_u *)"NULL");
6343 else
6344 msg_outtrans(code);
6345 }
6346 return len;
6347}
6348
6349#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
6350/*
6351 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
6352 * termcap codes from the terminal itself.
6353 * We get them one by one to avoid a very long response string.
6354 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02006355static int xt_index_in = 0;
6356static int xt_index_out = 0;
6357
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006359req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360{
6361 xt_index_out = 0;
6362 xt_index_in = 0;
6363 req_more_codes_from_term();
6364}
6365
6366 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006367req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368{
6369 char buf[11];
6370 int old_idx = xt_index_out;
6371
6372 /* Don't do anything when going to exit. */
6373 if (exiting)
6374 return;
6375
6376 /* Send up to 10 more requests out than we received. Avoid sending too
6377 * many, there can be a buffer overflow somewhere. */
6378 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
6379 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02006380# ifdef DEBUG_TERMRESPONSE
6381 char dbuf[100];
6382
6383 sprintf(dbuf, "Requesting XT %d: %s",
6384 xt_index_out, key_names[xt_index_out]);
6385 log_tr(dbuf);
6386# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 sprintf(buf, "\033P+q%02x%02x\033\\",
6388 key_names[xt_index_out][0], key_names[xt_index_out][1]);
6389 out_str_nf((char_u *)buf);
6390 ++xt_index_out;
6391 }
6392
6393 /* Send the codes out right away. */
6394 if (xt_index_out != old_idx)
6395 out_flush();
6396}
6397
6398/*
6399 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
6400 * A "0" instead of the "1" indicates a code that isn't supported.
6401 * Both <name> and <string> are encoded in hex.
6402 * "code" points to the "0" or "1".
6403 */
6404 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006405got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406{
6407#define XT_LEN 100
6408 char_u name[3];
6409 char_u str[XT_LEN];
6410 int i;
6411 int j = 0;
6412 int c;
6413
6414 /* A '1' means the code is supported, a '0' means it isn't.
6415 * When half the length is > XT_LEN we can't use it.
6416 * Our names are currently all 2 characters. */
6417 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
6418 {
6419 /* Get the name from the response and find it in the table. */
6420 name[0] = hexhex2nr(code + 3);
6421 name[1] = hexhex2nr(code + 5);
6422 name[2] = NUL;
6423 for (i = 0; key_names[i] != NULL; ++i)
6424 {
6425 if (STRCMP(key_names[i], name) == 0)
6426 {
6427 xt_index_in = i;
6428 break;
6429 }
6430 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02006431# ifdef DEBUG_TERMRESPONSE
6432 {
6433 char buf[100];
6434
6435 sprintf(buf, "Received XT %d: %s", xt_index_in, (char *)name);
6436 log_tr(buf);
6437 }
6438# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 if (key_names[i] != NULL)
6440 {
6441 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
6442 str[j++] = c;
6443 str[j] = NUL;
6444 if (name[0] == 'C' && name[1] == 'o')
6445 {
6446 /* Color count is not a key code. */
6447 i = atoi((char *)str);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02006448 may_adjust_color_count(i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 }
6450 else
6451 {
6452 /* First delete any existing entry with the same code. */
6453 i = find_term_bykeys(str);
6454 if (i >= 0)
6455 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006456 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 }
6458 }
6459 }
6460
6461 /* May request more codes now that we received one. */
6462 ++xt_index_in;
6463 req_more_codes_from_term();
6464}
6465
6466/*
6467 * Check if there are any unanswered requests and deal with them.
6468 * This is called before starting an external program or getting direct
6469 * keyboard input. We don't want responses to be send to that program or
6470 * handled as typed text.
6471 */
6472 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006473check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474{
6475 int c;
6476
6477 /* If no codes requested or all are answered, no need to wait. */
6478 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6479 return;
6480
6481 /* Vgetc() will check for and handle any response.
6482 * Keep calling vpeekc() until we don't get any responses. */
6483 ++no_mapping;
6484 ++allow_keys;
6485 for (;;)
6486 {
6487 c = vpeekc();
6488 if (c == NUL) /* nothing available */
6489 break;
6490
6491 /* If a response is recognized it's replaced with K_IGNORE, must read
6492 * it from the input stream. If there is no K_IGNORE we can't do
6493 * anything, break here (there might be some responses further on, but
6494 * we don't want to throw away any typed chars). */
6495 if (c != K_SPECIAL && c != K_IGNORE)
6496 break;
6497 c = vgetc();
6498 if (c != K_IGNORE)
6499 {
6500 vungetc(c);
6501 break;
6502 }
6503 }
6504 --no_mapping;
6505 --allow_keys;
6506}
6507#endif
6508
6509#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6510/*
6511 * Translate an internal mapping/abbreviation representation into the
6512 * corresponding external one recognized by :map/:abbrev commands;
6513 * respects the current B/k/< settings of 'cpoption'.
6514 *
6515 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006516 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517 *
6518 * It uses a growarray to build the translation string since the
6519 * latter can be wider than the original description. The caller has to
6520 * free the string afterwards.
6521 *
6522 * Returns NULL when there is a problem.
6523 */
6524 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006525translate_mapping(
6526 char_u *str,
6527 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528{
6529 garray_T ga;
6530 int c;
6531 int modifiers;
6532 int cpo_bslash;
6533 int cpo_special;
6534 int cpo_keycode;
6535
6536 ga_init(&ga);
6537 ga.ga_itemsize = 1;
6538 ga.ga_growsize = 40;
6539
6540 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6541 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6542 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6543
6544 for (; *str; ++str)
6545 {
6546 c = *str;
6547 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6548 {
6549 modifiers = 0;
6550 if (str[1] == KS_MODIFIER)
6551 {
6552 str++;
6553 modifiers = *++str;
6554 c = *++str;
6555 }
6556 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6557 {
6558 int i;
6559
6560 /* try to find special key in termcodes */
6561 for (i = 0; i < tc_len; ++i)
6562 if (termcodes[i].name[0] == str[1]
6563 && termcodes[i].name[1] == str[2])
6564 break;
6565 if (i < tc_len)
6566 {
6567 ga_concat(&ga, termcodes[i].code);
6568 str += 2;
6569 continue; /* for (str) */
6570 }
6571 }
6572 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6573 {
6574 if (expmap && cpo_special)
6575 {
6576 ga_clear(&ga);
6577 return NULL;
6578 }
6579 c = TO_SPECIAL(str[1], str[2]);
6580 if (c == K_ZERO) /* display <Nul> as ^@ */
6581 c = NUL;
6582 str += 2;
6583 }
6584 if (IS_SPECIAL(c) || modifiers) /* special key */
6585 {
6586 if (expmap && cpo_special)
6587 {
6588 ga_clear(&ga);
6589 return NULL;
6590 }
6591 ga_concat(&ga, get_special_key_name(c, modifiers));
6592 continue; /* for (str) */
6593 }
6594 }
6595 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6596 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6597 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6598 if (c)
6599 ga_append(&ga, c);
6600 }
6601 ga_append(&ga, NUL);
6602 return (char_u *)(ga.ga_data);
6603}
6604#endif
6605
6606#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6607static char ksme_str[20];
6608static char ksmr_str[20];
6609static char ksmd_str[20];
6610
6611/*
6612 * For Win32 console: update termcap codes for existing console attributes.
6613 */
6614 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006615update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616{
6617 struct builtin_term *p;
6618
6619 p = find_builtin_term(DEFAULT_TERM);
6620 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6621 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6622 attr | 0x08); /* FOREGROUND_INTENSITY */
6623 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6624 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6625
6626 while (p->bt_string != NULL)
6627 {
6628 if (p->bt_entry == (int)KS_ME)
6629 p->bt_string = &ksme_str[0];
6630 else if (p->bt_entry == (int)KS_MR)
6631 p->bt_string = &ksmr_str[0];
6632 else if (p->bt_entry == (int)KS_MD)
6633 p->bt_string = &ksmd_str[0];
6634 ++p;
6635 }
6636}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006637
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006638# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006639struct ks_tbl_s
6640{
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006641 int code; /* value of KS_ */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006642 char *vtp; /* code in vtp mode */
6643 char *buf; /* buffer in non-vtp mode */
6644 char *vbuf; /* buffer in vtp mode */
6645};
6646
6647static struct ks_tbl_s ks_tbl[] =
6648{
6649 {(int)KS_ME, "\033|0m" }, /* normal */
6650 {(int)KS_MR, "\033|7m" }, /* reverse */
6651 {(int)KS_MD, "\033|1m" }, /* bold */
6652 {(int)KS_SO, "\033|91m"}, /* standout: bright red text */
6653 {(int)KS_SE, "\033|39m"}, /* standout end: default color */
6654 {(int)KS_CZH, "\033|95m"}, /* italic: bright magenta text */
6655 {(int)KS_CZR, "\033|0m",}, /* italic end */
6656 {(int)KS_US, "\033|4m",}, /* underscore */
6657 {(int)KS_UE, "\033|24m"}, /* underscore end */
6658 {(int)KS_NAME, NULL}
6659};
6660
6661 static struct builtin_term *
6662find_first_tcap(
6663 char_u *name,
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006664 int code)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006665{
6666 struct builtin_term *p;
6667
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006668 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006669 if (p->bt_entry == code)
6670 return p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006671 return NULL;
6672}
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006673# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006674
6675/*
6676 * For Win32 console: replace the sequence immediately after termguicolors.
6677 */
6678 void
6679swap_tcap(void)
6680{
6681# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006682 static int init_done = FALSE;
6683 static int last_tgc;
6684 struct ks_tbl_s *ks;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006685 struct builtin_term *bt;
6686
6687 /* buffer initialization */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006688 if (!init_done)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006689 {
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006690 for (ks = ks_tbl; ks->vtp != NULL; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006691 {
6692 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006693 if (bt != NULL)
6694 {
6695 ks->buf = bt->bt_string;
6696 ks->vbuf = ks->vtp;
6697 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006698 }
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006699 init_done = TRUE;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006700 last_tgc = p_tgc;
6701 return;
6702 }
6703
6704 if (last_tgc != p_tgc)
6705 {
6706 if (p_tgc)
6707 {
6708 /* switch to special character sequence */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006709 for (ks = ks_tbl; ks->vtp != NULL; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006710 {
6711 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006712 if (bt != NULL)
6713 {
6714 ks->buf = bt->bt_string;
6715 bt->bt_string = ks->vbuf;
6716 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006717 }
6718 }
6719 else
6720 {
6721 /* switch to index color */
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006722 for (ks = ks_tbl; ks->vtp != NULL; ks++)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006723 {
6724 bt = find_first_tcap(DEFAULT_TERM, ks->code);
Bram Moolenaarcc0f2be2018-02-23 18:23:30 +01006725 if (bt != NULL)
6726 {
6727 ks->vbuf = bt->bt_string;
6728 bt->bt_string = ks->buf;
6729 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006730 }
6731 }
6732
6733 last_tgc = p_tgc;
6734 }
6735# endif
6736}
6737
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006739
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006740#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006741 static int
6742hex_digit(int c)
6743{
6744 if (isdigit(c))
6745 return c - '0';
6746 c = TOLOWER_ASC(c);
6747 if (c >= 'a' && c <= 'f')
6748 return c - 'a' + 10;
6749 return 0x1ffffff;
6750}
6751
6752 guicolor_T
6753gui_get_color_cmn(char_u *name)
6754{
Bram Moolenaar28726652017-01-06 18:16:19 +01006755 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6756 * values as used by the MS-Windows GDI api. It should be used only for
6757 * MS-Windows GDI builds. */
6758# if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI)
6759# undef RGB
6760# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006761# ifndef RGB
6762# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6763# endif
6764# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006765 FILE *fd;
6766 char line[LINE_LEN];
6767 char_u *fname;
6768 int r, g, b, i;
6769 guicolor_T color;
6770
6771 struct rgbcolor_table_S {
6772 char_u *color_name;
6773 guicolor_T color;
6774 };
6775
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006776 /* Only non X11 colors (not present in rgb.txt) and colors in
6777 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006778 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006779 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6780 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6781 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6782 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6783 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6784 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6785 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6786 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6787 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6788 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6789 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6790 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6791 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006792 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6793 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006794 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006795 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006796 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6797 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6798 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6799 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6800 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6801 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6802 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6803 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6804 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006805 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006806 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006807 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6808 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006809 };
6810
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006811 static struct rgbcolor_table_S *colornames_table;
6812 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006813
6814 if (name[0] == '#' && STRLEN(name) == 7)
6815 {
6816 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006817 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006818 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6819 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6820 if (color > 0xffffff)
6821 return INVALCOLOR;
6822 return color;
6823 }
6824
6825 /* Check if the name is one of the colors we know */
6826 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6827 if (STRICMP(name, rgb_table[i].color_name) == 0)
6828 return rgb_table[i].color;
6829
6830 /*
6831 * Last attempt. Look in the file "$VIM/rgb.txt".
6832 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006833 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02006834 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006835 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02006836
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006837 /* colornames_table not yet initialized */
6838 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
6839 if (fname == NULL)
6840 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006841
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006842 fd = fopen((char *)fname, "rt");
6843 vim_free(fname);
6844 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02006845 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006846 if (p_verbose > 1)
6847 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt"));
6848 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006849 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006850
6851 for (counting = 1; counting >= 0; --counting)
6852 {
6853 if (!counting)
6854 {
6855 colornames_table = (struct rgbcolor_table_S *)alloc(
6856 (unsigned)(sizeof(struct rgbcolor_table_S) * size));
6857 if (colornames_table == NULL)
6858 {
6859 fclose(fd);
6860 return INVALCOLOR;
6861 }
6862 rewind(fd);
6863 }
6864 size = 0;
6865
6866 while (!feof(fd))
6867 {
6868 size_t len;
6869 int pos;
6870
6871 ignoredp = fgets(line, LINE_LEN, fd);
6872 len = strlen(line);
6873
6874 if (len <= 1 || line[len - 1] != '\n')
6875 continue;
6876
6877 line[len - 1] = '\0';
6878
6879 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
6880 if (i != 3)
6881 continue;
6882
6883 if (!counting)
6884 {
6885 char_u *s = vim_strsave((char_u *)line + pos);
6886
6887 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006888 {
6889 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006890 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006891 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006892 colornames_table[size].color_name = s;
6893 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6894 }
6895 size++;
6896 }
6897 }
6898 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02006899 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006900
6901 for (i = 0; i < size; i++)
6902 if (STRICMP(name, colornames_table[i].color_name) == 0)
6903 return colornames_table[i].color;
6904
Bram Moolenaarab302212016-04-26 20:59:29 +02006905 return INVALCOLOR;
6906}
Bram Moolenaar26af85d2017-07-23 16:45:10 +02006907
6908 guicolor_T
6909gui_get_rgb_color_cmn(int r, int g, int b)
6910{
6911 guicolor_T color = RGB(r, g, b);
6912
6913 if (color > 0xffffff)
6914 return INVALCOLOR;
6915 return color;
6916}
Bram Moolenaarab302212016-04-26 20:59:29 +02006917#endif