blob: cac47da06f1984a2128d42763daccabecee63dfb [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 *
11 * term.c: functions for controlling the terminal
12 *
Bram Moolenaar48e330a2016-02-23 14:53:34 +010013 * primitive termcap support for Amiga and Win32 included
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * NOTE: padding and variable substitution is not performed,
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies.
17 */
18
19/*
20 * Some systems have a prototype for tgetstr() with (char *) instead of
21 * (char **). This define removes that prototype. We include our own prototype
22 * below.
23 */
24
25#define tgetstr tgetstr_defined_wrong
26#include "vim.h"
27
28#ifdef HAVE_TGETENT
29# ifdef HAVE_TERMIOS_H
30# include <termios.h> /* seems to be required for some Linux */
31# endif
32# ifdef HAVE_TERMCAP_H
33# include <termcap.h>
34# endif
35
36/*
37 * A few linux systems define outfuntype in termcap.h to be used as the third
38 * argument for tputs().
39 */
40# ifdef VMS
41# define TPUTSFUNCAST
42# else
43# ifdef HAVE_OUTFUNTYPE
44# define TPUTSFUNCAST (outfuntype)
45# else
46# define TPUTSFUNCAST (int (*)())
47# endif
48# endif
49#endif
50
51#undef tgetstr
52
53/*
54 * Here are the builtin termcap entries. They are not stored as complete
Bram Moolenaare60acc12011-05-10 16:41:25 +020055 * structures with all entries, as such a structure is too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 *
57 * The entries are compact, therefore they normally are included even when
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc.
60 *
61 * Each termcap is a list of builtin_term structures. It always starts with
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all
63 * details.
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code.
65 *
66 * Entries marked with "guessed" may be wrong.
67 */
68struct builtin_term
69{
70 int bt_entry;
71 char *bt_string;
72};
73
74/* start of keys that are not directly used by Vim but can be mapped */
75#define BT_EXTRA_KEYS 0x101
76
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010077static struct builtin_term *find_builtin_term(char_u *name);
78static void parse_builtin_tcap(char_u *s);
79static void term_color(char_u *s, int n);
80static void gather_termleader(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000081#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010082static void req_codes_from_term(void);
83static void req_more_codes_from_term(void);
84static void got_code_from_term(char_u *code, int len);
85static void check_for_codes_from_term(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000086#endif
87#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000088 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
89 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010090static int get_bytes_from_buf(char_u *, char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010092static void del_termcode_idx(int idx);
93static int term_is_builtin(char_u *name);
94static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010096static void switch_to_8bit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#endif
98
99#ifdef HAVE_TGETENT
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100100static char_u *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
102/*
103 * Here is our own prototype for tgetstr(), any prototypes from the include
104 * files have been disabled by the define at the start of this file.
105 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100106char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
108# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200109 /* Change this to "if 1" to debug what happens with termresponse. */
110# if 0
111# define DEBUG_TERMRESPONSE
112 static void log_tr(char *msg);
113# define LOG_TR(msg) log_tr(msg)
114# else
115# define LOG_TR(msg)
116# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117/* Request Terminal Version status: */
118# define CRV_GET 1 /* send T_CRV when switched to RAW mode */
119# define CRV_SENT 2 /* did send T_CRV, waiting for answer */
120# define CRV_GOT 3 /* received T_CRV response */
121static int crv_status = CRV_GET;
Bram Moolenaar9584b312013-03-13 19:29:28 +0100122/* Request Cursor position report: */
123# define U7_GET 1 /* send T_U7 when switched to RAW mode */
124# define U7_SENT 2 /* did send T_U7, waiting for answer */
125# define U7_GOT 3 /* received T_U7 response */
126static int u7_status = U7_GET;
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200127/* Request background color report: */
128# define RBG_GET 1 /* send T_RBG when switched to RAW mode */
129# define RBG_SENT 2 /* did send T_RBG, waiting for answer */
130# define RBG_GOT 3 /* received T_RBG response */
131static int rbg_status = RBG_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132# endif
133
134/*
135 * Don't declare these variables if termcap.h contains them.
136 * Autoconf checks if these variables should be declared extern (not all
137 * systems have them).
138 * Some versions define ospeed to be speed_t, but that is incompatible with
139 * BSD, where ospeed is short and speed_t is long.
140 */
141# ifndef HAVE_OSPEED
142# ifdef OSPEED_EXTERN
143extern short ospeed;
144# else
145short ospeed;
146# endif
147# endif
148# ifndef HAVE_UP_BC_PC
149# ifdef UP_BC_PC_EXTERN
150extern char *UP, *BC, PC;
151# else
152char *UP, *BC, PC;
153# endif
154# endif
155
156# define TGETSTR(s, p) vim_tgetstr((s), (p))
157# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100158static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159#endif /* HAVE_TGETENT */
160
161static int detected_8bit = FALSE; /* detected 8-bit terminal */
162
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000163static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164{
165
166#if defined(FEAT_GUI)
167/*
168 * GUI pseudo term-cap.
169 */
170 {(int)KS_NAME, "gui"},
171 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
172 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
173# ifdef TERMINFO
174 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
175# else
176 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
177# endif
178 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
179# ifdef TERMINFO
180 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
181 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100182# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
184# endif
185# else
186 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
187 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100188# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
190# endif
191# endif
192 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
193 /* attributes switched on with 'h', off with * 'H' */
194 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
195 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
196 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
197 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
198 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
199 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
200 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000201 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
202 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
204 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
205 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
206 {(int)KS_MS, "y"},
207 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100208 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 {(int)KS_LE, "\b"}, /* cursor-left = BS */
210 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
211# ifdef TERMINFO
212 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
213# else
214 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
215# endif
216 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000217 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218#endif
219
220#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
223/*
224 * Amiga console window, default for Amiga
225 */
226 {(int)KS_NAME, "amiga"},
227 {(int)KS_CE, "\033[K"},
228 {(int)KS_CD, "\033[J"},
229 {(int)KS_AL, "\033[L"},
230# ifdef TERMINFO
231 {(int)KS_CAL, "\033[%p1%dL"},
232# else
233 {(int)KS_CAL, "\033[%dL"},
234# endif
235 {(int)KS_DL, "\033[M"},
236# ifdef TERMINFO
237 {(int)KS_CDL, "\033[%p1%dM"},
238# else
239 {(int)KS_CDL, "\033[%dM"},
240# endif
241 {(int)KS_CL, "\014"},
242 {(int)KS_VI, "\033[0 p"},
243 {(int)KS_VE, "\033[1 p"},
244 {(int)KS_ME, "\033[0m"},
245 {(int)KS_MR, "\033[7m"},
246 {(int)KS_MD, "\033[1m"},
247 {(int)KS_SE, "\033[0m"},
248 {(int)KS_SO, "\033[33m"},
249 {(int)KS_US, "\033[4m"},
250 {(int)KS_UE, "\033[0m"},
251 {(int)KS_CZH, "\033[3m"},
252 {(int)KS_CZR, "\033[0m"},
253#if defined(__MORPHOS__) || defined(__AROS__)
254 {(int)KS_CCO, "8"}, /* allow 8 colors */
255# ifdef TERMINFO
256 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
257 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
258# else
259 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
260 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
261# endif
262 {(int)KS_OP, "\033[m"}, /* reset colors */
263#endif
264 {(int)KS_MS, "y"},
265 {(int)KS_UT, "y"}, /* guessed */
266 {(int)KS_LE, "\b"},
267# ifdef TERMINFO
268 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
269# else
270 {(int)KS_CM, "\033[%i%d;%dH"},
271# endif
272#if defined(__MORPHOS__)
273 {(int)KS_SR, "\033M"},
274#endif
275# ifdef TERMINFO
276 {(int)KS_CRI, "\033[%p1%dC"},
277# else
278 {(int)KS_CRI, "\033[%dC"},
279# endif
280 {K_UP, "\233A"},
281 {K_DOWN, "\233B"},
282 {K_LEFT, "\233D"},
283 {K_RIGHT, "\233C"},
284 {K_S_UP, "\233T"},
285 {K_S_DOWN, "\233S"},
286 {K_S_LEFT, "\233 A"},
287 {K_S_RIGHT, "\233 @"},
288 {K_S_TAB, "\233Z"},
289 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
290 {K_F2, "\233\061~"},
291 {K_F3, "\233\062~"},
292 {K_F4, "\233\063~"},
293 {K_F5, "\233\064~"},
294 {K_F6, "\233\065~"},
295 {K_F7, "\233\066~"},
296 {K_F8, "\233\067~"},
297 {K_F9, "\233\070~"},
298 {K_F10, "\233\071~"},
299 {K_S_F1, "\233\061\060~"},
300 {K_S_F2, "\233\061\061~"},
301 {K_S_F3, "\233\061\062~"},
302 {K_S_F4, "\233\061\063~"},
303 {K_S_F5, "\233\061\064~"},
304 {K_S_F6, "\233\061\065~"},
305 {K_S_F7, "\233\061\066~"},
306 {K_S_F8, "\233\061\067~"},
307 {K_S_F9, "\233\061\070~"},
308 {K_S_F10, "\233\061\071~"},
309 {K_HELP, "\233?~"},
310 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
311 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
312 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
313 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
314 {K_END, "\233\064\065~"}, /* 101 key keyboard */
315
316 {BT_EXTRA_KEYS, ""},
317 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
318 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
319 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
320# endif
321
322# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
323/*
324 * almost standard ANSI terminal, default for bebox
325 */
326 {(int)KS_NAME, "beos-ansi"},
327 {(int)KS_CE, "\033[K"},
328 {(int)KS_CD, "\033[J"},
329 {(int)KS_AL, "\033[L"},
330# ifdef TERMINFO
331 {(int)KS_CAL, "\033[%p1%dL"},
332# else
333 {(int)KS_CAL, "\033[%dL"},
334# endif
335 {(int)KS_DL, "\033[M"},
336# ifdef TERMINFO
337 {(int)KS_CDL, "\033[%p1%dM"},
338# else
339 {(int)KS_CDL, "\033[%dM"},
340# endif
341#ifdef BEOS_PR_OR_BETTER
342# ifdef TERMINFO
343 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
344# else
345 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
346# endif
347#endif
348 {(int)KS_CL, "\033[H\033[2J"},
349#ifdef notyet
350 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
351 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
352#endif
353 {(int)KS_ME, "\033[m"}, /* normal mode */
354 {(int)KS_MR, "\033[7m"}, /* reverse */
355 {(int)KS_MD, "\033[1m"}, /* bold */
356 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
357 {(int)KS_SE, "\033[m"}, /* standout end */
358 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
359 {(int)KS_CZR, "\033[m"}, /* italic end */
360 {(int)KS_US, "\033[4m"}, /* underscore mode */
361 {(int)KS_UE, "\033[m"}, /* underscore end */
362 {(int)KS_CCO, "8"}, /* allow 8 colors */
363# ifdef TERMINFO
364 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
365 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
366# else
367 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
368 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
369# endif
370 {(int)KS_OP, "\033[m"}, /* reset colors */
371 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
372 {(int)KS_UT, "y"}, /* guessed */
373 {(int)KS_LE, "\b"},
374# ifdef TERMINFO
375 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
376# else
377 {(int)KS_CM, "\033[%i%d;%dH"},
378# endif
379 {(int)KS_SR, "\033M"},
380# ifdef TERMINFO
381 {(int)KS_CRI, "\033[%p1%dC"},
382# else
383 {(int)KS_CRI, "\033[%dC"},
384# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200385# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200387# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388
389 {K_UP, "\033[A"},
390 {K_DOWN, "\033[B"},
391 {K_LEFT, "\033[D"},
392 {K_RIGHT, "\033[C"},
393# endif
394
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200395# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396/*
397 * standard ANSI terminal, default for unix
398 */
399 {(int)KS_NAME, "ansi"},
400 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
401 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
402# ifdef TERMINFO
403 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
404# else
405 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
406# endif
407 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
408# ifdef TERMINFO
409 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
410# else
411 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
412# endif
413 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
414 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
415 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
416 {(int)KS_MS, "y"},
417 {(int)KS_UT, "y"}, /* guessed */
418 {(int)KS_LE, "\b"},
419# ifdef TERMINFO
420 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
421# else
422 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
423# endif
424# ifdef TERMINFO
425 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
426# else
427 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
428# endif
429# endif
430
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200431# if defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432/*
433 * These codes are valid when nansi.sys or equivalent has been installed.
434 * Function keys on a PC are preceded with a NUL. These are converted into
435 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
436 * CTRL-arrow is used instead of SHIFT-arrow.
437 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 {(int)KS_NAME, "pcansi"},
439 {(int)KS_DL, "\033[M"},
440 {(int)KS_AL, "\033[L"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {(int)KS_CE, "\033[K"},
442 {(int)KS_CL, "\033[2J"},
443 {(int)KS_ME, "\033[0m"},
444 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
445 {(int)KS_MD, "\033[1m"}, /* bold: white text */
446 {(int)KS_SE, "\033[0m"}, /* standout end */
447 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
448 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
449 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
450 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
451 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
452 {(int)KS_CCO, "8"}, /* allow 8 colors */
453# ifdef TERMINFO
454 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
455 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
456# else
457 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
458 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
459# endif
460 {(int)KS_OP, "\033[0m"}, /* reset colors */
461 {(int)KS_MS, "y"},
462 {(int)KS_UT, "y"}, /* guessed */
463 {(int)KS_LE, "\b"},
464# ifdef TERMINFO
465 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
466# else
467 {(int)KS_CM, "\033[%i%d;%dH"},
468# endif
469# ifdef TERMINFO
470 {(int)KS_CRI, "\033[%p1%dC"},
471# else
472 {(int)KS_CRI, "\033[%dC"},
473# endif
474 {K_UP, "\316H"},
475 {K_DOWN, "\316P"},
476 {K_LEFT, "\316K"},
477 {K_RIGHT, "\316M"},
478 {K_S_LEFT, "\316s"},
479 {K_S_RIGHT, "\316t"},
480 {K_F1, "\316;"},
481 {K_F2, "\316<"},
482 {K_F3, "\316="},
483 {K_F4, "\316>"},
484 {K_F5, "\316?"},
485 {K_F6, "\316@"},
486 {K_F7, "\316A"},
487 {K_F8, "\316B"},
488 {K_F9, "\316C"},
489 {K_F10, "\316D"},
490 {K_F11, "\316\205"}, /* guessed */
491 {K_F12, "\316\206"}, /* guessed */
492 {K_S_F1, "\316T"},
493 {K_S_F2, "\316U"},
494 {K_S_F3, "\316V"},
495 {K_S_F4, "\316W"},
496 {K_S_F5, "\316X"},
497 {K_S_F6, "\316Y"},
498 {K_S_F7, "\316Z"},
499 {K_S_F8, "\316["},
500 {K_S_F9, "\316\\"},
501 {K_S_F10, "\316]"},
502 {K_S_F11, "\316\207"}, /* guessed */
503 {K_S_F12, "\316\210"}, /* guessed */
504 {K_INS, "\316R"},
505 {K_DEL, "\316S"},
506 {K_HOME, "\316G"},
507 {K_END, "\316O"},
508 {K_PAGEDOWN, "\316Q"},
509 {K_PAGEUP, "\316I"},
510# endif
511
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200512# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513/*
514 * These codes are valid for the Win32 Console . The entries that start with
515 * ESC | are translated into console calls in os_win32.c. The function keys
516 * are also translated in os_win32.c.
517 */
518 {(int)KS_NAME, "win32"},
519 {(int)KS_CE, "\033|K"}, /* clear to end of line */
520 {(int)KS_AL, "\033|L"}, /* add new blank line */
521# ifdef TERMINFO
522 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
523# else
524 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
525# endif
526 {(int)KS_DL, "\033|M"}, /* delete line */
527# ifdef TERMINFO
528 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
529# else
530 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
531# endif
532 {(int)KS_CL, "\033|J"}, /* clear screen */
533 {(int)KS_CD, "\033|j"}, /* clear to end of display */
534 {(int)KS_VI, "\033|v"}, /* cursor invisible */
535 {(int)KS_VE, "\033|V"}, /* cursor visible */
536
537 {(int)KS_ME, "\033|0m"}, /* normal */
538 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
539 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
540#if 1
541 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
542 {(int)KS_SE, "\033|0m"}, /* standout end */
543#else
544 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
545 {(int)KS_SE, "\033|f"}, /* standout end */
546#endif
547 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
548 {(int)KS_CZR, "\033|0m"}, /* italic end */
549 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
550 {(int)KS_UE, "\033|0m"}, /* underscore end */
551 {(int)KS_CCO, "16"}, /* allow 16 colors */
552# ifdef TERMINFO
553 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
554 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
555# else
556 {(int)KS_CAB, "\033|%db"}, /* set background color */
557 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
558# endif
559
560 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
561 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100562 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 {(int)KS_LE, "\b"},
564# ifdef TERMINFO
565 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
566# else
567 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
568# endif
569 {(int)KS_VB, "\033|B"}, /* visual bell */
570 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
571 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
572# ifdef TERMINFO
573 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
574# else
575 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
576# endif
577
578 {K_UP, "\316H"},
579 {K_DOWN, "\316P"},
580 {K_LEFT, "\316K"},
581 {K_RIGHT, "\316M"},
582 {K_S_UP, "\316\304"},
583 {K_S_DOWN, "\316\317"},
584 {K_S_LEFT, "\316\311"},
585 {K_C_LEFT, "\316s"},
586 {K_S_RIGHT, "\316\313"},
587 {K_C_RIGHT, "\316t"},
588 {K_S_TAB, "\316\017"},
589 {K_F1, "\316;"},
590 {K_F2, "\316<"},
591 {K_F3, "\316="},
592 {K_F4, "\316>"},
593 {K_F5, "\316?"},
594 {K_F6, "\316@"},
595 {K_F7, "\316A"},
596 {K_F8, "\316B"},
597 {K_F9, "\316C"},
598 {K_F10, "\316D"},
599 {K_F11, "\316\205"},
600 {K_F12, "\316\206"},
601 {K_S_F1, "\316T"},
602 {K_S_F2, "\316U"},
603 {K_S_F3, "\316V"},
604 {K_S_F4, "\316W"},
605 {K_S_F5, "\316X"},
606 {K_S_F6, "\316Y"},
607 {K_S_F7, "\316Z"},
608 {K_S_F8, "\316["},
609 {K_S_F9, "\316\\"},
610 {K_S_F10, "\316]"},
611 {K_S_F11, "\316\207"},
612 {K_S_F12, "\316\210"},
613 {K_INS, "\316R"},
614 {K_DEL, "\316S"},
615 {K_HOME, "\316G"},
616 {K_S_HOME, "\316\302"},
617 {K_C_HOME, "\316w"},
618 {K_END, "\316O"},
619 {K_S_END, "\316\315"},
620 {K_C_END, "\316u"},
621 {K_PAGEDOWN, "\316Q"},
622 {K_PAGEUP, "\316I"},
623 {K_KPLUS, "\316N"},
624 {K_KMINUS, "\316J"},
625 {K_KMULTIPLY, "\316\067"},
626 {K_K0, "\316\332"},
627 {K_K1, "\316\336"},
628 {K_K2, "\316\342"},
629 {K_K3, "\316\346"},
630 {K_K4, "\316\352"},
631 {K_K5, "\316\356"},
632 {K_K6, "\316\362"},
633 {K_K7, "\316\366"},
634 {K_K8, "\316\372"},
635 {K_K9, "\316\376"},
636# endif
637
638# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
639/*
640 * VT320 is working as an ANSI terminal compatible DEC terminal.
641 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
642 * Note: K_F1...K_F5 are for internal use, should not be defined.
643 * TODO:- rewrite ESC[ codes to CSI
644 * - keyboard languages (CSI ? 26 n)
645 */
646 {(int)KS_NAME, "vt320"},
647 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
648 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
649# ifdef TERMINFO
650 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
651# else
652 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
653# endif
654 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
655# ifdef TERMINFO
656 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
657# else
658 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
659# endif
660 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000661 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
662 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
664 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000665 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
666 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
667 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
668 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
669 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
670 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
671 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
672 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
673 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
674 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 {(int)KS_MS, "y"},
676 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100677 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 {(int)KS_LE, "\b"},
679# ifdef TERMINFO
680 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
681 ESC_STR "[%i%p1%d;%p2%dH")},
682# else
683 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
684# endif
685# ifdef TERMINFO
686 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
687# else
688 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
689# endif
690 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
691 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
692 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
693 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000694 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
695 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
696 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
697 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
698 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
700 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
701 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
702 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
703 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000704 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
706 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
707 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
708 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
709 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
710 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
711 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
712 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
713 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
714 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
715 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
716 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
717 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
718 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
719 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
720 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
721 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
722 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
723 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
724 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
725 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
726# endif
727
728# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
729/*
730 * Ordinary vt52
731 */
732 {(int)KS_NAME, "vt52"},
733 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
734 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100735# ifdef TERMINFO
736 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
737 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
738# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100740# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100742 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
744 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 {K_UP, IF_EB("\033A", ESC_STR "A")},
746 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
747 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
748 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100749 {K_F1, IF_EB("\033P", ESC_STR "P")},
750 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
751 {K_F3, IF_EB("\033R", ESC_STR "R")},
752# ifdef __MINT__
753 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
754 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
755 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
756 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
757 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
759 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
760 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
761 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 {K_F4, IF_EB("\033S", ESC_STR "S")},
763 {K_F5, IF_EB("\033T", ESC_STR "T")},
764 {K_F6, IF_EB("\033U", ESC_STR "U")},
765 {K_F7, IF_EB("\033V", ESC_STR "V")},
766 {K_F8, IF_EB("\033W", ESC_STR "W")},
767 {K_F9, IF_EB("\033X", ESC_STR "X")},
768 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
769 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
770 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
771 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
772 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
773 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
774 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
775 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
776 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
777 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
778 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
779 {K_INS, IF_EB("\033I", ESC_STR "I")},
780 {K_HOME, IF_EB("\033E", ESC_STR "E")},
781 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
782 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
783# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 {(int)KS_MS, "y"},
786# endif
787# endif
788
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200789# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200790 {(int)KS_NAME, "xterm"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
792 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
793# ifdef TERMINFO
794 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
795# else
796 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
797# endif
798 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
799# ifdef TERMINFO
800 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
801# else
802 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
803# endif
804# ifdef TERMINFO
805 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
806 ESC_STR "[%i%p1%d;%p2%dr")},
807# else
808 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
809# endif
810 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
811 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
812 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
813 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
814 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
815 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
816 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
817 {(int)KS_MS, "y"},
818 {(int)KS_UT, "y"},
819 {(int)KS_LE, "\b"},
820# ifdef TERMINFO
821 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
822 ESC_STR "[%i%p1%d;%p2%dH")},
823# else
824 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
825# endif
826 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
827# ifdef TERMINFO
828 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
829# else
830 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
831# endif
832 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
833 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
834# ifdef FEAT_XTERM_SAVE
835 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
836 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
837 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
838# endif
839 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
840 {(int)KS_CIE, "\007"},
841 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
842 {(int)KS_FS, "\007"},
843# ifdef TERMINFO
844 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
845 ESC_STR "[8;%p1%d;%p2%dt")},
846 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
847 ESC_STR "[3;%p1%d;%p2%dt")},
848# else
849 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
850 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
851# endif
852 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200853 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100854 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200855# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarb2fa54a2016-04-22 21:11:09 +0200856 /* These are printf strings, not terminal codes. */
857 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
858 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
859# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +0100860 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")},
861 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000862
863 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
864 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
865 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
866 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
867 /* An extra set of cursor keys for vt100 mode */
868 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
869 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
870 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
871 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000873 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
874 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
875 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
876 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000877 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
878 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
879 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
880 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
881 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
882 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
883 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
884 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
885 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
886 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
887 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
888 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000890 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
891 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
892 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
893 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000894 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
895 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000896 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000897 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000898 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000899 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000900 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
901 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000902 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000903 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000904 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000905 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
906 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100907 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
908 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
909 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
910 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
911 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
912 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
913 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
914 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */
915 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916
917 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000918 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
919 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
920 /* F14 and F15 are missing, because they send the same codes as the undo
921 * and help key, although they don't work on all keyboards. */
922 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
923 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
924 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
925 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
926 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
927
928 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
929 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
930 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
931 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
932 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
933 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
934 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
935 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
936 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
937 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
938
939 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
940 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
941 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
942 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
943 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
944 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
945 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946# endif
947
948# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
949/*
950 * iris-ansi for Silicon Graphics machines.
951 */
952 {(int)KS_NAME, "iris-ansi"},
953 {(int)KS_CE, "\033[K"},
954 {(int)KS_CD, "\033[J"},
955 {(int)KS_AL, "\033[L"},
956# ifdef TERMINFO
957 {(int)KS_CAL, "\033[%p1%dL"},
958# else
959 {(int)KS_CAL, "\033[%dL"},
960# endif
961 {(int)KS_DL, "\033[M"},
962# ifdef TERMINFO
963 {(int)KS_CDL, "\033[%p1%dM"},
964# else
965 {(int)KS_CDL, "\033[%dM"},
966# endif
967#if 0 /* The scroll region is not working as Vim expects. */
968# ifdef TERMINFO
969 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
970# else
971 {(int)KS_CS, "\033[%i%d;%dr"},
972# endif
973#endif
974 {(int)KS_CL, "\033[H\033[2J"},
975 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
976 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
977 {(int)KS_TI, "\033[=6h"},
978 {(int)KS_TE, "\033[=6l"},
979 {(int)KS_SE, "\033[21;27m"},
980 {(int)KS_SO, "\033[1;7m"},
981 {(int)KS_ME, "\033[m"},
982 {(int)KS_MR, "\033[7m"},
983 {(int)KS_MD, "\033[1m"},
984 {(int)KS_CCO, "8"}, /* allow 8 colors */
985 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
986 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
987 {(int)KS_US, "\033[4m"}, /* underline on */
988 {(int)KS_UE, "\033[24m"}, /* underline off */
989# ifdef TERMINFO
990 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
991 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
992 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
993 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
994# else
995 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
996 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
997 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
998 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
999# endif
1000 {(int)KS_MS, "y"}, /* guessed */
1001 {(int)KS_UT, "y"}, /* guessed */
1002 {(int)KS_LE, "\b"},
1003# ifdef TERMINFO
1004 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1005# else
1006 {(int)KS_CM, "\033[%i%d;%dH"},
1007# endif
1008 {(int)KS_SR, "\033M"},
1009# ifdef TERMINFO
1010 {(int)KS_CRI, "\033[%p1%dC"},
1011# else
1012 {(int)KS_CRI, "\033[%dC"},
1013# endif
1014 {(int)KS_CIS, "\033P3.y"},
1015 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1016 {(int)KS_TS, "\033P1.y"},
1017 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1018# ifdef TERMINFO
1019 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1020 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1021# else
1022 {(int)KS_CWS, "\033[203;%d;%d/y"},
1023 {(int)KS_CWP, "\033[205;%d;%d/y"},
1024# endif
1025 {K_UP, "\033[A"},
1026 {K_DOWN, "\033[B"},
1027 {K_LEFT, "\033[D"},
1028 {K_RIGHT, "\033[C"},
1029 {K_S_UP, "\033[161q"},
1030 {K_S_DOWN, "\033[164q"},
1031 {K_S_LEFT, "\033[158q"},
1032 {K_S_RIGHT, "\033[167q"},
1033 {K_F1, "\033[001q"},
1034 {K_F2, "\033[002q"},
1035 {K_F3, "\033[003q"},
1036 {K_F4, "\033[004q"},
1037 {K_F5, "\033[005q"},
1038 {K_F6, "\033[006q"},
1039 {K_F7, "\033[007q"},
1040 {K_F8, "\033[008q"},
1041 {K_F9, "\033[009q"},
1042 {K_F10, "\033[010q"},
1043 {K_F11, "\033[011q"},
1044 {K_F12, "\033[012q"},
1045 {K_S_F1, "\033[013q"},
1046 {K_S_F2, "\033[014q"},
1047 {K_S_F3, "\033[015q"},
1048 {K_S_F4, "\033[016q"},
1049 {K_S_F5, "\033[017q"},
1050 {K_S_F6, "\033[018q"},
1051 {K_S_F7, "\033[019q"},
1052 {K_S_F8, "\033[020q"},
1053 {K_S_F9, "\033[021q"},
1054 {K_S_F10, "\033[022q"},
1055 {K_S_F11, "\033[023q"},
1056 {K_S_F12, "\033[024q"},
1057 {K_INS, "\033[139q"},
1058 {K_HOME, "\033[H"},
1059 {K_END, "\033[146q"},
1060 {K_PAGEUP, "\033[150q"},
1061 {K_PAGEDOWN, "\033[154q"},
1062# endif
1063
1064# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1065/*
1066 * for debugging
1067 */
1068 {(int)KS_NAME, "debug"},
1069 {(int)KS_CE, "[CE]"},
1070 {(int)KS_CD, "[CD]"},
1071 {(int)KS_AL, "[AL]"},
1072# ifdef TERMINFO
1073 {(int)KS_CAL, "[CAL%p1%d]"},
1074# else
1075 {(int)KS_CAL, "[CAL%d]"},
1076# endif
1077 {(int)KS_DL, "[DL]"},
1078# ifdef TERMINFO
1079 {(int)KS_CDL, "[CDL%p1%d]"},
1080# else
1081 {(int)KS_CDL, "[CDL%d]"},
1082# endif
1083# ifdef TERMINFO
1084 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1085# else
1086 {(int)KS_CS, "[%dCS%d]"},
1087# endif
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001088# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089# ifdef TERMINFO
1090 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
1091# else
1092 {(int)KS_CSV, "[%dCSV%d]"},
1093# endif
1094# endif
1095# ifdef TERMINFO
1096 {(int)KS_CAB, "[CAB%p1%d]"},
1097 {(int)KS_CAF, "[CAF%p1%d]"},
1098 {(int)KS_CSB, "[CSB%p1%d]"},
1099 {(int)KS_CSF, "[CSF%p1%d]"},
1100# else
1101 {(int)KS_CAB, "[CAB%d]"},
1102 {(int)KS_CAF, "[CAF%d]"},
1103 {(int)KS_CSB, "[CSB%d]"},
1104 {(int)KS_CSF, "[CSF%d]"},
1105# endif
1106 {(int)KS_OP, "[OP]"},
1107 {(int)KS_LE, "[LE]"},
1108 {(int)KS_CL, "[CL]"},
1109 {(int)KS_VI, "[VI]"},
1110 {(int)KS_VE, "[VE]"},
1111 {(int)KS_VS, "[VS]"},
1112 {(int)KS_ME, "[ME]"},
1113 {(int)KS_MR, "[MR]"},
1114 {(int)KS_MB, "[MB]"},
1115 {(int)KS_MD, "[MD]"},
1116 {(int)KS_SE, "[SE]"},
1117 {(int)KS_SO, "[SO]"},
1118 {(int)KS_UE, "[UE]"},
1119 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001120 {(int)KS_UCE, "[UCE]"},
1121 {(int)KS_UCS, "[UCS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 {(int)KS_MS, "[MS]"},
1123 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001124 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125# ifdef TERMINFO
1126 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1127# else
1128 {(int)KS_CM, "[%dCM%d]"},
1129# endif
1130 {(int)KS_SR, "[SR]"},
1131# ifdef TERMINFO
1132 {(int)KS_CRI, "[CRI%p1%d]"},
1133# else
1134 {(int)KS_CRI, "[CRI%d]"},
1135# endif
1136 {(int)KS_VB, "[VB]"},
1137 {(int)KS_KS, "[KS]"},
1138 {(int)KS_KE, "[KE]"},
1139 {(int)KS_TI, "[TI]"},
1140 {(int)KS_TE, "[TE]"},
1141 {(int)KS_CIS, "[CIS]"},
1142 {(int)KS_CIE, "[CIE]"},
1143 {(int)KS_TS, "[TS]"},
1144 {(int)KS_FS, "[FS]"},
1145# ifdef TERMINFO
1146 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1147 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1148# else
1149 {(int)KS_CWS, "[%dCWS%d]"},
1150 {(int)KS_CWP, "[%dCWP%d]"},
1151# endif
1152 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001153 {(int)KS_U7, "[U7]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001154 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 {K_UP, "[KU]"},
1156 {K_DOWN, "[KD]"},
1157 {K_LEFT, "[KL]"},
1158 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001159 {K_XUP, "[xKU]"},
1160 {K_XDOWN, "[xKD]"},
1161 {K_XLEFT, "[xKL]"},
1162 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 {K_S_UP, "[S-KU]"},
1164 {K_S_DOWN, "[S-KD]"},
1165 {K_S_LEFT, "[S-KL]"},
1166 {K_C_LEFT, "[C-KL]"},
1167 {K_S_RIGHT, "[S-KR]"},
1168 {K_C_RIGHT, "[C-KR]"},
1169 {K_F1, "[F1]"},
1170 {K_XF1, "[xF1]"},
1171 {K_F2, "[F2]"},
1172 {K_XF2, "[xF2]"},
1173 {K_F3, "[F3]"},
1174 {K_XF3, "[xF3]"},
1175 {K_F4, "[F4]"},
1176 {K_XF4, "[xF4]"},
1177 {K_F5, "[F5]"},
1178 {K_F6, "[F6]"},
1179 {K_F7, "[F7]"},
1180 {K_F8, "[F8]"},
1181 {K_F9, "[F9]"},
1182 {K_F10, "[F10]"},
1183 {K_F11, "[F11]"},
1184 {K_F12, "[F12]"},
1185 {K_S_F1, "[S-F1]"},
1186 {K_S_XF1, "[S-xF1]"},
1187 {K_S_F2, "[S-F2]"},
1188 {K_S_XF2, "[S-xF2]"},
1189 {K_S_F3, "[S-F3]"},
1190 {K_S_XF3, "[S-xF3]"},
1191 {K_S_F4, "[S-F4]"},
1192 {K_S_XF4, "[S-xF4]"},
1193 {K_S_F5, "[S-F5]"},
1194 {K_S_F6, "[S-F6]"},
1195 {K_S_F7, "[S-F7]"},
1196 {K_S_F8, "[S-F8]"},
1197 {K_S_F9, "[S-F9]"},
1198 {K_S_F10, "[S-F10]"},
1199 {K_S_F11, "[S-F11]"},
1200 {K_S_F12, "[S-F12]"},
1201 {K_HELP, "[HELP]"},
1202 {K_UNDO, "[UNDO]"},
1203 {K_BS, "[BS]"},
1204 {K_INS, "[INS]"},
1205 {K_KINS, "[KINS]"},
1206 {K_DEL, "[DEL]"},
1207 {K_KDEL, "[KDEL]"},
1208 {K_HOME, "[HOME]"},
1209 {K_S_HOME, "[C-HOME]"},
1210 {K_C_HOME, "[C-HOME]"},
1211 {K_KHOME, "[KHOME]"},
1212 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001213 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 {K_END, "[END]"},
1215 {K_S_END, "[C-END]"},
1216 {K_C_END, "[C-END]"},
1217 {K_KEND, "[KEND]"},
1218 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001219 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 {K_PAGEUP, "[PAGEUP]"},
1221 {K_PAGEDOWN, "[PAGEDOWN]"},
1222 {K_KPAGEUP, "[KPAGEUP]"},
1223 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1224 {K_MOUSE, "[MOUSE]"},
1225 {K_KPLUS, "[KPLUS]"},
1226 {K_KMINUS, "[KMINUS]"},
1227 {K_KDIVIDE, "[KDIVIDE]"},
1228 {K_KMULTIPLY, "[KMULTIPLY]"},
1229 {K_KENTER, "[KENTER]"},
1230 {K_KPOINT, "[KPOINT]"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001231 {K_PS, "[PASTE-START]"},
1232 {K_PE, "[PASTE-END]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 {K_K0, "[K0]"},
1234 {K_K1, "[K1]"},
1235 {K_K2, "[K2]"},
1236 {K_K3, "[K3]"},
1237 {K_K4, "[K4]"},
1238 {K_K5, "[K5]"},
1239 {K_K6, "[K6]"},
1240 {K_K7, "[K7]"},
1241 {K_K8, "[K8]"},
1242 {K_K9, "[K9]"},
1243# endif
1244
1245#endif /* NO_BUILTIN_TCAPS */
1246
1247/*
1248 * The most minimal terminal: only clear screen and cursor positioning
1249 * Always included.
1250 */
1251 {(int)KS_NAME, "dumb"},
1252 {(int)KS_CL, "\014"},
1253#ifdef TERMINFO
1254 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1255 ESC_STR "[%i%p1%d;%p2%dH")},
1256#else
1257 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1258#endif
1259
1260/*
1261 * end marker
1262 */
1263 {(int)KS_NAME, NULL}
1264
1265}; /* end of builtin_termcaps */
1266
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001267#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001268 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001269termgui_mch_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001270{
Bram Moolenaarab302212016-04-26 20:59:29 +02001271 return gui_get_color_cmn(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001272}
1273
1274 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001275termgui_get_color(char_u *name)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001276{
1277 guicolor_T t;
1278
1279 if (*name == NUL)
1280 return INVALCOLOR;
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001281 t = termgui_mch_get_color(name);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001282
1283 if (t == INVALCOLOR)
1284 EMSG2(_("E254: Cannot allocate color %s"), name);
1285 return t;
1286}
1287
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001288 guicolor_T
Bram Moolenaar61be73b2016-04-29 22:59:22 +02001289termgui_mch_get_rgb(guicolor_T color)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001290{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02001291 return color;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001292}
1293#endif
1294
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295/*
1296 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1297 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298#ifdef AMIGA
1299# define DEFAULT_TERM (char_u *)"amiga"
1300#endif
1301
1302#ifdef MSWIN
1303# define DEFAULT_TERM (char_u *)"win32"
1304#endif
1305
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306#if defined(UNIX) && !defined(__MINT__)
1307# define DEFAULT_TERM (char_u *)"ansi"
1308#endif
1309
1310#ifdef __MINT__
1311# define DEFAULT_TERM (char_u *)"vt52"
1312#endif
1313
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314#ifdef VMS
1315# define DEFAULT_TERM (char_u *)"vt320"
1316#endif
1317
1318#ifdef __BEOS__
1319# undef DEFAULT_TERM
1320# define DEFAULT_TERM (char_u *)"beos-ansi"
1321#endif
1322
1323#ifndef DEFAULT_TERM
1324# define DEFAULT_TERM (char_u *)"dumb"
1325#endif
1326
1327/*
1328 * Term_strings contains currently used terminal output strings.
1329 * It is initialized with the default values by parse_builtin_tcap().
1330 * The values can be changed by setting the option with the same name.
1331 */
1332char_u *(term_strings[(int)KS_LAST + 1]);
1333
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001334static int need_gather = FALSE; /* need to fill termleader[] */
1335static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001337static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338#endif
1339
1340 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001341find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342{
1343 struct builtin_term *p;
1344
1345 p = builtin_termcaps;
1346 while (p->bt_string != NULL)
1347 {
1348 if (p->bt_entry == (int)KS_NAME)
1349 {
1350#ifdef UNIX
1351 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1352 return p;
1353 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1354 return p;
1355 else
1356#endif
1357#ifdef VMS
1358 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1359 return p;
1360 else
1361#endif
1362 if (STRCMP(term, p->bt_string) == 0)
1363 return p;
1364 }
1365 ++p;
1366 }
1367 return p;
1368}
1369
1370/*
1371 * Parsing of the builtin termcap entries.
1372 * Caller should check if 'name' is a valid builtin term.
1373 * The terminal's name is not set, as this is already done in termcapinit().
1374 */
1375 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001376parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377{
1378 struct builtin_term *p;
1379 char_u name[2];
1380 int term_8bit;
1381
1382 p = find_builtin_term(term);
1383 term_8bit = term_is_8bit(term);
1384
1385 /* Do not parse if builtin term not found */
1386 if (p->bt_string == NULL)
1387 return;
1388
1389 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1390 {
1391 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1392 {
1393 /* Only set the value if it wasn't set yet. */
1394 if (term_strings[p->bt_entry] == NULL
1395 || term_strings[p->bt_entry] == empty_option)
1396 {
1397 /* 8bit terminal: use CSI instead of <Esc>[ */
1398 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1399 {
1400 char_u *s, *t;
1401
1402 s = vim_strsave((char_u *)p->bt_string);
1403 if (s != NULL)
1404 {
1405 for (t = s; *t; ++t)
1406 if (term_7to8bit(t))
1407 {
1408 *t = term_7to8bit(t);
1409 STRCPY(t + 1, t + 2);
1410 }
1411 term_strings[p->bt_entry] = s;
1412 set_term_option_alloced(&term_strings[p->bt_entry]);
1413 }
1414 }
1415 else
1416 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1417 }
1418 }
1419 else
1420 {
1421 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1422 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1423 if (find_termcode(name) == NULL)
1424 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1425 }
1426 }
1427}
1428#if defined(HAVE_TGETENT) || defined(FEAT_TERMRESPONSE)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001429static void set_color_count(int nr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
1431/*
1432 * Set number of colors.
1433 * Store it as a number in t_colors.
1434 * Store it as a string in T_CCO (using nr_colors[]).
1435 */
1436 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001437set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438{
1439 char_u nr_colors[20]; /* string for number of colors */
1440
1441 t_colors = nr;
1442 if (t_colors > 1)
1443 sprintf((char *)nr_colors, "%d", t_colors);
1444 else
1445 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001446 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447}
1448#endif
1449
1450#ifdef HAVE_TGETENT
1451static char *(key_names[]) =
1452{
1453#ifdef FEAT_TERMRESPONSE
1454 /* Do this one first, it may cause a screen redraw. */
1455 "Co",
1456#endif
1457 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 "#2", "#4", "%i", "*7",
1459 "k1", "k2", "k3", "k4", "k5", "k6",
1460 "k7", "k8", "k9", "k;", "F1", "F2",
1461 "%1", "&8", "kb", "kI", "kD", "kh",
1462 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1463 NULL
1464};
1465#endif
1466
1467/*
1468 * Set terminal options for terminal "term".
1469 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1470 *
1471 * While doing this, until ttest(), some options may be NULL, be careful.
1472 */
1473 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001474set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475{
1476 struct builtin_term *termp;
1477#ifdef HAVE_TGETENT
1478 int builtin_first = p_tbi;
1479 int try;
1480 int termcap_cleared = FALSE;
1481#endif
1482 int width = 0, height = 0;
1483 char_u *error_msg = NULL;
1484 char_u *bs_p, *del_p;
1485
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001486 /* In silect mode (ex -s) we don't use the 'term' option. */
1487 if (silent_mode)
1488 return OK;
1489
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 detected_8bit = FALSE; /* reset 8-bit detection */
1491
1492 if (term_is_builtin(term))
1493 {
1494 term += 8;
1495#ifdef HAVE_TGETENT
1496 builtin_first = 1;
1497#endif
1498 }
1499
1500/*
1501 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1502 * If builtin_first is TRUE:
1503 * 0. try builtin termcap
1504 * 1. try external termcap
1505 * 2. if both fail default to a builtin terminal
1506 * If builtin_first is FALSE:
1507 * 1. try external termcap
1508 * 2. try builtin termcap, if both fail default to a builtin terminal
1509 */
1510#ifdef HAVE_TGETENT
1511 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1512 {
1513 /*
1514 * Use external termcap
1515 */
1516 if (try == 1)
1517 {
1518 char_u *p;
1519 static char_u tstrbuf[TBUFSZ];
1520 int i;
1521 char_u tbuf[TBUFSZ];
1522 char_u *tp;
1523 static struct {
1524 enum SpecialKey dest; /* index in term_strings[] */
1525 char *name; /* termcap name for string */
1526 } string_names[] =
1527 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1528 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1529 {KS_CL, "cl"}, {KS_CD, "cd"},
1530 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1531 {KS_VS, "vs"}, {KS_ME, "me"}, {KS_MR, "mr"},
1532 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1533 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001534 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1535 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1537 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1538 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1539 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1540 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1541 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1542 {KS_TS, "ts"}, {KS_FS, "fs"},
1543 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001544 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaare5401222015-06-25 19:16:56 +02001545 {KS_U7, "u7"}, {KS_RBG, "RB"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001546 {KS_8F, "8f"}, {KS_8B, "8b"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01001547 {KS_CBE, "BE"}, {KS_CBD, "BD"},
1548 {KS_CPS, "PS"}, {KS_CPE, "PE"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 {(enum SpecialKey)0, NULL}
1550 };
1551
1552 /*
1553 * If the external termcap does not have a matching entry, try the
1554 * builtin ones.
1555 */
1556 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1557 {
1558 tp = tstrbuf;
1559 if (!termcap_cleared)
1560 {
1561 clear_termoptions(); /* clear old options */
1562 termcap_cleared = TRUE;
1563 }
1564
1565 /* get output strings */
1566 for (i = 0; string_names[i].name != NULL; ++i)
1567 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001568 if (TERM_STR(string_names[i].dest) == NULL
1569 || TERM_STR(string_names[i].dest) == empty_option)
1570 TERM_STR(string_names[i].dest) =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 TGETSTR(string_names[i].name, &tp);
1572 }
1573
1574 /* tgetflag() returns 1 if the flag is present, 0 if not and
1575 * possibly -1 if the flag doesn't exist. */
1576 if ((T_MS == NULL || T_MS == empty_option)
1577 && tgetflag("ms") > 0)
1578 T_MS = (char_u *)"y";
1579 if ((T_XS == NULL || T_XS == empty_option)
1580 && tgetflag("xs") > 0)
1581 T_XS = (char_u *)"y";
Bram Moolenaar494838a2015-02-10 19:20:37 +01001582 if ((T_XN == NULL || T_XN == empty_option)
1583 && tgetflag("xn") > 0)
1584 T_XN = (char_u *)"y";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 if ((T_DB == NULL || T_DB == empty_option)
1586 && tgetflag("db") > 0)
1587 T_DB = (char_u *)"y";
1588 if ((T_DA == NULL || T_DA == empty_option)
1589 && tgetflag("da") > 0)
1590 T_DA = (char_u *)"y";
1591 if ((T_UT == NULL || T_UT == empty_option)
1592 && tgetflag("ut") > 0)
1593 T_UT = (char_u *)"y";
1594
1595
1596 /*
1597 * get key codes
1598 */
1599 for (i = 0; key_names[i] != NULL; ++i)
1600 {
1601 if (find_termcode((char_u *)key_names[i]) == NULL)
1602 {
1603 p = TGETSTR(key_names[i], &tp);
1604 /* if cursor-left == backspace, ignore it (televideo
1605 * 925) */
1606 if (p != NULL
1607 && (*p != Ctrl_H
1608 || key_names[i][0] != 'k'
1609 || key_names[i][1] != 'l'))
1610 add_termcode((char_u *)key_names[i], p, FALSE);
1611 }
1612 }
1613
1614 if (height == 0)
1615 height = tgetnum("li");
1616 if (width == 0)
1617 width = tgetnum("co");
1618
1619 /*
1620 * Get number of colors (if not done already).
1621 */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001622 if (TERM_STR(KS_CCO) == NULL
1623 || TERM_STR(KS_CCO) == empty_option)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 set_color_count(tgetnum("Co"));
1625
1626# ifndef hpux
1627 BC = (char *)TGETSTR("bc", &tp);
1628 UP = (char *)TGETSTR("up", &tp);
1629 p = TGETSTR("pc", &tp);
1630 if (p)
1631 PC = *p;
1632# endif /* hpux */
1633 }
1634 }
1635 else /* try == 0 || try == 2 */
1636#endif /* HAVE_TGETENT */
1637 /*
1638 * Use builtin termcap
1639 */
1640 {
1641#ifdef HAVE_TGETENT
1642 /*
1643 * If builtin termcap was already used, there is no need to search
1644 * for the builtin termcap again, quit now.
1645 */
1646 if (try == 2 && builtin_first && termcap_cleared)
1647 break;
1648#endif
1649 /*
1650 * search for 'term' in builtin_termcaps[]
1651 */
1652 termp = find_builtin_term(term);
1653 if (termp->bt_string == NULL) /* did not find it */
1654 {
1655#ifdef HAVE_TGETENT
1656 /*
1657 * If try == 0, first try the external termcap. If that is not
1658 * found we'll get back here with try == 2.
1659 * If termcap_cleared is set we used the external termcap,
1660 * don't complain about not finding the term in the builtin
1661 * termcap.
1662 */
1663 if (try == 0) /* try external one */
1664 continue;
1665 if (termcap_cleared) /* found in external termcap */
1666 break;
1667#endif
1668
1669 mch_errmsg("\r\n");
1670 if (error_msg != NULL)
1671 {
1672 mch_errmsg((char *)error_msg);
1673 mch_errmsg("\r\n");
1674 }
1675 mch_errmsg("'");
1676 mch_errmsg((char *)term);
1677 mch_errmsg(_("' not known. Available builtin terminals are:"));
1678 mch_errmsg("\r\n");
1679 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1680 ++termp)
1681 {
1682 if (termp->bt_entry == (int)KS_NAME)
1683 {
1684#ifdef HAVE_TGETENT
1685 mch_errmsg(" builtin_");
1686#else
1687 mch_errmsg(" ");
1688#endif
1689 mch_errmsg(termp->bt_string);
1690 mch_errmsg("\r\n");
1691 }
1692 }
1693 /* when user typed :set term=xxx, quit here */
1694 if (starting != NO_SCREEN)
1695 {
1696 screen_start(); /* don't know where cursor is now */
1697 wait_return(TRUE);
1698 return FAIL;
1699 }
1700 term = DEFAULT_TERM;
1701 mch_errmsg(_("defaulting to '"));
1702 mch_errmsg((char *)term);
1703 mch_errmsg("'\r\n");
1704 if (emsg_silent == 0)
1705 {
1706 screen_start(); /* don't know where cursor is now */
1707 out_flush();
Bram Moolenaar08f88b12017-04-02 17:21:16 +02001708 if (!is_not_a_term())
1709 ui_delay(2000L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001711 set_string_option_direct((char_u *)"term", -1, term,
1712 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 display_errors();
1714 }
1715 out_flush();
1716#ifdef HAVE_TGETENT
1717 if (!termcap_cleared)
1718 {
1719#endif
1720 clear_termoptions(); /* clear old options */
1721#ifdef HAVE_TGETENT
1722 termcap_cleared = TRUE;
1723 }
1724#endif
1725 parse_builtin_tcap(term);
1726#ifdef FEAT_GUI
1727 if (term_is_gui(term))
1728 {
1729 out_flush();
1730 gui_init();
1731 /* If starting the GUI failed, don't do any of the other
1732 * things for this terminal */
1733 if (!gui.in_use)
1734 return FAIL;
1735#ifdef HAVE_TGETENT
1736 break; /* don't try using external termcap */
1737#endif
1738 }
1739#endif /* FEAT_GUI */
1740 }
1741#ifdef HAVE_TGETENT
1742 }
1743#endif
1744
1745/*
1746 * special: There is no info in the termcap about whether the cursor
1747 * positioning is relative to the start of the screen or to the start of the
1748 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1749 * relative.
1750 */
1751 if (STRCMP(term, "pcterm") == 0)
1752 T_CCS = (char_u *)"yes";
1753 else
1754 T_CCS = empty_option;
1755
1756#ifdef UNIX
1757/*
1758 * Any "stty" settings override the default for t_kb from the termcap.
1759 * This is in os_unix.c, because it depends a lot on the version of unix that
1760 * is being used.
1761 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1762 */
1763#ifdef FEAT_GUI
1764 if (!gui.in_use)
1765#endif
1766 get_stty();
1767#endif
1768
1769/*
1770 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1771 * didn't work, use the default CTRL-H
1772 * The default for t_kD is DEL, unless t_kb is DEL.
1773 * The vim_strsave'd strings are probably lost forever, well it's only two
1774 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1775 * directly.
1776 */
1777#ifdef FEAT_GUI
1778 if (!gui.in_use)
1779#endif
1780 {
1781 bs_p = find_termcode((char_u *)"kb");
1782 del_p = find_termcode((char_u *)"kD");
1783 if (bs_p == NULL || *bs_p == NUL)
1784 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1785 if ((del_p == NULL || *del_p == NUL) &&
1786 (bs_p == NULL || *bs_p != DEL))
1787 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1788 }
1789
1790#if defined(UNIX) || defined(VMS)
1791 term_is_xterm = vim_is_xterm(term);
1792#endif
1793
1794#ifdef FEAT_MOUSE
1795# if defined(UNIX) || defined(VMS)
1796# ifdef FEAT_MOUSE_TTY
1797 /*
1798 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1799 * The termcode for the mouse is added as a side effect in option.c.
1800 */
1801 {
1802 char_u *p;
1803
1804 p = (char_u *)"";
1805# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001806 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 {
1808 if (use_xterm_mouse())
1809 p = NULL; /* keep existing value, might be "xterm2" */
1810 else
1811 p = (char_u *)"xterm";
1812 }
1813# endif
1814 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001815 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001817 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1818 * "xterm2" in check_termcode(). */
1819 reset_option_was_set((char_u *)"ttym");
1820 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 if (p == NULL
1822# ifdef FEAT_GUI
1823 || gui.in_use
1824# endif
1825 )
1826 check_mouse_termcode(); /* set mouse termcode anyway */
1827 }
1828# endif
1829# else
1830 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1831# endif
1832#endif /* FEAT_MOUSE */
1833
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834#ifdef USE_TERM_CONSOLE
1835 /* DEFAULT_TERM indicates that it is the machine console. */
1836 if (STRCMP(term, DEFAULT_TERM) != 0)
1837 term_console = FALSE;
1838 else
1839 {
1840 term_console = TRUE;
1841# ifdef AMIGA
1842 win_resize_on(); /* enable window resizing reports */
1843# endif
1844 }
1845#endif
1846
1847#if defined(UNIX) || defined(VMS)
1848 /*
1849 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1850 */
1851 if (vim_is_fastterm(term))
1852 p_tf = TRUE;
1853#endif
1854#ifdef USE_TERM_CONSOLE
1855 /*
1856 * 'ttyfast' is default on consoles
1857 */
1858 if (term_console)
1859 p_tf = TRUE;
1860#endif
1861
1862 ttest(TRUE); /* make sure we have a valid set of terminal codes */
1863
1864 full_screen = TRUE; /* we can use termcap codes from now on */
1865 set_term_defaults(); /* use current values as defaults */
1866#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +02001867 LOG_TR("setting crv_status to CRV_GET");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 crv_status = CRV_GET; /* Get terminal version later */
1869#endif
1870
1871 /*
1872 * Initialize the terminal with the appropriate termcap codes.
1873 * Set the mouse and window title if possible.
1874 * Don't do this when starting, need to parse the .vimrc first, because it
1875 * may redefine t_TI etc.
1876 */
1877 if (starting != NO_SCREEN)
1878 {
1879 starttermcap(); /* may change terminal mode */
1880#ifdef FEAT_MOUSE
1881 setmouse(); /* may start using the mouse */
1882#endif
1883#ifdef FEAT_TITLE
1884 maketitle(); /* may display window title */
1885#endif
1886 }
1887
1888 /* display initial screen after ttest() checking. jw. */
1889 if (width <= 0 || height <= 0)
1890 {
1891 /* termcap failed to report size */
1892 /* set defaults, in case ui_get_shellsize() also fails */
1893 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001894#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 height = 25; /* console is often 25 lines */
1896#else
1897 height = 24; /* most terminals are 24 lines */
1898#endif
1899 }
1900 set_shellsize(width, height, FALSE); /* may change Rows */
1901 if (starting != NO_SCREEN)
1902 {
1903 if (scroll_region)
1904 scroll_region_reset(); /* In case Rows changed */
1905 check_map_keycodes(); /* check mappings for terminal codes used */
1906
1907#ifdef FEAT_AUTOCMD
1908 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001909 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910
1911 /*
1912 * Execute the TermChanged autocommands for each buffer that is
1913 * loaded.
1914 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001915 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02001916 FOR_ALL_BUFFERS(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 {
1918 if (curbuf->b_ml.ml_mfp != NULL)
1919 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
1920 curbuf);
1921 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001922 if (bufref_valid(&old_curbuf))
1923 curbuf = old_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 }
1925#endif
1926 }
1927
1928#ifdef FEAT_TERMRESPONSE
1929 may_req_termresponse();
1930#endif
1931
1932 return OK;
1933}
1934
1935#if defined(FEAT_MOUSE) || defined(PROTO)
1936
1937# ifdef FEAT_MOUSE_TTY
1938# define HMT_NORMAL 1
1939# define HMT_NETTERM 2
1940# define HMT_DEC 4
1941# define HMT_JSBTERM 8
1942# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01001943# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02001944# define HMT_SGR 64
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945static int has_mouse_termcode = 0;
1946# endif
1947
Bram Moolenaar864207d2008-06-24 22:14:38 +00001948# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001950set_mouse_termcode(
1951 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
1952 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953{
1954 char_u name[2];
1955
1956 name[0] = n;
1957 name[1] = KE_FILLER;
1958 add_termcode(name, s, FALSE);
1959# ifdef FEAT_MOUSE_TTY
1960# ifdef FEAT_MOUSE_JSB
1961 if (n == KS_JSBTERM_MOUSE)
1962 has_mouse_termcode |= HMT_JSBTERM;
1963 else
1964# endif
1965# ifdef FEAT_MOUSE_NET
1966 if (n == KS_NETTERM_MOUSE)
1967 has_mouse_termcode |= HMT_NETTERM;
1968 else
1969# endif
1970# ifdef FEAT_MOUSE_DEC
1971 if (n == KS_DEC_MOUSE)
1972 has_mouse_termcode |= HMT_DEC;
1973 else
1974# endif
1975# ifdef FEAT_MOUSE_PTERM
1976 if (n == KS_PTERM_MOUSE)
1977 has_mouse_termcode |= HMT_PTERM;
1978 else
1979# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01001980# ifdef FEAT_MOUSE_URXVT
1981 if (n == KS_URXVT_MOUSE)
1982 has_mouse_termcode |= HMT_URXVT;
1983 else
1984# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02001985# ifdef FEAT_MOUSE_SGR
1986 if (n == KS_SGR_MOUSE)
1987 has_mouse_termcode |= HMT_SGR;
1988 else
1989# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 has_mouse_termcode |= HMT_NORMAL;
1991# endif
1992}
1993# endif
1994
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001995# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00001996 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001998del_mouse_termcode(
1999 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000{
2001 char_u name[2];
2002
2003 name[0] = n;
2004 name[1] = KE_FILLER;
2005 del_termcode(name);
2006# ifdef FEAT_MOUSE_TTY
2007# ifdef FEAT_MOUSE_JSB
2008 if (n == KS_JSBTERM_MOUSE)
2009 has_mouse_termcode &= ~HMT_JSBTERM;
2010 else
2011# endif
2012# ifdef FEAT_MOUSE_NET
2013 if (n == KS_NETTERM_MOUSE)
2014 has_mouse_termcode &= ~HMT_NETTERM;
2015 else
2016# endif
2017# ifdef FEAT_MOUSE_DEC
2018 if (n == KS_DEC_MOUSE)
2019 has_mouse_termcode &= ~HMT_DEC;
2020 else
2021# endif
2022# ifdef FEAT_MOUSE_PTERM
2023 if (n == KS_PTERM_MOUSE)
2024 has_mouse_termcode &= ~HMT_PTERM;
2025 else
2026# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002027# ifdef FEAT_MOUSE_URXVT
2028 if (n == KS_URXVT_MOUSE)
2029 has_mouse_termcode &= ~HMT_URXVT;
2030 else
2031# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002032# ifdef FEAT_MOUSE_SGR
2033 if (n == KS_SGR_MOUSE)
2034 has_mouse_termcode &= ~HMT_SGR;
2035 else
2036# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 has_mouse_termcode &= ~HMT_NORMAL;
2038# endif
2039}
2040# endif
2041#endif
2042
2043#ifdef HAVE_TGETENT
2044/*
2045 * Call tgetent()
2046 * Return error message if it fails, NULL if it's OK.
2047 */
2048 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002049tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050{
2051 int i;
2052
2053 i = TGETENT(tbuf, term);
2054 if (i < 0 /* -1 is always an error */
2055# ifdef TGETENT_ZERO_ERR
2056 || i == 0 /* sometimes zero is also an error */
2057# endif
2058 )
2059 {
2060 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2061 * tgetent() with the always existing "dumb" entry to avoid a crash or
2062 * hang. */
2063 (void)TGETENT(tbuf, "dumb");
2064
2065 if (i < 0)
2066# ifdef TGETENT_ZERO_ERR
2067 return (char_u *)_("E557: Cannot open termcap file");
2068 if (i == 0)
2069# endif
2070#ifdef TERMINFO
2071 return (char_u *)_("E558: Terminal entry not found in terminfo");
2072#else
2073 return (char_u *)_("E559: Terminal entry not found in termcap");
2074#endif
2075 }
2076 return NULL;
2077}
2078
2079/*
2080 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2081 * Fix that here.
2082 */
2083 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002084vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085{
2086 char *p;
2087
2088 p = tgetstr(s, (char **)pp);
2089 if (p == (char *)-1)
2090 p = NULL;
2091 return (char_u *)p;
2092}
2093#endif /* HAVE_TGETENT */
2094
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002095#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096/*
2097 * Get Columns and Rows from the termcap. Used after a window signal if the
2098 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2099 * and "li" entries never change. But on some systems this works.
2100 * Errors while getting the entries are ignored.
2101 */
2102 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002103getlinecol(
2104 long *cp, /* pointer to columns */
2105 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 char_u tbuf[TBUFSZ];
2108
2109 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2110 {
2111 if (*cp == 0)
2112 *cp = tgetnum("co");
2113 if (*rp == 0)
2114 *rp = tgetnum("li");
2115 }
2116}
2117#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2118
2119/*
2120 * Get a string entry from the termcap and add it to the list of termcodes.
2121 * Used for <t_xx> special keys.
2122 * Give an error message for failure when not sourcing.
2123 * If force given, replace an existing entry.
2124 * Return FAIL if the entry was not found, OK if the entry was added.
2125 */
2126 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002127add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128{
2129 char_u *term;
2130 int key;
2131 struct builtin_term *termp;
2132#ifdef HAVE_TGETENT
2133 char_u *string;
2134 int i;
2135 int builtin_first;
2136 char_u tbuf[TBUFSZ];
2137 char_u tstrbuf[TBUFSZ];
2138 char_u *tp = tstrbuf;
2139 char_u *error_msg = NULL;
2140#endif
2141
2142/*
2143 * If the GUI is running or will start in a moment, we only support the keys
2144 * that the GUI can produce.
2145 */
2146#ifdef FEAT_GUI
2147 if (gui.in_use || gui.starting)
2148 return gui_mch_haskey(name);
2149#endif
2150
2151 if (!force && find_termcode(name) != NULL) /* it's already there */
2152 return OK;
2153
2154 term = T_NAME;
2155 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2156 return FAIL;
2157
2158 if (term_is_builtin(term)) /* name starts with "builtin_" */
2159 {
2160 term += 8;
2161#ifdef HAVE_TGETENT
2162 builtin_first = TRUE;
2163#endif
2164 }
2165#ifdef HAVE_TGETENT
2166 else
2167 builtin_first = p_tbi;
2168#endif
2169
2170#ifdef HAVE_TGETENT
2171/*
2172 * We can get the entry from the builtin termcap and from the external one.
2173 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2174 * builtin termcap first.
2175 * If 'ttybuiltin' is off, try external termcap first.
2176 */
2177 for (i = 0; i < 2; ++i)
2178 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002179 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180#endif
2181 /*
2182 * Search in builtin termcap
2183 */
2184 {
2185 termp = find_builtin_term(term);
2186 if (termp->bt_string != NULL) /* found it */
2187 {
2188 key = TERMCAP2KEY(name[0], name[1]);
2189 while (termp->bt_entry != (int)KS_NAME)
2190 {
2191 if ((int)termp->bt_entry == key)
2192 {
2193 add_termcode(name, (char_u *)termp->bt_string,
2194 term_is_8bit(term));
2195 return OK;
2196 }
2197 ++termp;
2198 }
2199 }
2200 }
2201#ifdef HAVE_TGETENT
2202 else
2203 /*
2204 * Search in external termcap
2205 */
2206 {
2207 error_msg = tgetent_error(tbuf, term);
2208 if (error_msg == NULL)
2209 {
2210 string = TGETSTR((char *)name, &tp);
2211 if (string != NULL && *string != NUL)
2212 {
2213 add_termcode(name, string, FALSE);
2214 return OK;
2215 }
2216 }
2217 }
2218 }
2219#endif
2220
2221 if (sourcing_name == NULL)
2222 {
2223#ifdef HAVE_TGETENT
2224 if (error_msg != NULL)
2225 EMSG(error_msg);
2226 else
2227#endif
2228 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2229 }
2230 return FAIL;
2231}
2232
2233 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002234term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235{
2236 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2237}
2238
2239/*
2240 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2241 * Assume that the terminal is using 8-bit controls when the name contains
2242 * "8bit", like in "xterm-8bit".
2243 */
2244 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002245term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246{
2247 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2248}
2249
2250/*
2251 * Translate terminal control chars from 7-bit to 8-bit:
2252 * <Esc>[ -> CSI
2253 * <Esc>] -> <M-C-]>
2254 * <Esc>O -> <M-C-O>
2255 */
2256 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002257term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258{
2259 if (*p == ESC)
2260 {
2261 if (p[1] == '[')
2262 return CSI;
2263 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002264 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 if (p[1] == 'O')
2266 return 0x8f;
2267 }
2268 return 0;
2269}
2270
2271#ifdef FEAT_GUI
2272 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002273term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2276}
2277#endif
2278
2279#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2280
2281 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002282tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283{
2284 static char_u buf[16];
2285 char_u *p;
2286
2287 p = buf + 15;
2288 *p = '\0';
2289 do
2290 {
2291 --p;
2292 *p = (char_u) (i % 10 + '0');
2293 i /= 10;
2294 }
2295 while (i > 0 && p > buf);
2296 return p;
2297}
2298#endif
2299
2300#ifndef HAVE_TGETENT
2301
2302/*
2303 * minimal tgoto() implementation.
2304 * no padding and we only parse for %i %d and %+char
2305 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002306static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002308 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002309tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310{
2311 static char buf[30];
2312 char *p, *s, *e;
2313
2314 if (!cm)
2315 return "OOPS";
2316 e = buf + 29;
2317 for (s = buf; s < e && *cm; cm++)
2318 {
2319 if (*cm != '%')
2320 {
2321 *s++ = *cm;
2322 continue;
2323 }
2324 switch (*++cm)
2325 {
2326 case 'd':
2327 p = (char *)tltoa((unsigned long)y);
2328 y = x;
2329 while (*p)
2330 *s++ = *p++;
2331 break;
2332 case 'i':
2333 x++;
2334 y++;
2335 break;
2336 case '+':
2337 *s++ = (char)(*++cm + y);
2338 y = x;
2339 break;
2340 case '%':
2341 *s++ = *cm;
2342 break;
2343 default:
2344 return "OOPS";
2345 }
2346 }
2347 *s = '\0';
2348 return buf;
2349}
2350
2351#endif /* HAVE_TGETENT */
2352
2353/*
2354 * Set the terminal name and initialize the terminal options.
2355 * If "name" is NULL or empty, get the terminal name from the environment.
2356 * If that fails, use the default terminal name.
2357 */
2358 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002359termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 char_u *term;
2362
2363 if (name != NULL && *name == NUL)
2364 name = NULL; /* empty name is equal to no name */
2365 term = name;
2366
2367#ifdef __BEOS__
2368 /*
2369 * TERM environment variable is normally set to 'ansi' on the Bebox;
2370 * Since the BeBox doesn't quite support full ANSI yet, we use our
2371 * own custom 'ansi-beos' termcap instead, unless the -T option has
2372 * been given on the command line.
2373 */
2374 if (term == NULL
2375 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2376 term = DEFAULT_TERM;
2377#endif
2378#ifndef MSWIN
2379 if (term == NULL)
2380 term = mch_getenv((char_u *)"TERM");
2381#endif
2382 if (term == NULL || *term == NUL)
2383 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002384 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385
2386 /* Set the default terminal name. */
2387 set_string_default("term", term);
2388 set_string_default("ttytype", term);
2389
2390 /*
2391 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2392 */
2393 set_termname(T_NAME != NULL ? T_NAME : term);
2394}
2395
2396/*
2397 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2398 */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002399#define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2401static char_u out_buf[OUT_SIZE + 1];
2402static int out_pos = 0; /* number of chars in out_buf */
2403
2404/*
2405 * out_flush(): flush the output buffer
2406 */
2407 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002408out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409{
2410 int len;
2411
2412 if (out_pos != 0)
2413 {
2414 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2415 len = out_pos;
2416 out_pos = 0;
2417 ui_write(out_buf, len);
2418 }
2419}
2420
2421#if defined(FEAT_MBYTE) || defined(PROTO)
2422/*
2423 * Sometimes a byte out of a multi-byte character is written with out_char().
2424 * To avoid flushing half of the character, call this function first.
2425 */
2426 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002427out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428{
2429 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2430 out_flush();
2431}
2432#endif
2433
2434#ifdef FEAT_GUI
2435/*
2436 * out_trash(): Throw away the contents of the output buffer
2437 */
2438 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002439out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440{
2441 out_pos = 0;
2442}
2443#endif
2444
2445/*
2446 * out_char(c): put a byte into the output buffer.
2447 * Flush it if it becomes full.
2448 * This should not be used for outputting text on the screen (use functions
2449 * like msg_puts() and screen_putchar() for that).
2450 */
2451 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002452out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453{
2454#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2455 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2456 out_char('\r');
2457#endif
2458
2459 out_buf[out_pos++] = c;
2460
2461 /* For testing we flush each time. */
2462 if (out_pos >= OUT_SIZE || p_wd)
2463 out_flush();
2464}
2465
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002466static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467
2468/*
2469 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2470 */
2471 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002472out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473{
2474#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2475 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2476 out_char_nf('\r');
2477#endif
2478
2479 out_buf[out_pos++] = c;
2480
2481 if (out_pos >= OUT_SIZE)
2482 out_flush();
2483}
2484
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002485#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2486 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487/*
2488 * A never-padding out_str.
2489 * use this whenever you don't want to run the string through tputs.
2490 * tputs above is harmless, but tputs from the termcap library
2491 * is likely to strip off leading digits, that it mistakes for padding
2492 * information, and "%i", "%d", etc.
2493 * This should only be used for writing terminal codes, not for outputting
2494 * normal text (use functions like msg_puts() and screen_putchar() for that).
2495 */
2496 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002497out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498{
2499 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2500 out_flush();
2501 while (*s)
2502 out_char_nf(*s++);
2503
2504 /* For testing we write one string at a time. */
2505 if (p_wd)
2506 out_flush();
2507}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509
2510/*
2511 * out_str(s): Put a character string a byte at a time into the output buffer.
2512 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2513 * This should only be used for writing terminal codes, not for outputting
2514 * normal text (use functions like msg_puts() and screen_putchar() for that).
2515 */
2516 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002517out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518{
2519 if (s != NULL && *s)
2520 {
2521#ifdef FEAT_GUI
2522 /* Don't use tputs() when GUI is used, ncurses crashes. */
2523 if (gui.in_use)
2524 {
2525 out_str_nf(s);
2526 return;
2527 }
2528#endif
2529 /* avoid terminal strings being split up */
2530 if (out_pos > OUT_SIZE - 20)
2531 out_flush();
2532#ifdef HAVE_TGETENT
2533 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2534#else
2535 while (*s)
2536 out_char_nf(*s++);
2537#endif
2538
2539 /* For testing we write one string at a time. */
2540 if (p_wd)
2541 out_flush();
2542 }
2543}
2544
2545/*
2546 * cursor positioning using termcap parser. (jw)
2547 */
2548 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002549term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
2551 OUT_STR(tgoto((char *)T_CM, col, row));
2552}
2553
2554 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002555term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556{
2557 OUT_STR(tgoto((char *)T_CRI, 0, i));
2558}
2559
2560 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002561term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562{
2563 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2564}
2565
2566 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002567term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568{
2569 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2570}
2571
2572#if defined(HAVE_TGETENT) || defined(PROTO)
2573 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002574term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575{
2576 /* Can't handle a negative value here */
2577 if (x < 0)
2578 x = 0;
2579 if (y < 0)
2580 y = 0;
2581 OUT_STR(tgoto((char *)T_CWP, y, x));
2582}
2583
2584 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002585term_set_winsize(int width, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
2587 OUT_STR(tgoto((char *)T_CWS, height, width));
2588}
2589#endif
2590
2591 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002592term_fg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593{
2594 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2595 if (*T_CAF)
2596 term_color(T_CAF, n);
2597 else if (*T_CSF)
2598 term_color(T_CSF, n);
2599}
2600
2601 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002602term_bg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603{
2604 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2605 if (*T_CAB)
2606 term_color(T_CAB, n);
2607 else if (*T_CSB)
2608 term_color(T_CSB, n);
2609}
2610
2611 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002612term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613{
2614 char buf[20];
2615 int i = 2; /* index in s[] just after <Esc>[ or CSI */
2616
2617 /* Special handling of 16 colors, because termcap can't handle it */
2618 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2619 /* Also accept CSI instead of <Esc>[ */
2620 if (n >= 8 && t_colors >= 16
2621 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2622 && s[i] != NUL
2623 && (STRCMP(s + i + 1, "%p1%dm") == 0
2624 || STRCMP(s + i + 1, "%dm") == 0)
2625 && (s[i] == '3' || s[i] == '4'))
2626 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627#ifdef TERMINFO
Bram Moolenaar827b1652016-05-05 18:14:03 +02002628 char *format = "%s%s%%p1%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629#else
Bram Moolenaar827b1652016-05-05 18:14:03 +02002630 char *format = "%s%s%%dm";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631#endif
Bram Moolenaar827b1652016-05-05 18:14:03 +02002632 sprintf(buf, format,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2634 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2635 : (n >= 16 ? "48;5;" : "10"));
2636 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2637 }
2638 else
2639 OUT_STR(tgoto((char *)s, 0, n));
2640}
2641
Bram Moolenaar61be73b2016-04-29 22:59:22 +02002642#if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002643
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002644#define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF)
2645#define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF)
2646#define BLUE(rgb) (((long_u)(rgb) ) & 0xFF)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002647
2648 static void
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002649term_rgb_color(char_u *s, guicolor_T rgb)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002650{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002651#define MAX_COLOR_STR_LEN 100
2652 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002653
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002654 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002655 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002656 OUT_STR(buf);
2657}
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02002658
2659 void
2660term_fg_rgb_color(guicolor_T rgb)
2661{
2662 term_rgb_color(T_8F, rgb);
2663}
2664
2665 void
2666term_bg_rgb_color(guicolor_T rgb)
2667{
2668 term_rgb_color(T_8B, rgb);
2669}
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002670#endif
2671
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002672#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2673 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674/*
2675 * Generic function to set window title, using t_ts and t_fs.
2676 */
2677 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002678term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679{
2680 /* t_ts takes one argument: column in status line */
2681 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2682 out_str_nf(title);
2683 out_str(T_FS); /* set title end */
2684 out_flush();
2685}
2686#endif
2687
2688/*
2689 * Make sure we have a valid set or terminal options.
2690 * Replace all entries that are NULL by empty_option
2691 */
2692 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002693ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694{
2695 check_options(); /* make sure no options are NULL */
2696
2697 /*
2698 * MUST have "cm": cursor motion.
2699 */
2700 if (*T_CM == NUL)
2701 EMSG(_("E437: terminal capability \"cm\" required"));
2702
2703 /*
2704 * if "cs" defined, use a scroll region, it's faster.
2705 */
2706 if (*T_CS != NUL)
2707 scroll_region = TRUE;
2708 else
2709 scroll_region = FALSE;
2710
2711 if (pairs)
2712 {
2713 /*
2714 * optional pairs
2715 */
2716 /* TP goes to normal mode for TI (invert) and TB (bold) */
2717 if (*T_ME == NUL)
2718 T_ME = T_MR = T_MD = T_MB = empty_option;
2719 if (*T_SO == NUL || *T_SE == NUL)
2720 T_SO = T_SE = empty_option;
2721 if (*T_US == NUL || *T_UE == NUL)
2722 T_US = T_UE = empty_option;
2723 if (*T_CZH == NUL || *T_CZR == NUL)
2724 T_CZH = T_CZR = empty_option;
2725
2726 /* T_VE is needed even though T_VI is not defined */
2727 if (*T_VE == NUL)
2728 T_VI = empty_option;
2729
2730 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2731 if (*T_ME == NUL)
2732 {
2733 T_ME = T_SE;
2734 T_MR = T_SO;
2735 T_MD = T_SO;
2736 }
2737
2738 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2739 if (*T_SO == NUL)
2740 {
2741 T_SE = T_ME;
2742 if (*T_MR == NUL)
2743 T_SO = T_MD;
2744 else
2745 T_SO = T_MR;
2746 }
2747
2748 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2749 if (*T_CZH == NUL)
2750 {
2751 T_CZR = T_ME;
2752 if (*T_MR == NUL)
2753 T_CZH = T_MD;
2754 else
2755 T_CZH = T_MR;
2756 }
2757
2758 /* "Sb" and "Sf" come in pairs */
2759 if (*T_CSB == NUL || *T_CSF == NUL)
2760 {
2761 T_CSB = empty_option;
2762 T_CSF = empty_option;
2763 }
2764
2765 /* "AB" and "AF" come in pairs */
2766 if (*T_CAB == NUL || *T_CAF == NUL)
2767 {
2768 T_CAB = empty_option;
2769 T_CAF = empty_option;
2770 }
2771
2772 /* if 'Sb' and 'AB' are not defined, reset "Co" */
2773 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00002774 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775
2776 /* Set 'weirdinvert' according to value of 't_xs' */
2777 p_wiv = (*T_XS != NUL);
2778 }
2779 need_gather = TRUE;
2780
2781 /* Set t_colors to the value of t_Co. */
2782 t_colors = atoi((char *)T_CCO);
2783}
2784
2785#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
2786 || defined(PROTO)
2787/*
2788 * Represent the given long_u as individual bytes, with the most significant
2789 * byte first, and store them in dst.
2790 */
2791 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002792add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793{
2794 int i;
2795 int shift;
2796
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002797 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 {
2799 shift = 8 * (sizeof(long_u) - i);
2800 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
2801 }
2802}
2803
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002804static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805
2806/*
2807 * Interpret the next string of bytes in buf as a long integer, with the most
2808 * significant byte first. Note that it is assumed that buf has been through
2809 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
2810 * Puts result in val, and returns the number of bytes read from buf
2811 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
2812 * were present.
2813 */
2814 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002815get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816{
2817 int len;
2818 char_u bytes[sizeof(long_u)];
2819 int i;
2820 int shift;
2821
2822 *val = 0;
2823 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
2824 if (len != -1)
2825 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002826 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 {
2828 shift = 8 * (sizeof(long_u) - 1 - i);
2829 *val += (long_u)bytes[i] << shift;
2830 }
2831 }
2832 return len;
2833}
2834#endif
2835
2836#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002837 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
2838 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839/*
2840 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
2841 * that buf has been through inchar(). Returns the actual number of bytes used
2842 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
2843 * available.
2844 */
2845 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002846get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847{
2848 int len = 0;
2849 int i;
2850 char_u c;
2851
2852 for (i = 0; i < num_bytes; i++)
2853 {
2854 if ((c = buf[len++]) == NUL)
2855 return -1;
2856 if (c == K_SPECIAL)
2857 {
2858 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
2859 return -1;
2860 if (buf[len++] == (int)KS_ZERO)
2861 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02002862 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
2863 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
2864 if (buf[len++] == (int)KE_CSI)
2865 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00002867 else if (c == CSI && buf[len] == KS_EXTRA
2868 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002869 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
2870 * the start of a special key, see add_to_input_buf_csi(). */
2871 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 bytes[i] = c;
2873 }
2874 return len;
2875}
2876#endif
2877
2878/*
Bram Moolenaare057d402013-06-30 17:51:51 +02002879 * Check if the new shell size is valid, correct it if it's too small or way
2880 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 */
2882 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002883check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 if (Rows < min_rows()) /* need room for one window and command line */
2886 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02002887 limit_screen_size();
2888}
2889
2890/*
2891 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
2892 */
2893 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002894limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02002895{
2896 if (Columns < MIN_COLUMNS)
2897 Columns = MIN_COLUMNS;
2898 else if (Columns > 10000)
2899 Columns = 10000;
2900 if (Rows > 1000)
2901 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902}
2903
Bram Moolenaar86b68352004-12-27 21:59:20 +00002904/*
2905 * Invoked just before the screen structures are going to be (re)allocated.
2906 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002908win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909{
2910 static int old_Rows = 0;
2911 static int old_Columns = 0;
2912
2913 if (old_Rows != Rows || old_Columns != Columns)
2914 ui_new_shellsize();
2915 if (old_Rows != Rows)
2916 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002917 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002918 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002919 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 old_Rows = Rows;
2921 shell_new_rows(); /* update window sizes */
2922 }
2923 if (old_Columns != Columns)
2924 {
2925 old_Columns = Columns;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002926#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 shell_new_columns(); /* update window sizes */
2928#endif
2929 }
2930}
2931
2932/*
2933 * Call this function when the Vim shell has been resized in any way.
2934 * Will obtain the current size and redraw (also when size didn't change).
2935 */
2936 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002937shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938{
2939 set_shellsize(0, 0, FALSE);
2940}
2941
2942/*
2943 * Check if the shell size changed. Handle a resize.
2944 * When the size didn't change, nothing happens.
2945 */
2946 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002947shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 int old_Rows = Rows;
2950 int old_Columns = Columns;
2951
Bram Moolenaar3633dc02012-08-29 16:26:04 +02002952 if (!exiting
2953#ifdef FEAT_GUI
2954 /* Do not get the size when executing a shell command during
2955 * startup. */
2956 && !gui.starting
2957#endif
2958 )
Bram Moolenaar99808352010-12-30 14:47:36 +01002959 {
2960 (void)ui_get_shellsize();
2961 check_shellsize();
2962 if (old_Rows != Rows || old_Columns != Columns)
2963 shell_resized();
2964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965}
2966
2967/*
2968 * Set size of the Vim shell.
2969 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
2970 * window size (this is used for the :win command).
2971 * If 'mustset' is FALSE, we may try to get the real window size and if
2972 * it fails use 'width' and 'height'.
2973 */
2974 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002975set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976{
2977 static int busy = FALSE;
2978
2979 /*
2980 * Avoid recursiveness, can happen when setting the window size causes
2981 * another window-changed signal.
2982 */
2983 if (busy)
2984 return;
2985
2986 if (width < 0 || height < 0) /* just checking... */
2987 return;
2988
Bram Moolenaara971b822011-09-14 14:43:25 +02002989 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 {
Bram Moolenaara971b822011-09-14 14:43:25 +02002991 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 State = SETWSIZE;
2993 return;
2994 }
2995
Bram Moolenaara971b822011-09-14 14:43:25 +02002996 /* curwin->w_buffer can be NULL when we are closing a window and the
2997 * buffer has already been closed and removing a scrollbar causes a resize
2998 * event. Don't resize then, it will happen after entering another buffer.
2999 */
3000 if (curwin->w_buffer == NULL)
3001 return;
3002
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 ++busy;
3004
3005#ifdef AMIGA
3006 out_flush(); /* must do this before mch_get_shellsize() for
3007 some obscure reason */
3008#endif
3009
3010 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3011 {
3012 Rows = height;
3013 Columns = width;
3014 check_shellsize();
3015 ui_set_shellsize(mustset);
3016 }
3017 else
3018 check_shellsize();
3019
3020 /* The window layout used to be adjusted here, but it now happens in
3021 * screenalloc() (also invoked from screenclear()). That is because the
3022 * "busy" check above may skip this, but not screenalloc(). */
3023
3024 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3025 screenclear();
3026 else
3027 screen_start(); /* don't know where cursor is now */
3028
3029 if (starting != NO_SCREEN)
3030 {
3031#ifdef FEAT_TITLE
3032 maketitle();
3033#endif
3034 changed_line_abv_curs();
3035 invalidate_botline();
3036
3037 /*
3038 * We only redraw when it's needed:
3039 * - While at the more prompt or executing an external command, don't
3040 * redraw, but position the cursor.
3041 * - While editing the command line, only redraw that.
3042 * - in Ex mode, don't redraw anything.
3043 * - Otherwise, redraw right now, and position the cursor.
3044 * Always need to call update_screen() or screenalloc(), to make
3045 * sure Rows/Columns and the size of ScreenLines[] is correct!
3046 */
3047 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3048 || exmode_active)
3049 {
3050 screenalloc(FALSE);
3051 repeat_message();
3052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 else
3054 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003055#ifdef FEAT_SCROLLBIND
3056 if (curwin->w_p_scb)
3057 do_check_scrollbind(TRUE);
3058#endif
3059 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003060 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003061 update_screen(NOT_VALID);
3062 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003063 }
3064 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003065 {
3066 update_topline();
3067#if defined(FEAT_INS_EXPAND)
3068 if (pum_visible())
3069 {
3070 redraw_later(NOT_VALID);
3071 ins_compl_show_pum(); /* This includes the redraw. */
3072 }
3073 else
Bram Moolenaar280f1262006-01-30 00:14:18 +00003074#endif
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003075 update_screen(NOT_VALID);
3076 if (redrawing())
3077 setcursor();
3078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 }
3080 cursor_on(); /* redrawing may have switched it off */
3081 }
3082 out_flush();
3083 --busy;
3084}
3085
3086/*
3087 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3088 * commands and Ex mode).
3089 */
3090 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003091settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093#ifdef FEAT_GUI
3094 /* don't set the term where gvim was started to any mode */
3095 if (gui.in_use)
3096 return;
3097#endif
3098
3099 if (full_screen)
3100 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 /*
3102 * When returning after calling a shell we want to really set the
3103 * terminal to raw mode, even though we think it already is, because
3104 * the shell program may have reset the terminal mode.
3105 * When we think the terminal is normal, don't try to set it to
3106 * normal again, because that causes problems (logout!) on some
3107 * machines.
3108 */
3109 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3110 {
3111#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003112# ifdef FEAT_GUI
3113 if (!gui.in_use && !gui.starting)
3114# endif
3115 {
3116 /* May need to check for T_CRV response and termcodes, it
3117 * doesn't work in Cooked mode, an external program may get
3118 * them. */
Bram Moolenaar9584b312013-03-13 19:29:28 +01003119 if (tmode != TMODE_RAW && (crv_status == CRV_SENT
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003120 || u7_status == U7_SENT
3121 || rbg_status == RBG_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003122 (void)vpeekc_nomap();
3123 check_for_codes_from_term();
3124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125#endif
3126#ifdef FEAT_MOUSE_TTY
3127 if (tmode != TMODE_RAW)
3128 mch_setmouse(FALSE); /* switch mouse off */
3129#endif
3130 out_flush();
3131 mch_settmode(tmode); /* machine specific function */
3132 cur_tmode = tmode;
3133#ifdef FEAT_MOUSE
3134 if (tmode == TMODE_RAW)
3135 setmouse(); /* may switch mouse on */
3136#endif
3137 out_flush();
3138 }
3139#ifdef FEAT_TERMRESPONSE
3140 may_req_termresponse();
3141#endif
3142 }
3143}
3144
3145 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003146starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147{
3148 if (full_screen && !termcap_active)
3149 {
3150 out_str(T_TI); /* start termcap mode */
3151 out_str(T_KS); /* start "keypad transmit" mode */
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003152 out_str(T_BE); /* enable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 out_flush();
3154 termcap_active = TRUE;
3155 screen_start(); /* don't know where cursor is now */
3156#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003157# ifdef FEAT_GUI
3158 if (!gui.in_use && !gui.starting)
3159# endif
3160 {
3161 may_req_termresponse();
3162 /* Immediately check for a response. If t_Co changes, we don't
3163 * want to redraw with wrong colors first. */
Bram Moolenaar90013c62014-05-22 18:14:31 +02003164 if (crv_status == CRV_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003165 check_for_codes_from_term();
3166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167#endif
3168 }
3169}
3170
3171 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003172stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
3174 screen_stop_highlight();
3175 reset_cterm_colors();
3176 if (termcap_active)
3177 {
3178#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003179# ifdef FEAT_GUI
3180 if (!gui.in_use && !gui.starting)
3181# endif
3182 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003183 /* May need to discard T_CRV, T_U7 or T_RBG response. */
3184 if (crv_status == CRV_SENT || u7_status == U7_SENT
3185 || rbg_status == RBG_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003186 {
3187# ifdef UNIX
3188 /* Give the terminal a chance to respond. */
3189 mch_delay(100L, FALSE);
3190# endif
3191# ifdef TCIFLUSH
3192 /* Discard data received but not read. */
3193 if (exiting)
3194 tcflush(fileno(stdin), TCIFLUSH);
3195# endif
3196 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003197 /* Check for termcodes first, otherwise an external program may
3198 * get them. */
3199 check_for_codes_from_term();
3200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201#endif
Bram Moolenaarabbc4482017-01-24 15:57:55 +01003202 out_str(T_BD); /* disable bracketed paste mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 out_str(T_KE); /* stop "keypad transmit" mode */
3204 out_flush();
3205 termcap_active = FALSE;
3206 cursor_on(); /* just in case it is still off */
3207 out_str(T_TE); /* stop termcap mode */
3208 screen_start(); /* don't know where cursor is now */
3209 out_flush();
3210 }
3211}
3212
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003213#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214/*
3215 * Request version string (for xterm) when needed.
3216 * Only do this after switching to raw mode, otherwise the result will be
3217 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003218 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003219 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 * Only do this after termcap mode has been started, otherwise the codes for
3221 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003222 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3223 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003224 * On Unix only do it when both output and input are a tty (avoid writing
3225 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 * The result is caught in check_termcode().
3227 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003228 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003229may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230{
3231 if (crv_status == CRV_GET
3232 && cur_tmode == TMODE_RAW
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003233 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 && termcap_active
Bram Moolenaarebefac62005-12-28 22:39:57 +00003235 && p_ek
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003236# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 && isatty(1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003238 && isatty(read_cmd_fd)
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003239# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 && *T_CRV != NUL)
3241 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02003242 LOG_TR("Sending CRV");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 out_str(T_CRV);
3244 crv_status = CRV_SENT;
3245 /* check for the characters now, otherwise they might be eaten by
3246 * get_keystroke() */
3247 out_flush();
3248 (void)vpeekc_nomap();
3249 }
3250}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003251
3252# if defined(FEAT_MBYTE) || defined(PROTO)
3253/*
3254 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003255 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003256 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003257 * If the terminal treats \u25bd as single width, the position is (1, 1),
3258 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003259 * This function has the side effect that changes cursor position, so
3260 * it must be called immediately after entering termcap mode.
3261 */
3262 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003263may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003264{
3265 if (u7_status == U7_GET
3266 && cur_tmode == TMODE_RAW
3267 && termcap_active
3268 && p_ek
3269# ifdef UNIX
3270 && isatty(1)
3271 && isatty(read_cmd_fd)
3272# endif
3273 && *T_U7 != NUL
3274 && !option_was_set((char_u *)"ambiwidth"))
3275 {
3276 char_u buf[16];
3277
Bram Moolenaar2951b772013-07-03 12:45:31 +02003278 LOG_TR("Sending U7 request");
3279 /* Do this in the second row. In the first row the returned sequence
3280 * may be CSI 1;2R, which is the same as <S-F3>. */
3281 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003282 buf[mb_char2bytes(0x25bd, buf)] = 0;
3283 out_str(buf);
3284 out_str(T_U7);
3285 u7_status = U7_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003286 out_flush();
3287 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003288 out_str((char_u *)" ");
3289 term_windgoto(0, 0);
3290 /* check for the characters now, otherwise they might be eaten by
3291 * get_keystroke() */
3292 out_flush();
3293 (void)vpeekc_nomap();
3294 }
3295}
3296# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003297
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003298#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
3299/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003300 * Similar to requesting the version string: Request the terminal background
3301 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003302 */
3303 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003304may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003305{
3306 if (rbg_status == RBG_GET
3307 && cur_tmode == TMODE_RAW
3308 && termcap_active
3309 && p_ek
3310# ifdef UNIX
3311 && isatty(1)
3312 && isatty(read_cmd_fd)
3313# endif
3314 && *T_RBG != NUL
3315 && !option_was_set((char_u *)"bg"))
3316 {
3317 LOG_TR("Sending BG request");
3318 out_str(T_RBG);
3319 rbg_status = RBG_SENT;
3320 /* check for the characters now, otherwise they might be eaten by
3321 * get_keystroke() */
3322 out_flush();
3323 (void)vpeekc_nomap();
3324 }
3325}
3326# endif
3327
Bram Moolenaar2951b772013-07-03 12:45:31 +02003328# ifdef DEBUG_TERMRESPONSE
3329 static void
3330log_tr(char *msg)
3331{
3332 static FILE *fd_tr = NULL;
3333 static proftime_T start;
3334 proftime_T now;
3335
3336 if (fd_tr == NULL)
3337 {
3338 fd_tr = fopen("termresponse.log", "w");
3339 profile_start(&start);
3340 }
3341 now = start;
3342 profile_end(&now);
3343 fprintf(fd_tr, "%s: %s %s\n",
3344 profile_msg(&now),
3345 must_redraw == NOT_VALID ? "NV"
3346 : must_redraw == CLEAR ? "CL" : " ",
3347 msg);
3348}
3349# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350#endif
3351
3352/*
3353 * Return TRUE when saving and restoring the screen.
3354 */
3355 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003356swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357{
3358 return (full_screen && *T_TI != NUL);
3359}
3360
3361#ifdef FEAT_MOUSE
3362/*
3363 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3364 */
3365 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003366setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367{
3368# ifdef FEAT_MOUSE_TTY
3369 int checkfor;
3370# endif
3371
3372# ifdef FEAT_MOUSESHAPE
3373 update_mouseshape(-1);
3374# endif
3375
3376# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3377# ifdef FEAT_GUI
3378 /* In the GUI the mouse is always enabled. */
3379 if (gui.in_use)
3380 return;
3381# endif
3382 /* be quick when mouse is off */
3383 if (*p_mouse == NUL || has_mouse_termcode == 0)
3384 return;
3385
3386 /* don't switch mouse on when not in raw mode (Ex mode) */
3387 if (cur_tmode != TMODE_RAW)
3388 {
3389 mch_setmouse(FALSE);
3390 return;
3391 }
3392
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 if (VIsual_active)
3394 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003395 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 checkfor = MOUSE_RETURN;
3397 else if (State & INSERT)
3398 checkfor = MOUSE_INSERT;
3399 else if (State & CMDLINE)
3400 checkfor = MOUSE_COMMAND;
3401 else if (State == CONFIRM || State == EXTERNCMD)
3402 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3403 else
3404 checkfor = MOUSE_NORMAL; /* assume normal mode */
3405
3406 if (mouse_has(checkfor))
3407 mch_setmouse(TRUE);
3408 else
3409 mch_setmouse(FALSE);
3410# endif
3411}
3412
3413/*
3414 * Return TRUE if
3415 * - "c" is in 'mouse', or
3416 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3417 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3418 * normal editing mode (not at hit-return message).
3419 */
3420 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003421mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422{
3423 char_u *p;
3424
3425 for (p = p_mouse; *p; ++p)
3426 switch (*p)
3427 {
3428 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3429 return TRUE;
3430 break;
3431 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3432 return TRUE;
3433 break;
3434 default: if (c == *p) return TRUE; break;
3435 }
3436 return FALSE;
3437}
3438
3439/*
3440 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3441 */
3442 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003443mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444{
3445 return (p_mousem[0] == 'p');
3446}
3447#endif
3448
3449/*
3450 * By outputting the 'cursor very visible' termcap code, for some windowed
3451 * terminals this makes the screen scrolled to the correct position.
3452 * Used when starting Vim or returning from a shell.
3453 */
3454 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003455scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456{
3457 if (*T_VS != NUL)
3458 {
3459 out_str(T_VS);
3460 out_str(T_VE);
3461 screen_start(); /* don't know where cursor is now */
3462 }
3463}
3464
3465static int cursor_is_off = FALSE;
3466
3467/*
3468 * Enable the cursor.
3469 */
3470 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003471cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472{
3473 if (cursor_is_off)
3474 {
3475 out_str(T_VE);
3476 cursor_is_off = FALSE;
3477 }
3478}
3479
3480/*
3481 * Disable the cursor.
3482 */
3483 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003484cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485{
3486 if (full_screen)
3487 {
3488 if (!cursor_is_off)
3489 out_str(T_VI); /* disable cursor */
3490 cursor_is_off = TRUE;
3491 }
3492}
3493
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003494#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003496 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003497 */
3498 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003499term_cursor_shape(void)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003500{
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003501 static int showing_mode = NORMAL;
3502 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003503
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003504 /* Only do something when redrawing the screen and we can restore the
3505 * mode. */
3506 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003507 return;
3508
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003509 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003510 {
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003511 if (showing_mode != REPLACE)
3512 {
3513 if (*T_CSR != NUL)
3514 p = T_CSR; /* Replace mode cursor */
3515 else
3516 p = T_CSI; /* fall back to Insert mode cursor */
3517 if (*p != NUL)
3518 {
3519 out_str(p);
3520 showing_mode = REPLACE;
3521 }
3522 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003523 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003524 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003525 {
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003526 if (showing_mode != INSERT && *T_CSI != NUL)
3527 {
3528 out_str(T_CSI); /* Insert mode cursor */
3529 showing_mode = INSERT;
3530 }
3531 }
3532 else if (showing_mode != NORMAL)
3533 {
3534 out_str(T_CEI); /* non-Insert mode cursor */
3535 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003536 }
3537}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003538#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003539
3540/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 * Set scrolling region for window 'wp'.
3542 * The region starts 'off' lines from the start of the window.
3543 * Also set the vertical scroll region for a vertically split window. Always
3544 * the full width of the window, excluding the vertical separator.
3545 */
3546 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003547scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548{
3549 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3550 W_WINROW(wp) + off));
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003551#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if (*T_CSV != NUL && wp->w_width != Columns)
3553 OUT_STR(tgoto((char *)T_CSV, W_WINCOL(wp) + wp->w_width - 1,
3554 W_WINCOL(wp)));
3555#endif
3556 screen_start(); /* don't know where cursor is now */
3557}
3558
3559/*
3560 * Reset scrolling region to the whole screen.
3561 */
3562 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003563scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564{
3565 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003566#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 if (*T_CSV != NUL)
3568 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
3569#endif
3570 screen_start(); /* don't know where cursor is now */
3571}
3572
3573
3574/*
3575 * List of terminal codes that are currently recognized.
3576 */
3577
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003578static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579{
3580 char_u name[2]; /* termcap name of entry */
3581 char_u *code; /* terminal code (in allocated memory) */
3582 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003583 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584} *termcodes = NULL;
3585
3586static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3587static int tc_len = 0; /* current number of entries in termcodes[] */
3588
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003589static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003590
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003592clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593{
3594 while (tc_len > 0)
3595 vim_free(termcodes[--tc_len].code);
3596 vim_free(termcodes);
3597 termcodes = NULL;
3598 tc_max_len = 0;
3599
3600#ifdef HAVE_TGETENT
3601 BC = (char *)empty_option;
3602 UP = (char *)empty_option;
3603 PC = NUL; /* set pad character to NUL */
3604 ospeed = 0;
3605#endif
3606
3607 need_gather = TRUE; /* need to fill termleader[] */
3608}
3609
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003610#define ATC_FROM_TERM 55
3611
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612/*
3613 * Add a new entry to the list of terminal codes.
3614 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003615 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3616 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 */
3618 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003619add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620{
3621 struct termcode *new_tc;
3622 int i, j;
3623 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003624 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625
3626 if (string == NULL || *string == NUL)
3627 {
3628 del_termcode(name);
3629 return;
3630 }
3631
Bram Moolenaar45500912014-07-09 20:51:07 +02003632#if defined(WIN3264) && !defined(FEAT_GUI)
3633 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3634#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 if (s == NULL)
3638 return;
3639
3640 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003641 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003643 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 s[0] = term_7to8bit(string);
3645 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003646
3647#if defined(WIN3264) && !defined(FEAT_GUI)
3648 if (s[0] == K_NUL)
3649 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003650 STRMOVE(s + 1, s);
3651 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02003652 }
3653#endif
3654
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003655 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656
3657 need_gather = TRUE; /* need to fill termleader[] */
3658
3659 /*
3660 * need to make space for more entries
3661 */
3662 if (tc_len == tc_max_len)
3663 {
3664 tc_max_len += 20;
3665 new_tc = (struct termcode *)alloc(
3666 (unsigned)(tc_max_len * sizeof(struct termcode)));
3667 if (new_tc == NULL)
3668 {
3669 tc_max_len -= 20;
3670 return;
3671 }
3672 for (i = 0; i < tc_len; ++i)
3673 new_tc[i] = termcodes[i];
3674 vim_free(termcodes);
3675 termcodes = new_tc;
3676 }
3677
3678 /*
3679 * Look for existing entry with the same name, it is replaced.
3680 * Look for an existing entry that is alphabetical higher, the new entry
3681 * is inserted in front of it.
3682 */
3683 for (i = 0; i < tc_len; ++i)
3684 {
3685 if (termcodes[i].name[0] < name[0])
3686 continue;
3687 if (termcodes[i].name[0] == name[0])
3688 {
3689 if (termcodes[i].name[1] < name[1])
3690 continue;
3691 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003692 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 */
3694 if (termcodes[i].name[1] == name[1])
3695 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003696 if (flags == ATC_FROM_TERM && (j = termcode_star(
3697 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003698 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003699 /* Don't replace ESC[123;*X or ESC O*X with another when
3700 * invoked from got_code_from_term(). */
3701 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003702 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003703 && s[len - 1]
3704 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003705 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003706 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003707 vim_free(s);
3708 return;
3709 }
3710 }
3711 else
3712 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003713 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003714 vim_free(termcodes[i].code);
3715 --tc_len;
3716 break;
3717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 }
3719 }
3720 /*
3721 * Found alphabetical larger entry, move rest to insert new entry
3722 */
3723 for (j = tc_len; j > i; --j)
3724 termcodes[j] = termcodes[j - 1];
3725 break;
3726 }
3727
3728 termcodes[i].name[0] = name[0];
3729 termcodes[i].name[1] = name[1];
3730 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003731 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003732
3733 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
3734 * accept modifiers. */
3735 termcodes[i].modlen = 0;
3736 j = termcode_star(s, len);
3737 if (j > 0)
3738 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 ++tc_len;
3740}
3741
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003742/*
3743 * Check termcode "code[len]" for ending in ;*X, <Esc>O*X or <M-O>*X.
3744 * The "X" can be any character.
3745 * Return 0 if not found, 2 for ;*X and 1 for O*X and <M-O>*X.
3746 */
3747 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003748termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003749{
3750 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
3751 if (len >= 3 && code[len - 2] == '*')
3752 {
3753 if (len >= 5 && code[len - 3] == ';')
3754 return 2;
3755 if ((len >= 4 && code[len - 3] == 'O') || code[len - 3] == 'O' + 128)
3756 return 1;
3757 }
3758 return 0;
3759}
3760
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003762find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763{
3764 int i;
3765
3766 for (i = 0; i < tc_len; ++i)
3767 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3768 return termcodes[i].code;
3769 return NULL;
3770}
3771
3772#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3773 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003774get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775{
3776 if (i >= tc_len)
3777 return NULL;
3778 return &termcodes[i].name[0];
3779}
3780#endif
3781
3782 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003783del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784{
3785 int i;
3786
3787 if (termcodes == NULL) /* nothing there yet */
3788 return;
3789
3790 need_gather = TRUE; /* need to fill termleader[] */
3791
3792 for (i = 0; i < tc_len; ++i)
3793 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3794 {
3795 del_termcode_idx(i);
3796 return;
3797 }
3798 /* not found. Give error message? */
3799}
3800
3801 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003802del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803{
3804 int i;
3805
3806 vim_free(termcodes[idx].code);
3807 --tc_len;
3808 for (i = idx; i < tc_len; ++i)
3809 termcodes[i] = termcodes[i + 1];
3810}
3811
3812#ifdef FEAT_TERMRESPONSE
3813/*
3814 * Called when detected that the terminal sends 8-bit codes.
3815 * Convert all 7-bit codes to their 8-bit equivalent.
3816 */
3817 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003818switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819{
3820 int i;
3821 int c;
3822
3823 /* Only need to do something when not already using 8-bit codes. */
3824 if (!term_is_8bit(T_NAME))
3825 {
3826 for (i = 0; i < tc_len; ++i)
3827 {
3828 c = term_7to8bit(termcodes[i].code);
3829 if (c != 0)
3830 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003831 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 termcodes[i].code[0] = c;
3833 }
3834 }
3835 need_gather = TRUE; /* need to fill termleader[] */
3836 }
3837 detected_8bit = TRUE;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003838 LOG_TR("Switching to 8 bit");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839}
3840#endif
3841
3842#ifdef CHECK_DOUBLE_CLICK
3843static linenr_T orig_topline = 0;
3844# ifdef FEAT_DIFF
3845static int orig_topfill = 0;
3846# endif
3847#endif
3848#if (defined(FEAT_WINDOWS) && defined(CHECK_DOUBLE_CLICK)) || defined(PROTO)
3849/*
3850 * Checking for double clicks ourselves.
3851 * "orig_topline" is used to avoid detecting a double-click when the window
3852 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3853 */
3854/*
3855 * Set orig_topline. Used when jumping to another window, so that a double
3856 * click still works.
3857 */
3858 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003859set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860{
3861 orig_topline = wp->w_topline;
3862# ifdef FEAT_DIFF
3863 orig_topfill = wp->w_topfill;
3864# endif
3865}
3866#endif
3867
3868/*
3869 * Check if typebuf.tb_buf[] contains a terminal key code.
3870 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
3871 * + max_offset].
3872 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003873 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 * With a match, the match is removed, the replacement code is inserted in
3875 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
3876 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003877 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
3878 * "buflen" is then the length of the string in buf[] and is updated for
3879 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 */
3881 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003882check_termcode(
3883 int max_offset,
3884 char_u *buf,
3885 int bufsize,
3886 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887{
3888 char_u *tp;
3889 char_u *p;
3890 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003891 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003893 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 int offset;
3895 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003896 int modifiers;
3897 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 int new_slen;
3899 int extra;
3900 char_u string[MAX_KEY_CODE_LEN + 1];
3901 int i, j;
3902 int idx = 0;
3903#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00003904# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
3905 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 char_u bytes[6];
3907 int num_bytes;
3908# endif
3909 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 int is_click, is_drag;
3911 int wheel_code = 0;
3912 int current_button;
3913 static int held_button = MOUSE_RELEASE;
3914 static int orig_num_clicks = 1;
3915 static int orig_mouse_code = 0x0;
3916# ifdef CHECK_DOUBLE_CLICK
3917 static int orig_mouse_col = 0;
3918 static int orig_mouse_row = 0;
3919 static struct timeval orig_mouse_time = {0, 0};
3920 /* time of previous mouse click */
3921 struct timeval mouse_time; /* time of current mouse click */
3922 long timediff; /* elapsed time in msec */
3923# endif
3924#endif
3925 int cpo_koffset;
3926#ifdef FEAT_MOUSE_GPM
3927 extern int gpm_flag; /* gpm library variable */
3928#endif
3929
3930 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
3931
3932 /*
3933 * Speed up the checks for terminal codes by gathering all first bytes
3934 * used in termleader[]. Often this is just a single <Esc>.
3935 */
3936 if (need_gather)
3937 gather_termleader();
3938
3939 /*
3940 * Check at several positions in typebuf.tb_buf[], to catch something like
3941 * "x<Up>" that can be mapped. Stop at max_offset, because characters
3942 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01003943 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 * This is used often, KEEP IT FAST!
3945 */
3946 for (offset = 0; offset < max_offset; ++offset)
3947 {
3948 if (buf == NULL)
3949 {
3950 if (offset >= typebuf.tb_len)
3951 break;
3952 tp = typebuf.tb_buf + typebuf.tb_off + offset;
3953 len = typebuf.tb_len - offset; /* length of the input */
3954 }
3955 else
3956 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003957 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 break;
3959 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003960 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 }
3962
3963 /*
3964 * Don't check characters after K_SPECIAL, those are already
3965 * translated terminal chars (avoid translating ~@^Hx).
3966 */
3967 if (*tp == K_SPECIAL)
3968 {
3969 offset += 2; /* there are always 2 extra characters */
3970 continue;
3971 }
3972
3973 /*
3974 * Skip this position if the character does not appear as the first
3975 * character in term_strings. This speeds up a lot, since most
3976 * termcodes start with the same character (ESC or CSI).
3977 */
3978 i = *tp;
3979 for (p = termleader; *p && *p != i; ++p)
3980 ;
3981 if (*p == NUL)
3982 continue;
3983
3984 /*
3985 * Skip this position if p_ek is not set and tp[0] is an ESC and we
3986 * are in Insert mode.
3987 */
3988 if (*tp == ESC && !p_ek && (State & INSERT))
3989 continue;
3990
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003992 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003993 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995#ifdef FEAT_GUI
3996 if (gui.in_use)
3997 {
3998 /*
3999 * GUI special key codes are all of the form [CSI xx].
4000 */
4001 if (*tp == CSI) /* Special key from GUI */
4002 {
4003 if (len < 3)
4004 return -1; /* Shouldn't happen */
4005 slen = 3;
4006 key_name[0] = tp[1];
4007 key_name[1] = tp[2];
4008 }
4009 }
4010 else
4011#endif /* FEAT_GUI */
4012 {
4013 for (idx = 0; idx < tc_len; ++idx)
4014 {
4015 /*
4016 * Ignore the entry if we are not at the start of
4017 * typebuf.tb_buf[]
4018 * and there are not enough characters to make a match.
4019 * But only when the 'K' flag is in 'cpoptions'.
4020 */
4021 slen = termcodes[idx].len;
4022 if (cpo_koffset && offset && len < slen)
4023 continue;
4024 if (STRNCMP(termcodes[idx].code, tp,
4025 (size_t)(slen > len ? len : slen)) == 0)
4026 {
4027 if (len < slen) /* got a partial sequence */
4028 return -1; /* need to get more chars */
4029
4030 /*
4031 * When found a keypad key, check if there is another key
4032 * that matches and use that one. This makes <Home> to be
4033 * found instead of <kHome> when they produce the same
4034 * key code.
4035 */
4036 if (termcodes[idx].name[0] == 'K'
4037 && VIM_ISDIGIT(termcodes[idx].name[1]))
4038 {
4039 for (j = idx + 1; j < tc_len; ++j)
4040 if (termcodes[j].len == slen &&
4041 STRNCMP(termcodes[idx].code,
4042 termcodes[j].code, slen) == 0)
4043 {
4044 idx = j;
4045 break;
4046 }
4047 }
4048
4049 key_name[0] = termcodes[idx].name[0];
4050 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 break;
4052 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004053
4054 /*
4055 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004056 * <Esc>[123;*X (modslen == slen - 3)
4057 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4058 * When there is a modifier the * matches a number.
4059 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004060 */
4061 if (termcodes[idx].modlen > 0)
4062 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004063 modslen = termcodes[idx].modlen;
4064 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004065 continue;
4066 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004067 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004068 {
4069 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004070
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004071 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004072 return -1; /* need to get more chars */
4073
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004074 if (tp[modslen] == termcodes[idx].code[slen - 1])
4075 slen = modslen + 1; /* no modifiers */
4076 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004077 continue; /* no match */
4078 else
4079 {
4080 /* Skip over the digits, the final char must
4081 * follow. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004082 for (j = slen - 2; j < len && isdigit(tp[j]); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004083 ;
4084 ++j;
4085 if (len < j) /* got a partial sequence */
4086 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004087 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4088 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004089
4090 /* Match! Convert modifier bits. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004091 n = atoi((char *)tp + slen - 2) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004092 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004093 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004094 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004095 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004096 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004097 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004098 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004099 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004100
4101 slen = j;
4102 }
4103 key_name[0] = termcodes[idx].name[0];
4104 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004105 break;
4106 }
4107 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 }
4109 }
4110
4111#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004112 if (key_name[0] == NUL
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004113 /* Mouse codes of DEC, pterm, and URXVT start with <ESC>[. When
4114 * detecting the start of these mouse codes they might as well be
4115 * another key code or terminal response. */
4116# ifdef FEAT_MOUSE_DEC
4117 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004118# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004119# ifdef FEAT_MOUSE_PTERM
4120 || key_name[0] == KS_PTERM_MOUSE
4121# endif
4122# ifdef FEAT_MOUSE_URXVT
4123 || key_name[0] == KS_URXVT_MOUSE
4124# endif
4125 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004127 /* Check for some responses from the terminal starting with
4128 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004129 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004130 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaar9584b312013-03-13 19:29:28 +01004131 * Also eat other possible responses to t_RV, rxvt returns
4132 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4133 * mrxvt has been reported to have "+" in the version. Assume
4134 * the escape sequence ends with a letter or one of "{|}~".
4135 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004136 * - Cursor position report: <Esc>[{row};{col}R
4137 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004138 * ambiguous-width character state.
4139 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004140 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004141
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004142 if ((*T_CRV != NUL || *T_U7 != NUL)
4143 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004144 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004145 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 {
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004147#ifdef FEAT_MBYTE
4148 int col;
Bram Moolenaarc41053062014-03-25 13:46:26 +01004149 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 j = 0;
4152 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004153 for (i = 2 + (tp[0] != CSI); i < len
4154 && !(tp[i] >= '{' && tp[i] <= '~')
4155 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 if (tp[i] == ';' && ++j == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004157 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004158 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004159#ifdef FEAT_MBYTE
4160 row_char = tp[i - 1];
4161#endif
4162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004164 {
4165 LOG_TR("Not enough characters for CRV");
4166 return -1;
4167 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004168#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004169 if (extra > 0)
4170 col = atoi((char *)tp + extra);
4171 else
4172 col = 0;
4173
4174 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4175 * u7_status is not "sent", it may be from a previous Vim that
4176 * just exited. But not for <S-F3>, it sends something
4177 * similar, check for row and column to make sense. */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004178 if (j == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004179 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004180 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004181 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004182 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004183
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004184 LOG_TR("Received U7 status");
4185 u7_status = U7_GOT;
4186# ifdef FEAT_AUTOCMD
4187 did_cursorhold = TRUE;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004188# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004189 if (col == 2)
4190 aw = "single";
4191 else if (col == 3)
4192 aw = "double";
4193 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4194 {
4195 /* Setting the option causes a screen redraw. Do
4196 * that right away if possible, keeping any
4197 * messages. */
4198 set_option_value((char_u *)"ambw", 0L,
4199 (char_u *)aw, 0);
4200# ifdef DEBUG_TERMRESPONSE
4201 {
4202 char buf[100];
4203 int r = redraw_asap(CLEAR);
4204
4205 sprintf(buf,
4206 "set 'ambiwidth', redraw_asap(): %d",
4207 r);
4208 log_tr(buf);
4209 }
4210# else
4211 redraw_asap(CLEAR);
4212# endif
4213 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004214 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004215 key_name[0] = (int)KS_EXTRA;
4216 key_name[1] = (int)KE_IGNORE;
4217 slen = i + 1;
4218 }
4219 else
4220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004222 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004224 LOG_TR("Received CRV");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 crv_status = CRV_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004226# ifdef FEAT_AUTOCMD
4227 did_cursorhold = TRUE;
4228# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229
4230 /* If this code starts with CSI, you can bet that the
4231 * terminal uses 8-bit codes. */
4232 if (tp[0] == CSI)
4233 switch_to_8bit();
4234
4235 /* rxvt sends its version number: "20703" is 2.7.3.
4236 * Ignore it for when the user has set 'term' to xterm,
4237 * even though it's an rxvt. */
Bram Moolenaar46a75612013-05-15 14:22:41 +02004238 if (extra > 0)
4239 extra = atoi((char *)tp + extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 if (extra > 20000)
4241 extra = 0;
4242
4243 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2)
4244 {
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004245 /* Only set 'ttymouse' automatically if it was not set
4246 * by the user already. */
4247 if (!option_was_set((char_u *)"ttym"))
4248 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004249# ifdef TTYM_SGR
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004250 if (extra >= 277)
4251 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004252 (char_u *)"sgr", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004253 else
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004254# endif
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004255 /* if xterm version >= 95 use mouse dragging */
4256 if (extra >= 95)
4257 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 (char_u *)"xterm2", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004259 }
4260
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 /* if xterm version >= 141 try to get termcap codes */
4262 if (extra >= 141)
4263 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004264 LOG_TR("Enable checking for XT codes");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 check_for_codes = TRUE;
4266 need_gather = TRUE;
4267 req_codes_from_term();
4268 }
4269 }
4270# ifdef FEAT_EVAL
4271 set_vim_var_string(VV_TERMRESPONSE, tp, i + 1);
4272# endif
4273# ifdef FEAT_AUTOCMD
4274 apply_autocmds(EVENT_TERMRESPONSE,
4275 NULL, NULL, FALSE, curbuf);
4276# endif
4277 key_name[0] = (int)KS_EXTRA;
4278 key_name[1] = (int)KE_IGNORE;
4279 slen = i + 1;
4280 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004281 }
4282
4283 /* Check for background color response from the terminal:
4284 *
4285 * {lead}11;rgb:{rrrr}/{gggg}/{bbbb}{tail}
4286 *
4287 * {lead} can be <Esc>] or OSC
4288 * {tail} can be '\007', <Esc>\ or STERM.
4289 *
4290 * Consume any code that starts with "{lead}11;", it's also
4291 * possible that "rgba" is following.
4292 */
4293 else if (*T_RBG != NUL
4294 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4295 || tp[0] == OSC))
4296 {
4297 j = 1 + (tp[0] == ESC);
4298 if (len >= j + 3 && (argp[0] != '1'
4299 || argp[1] != '1' || argp[2] != ';'))
4300 i = 0; /* no match */
4301 else
4302 for (i = j; i < len; ++i)
4303 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4304 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004305 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004306 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
4307 && tp[j + 11] == '/' && tp[j + 16] == '/'
4308 && !option_was_set((char_u *)"bg"))
4309 {/* TODO: don't set option when already the right value */
4310 LOG_TR("Received RBG");
4311 rbg_status = RBG_GOT;
4312 set_option_value((char_u *)"bg", 0L, (char_u *)(
4313 (3 * '6' < tp[j+7] + tp[j+12] + tp[j+17])
4314 ? "light" : "dark"), 0);
4315 reset_option_was_set((char_u *)"bg");
4316 redraw_asap(CLEAR);
4317 }
4318
4319 /* got finished code: consume it */
4320 key_name[0] = (int)KS_EXTRA;
4321 key_name[1] = (int)KE_IGNORE;
4322 slen = i + 1 + (tp[i] == ESC);
4323 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004324 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004325 if (i == len)
4326 {
4327 LOG_TR("not enough characters for RB");
4328 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 }
4331
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004332 /* Check for key code response from xterm:
4333 *
4334 * {lead}{flag}+r<hex bytes><{tail}
4335 *
4336 * {lead} can be <Esc>P or DCS
4337 * {flag} can be '0' or '1'
4338 * {tail} can be Esc>\ or STERM
4339 *
4340 * Consume any code that starts with "{lead}.+r".
4341 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 else if (check_for_codes
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004343 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 || tp[0] == DCS))
4345 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004346 j = 1 + (tp[0] == ESC);
4347 if (len >= j + 3 && (argp[1] != '+' || argp[2] != 'r'))
4348 i = 0; /* no match */
4349 else
4350 for (i = j; i < len; ++i)
4351 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 || tp[i] == STERM)
4353 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004354 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 got_code_from_term(tp + j, i);
4356 key_name[0] = (int)KS_EXTRA;
4357 key_name[1] = (int)KE_IGNORE;
4358 slen = i + 1 + (tp[i] == ESC);
4359 break;
4360 }
4361
4362 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004363 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004364 /* These codes arrive many together, each code can be
4365 * truncated at any point. */
Bram Moolenaar2951b772013-07-03 12:45:31 +02004366 LOG_TR("not enough characters for XT");
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004367 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004368 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 }
4370 }
4371#endif
4372
4373 if (key_name[0] == NUL)
4374 continue; /* No match at this position, try next one */
4375
4376 /* We only get here when we have a complete termcode match */
4377
4378#ifdef FEAT_MOUSE
4379# ifdef FEAT_GUI
4380 /*
4381 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4382 * so that we know which window to scroll later.
4383 */
4384 if (gui.in_use
4385 && key_name[0] == (int)KS_EXTRA
4386 && (key_name[1] == (int)KE_X1MOUSE
4387 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004388 || key_name[1] == (int)KE_MOUSELEFT
4389 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 || key_name[1] == (int)KE_MOUSEDOWN
4391 || key_name[1] == (int)KE_MOUSEUP))
4392 {
4393 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4394 if (num_bytes == -1) /* not enough coordinates */
4395 return -1;
4396 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4397 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4398 slen += num_bytes;
4399 }
4400 else
4401# endif
4402 /*
4403 * If it is a mouse click, get the coordinates.
4404 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004405 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004407 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408# endif
4409# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004410 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411# endif
4412# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004413 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414# endif
4415# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004416 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004418# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004419 || key_name[0] == KS_URXVT_MOUSE
4420# endif
4421# ifdef FEAT_MOUSE_SGR
4422 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004423# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 )
4425 {
4426 is_click = is_drag = FALSE;
4427
Bram Moolenaar864207d2008-06-24 22:14:38 +00004428# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4429 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 if (key_name[0] == (int)KS_MOUSE)
4431 {
4432 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004433 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 * s == encoded button state:
4435 * 0x20 = left button down
4436 * 0x21 = middle button down
4437 * 0x22 = right button down
4438 * 0x23 = any button release
4439 * 0x60 = button 4 down (scroll wheel down)
4440 * 0x61 = button 5 down (scroll wheel up)
4441 * add 0x04 for SHIFT
4442 * add 0x08 for ALT
4443 * add 0x10 for CTRL
4444 * add 0x20 for mouse drag (0x40 is drag with left button)
4445 * c == column + ' ' + 1 == column + 33
4446 * r == row + ' ' + 1 == row + 33
4447 *
4448 * The coordinates are passed on through global variables.
4449 * Ugly, but this avoids trouble with mouse clicks at an
4450 * unexpected moment and allows for mapping them.
4451 */
4452 for (;;)
4453 {
4454#ifdef FEAT_GUI
4455 if (gui.in_use)
4456 {
4457 /* GUI uses more bits for columns > 223 */
4458 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
4459 if (num_bytes == -1) /* not enough coordinates */
4460 return -1;
4461 mouse_code = bytes[0];
4462 mouse_col = 128 * (bytes[1] - ' ' - 1)
4463 + bytes[2] - ' ' - 1;
4464 mouse_row = 128 * (bytes[3] - ' ' - 1)
4465 + bytes[4] - ' ' - 1;
4466 }
4467 else
4468#endif
4469 {
4470 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
4471 if (num_bytes == -1) /* not enough coordinates */
4472 return -1;
4473 mouse_code = bytes[0];
4474 mouse_col = bytes[1] - ' ' - 1;
4475 mouse_row = bytes[2] - ' ' - 1;
4476 }
4477 slen += num_bytes;
4478
4479 /* If the following bytes is also a mouse code and it has
4480 * the same code, dump this one and get the next. This
4481 * makes dragging a whole lot faster. */
4482#ifdef FEAT_GUI
4483 if (gui.in_use)
4484 j = 3;
4485 else
4486#endif
4487 j = termcodes[idx].len;
4488 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
4489 && tp[slen + j] == mouse_code
4490 && tp[slen + j + 1] != NUL
4491 && tp[slen + j + 2] != NUL
4492#ifdef FEAT_GUI
4493 && (!gui.in_use
4494 || (tp[slen + j + 3] != NUL
4495 && tp[slen + j + 4] != NUL))
4496#endif
4497 )
4498 slen += j;
4499 else
4500 break;
4501 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004504# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
4505 if (key_name[0] == KS_URXVT_MOUSE
4506 || key_name[0] == KS_SGR_MOUSE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004507 {
4508 for (;;)
4509 {
4510 /* URXVT 1015 mouse reporting mode:
4511 * Almost identical to xterm mouse mode, except the values
4512 * are decimal instead of bytes.
4513 *
4514 * \033[%d;%d;%dM
4515 * ^-- row
4516 * ^----- column
4517 * ^-------- code
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004518 *
4519 * SGR 1006 mouse reporting mode:
4520 * Almost identical to xterm mouse mode, except the values
4521 * are decimal instead of bytes.
4522 *
4523 * \033[<%d;%d;%dM
4524 * ^-- row
4525 * ^----- column
4526 * ^-------- code
4527 *
4528 * \033[<%d;%d;%dm : mouse release event
4529 * ^-- row
4530 * ^----- column
4531 * ^-------- code
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004532 */
4533 p = tp + slen;
4534
4535 mouse_code = getdigits(&p);
4536 if (*p++ != ';')
4537 return -1;
4538
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004539 /* when mouse reporting is SGR, add 32 to mouse code */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004540 if (key_name[0] == KS_SGR_MOUSE)
4541 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004542
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004543 mouse_col = getdigits(&p) - 1;
4544 if (*p++ != ';')
4545 return -1;
4546
4547 mouse_row = getdigits(&p) - 1;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004548 if (key_name[0] == KS_SGR_MOUSE && *p == 'm')
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004549 mouse_code |= MOUSE_RELEASE;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004550 else if (*p != 'M')
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004551 return -1;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004552 p++;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004553
4554 slen += (int)(p - (tp + slen));
4555
4556 /* skip this one if next one has same code (like xterm
4557 * case) */
4558 j = termcodes[idx].len;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004559 if (STRNCMP(tp, tp + slen, (size_t)j) == 0)
4560 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004561 int slen2;
4562 int cmd_complete = 0;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004563
4564 /* check if the command is complete by looking for the
4565 * 'M' */
4566 for (slen2 = slen; slen2 < len; slen2++)
4567 {
4568 if (tp[slen2] == 'M'
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004569 || (key_name[0] == KS_SGR_MOUSE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004570 && tp[slen2] == 'm'))
4571 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004572 cmd_complete = 1;
4573 break;
4574 }
4575 }
4576 p += j;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004577 if (cmd_complete && getdigits(&p) == mouse_code)
4578 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004579 slen += j; /* skip the \033[ */
4580 continue;
4581 }
4582 }
4583 break;
4584 }
4585 }
4586# endif
4587
4588 if (key_name[0] == (int)KS_MOUSE
4589#ifdef FEAT_MOUSE_URXVT
4590 || key_name[0] == (int)KS_URXVT_MOUSE
4591#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004592#ifdef FEAT_MOUSE_SGR
4593 || key_name[0] == KS_SGR_MOUSE
4594#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004595 )
4596 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004597# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 /*
4599 * Handle mouse events.
4600 * Recognize the xterm mouse wheel, but not in the GUI, the
4601 * Linux console with GPM and the MS-DOS or Win32 console
4602 * (multi-clicks use >= 0x60).
4603 */
4604 if (mouse_code >= MOUSEWHEEL_LOW
4605# ifdef FEAT_GUI
4606 && !gui.in_use
4607# endif
4608# ifdef FEAT_MOUSE_GPM
4609 && gpm_flag == 0
4610# endif
4611 )
4612 {
4613 /* Keep the mouse_code before it's changed, so that we
4614 * remember that it was a mouse wheel click. */
4615 wheel_code = mouse_code;
4616 }
4617# ifdef FEAT_MOUSE_XTERM
4618 else if (held_button == MOUSE_RELEASE
4619# ifdef FEAT_GUI
4620 && !gui.in_use
4621# endif
4622 && (mouse_code == 0x23 || mouse_code == 0x24))
4623 {
4624 /* Apparently used by rxvt scroll wheel. */
4625 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW;
4626 }
4627# endif
4628
4629# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
4630 else if (use_xterm_mouse() > 1)
4631 {
4632 if (mouse_code & MOUSE_DRAG_XTERM)
4633 mouse_code |= MOUSE_DRAG;
4634 }
4635# endif
4636# ifdef FEAT_XCLIPBOARD
4637 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
4638 {
4639 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
4640 stop_xterm_trace();
4641 else
4642 start_xterm_trace(mouse_code);
4643 }
4644# endif
4645# endif
4646 }
4647# endif /* !UNIX || FEAT_MOUSE_XTERM */
4648# ifdef FEAT_MOUSE_NET
4649 if (key_name[0] == (int)KS_NETTERM_MOUSE)
4650 {
4651 int mc, mr;
4652
4653 /* expect a rather limited sequence like: balancing {
4654 * \033}6,45\r
4655 * '6' is the row, 45 is the column
4656 */
4657 p = tp + slen;
4658 mr = getdigits(&p);
4659 if (*p++ != ',')
4660 return -1;
4661 mc = getdigits(&p);
4662 if (*p++ != '\r')
4663 return -1;
4664
4665 mouse_col = mc - 1;
4666 mouse_row = mr - 1;
4667 mouse_code = MOUSE_LEFT;
4668 slen += (int)(p - (tp + slen));
4669 }
4670# endif /* FEAT_MOUSE_NET */
4671# ifdef FEAT_MOUSE_JSB
4672 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
4673 {
4674 int mult, val, iter, button, status;
4675
4676 /* JSBTERM Input Model
4677 * \033[0~zw uniq escape sequence
4678 * (L-x) Left button pressed - not pressed x not reporting
4679 * (M-x) Middle button pressed - not pressed x not reporting
4680 * (R-x) Right button pressed - not pressed x not reporting
4681 * (SDmdu) Single , Double click, m mouse move d button down
4682 * u button up
4683 * ### X cursor position padded to 3 digits
4684 * ### Y cursor position padded to 3 digits
4685 * (s-x) SHIFT key pressed - not pressed x not reporting
4686 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004687 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 */
4689
4690 p = tp + slen;
4691 button = mouse_code = 0;
4692 switch (*p++)
4693 {
4694 case 'L': button = 1; break;
4695 case '-': break;
4696 case 'x': break; /* ignore sequence */
4697 default: return -1; /* Unknown Result */
4698 }
4699 switch (*p++)
4700 {
4701 case 'M': button |= 2; break;
4702 case '-': break;
4703 case 'x': break; /* ignore sequence */
4704 default: return -1; /* Unknown Result */
4705 }
4706 switch (*p++)
4707 {
4708 case 'R': button |= 4; break;
4709 case '-': break;
4710 case 'x': break; /* ignore sequence */
4711 default: return -1; /* Unknown Result */
4712 }
4713 status = *p++;
4714 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4715 mult /= 10, p++)
4716 if (*p >= '0' && *p <= '9')
4717 val += (*p - '0') * mult;
4718 else
4719 return -1;
4720 mouse_col = val;
4721 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4722 mult /= 10, p++)
4723 if (*p >= '0' && *p <= '9')
4724 val += (*p - '0') * mult;
4725 else
4726 return -1;
4727 mouse_row = val;
4728 switch (*p++)
4729 {
4730 case 's': button |= 8; break; /* SHIFT key Pressed */
4731 case '-': break; /* Not Pressed */
4732 case 'x': break; /* Not Reporting */
4733 default: return -1; /* Unknown Result */
4734 }
4735 switch (*p++)
4736 {
4737 case 'c': button |= 16; break; /* CTRL key Pressed */
4738 case '-': break; /* Not Pressed */
4739 case 'x': break; /* Not Reporting */
4740 default: return -1; /* Unknown Result */
4741 }
4742 if (*p++ != '\033')
4743 return -1;
4744 if (*p++ != '\\')
4745 return -1;
4746 switch (status)
4747 {
4748 case 'D': /* Double Click */
4749 case 'S': /* Single Click */
4750 if (button & 1) mouse_code |= MOUSE_LEFT;
4751 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4752 if (button & 4) mouse_code |= MOUSE_RIGHT;
4753 if (button & 8) mouse_code |= MOUSE_SHIFT;
4754 if (button & 16) mouse_code |= MOUSE_CTRL;
4755 break;
4756 case 'm': /* Mouse move */
4757 if (button & 1) mouse_code |= MOUSE_LEFT;
4758 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4759 if (button & 4) mouse_code |= MOUSE_RIGHT;
4760 if (button & 8) mouse_code |= MOUSE_SHIFT;
4761 if (button & 16) mouse_code |= MOUSE_CTRL;
4762 if ((button & 7) != 0)
4763 {
4764 held_button = mouse_code;
4765 mouse_code |= MOUSE_DRAG;
4766 }
4767 is_drag = TRUE;
4768 showmode();
4769 break;
4770 case 'd': /* Button Down */
4771 if (button & 1) mouse_code |= MOUSE_LEFT;
4772 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4773 if (button & 4) mouse_code |= MOUSE_RIGHT;
4774 if (button & 8) mouse_code |= MOUSE_SHIFT;
4775 if (button & 16) mouse_code |= MOUSE_CTRL;
4776 break;
4777 case 'u': /* Button Up */
4778 if (button & 1)
4779 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
4780 if (button & 2)
4781 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
4782 if (button & 4)
4783 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
4784 if (button & 8)
4785 mouse_code |= MOUSE_SHIFT;
4786 if (button & 16)
4787 mouse_code |= MOUSE_CTRL;
4788 break;
4789 default: return -1; /* Unknown Result */
4790 }
4791
4792 slen += (p - (tp + slen));
4793 }
4794# endif /* FEAT_MOUSE_JSB */
4795# ifdef FEAT_MOUSE_DEC
4796 if (key_name[0] == (int)KS_DEC_MOUSE)
4797 {
4798 /* The DEC Locator Input Model
4799 * Netterm delivers the code sequence:
4800 * \033[2;4;24;80&w (left button down)
4801 * \033[3;0;24;80&w (left button up)
4802 * \033[6;1;24;80&w (right button down)
4803 * \033[7;0;24;80&w (right button up)
4804 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
4805 * Pe is the event code
4806 * Pb is the button code
4807 * Pr is the row coordinate
4808 * Pc is the column coordinate
4809 * Pp is the third coordinate (page number)
4810 * Pe, the event code indicates what event caused this report
4811 * The following event codes are defined:
4812 * 0 - request, the terminal received an explicit request
4813 * for a locator report, but the locator is unavailable
4814 * 1 - request, the terminal received an explicit request
4815 * for a locator report
4816 * 2 - left button down
4817 * 3 - left button up
4818 * 4 - middle button down
4819 * 5 - middle button up
4820 * 6 - right button down
4821 * 7 - right button up
4822 * 8 - fourth button down
4823 * 9 - fourth button up
4824 * 10 - locator outside filter rectangle
4825 * Pb, the button code, ASCII decimal 0-15 indicating which
4826 * buttons are down if any. The state of the four buttons
4827 * on the locator correspond to the low four bits of the
4828 * decimal value,
4829 * "1" means button depressed
4830 * 0 - no buttons down,
4831 * 1 - right,
4832 * 2 - middle,
4833 * 4 - left,
4834 * 8 - fourth
4835 * Pr is the row coordinate of the locator position in the page,
4836 * encoded as an ASCII decimal value.
4837 * If Pr is omitted, the locator position is undefined
4838 * (outside the terminal window for example).
4839 * Pc is the column coordinate of the locator position in the
4840 * page, encoded as an ASCII decimal value.
4841 * If Pc is omitted, the locator position is undefined
4842 * (outside the terminal window for example).
4843 * Pp is the page coordinate of the locator position
4844 * encoded as an ASCII decimal value.
4845 * The page coordinate may be omitted if the locator is on
4846 * page one (the default). We ignore it anyway.
4847 */
4848 int Pe, Pb, Pr, Pc;
4849
4850 p = tp + slen;
4851
4852 /* get event status */
4853 Pe = getdigits(&p);
4854 if (*p++ != ';')
4855 return -1;
4856
4857 /* get button status */
4858 Pb = getdigits(&p);
4859 if (*p++ != ';')
4860 return -1;
4861
4862 /* get row status */
4863 Pr = getdigits(&p);
4864 if (*p++ != ';')
4865 return -1;
4866
4867 /* get column status */
4868 Pc = getdigits(&p);
4869
4870 /* the page parameter is optional */
4871 if (*p == ';')
4872 {
4873 p++;
4874 (void)getdigits(&p);
4875 }
4876 if (*p++ != '&')
4877 return -1;
4878 if (*p++ != 'w')
4879 return -1;
4880
4881 mouse_code = 0;
4882 switch (Pe)
4883 {
4884 case 0: return -1; /* position request while unavailable */
4885 case 1: /* a response to a locator position request includes
4886 the status of all buttons */
4887 Pb &= 7; /* mask off and ignore fourth button */
4888 if (Pb & 4)
4889 mouse_code = MOUSE_LEFT;
4890 if (Pb & 2)
4891 mouse_code = MOUSE_MIDDLE;
4892 if (Pb & 1)
4893 mouse_code = MOUSE_RIGHT;
4894 if (Pb)
4895 {
4896 held_button = mouse_code;
4897 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004898 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 }
4900 is_drag = TRUE;
4901 showmode();
4902 break;
4903 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004904 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 break;
4906 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
4907 break;
4908 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004909 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 break;
4911 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
4912 break;
4913 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004914 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 break;
4916 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
4917 break;
4918 case 8: return -1; /* fourth button down */
4919 case 9: return -1; /* fourth button up */
4920 case 10: return -1; /* mouse outside of filter rectangle */
4921 default: return -1; /* should never occur */
4922 }
4923
4924 mouse_col = Pc - 1;
4925 mouse_row = Pr - 1;
4926
4927 slen += (int)(p - (tp + slen));
4928 }
4929# endif /* FEAT_MOUSE_DEC */
4930# ifdef FEAT_MOUSE_PTERM
4931 if (key_name[0] == (int)KS_PTERM_MOUSE)
4932 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004933 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934
4935 p = tp + slen;
4936
4937 action = getdigits(&p);
4938 if (*p++ != ';')
4939 return -1;
4940
4941 mouse_row = getdigits(&p);
4942 if (*p++ != ';')
4943 return -1;
4944 mouse_col = getdigits(&p);
4945 if (*p++ != ';')
4946 return -1;
4947
4948 button = getdigits(&p);
4949 mouse_code = 0;
4950
Bram Moolenaarde7762a2016-08-21 21:03:37 +02004951 switch (button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 {
4953 case 4: mouse_code = MOUSE_LEFT; break;
4954 case 1: mouse_code = MOUSE_RIGHT; break;
4955 case 2: mouse_code = MOUSE_MIDDLE; break;
4956 default: return -1;
4957 }
4958
Bram Moolenaarde7762a2016-08-21 21:03:37 +02004959 switch (action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 {
4961 case 31: /* Initial press */
4962 if (*p++ != ';')
4963 return -1;
4964
4965 num_clicks = getdigits(&p); /* Not used */
4966 break;
4967
4968 case 32: /* Release */
4969 mouse_code |= MOUSE_RELEASE;
4970 break;
4971
4972 case 33: /* Drag */
4973 held_button = mouse_code;
4974 mouse_code |= MOUSE_DRAG;
4975 break;
4976
4977 default:
4978 return -1;
4979 }
4980
4981 if (*p++ != 't')
4982 return -1;
4983
4984 slen += (p - (tp + slen));
4985 }
4986# endif /* FEAT_MOUSE_PTERM */
4987
4988 /* Interpret the mouse code */
4989 current_button = (mouse_code & MOUSE_CLICK_MASK);
4990 if (current_button == MOUSE_RELEASE
4991# ifdef FEAT_MOUSE_XTERM
4992 && wheel_code == 0
4993# endif
4994 )
4995 {
4996 /*
4997 * If we get a mouse drag or release event when
4998 * there is no mouse button held down (held_button ==
4999 * MOUSE_RELEASE), produce a K_IGNORE below.
5000 * (can happen when you hold down two buttons
5001 * and then let them go, or click in the menu bar, but not
5002 * on a menu, and drag into the text).
5003 */
5004 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5005 is_drag = TRUE;
5006 current_button = held_button;
5007 }
5008 else if (wheel_code == 0)
5009 {
5010# ifdef CHECK_DOUBLE_CLICK
5011# ifdef FEAT_MOUSE_GPM
5012# ifdef FEAT_GUI
5013 /*
5014 * Only for Unix, when GUI or gpm is not active, we handle
5015 * multi-clicks here.
5016 */
5017 if (gpm_flag == 0 && !gui.in_use)
5018# else
5019 if (gpm_flag == 0)
5020# endif
5021# else
5022# ifdef FEAT_GUI
5023 if (!gui.in_use)
5024# endif
5025# endif
5026 {
5027 /*
5028 * Compute the time elapsed since the previous mouse click.
5029 */
5030 gettimeofday(&mouse_time, NULL);
Bram Moolenaar54c10cc2016-05-25 22:00:11 +02005031 if (orig_mouse_time.tv_sec == 0)
5032 {
5033 /*
5034 * Avoid computing the difference between mouse_time
5035 * and orig_mouse_time for the first click, as the
5036 * difference would be huge and would cause multiplication
5037 * overflow.
5038 */
5039 timediff = p_mouset;
5040 }
5041 else
5042 {
5043 timediff = (mouse_time.tv_usec
5044 - orig_mouse_time.tv_usec) / 1000;
5045 if (timediff < 0)
5046 --orig_mouse_time.tv_sec;
5047 timediff += (mouse_time.tv_sec
5048 - orig_mouse_time.tv_sec) * 1000;
5049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 orig_mouse_time = mouse_time;
5051 if (mouse_code == orig_mouse_code
5052 && timediff < p_mouset
5053 && orig_num_clicks != 4
5054 && orig_mouse_col == mouse_col
5055 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005056 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005058 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005060 )
5061#ifdef FEAT_WINDOWS
5062 /* Double click in tab pages line also works
5063 * when window contents changes. */
5064 || (mouse_row == 0 && firstwin->w_winrow > 0)
5065#endif
5066 )
5067 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 ++orig_num_clicks;
5069 else
5070 orig_num_clicks = 1;
5071 orig_mouse_col = mouse_col;
5072 orig_mouse_row = mouse_row;
5073 orig_topline = curwin->w_topline;
5074#ifdef FEAT_DIFF
5075 orig_topfill = curwin->w_topfill;
5076#endif
5077 }
5078# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5079 else
5080 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5081# endif
5082# else
5083 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5084# endif
5085 is_click = TRUE;
5086 orig_mouse_code = mouse_code;
5087 }
5088 if (!is_drag)
5089 held_button = mouse_code & MOUSE_CLICK_MASK;
5090
5091 /*
5092 * Translate the actual mouse event into a pseudo mouse event.
5093 * First work out what modifiers are to be used.
5094 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 if (orig_mouse_code & MOUSE_SHIFT)
5096 modifiers |= MOD_MASK_SHIFT;
5097 if (orig_mouse_code & MOUSE_CTRL)
5098 modifiers |= MOD_MASK_CTRL;
5099 if (orig_mouse_code & MOUSE_ALT)
5100 modifiers |= MOD_MASK_ALT;
5101 if (orig_num_clicks == 2)
5102 modifiers |= MOD_MASK_2CLICK;
5103 else if (orig_num_clicks == 3)
5104 modifiers |= MOD_MASK_3CLICK;
5105 else if (orig_num_clicks == 4)
5106 modifiers |= MOD_MASK_4CLICK;
5107
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005108 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets
5109 * added, then it's not mouse up/down. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 key_name[0] = (int)KS_EXTRA;
Bram Moolenaarde7762a2016-08-21 21:03:37 +02005111 if (wheel_code != 0
5112 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005113 {
5114 if (wheel_code & MOUSE_CTRL)
5115 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005116 if (wheel_code & MOUSE_ALT)
5117 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 key_name[1] = (wheel_code & 1)
5119 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005120 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 else
5122 key_name[1] = get_pseudo_mouse_code(current_button,
5123 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005124
5125 /* Make sure the mouse position is valid. Some terminals may
5126 * return weird values. */
5127 if (mouse_col >= Columns)
5128 mouse_col = Columns - 1;
5129 if (mouse_row >= Rows)
5130 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 }
5132#endif /* FEAT_MOUSE */
5133
5134#ifdef FEAT_GUI
5135 /*
5136 * If using the GUI, then we get menu and scrollbar events.
5137 *
5138 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5139 * four bytes which are to be taken as a pointer to the vimmenu_T
5140 * structure.
5141 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005142 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005143 * is one byte with the tab index.
5144 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5146 * by one byte representing the scrollbar number, and then four bytes
5147 * representing a long_u which is the new value of the scrollbar.
5148 *
5149 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5150 * KE_FILLER followed by four bytes representing a long_u which is the
5151 * new value of the scrollbar.
5152 */
5153# ifdef FEAT_MENU
5154 else if (key_name[0] == (int)KS_MENU)
5155 {
5156 long_u val;
5157
5158 num_bytes = get_long_from_buf(tp + slen, &val);
5159 if (num_bytes == -1)
5160 return -1;
5161 current_menu = (vimmenu_T *)val;
5162 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005163
5164 /* The menu may have been deleted right after it was used, check
5165 * for that. */
5166 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5167 {
5168 key_name[0] = KS_EXTRA;
5169 key_name[1] = (int)KE_IGNORE;
5170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 }
5172# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005173# ifdef FEAT_GUI_TABLINE
5174 else if (key_name[0] == (int)KS_TABLINE)
5175 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005176 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005177 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5178 if (num_bytes == -1)
5179 return -1;
5180 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005181 if (current_tab == 255) /* -1 in a byte gives 255 */
5182 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005183 slen += num_bytes;
5184 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005185 else if (key_name[0] == (int)KS_TABMENU)
5186 {
5187 /* Selecting tabline tab or using its menu. */
5188 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5189 if (num_bytes == -1)
5190 return -1;
5191 current_tab = (int)bytes[0];
5192 current_tabmenu = (int)bytes[1];
5193 slen += num_bytes;
5194 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005195# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196# ifndef USE_ON_FLY_SCROLL
5197 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5198 {
5199 long_u val;
5200
5201 /* Get the last scrollbar event in the queue of the same type */
5202 j = 0;
5203 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5204 && tp[j + 2] != NUL; ++i)
5205 {
5206 j += 3;
5207 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5208 if (num_bytes == -1)
5209 break;
5210 if (i == 0)
5211 current_scrollbar = (int)bytes[0];
5212 else if (current_scrollbar != (int)bytes[0])
5213 break;
5214 j += num_bytes;
5215 num_bytes = get_long_from_buf(tp + j, &val);
5216 if (num_bytes == -1)
5217 break;
5218 scrollbar_value = val;
5219 j += num_bytes;
5220 slen = j;
5221 }
5222 if (i == 0) /* not enough characters to make one */
5223 return -1;
5224 }
5225 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5226 {
5227 long_u val;
5228
5229 /* Get the last horiz. scrollbar event in the queue */
5230 j = 0;
5231 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5232 && tp[j + 2] != NUL; ++i)
5233 {
5234 j += 3;
5235 num_bytes = get_long_from_buf(tp + j, &val);
5236 if (num_bytes == -1)
5237 break;
5238 scrollbar_value = val;
5239 j += num_bytes;
5240 slen = j;
5241 }
5242 if (i == 0) /* not enough characters to make one */
5243 return -1;
5244 }
5245# endif /* !USE_ON_FLY_SCROLL */
5246#endif /* FEAT_GUI */
5247
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005248 /*
5249 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5250 */
5251 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5252
5253 /*
5254 * Add any modifier codes to our string.
5255 */
5256 new_slen = 0; /* Length of what will replace the termcode */
5257 if (modifiers != 0)
5258 {
5259 /* Some keys have the modifier included. Need to handle that here
5260 * to make mappings work. */
5261 key = simplify_key(key, &modifiers);
5262 if (modifiers != 0)
5263 {
5264 string[new_slen++] = K_SPECIAL;
5265 string[new_slen++] = (int)KS_MODIFIER;
5266 string[new_slen++] = modifiers;
5267 }
5268 }
5269
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005271 key_name[0] = KEY2TERMCAP0(key);
5272 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005274 {
5275 /* from ":set <M-b>=xx" */
5276#ifdef FEAT_MBYTE
5277 if (has_mbyte)
5278 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5279 else
5280#endif
5281 string[new_slen++] = key_name[1];
5282 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005283 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5284 && key_name[1] == KE_IGNORE)
5285 {
5286 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5287 * to indicate what happened. */
5288 retval = KEYLEN_REMOVED;
5289 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 else
5291 {
5292 string[new_slen++] = K_SPECIAL;
5293 string[new_slen++] = key_name[0];
5294 string[new_slen++] = key_name[1];
5295 }
5296 string[new_slen] = NUL;
5297 extra = new_slen - slen;
5298 if (buf == NULL)
5299 {
5300 if (extra < 0)
5301 /* remove matched chars, taking care of noremap */
5302 del_typebuf(-extra, offset);
5303 else if (extra > 0)
5304 /* insert the extra space we need */
5305 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5306
5307 /*
5308 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5309 * typebuf.tb_buf[]!
5310 */
5311 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5312 (size_t)new_slen);
5313 }
5314 else
5315 {
5316 if (extra < 0)
5317 /* remove matched characters */
5318 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005319 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005321 {
5322 /* Insert the extra space we need. If there is insufficient
5323 * space return -1. */
5324 if (*buflen + extra + new_slen >= bufsize)
5325 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005327 (size_t)(*buflen - offset));
5328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005330 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005332 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 }
5334
Bram Moolenaar2951b772013-07-03 12:45:31 +02005335#ifdef FEAT_TERMRESPONSE
5336 LOG_TR("normal character");
5337#endif
5338
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 return 0; /* no match found */
5340}
5341
5342/*
5343 * Replace any terminal code strings in from[] with the equivalent internal
5344 * vim representation. This is used for the "from" and "to" part of a
5345 * mapping, and the "to" part of a menu command.
5346 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5347 * '<'.
5348 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5349 *
5350 * The replacement is done in result[] and finally copied into allocated
5351 * memory. If this all works well *bufp is set to the allocated memory and a
5352 * pointer to it is returned. If something fails *bufp is set to NULL and from
5353 * is returned.
5354 *
5355 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5356 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5357 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5358 * instead of a CTRL-V.
5359 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005360 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005361replace_termcodes(
5362 char_u *from,
5363 char_u **bufp,
5364 int from_part,
5365 int do_lt, /* also translate <lt> */
5366 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367{
5368 int i;
5369 int slen;
5370 int key;
5371 int dlen = 0;
5372 char_u *src;
5373 int do_backslash; /* backslash is a special character */
5374 int do_special; /* recognize <> key codes */
5375 int do_key_code; /* recognize raw key codes */
5376 char_u *result; /* buffer for resulting string */
5377
5378 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005379 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5381
5382 /*
5383 * Allocate space for the translation. Worst case a single character is
5384 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5385 */
5386 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5387 if (result == NULL) /* out of memory */
5388 {
5389 *bufp = NULL;
5390 return from;
5391 }
5392
5393 src = from;
5394
5395 /*
5396 * Check for #n at start only: function key n
5397 */
5398 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
5399 {
5400 result[dlen++] = K_SPECIAL;
5401 result[dlen++] = 'k';
5402 if (src[1] == '0')
5403 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5404 else
5405 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5406 src += 2;
5407 }
5408
5409 /*
5410 * Copy each byte from *from to result[dlen]
5411 */
5412 while (*src != NUL)
5413 {
5414 /*
5415 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005416 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 */
5418 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
5419 {
5420#ifdef FEAT_EVAL
5421 /*
5422 * Replace <SID> by K_SNR <script-nr> _.
5423 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5424 */
5425 if (STRNICMP(src, "<SID>", 5) == 0)
5426 {
5427 if (current_SID <= 0)
5428 EMSG(_(e_usingsid));
5429 else
5430 {
5431 src += 5;
5432 result[dlen++] = K_SPECIAL;
5433 result[dlen++] = (int)KS_EXTRA;
5434 result[dlen++] = (int)KE_SNR;
5435 sprintf((char *)result + dlen, "%ld", (long)current_SID);
5436 dlen += (int)STRLEN(result + dlen);
5437 result[dlen++] = '_';
5438 continue;
5439 }
5440 }
5441#endif
5442
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02005443 slen = trans_special(&src, result + dlen, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 if (slen)
5445 {
5446 dlen += slen;
5447 continue;
5448 }
5449 }
5450
5451 /*
5452 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5453 * Note that this is also checked after replacing the <> form.
5454 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5455 * it could be a character in the file.
5456 */
5457 if (do_key_code)
5458 {
5459 i = find_term_bykeys(src);
5460 if (i >= 0)
5461 {
5462 result[dlen++] = K_SPECIAL;
5463 result[dlen++] = termcodes[i].name[0];
5464 result[dlen++] = termcodes[i].name[1];
5465 src += termcodes[i].len;
5466 /* If terminal code matched, continue after it. */
5467 continue;
5468 }
5469 }
5470
5471#ifdef FEAT_EVAL
5472 if (do_special)
5473 {
5474 char_u *p, *s, len;
5475
5476 /*
5477 * Replace <Leader> by the value of "mapleader".
5478 * Replace <LocalLeader> by the value of "maplocalleader".
5479 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5480 */
5481 if (STRNICMP(src, "<Leader>", 8) == 0)
5482 {
5483 len = 8;
5484 p = get_var_value((char_u *)"g:mapleader");
5485 }
5486 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
5487 {
5488 len = 13;
5489 p = get_var_value((char_u *)"g:maplocalleader");
5490 }
5491 else
5492 {
5493 len = 0;
5494 p = NULL;
5495 }
5496 if (len != 0)
5497 {
5498 /* Allow up to 8 * 6 characters for "mapleader". */
5499 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
5500 s = (char_u *)"\\";
5501 else
5502 s = p;
5503 while (*s != NUL)
5504 result[dlen++] = *s++;
5505 src += len;
5506 continue;
5507 }
5508 }
5509#endif
5510
5511 /*
5512 * Remove CTRL-V and ignore the next character.
5513 * For "from" side the CTRL-V at the end is included, for the "to"
5514 * part it is removed.
5515 * If 'cpoptions' does not contain 'B', also accept a backslash.
5516 */
5517 key = *src;
5518 if (key == Ctrl_V || (do_backslash && key == '\\'))
5519 {
5520 ++src; /* skip CTRL-V or backslash */
5521 if (*src == NUL)
5522 {
5523 if (from_part)
5524 result[dlen++] = key;
5525 break;
5526 }
5527 }
5528
5529#ifdef FEAT_MBYTE
5530 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005531 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532#endif
5533 {
5534 /*
5535 * If the character is K_SPECIAL, replace it with K_SPECIAL
5536 * KS_SPECIAL KE_FILLER.
5537 * If compiled with the GUI replace CSI with K_CSI.
5538 */
5539 if (*src == K_SPECIAL)
5540 {
5541 result[dlen++] = K_SPECIAL;
5542 result[dlen++] = KS_SPECIAL;
5543 result[dlen++] = KE_FILLER;
5544 }
5545# ifdef FEAT_GUI
5546 else if (*src == CSI)
5547 {
5548 result[dlen++] = K_SPECIAL;
5549 result[dlen++] = KS_EXTRA;
5550 result[dlen++] = (int)KE_CSI;
5551 }
5552# endif
5553 else
5554 result[dlen++] = *src;
5555 ++src;
5556 }
5557 }
5558 result[dlen] = NUL;
5559
5560 /*
5561 * Copy the new string to allocated memory.
5562 * If this fails, just return from.
5563 */
5564 if ((*bufp = vim_strsave(result)) != NULL)
5565 from = *bufp;
5566 vim_free(result);
5567 return from;
5568}
5569
5570/*
5571 * Find a termcode with keys 'src' (must be NUL terminated).
5572 * Return the index in termcodes[], or -1 if not found.
5573 */
5574 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005575find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576{
5577 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01005578 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579
5580 for (i = 0; i < tc_len; ++i)
5581 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01005582 if (slen == termcodes[i].len
5583 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 return i;
5585 }
5586 return -1;
5587}
5588
5589/*
5590 * Gather the first characters in the terminal key codes into a string.
5591 * Used to speed up check_termcode().
5592 */
5593 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005594gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595{
5596 int i;
5597 int len = 0;
5598
5599#ifdef FEAT_GUI
5600 if (gui.in_use)
5601 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
5602#endif
5603#ifdef FEAT_TERMRESPONSE
5604 if (check_for_codes)
5605 termleader[len++] = DCS; /* the termcode response starts with DCS
5606 in 8-bit mode */
5607#endif
5608 termleader[len] = NUL;
5609
5610 for (i = 0; i < tc_len; ++i)
5611 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
5612 {
5613 termleader[len++] = termcodes[i].code[0];
5614 termleader[len] = NUL;
5615 }
5616
5617 need_gather = FALSE;
5618}
5619
5620/*
5621 * Show all termcodes (for ":set termcap")
5622 * This code looks a lot like showoptions(), but is different.
5623 */
5624 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005625show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626{
5627 int col;
5628 int *items;
5629 int item_count;
5630 int run;
5631 int row, rows;
5632 int cols;
5633 int i;
5634 int len;
5635
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005636#define INC3 27 /* try to make three columns */
5637#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638#define GAP 2 /* spaces between columns */
5639
5640 if (tc_len == 0) /* no terminal codes (must be GUI) */
5641 return;
5642 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
5643 if (items == NULL)
5644 return;
5645
5646 /* Highlight title */
5647 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
5648
5649 /*
5650 * do the loop two times:
5651 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005652 * 2. display the medium items (medium length strings)
5653 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005655 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 {
5657 /*
5658 * collect the items in items[]
5659 */
5660 item_count = 0;
5661 for (i = 0; i < tc_len; i++)
5662 {
5663 len = show_one_termcode(termcodes[i].name,
5664 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005665 if (len <= INC3 - GAP ? run == 1
5666 : len <= INC2 - GAP ? run == 2
5667 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 items[item_count++] = i;
5669 }
5670
5671 /*
5672 * display the items
5673 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005674 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005676 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 if (cols == 0)
5678 cols = 1;
5679 rows = (item_count + cols - 1) / cols;
5680 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005681 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 rows = item_count;
5683 for (row = 0; row < rows && !got_int; ++row)
5684 {
5685 msg_putchar('\n'); /* go to next line */
5686 if (got_int) /* 'q' typed in more */
5687 break;
5688 col = 0;
5689 for (i = row; i < item_count; i += rows)
5690 {
5691 msg_col = col; /* make columns */
5692 show_one_termcode(termcodes[items[i]].name,
5693 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005694 if (run == 2)
5695 col += INC2;
5696 else
5697 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 }
5699 out_flush();
5700 ui_breakcheck();
5701 }
5702 }
5703 vim_free(items);
5704}
5705
5706/*
5707 * Show one termcode entry.
5708 * Output goes into IObuff[]
5709 */
5710 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005711show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712{
5713 char_u *p;
5714 int len;
5715
5716 if (name[0] > '~')
5717 {
5718 IObuff[0] = ' ';
5719 IObuff[1] = ' ';
5720 IObuff[2] = ' ';
5721 IObuff[3] = ' ';
5722 }
5723 else
5724 {
5725 IObuff[0] = 't';
5726 IObuff[1] = '_';
5727 IObuff[2] = name[0];
5728 IObuff[3] = name[1];
5729 }
5730 IObuff[4] = ' ';
5731
5732 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
5733 if (p[1] != 't')
5734 STRCPY(IObuff + 5, p);
5735 else
5736 IObuff[5] = NUL;
5737 len = (int)STRLEN(IObuff);
5738 do
5739 IObuff[len++] = ' ';
5740 while (len < 17);
5741 IObuff[len] = NUL;
5742 if (code == NULL)
5743 len += 4;
5744 else
5745 len += vim_strsize(code);
5746
5747 if (printit)
5748 {
5749 msg_puts(IObuff);
5750 if (code == NULL)
5751 msg_puts((char_u *)"NULL");
5752 else
5753 msg_outtrans(code);
5754 }
5755 return len;
5756}
5757
5758#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
5759/*
5760 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
5761 * termcap codes from the terminal itself.
5762 * We get them one by one to avoid a very long response string.
5763 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005764static int xt_index_in = 0;
5765static int xt_index_out = 0;
5766
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005768req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769{
5770 xt_index_out = 0;
5771 xt_index_in = 0;
5772 req_more_codes_from_term();
5773}
5774
5775 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005776req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777{
5778 char buf[11];
5779 int old_idx = xt_index_out;
5780
5781 /* Don't do anything when going to exit. */
5782 if (exiting)
5783 return;
5784
5785 /* Send up to 10 more requests out than we received. Avoid sending too
5786 * many, there can be a buffer overflow somewhere. */
5787 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
5788 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02005789# ifdef DEBUG_TERMRESPONSE
5790 char dbuf[100];
5791
5792 sprintf(dbuf, "Requesting XT %d: %s",
5793 xt_index_out, key_names[xt_index_out]);
5794 log_tr(dbuf);
5795# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 sprintf(buf, "\033P+q%02x%02x\033\\",
5797 key_names[xt_index_out][0], key_names[xt_index_out][1]);
5798 out_str_nf((char_u *)buf);
5799 ++xt_index_out;
5800 }
5801
5802 /* Send the codes out right away. */
5803 if (xt_index_out != old_idx)
5804 out_flush();
5805}
5806
5807/*
5808 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
5809 * A "0" instead of the "1" indicates a code that isn't supported.
5810 * Both <name> and <string> are encoded in hex.
5811 * "code" points to the "0" or "1".
5812 */
5813 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005814got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815{
5816#define XT_LEN 100
5817 char_u name[3];
5818 char_u str[XT_LEN];
5819 int i;
5820 int j = 0;
5821 int c;
5822
5823 /* A '1' means the code is supported, a '0' means it isn't.
5824 * When half the length is > XT_LEN we can't use it.
5825 * Our names are currently all 2 characters. */
5826 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
5827 {
5828 /* Get the name from the response and find it in the table. */
5829 name[0] = hexhex2nr(code + 3);
5830 name[1] = hexhex2nr(code + 5);
5831 name[2] = NUL;
5832 for (i = 0; key_names[i] != NULL; ++i)
5833 {
5834 if (STRCMP(key_names[i], name) == 0)
5835 {
5836 xt_index_in = i;
5837 break;
5838 }
5839 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02005840# ifdef DEBUG_TERMRESPONSE
5841 {
5842 char buf[100];
5843
5844 sprintf(buf, "Received XT %d: %s", xt_index_in, (char *)name);
5845 log_tr(buf);
5846 }
5847# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 if (key_names[i] != NULL)
5849 {
5850 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
5851 str[j++] = c;
5852 str[j] = NUL;
5853 if (name[0] == 'C' && name[1] == 'o')
5854 {
5855 /* Color count is not a key code. */
5856 i = atoi((char *)str);
5857 if (i != t_colors)
5858 {
5859 /* Nr of colors changed, initialize highlighting and
Bram Moolenaar238a5642006-02-21 22:12:05 +00005860 * redraw everything. This causes a redraw, which usually
5861 * clears the message. Try keeping the message if it
5862 * might work. */
5863 set_keep_msg_from_hist();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 set_color_count(i);
5865 init_highlight(TRUE, FALSE);
Bram Moolenaar2951b772013-07-03 12:45:31 +02005866#ifdef DEBUG_TERMRESPONSE
5867 {
5868 char buf[100];
5869 int r = redraw_asap(CLEAR);
5870
5871 sprintf(buf, "Received t_Co, redraw_asap(): %d", r);
5872 log_tr(buf);
5873 }
5874#else
5875 redraw_asap(CLEAR);
5876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 }
5878 }
5879 else
5880 {
5881 /* First delete any existing entry with the same code. */
5882 i = find_term_bykeys(str);
5883 if (i >= 0)
5884 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005885 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 }
5887 }
5888 }
5889
5890 /* May request more codes now that we received one. */
5891 ++xt_index_in;
5892 req_more_codes_from_term();
5893}
5894
5895/*
5896 * Check if there are any unanswered requests and deal with them.
5897 * This is called before starting an external program or getting direct
5898 * keyboard input. We don't want responses to be send to that program or
5899 * handled as typed text.
5900 */
5901 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005902check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903{
5904 int c;
5905
5906 /* If no codes requested or all are answered, no need to wait. */
5907 if (xt_index_out == 0 || xt_index_out == xt_index_in)
5908 return;
5909
5910 /* Vgetc() will check for and handle any response.
5911 * Keep calling vpeekc() until we don't get any responses. */
5912 ++no_mapping;
5913 ++allow_keys;
5914 for (;;)
5915 {
5916 c = vpeekc();
5917 if (c == NUL) /* nothing available */
5918 break;
5919
5920 /* If a response is recognized it's replaced with K_IGNORE, must read
5921 * it from the input stream. If there is no K_IGNORE we can't do
5922 * anything, break here (there might be some responses further on, but
5923 * we don't want to throw away any typed chars). */
5924 if (c != K_SPECIAL && c != K_IGNORE)
5925 break;
5926 c = vgetc();
5927 if (c != K_IGNORE)
5928 {
5929 vungetc(c);
5930 break;
5931 }
5932 }
5933 --no_mapping;
5934 --allow_keys;
5935}
5936#endif
5937
5938#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5939/*
5940 * Translate an internal mapping/abbreviation representation into the
5941 * corresponding external one recognized by :map/:abbrev commands;
5942 * respects the current B/k/< settings of 'cpoption'.
5943 *
5944 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00005945 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 *
5947 * It uses a growarray to build the translation string since the
5948 * latter can be wider than the original description. The caller has to
5949 * free the string afterwards.
5950 *
5951 * Returns NULL when there is a problem.
5952 */
5953 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005954translate_mapping(
5955 char_u *str,
5956 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957{
5958 garray_T ga;
5959 int c;
5960 int modifiers;
5961 int cpo_bslash;
5962 int cpo_special;
5963 int cpo_keycode;
5964
5965 ga_init(&ga);
5966 ga.ga_itemsize = 1;
5967 ga.ga_growsize = 40;
5968
5969 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
5970 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
5971 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5972
5973 for (; *str; ++str)
5974 {
5975 c = *str;
5976 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
5977 {
5978 modifiers = 0;
5979 if (str[1] == KS_MODIFIER)
5980 {
5981 str++;
5982 modifiers = *++str;
5983 c = *++str;
5984 }
5985 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
5986 {
5987 int i;
5988
5989 /* try to find special key in termcodes */
5990 for (i = 0; i < tc_len; ++i)
5991 if (termcodes[i].name[0] == str[1]
5992 && termcodes[i].name[1] == str[2])
5993 break;
5994 if (i < tc_len)
5995 {
5996 ga_concat(&ga, termcodes[i].code);
5997 str += 2;
5998 continue; /* for (str) */
5999 }
6000 }
6001 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6002 {
6003 if (expmap && cpo_special)
6004 {
6005 ga_clear(&ga);
6006 return NULL;
6007 }
6008 c = TO_SPECIAL(str[1], str[2]);
6009 if (c == K_ZERO) /* display <Nul> as ^@ */
6010 c = NUL;
6011 str += 2;
6012 }
6013 if (IS_SPECIAL(c) || modifiers) /* special key */
6014 {
6015 if (expmap && cpo_special)
6016 {
6017 ga_clear(&ga);
6018 return NULL;
6019 }
6020 ga_concat(&ga, get_special_key_name(c, modifiers));
6021 continue; /* for (str) */
6022 }
6023 }
6024 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6025 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6026 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6027 if (c)
6028 ga_append(&ga, c);
6029 }
6030 ga_append(&ga, NUL);
6031 return (char_u *)(ga.ga_data);
6032}
6033#endif
6034
6035#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6036static char ksme_str[20];
6037static char ksmr_str[20];
6038static char ksmd_str[20];
6039
6040/*
6041 * For Win32 console: update termcap codes for existing console attributes.
6042 */
6043 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006044update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045{
6046 struct builtin_term *p;
6047
6048 p = find_builtin_term(DEFAULT_TERM);
6049 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6050 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6051 attr | 0x08); /* FOREGROUND_INTENSITY */
6052 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6053 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6054
6055 while (p->bt_string != NULL)
6056 {
6057 if (p->bt_entry == (int)KS_ME)
6058 p->bt_string = &ksme_str[0];
6059 else if (p->bt_entry == (int)KS_MR)
6060 p->bt_string = &ksmr_str[0];
6061 else if (p->bt_entry == (int)KS_MD)
6062 p->bt_string = &ksmd_str[0];
6063 ++p;
6064 }
6065}
6066#endif
Bram Moolenaarab302212016-04-26 20:59:29 +02006067
Bram Moolenaar61be73b2016-04-29 22:59:22 +02006068#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
Bram Moolenaarab302212016-04-26 20:59:29 +02006069 static int
6070hex_digit(int c)
6071{
6072 if (isdigit(c))
6073 return c - '0';
6074 c = TOLOWER_ASC(c);
6075 if (c >= 'a' && c <= 'f')
6076 return c - 'a' + 10;
6077 return 0x1ffffff;
6078}
6079
6080 guicolor_T
6081gui_get_color_cmn(char_u *name)
6082{
Bram Moolenaar28726652017-01-06 18:16:19 +01006083 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
6084 * values as used by the MS-Windows GDI api. It should be used only for
6085 * MS-Windows GDI builds. */
6086# if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI)
6087# undef RGB
6088# endif
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006089# ifndef RGB
6090# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
6091# endif
6092# define LINE_LEN 100
Bram Moolenaarab302212016-04-26 20:59:29 +02006093 FILE *fd;
6094 char line[LINE_LEN];
6095 char_u *fname;
6096 int r, g, b, i;
6097 guicolor_T color;
6098
6099 struct rgbcolor_table_S {
6100 char_u *color_name;
6101 guicolor_T color;
6102 };
6103
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006104 /* Only non X11 colors (not present in rgb.txt) and colors in
6105 * color_names[], useful when $VIMRUNTIME is not found,. */
Bram Moolenaarab302212016-04-26 20:59:29 +02006106 static struct rgbcolor_table_S rgb_table[] = {
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006107 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
6108 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)},
6109 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)},
6110 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)},
6111 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)},
6112 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)},
6113 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)},
6114 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)},
6115 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)},
6116 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)},
6117 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
6118 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */
6119 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006120 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)},
6121 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)},
Bram Moolenaar21477462016-08-08 20:43:27 +02006122 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006123 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006124 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)},
6125 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)},
6126 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)},
6127 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)},
6128 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
6129 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */
6130 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */
6131 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)},
6132 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006133 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)},
Bram Moolenaarca8942c2016-07-19 23:36:31 +02006134 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006135 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
6136 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)},
Bram Moolenaarab302212016-04-26 20:59:29 +02006137 };
6138
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006139 static struct rgbcolor_table_S *colornames_table;
6140 static int size = 0;
Bram Moolenaarab302212016-04-26 20:59:29 +02006141
6142 if (name[0] == '#' && STRLEN(name) == 7)
6143 {
6144 /* Name is in "#rrggbb" format */
Bram Moolenaar283ee8b2016-04-27 20:36:31 +02006145 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])),
Bram Moolenaarab302212016-04-26 20:59:29 +02006146 ((hex_digit(name[3]) << 4) + hex_digit(name[4])),
6147 ((hex_digit(name[5]) << 4) + hex_digit(name[6])));
6148 if (color > 0xffffff)
6149 return INVALCOLOR;
6150 return color;
6151 }
6152
6153 /* Check if the name is one of the colors we know */
6154 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
6155 if (STRICMP(name, rgb_table[i].color_name) == 0)
6156 return rgb_table[i].color;
6157
6158 /*
6159 * Last attempt. Look in the file "$VIM/rgb.txt".
6160 */
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006161 if (size == 0)
Bram Moolenaarab302212016-04-26 20:59:29 +02006162 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006163 int counting;
Bram Moolenaarab302212016-04-26 20:59:29 +02006164
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006165 /* colornames_table not yet initialized */
6166 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
6167 if (fname == NULL)
6168 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006169
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006170 fd = fopen((char *)fname, "rt");
6171 vim_free(fname);
6172 if (fd == NULL)
Bram Moolenaarab302212016-04-26 20:59:29 +02006173 {
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006174 if (p_verbose > 1)
6175 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt"));
6176 return INVALCOLOR;
Bram Moolenaarab302212016-04-26 20:59:29 +02006177 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006178
6179 for (counting = 1; counting >= 0; --counting)
6180 {
6181 if (!counting)
6182 {
6183 colornames_table = (struct rgbcolor_table_S *)alloc(
6184 (unsigned)(sizeof(struct rgbcolor_table_S) * size));
6185 if (colornames_table == NULL)
6186 {
6187 fclose(fd);
6188 return INVALCOLOR;
6189 }
6190 rewind(fd);
6191 }
6192 size = 0;
6193
6194 while (!feof(fd))
6195 {
6196 size_t len;
6197 int pos;
6198
6199 ignoredp = fgets(line, LINE_LEN, fd);
6200 len = strlen(line);
6201
6202 if (len <= 1 || line[len - 1] != '\n')
6203 continue;
6204
6205 line[len - 1] = '\0';
6206
6207 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
6208 if (i != 3)
6209 continue;
6210
6211 if (!counting)
6212 {
6213 char_u *s = vim_strsave((char_u *)line + pos);
6214
6215 if (s == NULL)
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006216 {
6217 fclose(fd);
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006218 return INVALCOLOR;
Bram Moolenaar2e45d212016-07-22 22:12:38 +02006219 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006220 colornames_table[size].color_name = s;
6221 colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6222 }
6223 size++;
6224 }
6225 }
6226 fclose(fd);
Bram Moolenaarab302212016-04-26 20:59:29 +02006227 }
Bram Moolenaar68015bb2016-07-19 21:05:21 +02006228
6229 for (i = 0; i < size; i++)
6230 if (STRICMP(name, colornames_table[i].color_name) == 0)
6231 return colornames_table[i].color;
6232
Bram Moolenaarab302212016-04-26 20:59:29 +02006233 return INVALCOLOR;
6234}
6235#endif