blob: 059aed729898d95d9f91425eb205e43ca0cc1085 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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);
Bram Moolenaar8a633e32016-04-21 21:10:14 +020080#ifdef FEAT_TERMTRUECOLOR
81static void term_rgb_color(char_u *s, long_u rgb);
82#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010083static void gather_termleader(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010085static void req_codes_from_term(void);
86static void req_more_codes_from_term(void);
87static void got_code_from_term(char_u *code, int len);
88static void check_for_codes_from_term(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000091 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
92 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010093static int get_bytes_from_buf(char_u *, char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010095static void del_termcode_idx(int idx);
96static int term_is_builtin(char_u *name);
97static int term_7to8bit(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#ifdef FEAT_TERMRESPONSE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010099static void switch_to_8bit(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#endif
101
102#ifdef HAVE_TGETENT
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100103static char_u *tgetent_error(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104
105/*
106 * Here is our own prototype for tgetstr(), any prototypes from the include
107 * files have been disabled by the define at the start of this file.
108 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100109char *tgetstr(char *, char **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110
111# ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +0200112 /* Change this to "if 1" to debug what happens with termresponse. */
113# if 0
114# define DEBUG_TERMRESPONSE
115 static void log_tr(char *msg);
116# define LOG_TR(msg) log_tr(msg)
117# else
118# define LOG_TR(msg)
119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120/* Request Terminal Version status: */
121# define CRV_GET 1 /* send T_CRV when switched to RAW mode */
122# define CRV_SENT 2 /* did send T_CRV, waiting for answer */
123# define CRV_GOT 3 /* received T_CRV response */
124static int crv_status = CRV_GET;
Bram Moolenaar9584b312013-03-13 19:29:28 +0100125/* Request Cursor position report: */
126# define U7_GET 1 /* send T_U7 when switched to RAW mode */
127# define U7_SENT 2 /* did send T_U7, waiting for answer */
128# define U7_GOT 3 /* received T_U7 response */
129static int u7_status = U7_GET;
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200130/* Request background color report: */
131# define RBG_GET 1 /* send T_RBG when switched to RAW mode */
132# define RBG_SENT 2 /* did send T_RBG, waiting for answer */
133# define RBG_GOT 3 /* received T_RBG response */
134static int rbg_status = RBG_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135# endif
136
137/*
138 * Don't declare these variables if termcap.h contains them.
139 * Autoconf checks if these variables should be declared extern (not all
140 * systems have them).
141 * Some versions define ospeed to be speed_t, but that is incompatible with
142 * BSD, where ospeed is short and speed_t is long.
143 */
144# ifndef HAVE_OSPEED
145# ifdef OSPEED_EXTERN
146extern short ospeed;
147# else
148short ospeed;
149# endif
150# endif
151# ifndef HAVE_UP_BC_PC
152# ifdef UP_BC_PC_EXTERN
153extern char *UP, *BC, PC;
154# else
155char *UP, *BC, PC;
156# endif
157# endif
158
159# define TGETSTR(s, p) vim_tgetstr((s), (p))
160# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100161static char_u *vim_tgetstr(char *s, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162#endif /* HAVE_TGETENT */
163
164static int detected_8bit = FALSE; /* detected 8-bit terminal */
165
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000166static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167{
168
169#if defined(FEAT_GUI)
170/*
171 * GUI pseudo term-cap.
172 */
173 {(int)KS_NAME, "gui"},
174 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
175 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
176# ifdef TERMINFO
177 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
178# else
179 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
180# endif
181 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
182# ifdef TERMINFO
183 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
184 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100185# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
187# endif
188# else
189 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
190 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100191# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
193# endif
194# endif
195 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
196 /* attributes switched on with 'h', off with * 'H' */
197 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
198 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
199 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
200 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
201 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
202 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
203 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000204 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
205 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
207 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
208 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
209 {(int)KS_MS, "y"},
210 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100211 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {(int)KS_LE, "\b"}, /* cursor-left = BS */
213 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
214# ifdef TERMINFO
215 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
216# else
217 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
218# endif
219 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000220 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221#endif
222
223#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224
225# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
226/*
227 * Amiga console window, default for Amiga
228 */
229 {(int)KS_NAME, "amiga"},
230 {(int)KS_CE, "\033[K"},
231 {(int)KS_CD, "\033[J"},
232 {(int)KS_AL, "\033[L"},
233# ifdef TERMINFO
234 {(int)KS_CAL, "\033[%p1%dL"},
235# else
236 {(int)KS_CAL, "\033[%dL"},
237# endif
238 {(int)KS_DL, "\033[M"},
239# ifdef TERMINFO
240 {(int)KS_CDL, "\033[%p1%dM"},
241# else
242 {(int)KS_CDL, "\033[%dM"},
243# endif
244 {(int)KS_CL, "\014"},
245 {(int)KS_VI, "\033[0 p"},
246 {(int)KS_VE, "\033[1 p"},
247 {(int)KS_ME, "\033[0m"},
248 {(int)KS_MR, "\033[7m"},
249 {(int)KS_MD, "\033[1m"},
250 {(int)KS_SE, "\033[0m"},
251 {(int)KS_SO, "\033[33m"},
252 {(int)KS_US, "\033[4m"},
253 {(int)KS_UE, "\033[0m"},
254 {(int)KS_CZH, "\033[3m"},
255 {(int)KS_CZR, "\033[0m"},
256#if defined(__MORPHOS__) || defined(__AROS__)
257 {(int)KS_CCO, "8"}, /* allow 8 colors */
258# ifdef TERMINFO
259 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
260 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
261# else
262 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
263 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
264# endif
265 {(int)KS_OP, "\033[m"}, /* reset colors */
266#endif
267 {(int)KS_MS, "y"},
268 {(int)KS_UT, "y"}, /* guessed */
269 {(int)KS_LE, "\b"},
270# ifdef TERMINFO
271 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
272# else
273 {(int)KS_CM, "\033[%i%d;%dH"},
274# endif
275#if defined(__MORPHOS__)
276 {(int)KS_SR, "\033M"},
277#endif
278# ifdef TERMINFO
279 {(int)KS_CRI, "\033[%p1%dC"},
280# else
281 {(int)KS_CRI, "\033[%dC"},
282# endif
283 {K_UP, "\233A"},
284 {K_DOWN, "\233B"},
285 {K_LEFT, "\233D"},
286 {K_RIGHT, "\233C"},
287 {K_S_UP, "\233T"},
288 {K_S_DOWN, "\233S"},
289 {K_S_LEFT, "\233 A"},
290 {K_S_RIGHT, "\233 @"},
291 {K_S_TAB, "\233Z"},
292 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
293 {K_F2, "\233\061~"},
294 {K_F3, "\233\062~"},
295 {K_F4, "\233\063~"},
296 {K_F5, "\233\064~"},
297 {K_F6, "\233\065~"},
298 {K_F7, "\233\066~"},
299 {K_F8, "\233\067~"},
300 {K_F9, "\233\070~"},
301 {K_F10, "\233\071~"},
302 {K_S_F1, "\233\061\060~"},
303 {K_S_F2, "\233\061\061~"},
304 {K_S_F3, "\233\061\062~"},
305 {K_S_F4, "\233\061\063~"},
306 {K_S_F5, "\233\061\064~"},
307 {K_S_F6, "\233\061\065~"},
308 {K_S_F7, "\233\061\066~"},
309 {K_S_F8, "\233\061\067~"},
310 {K_S_F9, "\233\061\070~"},
311 {K_S_F10, "\233\061\071~"},
312 {K_HELP, "\233?~"},
313 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
314 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
315 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
316 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
317 {K_END, "\233\064\065~"}, /* 101 key keyboard */
318
319 {BT_EXTRA_KEYS, ""},
320 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
321 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
322 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
323# endif
324
325# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
326/*
327 * almost standard ANSI terminal, default for bebox
328 */
329 {(int)KS_NAME, "beos-ansi"},
330 {(int)KS_CE, "\033[K"},
331 {(int)KS_CD, "\033[J"},
332 {(int)KS_AL, "\033[L"},
333# ifdef TERMINFO
334 {(int)KS_CAL, "\033[%p1%dL"},
335# else
336 {(int)KS_CAL, "\033[%dL"},
337# endif
338 {(int)KS_DL, "\033[M"},
339# ifdef TERMINFO
340 {(int)KS_CDL, "\033[%p1%dM"},
341# else
342 {(int)KS_CDL, "\033[%dM"},
343# endif
344#ifdef BEOS_PR_OR_BETTER
345# ifdef TERMINFO
346 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
347# else
348 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
349# endif
350#endif
351 {(int)KS_CL, "\033[H\033[2J"},
352#ifdef notyet
353 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
354 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
355#endif
356 {(int)KS_ME, "\033[m"}, /* normal mode */
357 {(int)KS_MR, "\033[7m"}, /* reverse */
358 {(int)KS_MD, "\033[1m"}, /* bold */
359 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
360 {(int)KS_SE, "\033[m"}, /* standout end */
361 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
362 {(int)KS_CZR, "\033[m"}, /* italic end */
363 {(int)KS_US, "\033[4m"}, /* underscore mode */
364 {(int)KS_UE, "\033[m"}, /* underscore end */
365 {(int)KS_CCO, "8"}, /* allow 8 colors */
366# ifdef TERMINFO
367 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
368 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
369# else
370 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
371 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
372# endif
373 {(int)KS_OP, "\033[m"}, /* reset colors */
374 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
375 {(int)KS_UT, "y"}, /* guessed */
376 {(int)KS_LE, "\b"},
377# ifdef TERMINFO
378 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
379# else
380 {(int)KS_CM, "\033[%i%d;%dH"},
381# endif
382 {(int)KS_SR, "\033M"},
383# ifdef TERMINFO
384 {(int)KS_CRI, "\033[%p1%dC"},
385# else
386 {(int)KS_CRI, "\033[%dC"},
387# endif
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200388# if defined(BEOS_DR8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 {(int)KS_DB, ""}, /* hack! see screen.c */
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200390# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391
392 {K_UP, "\033[A"},
393 {K_DOWN, "\033[B"},
394 {K_LEFT, "\033[D"},
395 {K_RIGHT, "\033[C"},
396# endif
397
398# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__)
399/*
400 * standard ANSI terminal, default for unix
401 */
402 {(int)KS_NAME, "ansi"},
403 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
404 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
405# ifdef TERMINFO
406 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
407# else
408 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
409# endif
410 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
411# ifdef TERMINFO
412 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
413# else
414 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
415# endif
416 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
417 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
418 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
419 {(int)KS_MS, "y"},
420 {(int)KS_UT, "y"}, /* guessed */
421 {(int)KS_LE, "\b"},
422# ifdef TERMINFO
423 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
424# else
425 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
426# endif
427# ifdef TERMINFO
428 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
429# else
430 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
431# endif
432# endif
433
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100434# if defined(ALL_BUILTIN_TCAPS) || defined(__EMX__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435/*
436 * These codes are valid when nansi.sys or equivalent has been installed.
437 * Function keys on a PC are preceded with a NUL. These are converted into
438 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
439 * CTRL-arrow is used instead of SHIFT-arrow.
440 */
441#ifdef __EMX__
442 {(int)KS_NAME, "os2ansi"},
443#else
444 {(int)KS_NAME, "pcansi"},
445 {(int)KS_DL, "\033[M"},
446 {(int)KS_AL, "\033[L"},
447#endif
448 {(int)KS_CE, "\033[K"},
449 {(int)KS_CL, "\033[2J"},
450 {(int)KS_ME, "\033[0m"},
451 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
452 {(int)KS_MD, "\033[1m"}, /* bold: white text */
453 {(int)KS_SE, "\033[0m"}, /* standout end */
454 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
455 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
456 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
457 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
458 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
459 {(int)KS_CCO, "8"}, /* allow 8 colors */
460# ifdef TERMINFO
461 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
462 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
463# else
464 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
465 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
466# endif
467 {(int)KS_OP, "\033[0m"}, /* reset colors */
468 {(int)KS_MS, "y"},
469 {(int)KS_UT, "y"}, /* guessed */
470 {(int)KS_LE, "\b"},
471# ifdef TERMINFO
472 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
473# else
474 {(int)KS_CM, "\033[%i%d;%dH"},
475# endif
476# ifdef TERMINFO
477 {(int)KS_CRI, "\033[%p1%dC"},
478# else
479 {(int)KS_CRI, "\033[%dC"},
480# endif
481 {K_UP, "\316H"},
482 {K_DOWN, "\316P"},
483 {K_LEFT, "\316K"},
484 {K_RIGHT, "\316M"},
485 {K_S_LEFT, "\316s"},
486 {K_S_RIGHT, "\316t"},
487 {K_F1, "\316;"},
488 {K_F2, "\316<"},
489 {K_F3, "\316="},
490 {K_F4, "\316>"},
491 {K_F5, "\316?"},
492 {K_F6, "\316@"},
493 {K_F7, "\316A"},
494 {K_F8, "\316B"},
495 {K_F9, "\316C"},
496 {K_F10, "\316D"},
497 {K_F11, "\316\205"}, /* guessed */
498 {K_F12, "\316\206"}, /* guessed */
499 {K_S_F1, "\316T"},
500 {K_S_F2, "\316U"},
501 {K_S_F3, "\316V"},
502 {K_S_F4, "\316W"},
503 {K_S_F5, "\316X"},
504 {K_S_F6, "\316Y"},
505 {K_S_F7, "\316Z"},
506 {K_S_F8, "\316["},
507 {K_S_F9, "\316\\"},
508 {K_S_F10, "\316]"},
509 {K_S_F11, "\316\207"}, /* guessed */
510 {K_S_F12, "\316\210"}, /* guessed */
511 {K_INS, "\316R"},
512 {K_DEL, "\316S"},
513 {K_HOME, "\316G"},
514 {K_END, "\316O"},
515 {K_PAGEDOWN, "\316Q"},
516 {K_PAGEUP, "\316I"},
517# endif
518
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS) || defined(__EMX__)
520/*
521 * These codes are valid for the Win32 Console . The entries that start with
522 * ESC | are translated into console calls in os_win32.c. The function keys
523 * are also translated in os_win32.c.
524 */
525 {(int)KS_NAME, "win32"},
526 {(int)KS_CE, "\033|K"}, /* clear to end of line */
527 {(int)KS_AL, "\033|L"}, /* add new blank line */
528# ifdef TERMINFO
529 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
530# else
531 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
532# endif
533 {(int)KS_DL, "\033|M"}, /* delete line */
534# ifdef TERMINFO
535 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
536# else
537 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
538# endif
539 {(int)KS_CL, "\033|J"}, /* clear screen */
540 {(int)KS_CD, "\033|j"}, /* clear to end of display */
541 {(int)KS_VI, "\033|v"}, /* cursor invisible */
542 {(int)KS_VE, "\033|V"}, /* cursor visible */
543
544 {(int)KS_ME, "\033|0m"}, /* normal */
545 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
546 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
547#if 1
548 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
549 {(int)KS_SE, "\033|0m"}, /* standout end */
550#else
551 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
552 {(int)KS_SE, "\033|f"}, /* standout end */
553#endif
554 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
555 {(int)KS_CZR, "\033|0m"}, /* italic end */
556 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
557 {(int)KS_UE, "\033|0m"}, /* underscore end */
558 {(int)KS_CCO, "16"}, /* allow 16 colors */
559# ifdef TERMINFO
560 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
561 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
562# else
563 {(int)KS_CAB, "\033|%db"}, /* set background color */
564 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
565# endif
566
567 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
568 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100569 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 {(int)KS_LE, "\b"},
571# ifdef TERMINFO
572 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
573# else
574 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
575# endif
576 {(int)KS_VB, "\033|B"}, /* visual bell */
577 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
578 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
579# ifdef TERMINFO
580 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
581# else
582 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
583# endif
584
585 {K_UP, "\316H"},
586 {K_DOWN, "\316P"},
587 {K_LEFT, "\316K"},
588 {K_RIGHT, "\316M"},
589 {K_S_UP, "\316\304"},
590 {K_S_DOWN, "\316\317"},
591 {K_S_LEFT, "\316\311"},
592 {K_C_LEFT, "\316s"},
593 {K_S_RIGHT, "\316\313"},
594 {K_C_RIGHT, "\316t"},
595 {K_S_TAB, "\316\017"},
596 {K_F1, "\316;"},
597 {K_F2, "\316<"},
598 {K_F3, "\316="},
599 {K_F4, "\316>"},
600 {K_F5, "\316?"},
601 {K_F6, "\316@"},
602 {K_F7, "\316A"},
603 {K_F8, "\316B"},
604 {K_F9, "\316C"},
605 {K_F10, "\316D"},
606 {K_F11, "\316\205"},
607 {K_F12, "\316\206"},
608 {K_S_F1, "\316T"},
609 {K_S_F2, "\316U"},
610 {K_S_F3, "\316V"},
611 {K_S_F4, "\316W"},
612 {K_S_F5, "\316X"},
613 {K_S_F6, "\316Y"},
614 {K_S_F7, "\316Z"},
615 {K_S_F8, "\316["},
616 {K_S_F9, "\316\\"},
617 {K_S_F10, "\316]"},
618 {K_S_F11, "\316\207"},
619 {K_S_F12, "\316\210"},
620 {K_INS, "\316R"},
621 {K_DEL, "\316S"},
622 {K_HOME, "\316G"},
623 {K_S_HOME, "\316\302"},
624 {K_C_HOME, "\316w"},
625 {K_END, "\316O"},
626 {K_S_END, "\316\315"},
627 {K_C_END, "\316u"},
628 {K_PAGEDOWN, "\316Q"},
629 {K_PAGEUP, "\316I"},
630 {K_KPLUS, "\316N"},
631 {K_KMINUS, "\316J"},
632 {K_KMULTIPLY, "\316\067"},
633 {K_K0, "\316\332"},
634 {K_K1, "\316\336"},
635 {K_K2, "\316\342"},
636 {K_K3, "\316\346"},
637 {K_K4, "\316\352"},
638 {K_K5, "\316\356"},
639 {K_K6, "\316\362"},
640 {K_K7, "\316\366"},
641 {K_K8, "\316\372"},
642 {K_K9, "\316\376"},
643# endif
644
645# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
646/*
647 * VT320 is working as an ANSI terminal compatible DEC terminal.
648 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
649 * Note: K_F1...K_F5 are for internal use, should not be defined.
650 * TODO:- rewrite ESC[ codes to CSI
651 * - keyboard languages (CSI ? 26 n)
652 */
653 {(int)KS_NAME, "vt320"},
654 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
655 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
656# ifdef TERMINFO
657 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
658# else
659 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
660# endif
661 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
662# ifdef TERMINFO
663 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
664# else
665 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
666# endif
667 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000668 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
669 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
671 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000672 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
673 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
674 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
675 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
676 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
677 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
678 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
679 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
680 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
681 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 {(int)KS_MS, "y"},
683 {(int)KS_UT, "y"},
Bram Moolenaar494838a2015-02-10 19:20:37 +0100684 {(int)KS_XN, "y"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 {(int)KS_LE, "\b"},
686# ifdef TERMINFO
687 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
688 ESC_STR "[%i%p1%d;%p2%dH")},
689# else
690 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
691# endif
692# ifdef TERMINFO
693 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
694# else
695 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
696# endif
697 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
698 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
699 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
700 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000701 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
702 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
703 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
704 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
705 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
707 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
708 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
709 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
710 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000711 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
713 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
714 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
715 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
716 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
717 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
718 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
719 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
720 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
721 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
722 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
723 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
724 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
725 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
726 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
727 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
728 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
729 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
730 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
731 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
732 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
733# endif
734
735# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
736/*
737 * Ordinary vt52
738 */
739 {(int)KS_NAME, "vt52"},
740 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
741 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100742# ifdef TERMINFO
743 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c",
744 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")},
745# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100747# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 {(int)KS_LE, "\b"},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100749 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
751 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 {K_UP, IF_EB("\033A", ESC_STR "A")},
753 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
754 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
755 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
Bram Moolenaar2a1b4742015-11-24 18:15:51 +0100756 {K_F1, IF_EB("\033P", ESC_STR "P")},
757 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
758 {K_F3, IF_EB("\033R", ESC_STR "R")},
759# ifdef __MINT__
760 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
761 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
762 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
763 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
764 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
766 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
767 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
768 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 {K_F4, IF_EB("\033S", ESC_STR "S")},
770 {K_F5, IF_EB("\033T", ESC_STR "T")},
771 {K_F6, IF_EB("\033U", ESC_STR "U")},
772 {K_F7, IF_EB("\033V", ESC_STR "V")},
773 {K_F8, IF_EB("\033W", ESC_STR "W")},
774 {K_F9, IF_EB("\033X", ESC_STR "X")},
775 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
776 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
777 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
778 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
779 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
780 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
781 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
782 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
783 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
784 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
785 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
786 {K_INS, IF_EB("\033I", ESC_STR "I")},
787 {K_HOME, IF_EB("\033E", ESC_STR "E")},
788 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
789 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
790# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 {(int)KS_MS, "y"},
793# endif
794# endif
795
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200796# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__) || defined(FEAT_TERMTRUECOLOR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {(int)KS_NAME, "xterm"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200798# endif
799# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
801 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
802# ifdef TERMINFO
803 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
804# else
805 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
806# endif
807 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
808# ifdef TERMINFO
809 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
810# else
811 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
812# endif
813# ifdef TERMINFO
814 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
815 ESC_STR "[%i%p1%d;%p2%dr")},
816# else
817 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
818# endif
819 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
820 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
821 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
822 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
823 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
824 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
825 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
826 {(int)KS_MS, "y"},
827 {(int)KS_UT, "y"},
828 {(int)KS_LE, "\b"},
829# ifdef TERMINFO
830 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
831 ESC_STR "[%i%p1%d;%p2%dH")},
832# else
833 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
834# endif
835 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
836# ifdef TERMINFO
837 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
838# else
839 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
840# endif
841 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
842 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
843# ifdef FEAT_XTERM_SAVE
844 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
845 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
846 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
847# endif
848 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
849 {(int)KS_CIE, "\007"},
850 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
851 {(int)KS_FS, "\007"},
852# ifdef TERMINFO
853 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
854 ESC_STR "[8;%p1%d;%p2%dt")},
855 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
856 ESC_STR "[3;%p1%d;%p2%dt")},
857# else
858 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
859 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
860# endif
861 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaarb5c32652015-06-25 17:03:36 +0200862 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100863 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000864
865 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
866 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
867 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
868 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
869 /* An extra set of cursor keys for vt100 mode */
870 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
871 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
872 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
873 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000875 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
876 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
877 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
878 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000879 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
880 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
881 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
882 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
883 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
884 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
885 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
886 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
887 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
888 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
889 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
890 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000892 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
893 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
894 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
895 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000896 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
897 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000898 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000899 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000900 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000901 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000902 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
903 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000904 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000905 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000906 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000907 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
908 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000909 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
910 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
911 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
912 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
913 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
914 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000915 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
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
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200947# ifdef FEAT_TERMTRUECOLOR
948 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")},
949 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")},
950# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951
952# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
953/*
954 * iris-ansi for Silicon Graphics machines.
955 */
956 {(int)KS_NAME, "iris-ansi"},
957 {(int)KS_CE, "\033[K"},
958 {(int)KS_CD, "\033[J"},
959 {(int)KS_AL, "\033[L"},
960# ifdef TERMINFO
961 {(int)KS_CAL, "\033[%p1%dL"},
962# else
963 {(int)KS_CAL, "\033[%dL"},
964# endif
965 {(int)KS_DL, "\033[M"},
966# ifdef TERMINFO
967 {(int)KS_CDL, "\033[%p1%dM"},
968# else
969 {(int)KS_CDL, "\033[%dM"},
970# endif
971#if 0 /* The scroll region is not working as Vim expects. */
972# ifdef TERMINFO
973 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
974# else
975 {(int)KS_CS, "\033[%i%d;%dr"},
976# endif
977#endif
978 {(int)KS_CL, "\033[H\033[2J"},
979 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
980 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
981 {(int)KS_TI, "\033[=6h"},
982 {(int)KS_TE, "\033[=6l"},
983 {(int)KS_SE, "\033[21;27m"},
984 {(int)KS_SO, "\033[1;7m"},
985 {(int)KS_ME, "\033[m"},
986 {(int)KS_MR, "\033[7m"},
987 {(int)KS_MD, "\033[1m"},
988 {(int)KS_CCO, "8"}, /* allow 8 colors */
989 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
990 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
991 {(int)KS_US, "\033[4m"}, /* underline on */
992 {(int)KS_UE, "\033[24m"}, /* underline off */
993# ifdef TERMINFO
994 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
995 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
996 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
997 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
998# else
999 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1000 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1001 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1002 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1003# endif
1004 {(int)KS_MS, "y"}, /* guessed */
1005 {(int)KS_UT, "y"}, /* guessed */
1006 {(int)KS_LE, "\b"},
1007# ifdef TERMINFO
1008 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1009# else
1010 {(int)KS_CM, "\033[%i%d;%dH"},
1011# endif
1012 {(int)KS_SR, "\033M"},
1013# ifdef TERMINFO
1014 {(int)KS_CRI, "\033[%p1%dC"},
1015# else
1016 {(int)KS_CRI, "\033[%dC"},
1017# endif
1018 {(int)KS_CIS, "\033P3.y"},
1019 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1020 {(int)KS_TS, "\033P1.y"},
1021 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1022# ifdef TERMINFO
1023 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1024 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1025# else
1026 {(int)KS_CWS, "\033[203;%d;%d/y"},
1027 {(int)KS_CWP, "\033[205;%d;%d/y"},
1028# endif
1029 {K_UP, "\033[A"},
1030 {K_DOWN, "\033[B"},
1031 {K_LEFT, "\033[D"},
1032 {K_RIGHT, "\033[C"},
1033 {K_S_UP, "\033[161q"},
1034 {K_S_DOWN, "\033[164q"},
1035 {K_S_LEFT, "\033[158q"},
1036 {K_S_RIGHT, "\033[167q"},
1037 {K_F1, "\033[001q"},
1038 {K_F2, "\033[002q"},
1039 {K_F3, "\033[003q"},
1040 {K_F4, "\033[004q"},
1041 {K_F5, "\033[005q"},
1042 {K_F6, "\033[006q"},
1043 {K_F7, "\033[007q"},
1044 {K_F8, "\033[008q"},
1045 {K_F9, "\033[009q"},
1046 {K_F10, "\033[010q"},
1047 {K_F11, "\033[011q"},
1048 {K_F12, "\033[012q"},
1049 {K_S_F1, "\033[013q"},
1050 {K_S_F2, "\033[014q"},
1051 {K_S_F3, "\033[015q"},
1052 {K_S_F4, "\033[016q"},
1053 {K_S_F5, "\033[017q"},
1054 {K_S_F6, "\033[018q"},
1055 {K_S_F7, "\033[019q"},
1056 {K_S_F8, "\033[020q"},
1057 {K_S_F9, "\033[021q"},
1058 {K_S_F10, "\033[022q"},
1059 {K_S_F11, "\033[023q"},
1060 {K_S_F12, "\033[024q"},
1061 {K_INS, "\033[139q"},
1062 {K_HOME, "\033[H"},
1063 {K_END, "\033[146q"},
1064 {K_PAGEUP, "\033[150q"},
1065 {K_PAGEDOWN, "\033[154q"},
1066# endif
1067
1068# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1069/*
1070 * for debugging
1071 */
1072 {(int)KS_NAME, "debug"},
1073 {(int)KS_CE, "[CE]"},
1074 {(int)KS_CD, "[CD]"},
1075 {(int)KS_AL, "[AL]"},
1076# ifdef TERMINFO
1077 {(int)KS_CAL, "[CAL%p1%d]"},
1078# else
1079 {(int)KS_CAL, "[CAL%d]"},
1080# endif
1081 {(int)KS_DL, "[DL]"},
1082# ifdef TERMINFO
1083 {(int)KS_CDL, "[CDL%p1%d]"},
1084# else
1085 {(int)KS_CDL, "[CDL%d]"},
1086# endif
1087# ifdef TERMINFO
1088 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1089# else
1090 {(int)KS_CS, "[%dCS%d]"},
1091# endif
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001092# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093# ifdef TERMINFO
1094 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
1095# else
1096 {(int)KS_CSV, "[%dCSV%d]"},
1097# endif
1098# endif
1099# ifdef TERMINFO
1100 {(int)KS_CAB, "[CAB%p1%d]"},
1101 {(int)KS_CAF, "[CAF%p1%d]"},
1102 {(int)KS_CSB, "[CSB%p1%d]"},
1103 {(int)KS_CSF, "[CSF%p1%d]"},
1104# else
1105 {(int)KS_CAB, "[CAB%d]"},
1106 {(int)KS_CAF, "[CAF%d]"},
1107 {(int)KS_CSB, "[CSB%d]"},
1108 {(int)KS_CSF, "[CSF%d]"},
1109# endif
1110 {(int)KS_OP, "[OP]"},
1111 {(int)KS_LE, "[LE]"},
1112 {(int)KS_CL, "[CL]"},
1113 {(int)KS_VI, "[VI]"},
1114 {(int)KS_VE, "[VE]"},
1115 {(int)KS_VS, "[VS]"},
1116 {(int)KS_ME, "[ME]"},
1117 {(int)KS_MR, "[MR]"},
1118 {(int)KS_MB, "[MB]"},
1119 {(int)KS_MD, "[MD]"},
1120 {(int)KS_SE, "[SE]"},
1121 {(int)KS_SO, "[SO]"},
1122 {(int)KS_UE, "[UE]"},
1123 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001124 {(int)KS_UCE, "[UCE]"},
1125 {(int)KS_UCS, "[UCS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 {(int)KS_MS, "[MS]"},
1127 {(int)KS_UT, "[UT]"},
Bram Moolenaar494838a2015-02-10 19:20:37 +01001128 {(int)KS_XN, "[XN]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129# ifdef TERMINFO
1130 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1131# else
1132 {(int)KS_CM, "[%dCM%d]"},
1133# endif
1134 {(int)KS_SR, "[SR]"},
1135# ifdef TERMINFO
1136 {(int)KS_CRI, "[CRI%p1%d]"},
1137# else
1138 {(int)KS_CRI, "[CRI%d]"},
1139# endif
1140 {(int)KS_VB, "[VB]"},
1141 {(int)KS_KS, "[KS]"},
1142 {(int)KS_KE, "[KE]"},
1143 {(int)KS_TI, "[TI]"},
1144 {(int)KS_TE, "[TE]"},
1145 {(int)KS_CIS, "[CIS]"},
1146 {(int)KS_CIE, "[CIE]"},
1147 {(int)KS_TS, "[TS]"},
1148 {(int)KS_FS, "[FS]"},
1149# ifdef TERMINFO
1150 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1151 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1152# else
1153 {(int)KS_CWS, "[%dCWS%d]"},
1154 {(int)KS_CWP, "[%dCWP%d]"},
1155# endif
1156 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001157 {(int)KS_U7, "[U7]"},
Bram Moolenaarb5c32652015-06-25 17:03:36 +02001158 {(int)KS_RBG, "[RBG]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 {K_UP, "[KU]"},
1160 {K_DOWN, "[KD]"},
1161 {K_LEFT, "[KL]"},
1162 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001163 {K_XUP, "[xKU]"},
1164 {K_XDOWN, "[xKD]"},
1165 {K_XLEFT, "[xKL]"},
1166 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 {K_S_UP, "[S-KU]"},
1168 {K_S_DOWN, "[S-KD]"},
1169 {K_S_LEFT, "[S-KL]"},
1170 {K_C_LEFT, "[C-KL]"},
1171 {K_S_RIGHT, "[S-KR]"},
1172 {K_C_RIGHT, "[C-KR]"},
1173 {K_F1, "[F1]"},
1174 {K_XF1, "[xF1]"},
1175 {K_F2, "[F2]"},
1176 {K_XF2, "[xF2]"},
1177 {K_F3, "[F3]"},
1178 {K_XF3, "[xF3]"},
1179 {K_F4, "[F4]"},
1180 {K_XF4, "[xF4]"},
1181 {K_F5, "[F5]"},
1182 {K_F6, "[F6]"},
1183 {K_F7, "[F7]"},
1184 {K_F8, "[F8]"},
1185 {K_F9, "[F9]"},
1186 {K_F10, "[F10]"},
1187 {K_F11, "[F11]"},
1188 {K_F12, "[F12]"},
1189 {K_S_F1, "[S-F1]"},
1190 {K_S_XF1, "[S-xF1]"},
1191 {K_S_F2, "[S-F2]"},
1192 {K_S_XF2, "[S-xF2]"},
1193 {K_S_F3, "[S-F3]"},
1194 {K_S_XF3, "[S-xF3]"},
1195 {K_S_F4, "[S-F4]"},
1196 {K_S_XF4, "[S-xF4]"},
1197 {K_S_F5, "[S-F5]"},
1198 {K_S_F6, "[S-F6]"},
1199 {K_S_F7, "[S-F7]"},
1200 {K_S_F8, "[S-F8]"},
1201 {K_S_F9, "[S-F9]"},
1202 {K_S_F10, "[S-F10]"},
1203 {K_S_F11, "[S-F11]"},
1204 {K_S_F12, "[S-F12]"},
1205 {K_HELP, "[HELP]"},
1206 {K_UNDO, "[UNDO]"},
1207 {K_BS, "[BS]"},
1208 {K_INS, "[INS]"},
1209 {K_KINS, "[KINS]"},
1210 {K_DEL, "[DEL]"},
1211 {K_KDEL, "[KDEL]"},
1212 {K_HOME, "[HOME]"},
1213 {K_S_HOME, "[C-HOME]"},
1214 {K_C_HOME, "[C-HOME]"},
1215 {K_KHOME, "[KHOME]"},
1216 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001217 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 {K_END, "[END]"},
1219 {K_S_END, "[C-END]"},
1220 {K_C_END, "[C-END]"},
1221 {K_KEND, "[KEND]"},
1222 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001223 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 {K_PAGEUP, "[PAGEUP]"},
1225 {K_PAGEDOWN, "[PAGEDOWN]"},
1226 {K_KPAGEUP, "[KPAGEUP]"},
1227 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1228 {K_MOUSE, "[MOUSE]"},
1229 {K_KPLUS, "[KPLUS]"},
1230 {K_KMINUS, "[KMINUS]"},
1231 {K_KDIVIDE, "[KDIVIDE]"},
1232 {K_KMULTIPLY, "[KMULTIPLY]"},
1233 {K_KENTER, "[KENTER]"},
1234 {K_KPOINT, "[KPOINT]"},
1235 {K_K0, "[K0]"},
1236 {K_K1, "[K1]"},
1237 {K_K2, "[K2]"},
1238 {K_K3, "[K3]"},
1239 {K_K4, "[K4]"},
1240 {K_K5, "[K5]"},
1241 {K_K6, "[K6]"},
1242 {K_K7, "[K7]"},
1243 {K_K8, "[K8]"},
1244 {K_K9, "[K9]"},
1245# endif
1246
1247#endif /* NO_BUILTIN_TCAPS */
1248
1249/*
1250 * The most minimal terminal: only clear screen and cursor positioning
1251 * Always included.
1252 */
1253 {(int)KS_NAME, "dumb"},
1254 {(int)KS_CL, "\014"},
1255#ifdef TERMINFO
1256 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1257 ESC_STR "[%i%p1%d;%p2%dH")},
1258#else
1259 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1260#endif
1261
1262/*
1263 * end marker
1264 */
1265 {(int)KS_NAME, NULL}
1266
1267}; /* end of builtin_termcaps */
1268
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001269#if defined(FEAT_TERMTRUECOLOR) || defined(PROTO)
1270# define RGB(r, g, b) ((r<<16) | (g<<8) | (b))
1271struct rgbcolor_table_S {
1272 char_u *color_name;
1273 guicolor_T color;
1274};
Bram Moolenaar380130f2016-04-22 11:24:43 +02001275
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001276static struct rgbcolor_table_S rgb_table[] = {
1277 {(char_u *)"black", RGB(0x00, 0x00, 0x00)},
1278 {(char_u *)"blue", RGB(0x00, 0x00, 0xD4)},
1279 {(char_u *)"brown", RGB(0x80, 0x40, 0x40)},
1280 {(char_u *)"cyan", RGB(0x02, 0xAB, 0xEA)},
1281 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x80)},
1282 {(char_u *)"darkcyan", RGB(0x00, 0x80, 0x80)},
1283 {(char_u *)"darkgray", RGB(0x80, 0x80, 0x80)},
1284 {(char_u *)"darkgreen", RGB(0x00, 0x80, 0x00)},
1285 {(char_u *)"darkgrey", RGB(0x80, 0x80, 0x80)},
1286 {(char_u *)"darkmagenta", RGB(0x80, 0x00, 0x80)},
1287 {(char_u *)"darkred", RGB(0x80, 0x00, 0x00)},
1288 {(char_u *)"darkyellow", RGB(0xBB, 0xBB, 0x00)},
1289 {(char_u *)"gray", RGB(0xC0, 0xC0, 0xC0)},
1290 {(char_u *)"gray10", RGB(0x1A, 0x1A, 0x1A)},
1291 {(char_u *)"gray20", RGB(0x33, 0x33, 0x33)},
1292 {(char_u *)"gray30", RGB(0x4D, 0x4D, 0x4D)},
1293 {(char_u *)"gray40", RGB(0x66, 0x66, 0x66)},
1294 {(char_u *)"gray50", RGB(0x7F, 0x7F, 0x7F)},
1295 {(char_u *)"gray60", RGB(0x99, 0x99, 0x99)},
1296 {(char_u *)"gray70", RGB(0xB3, 0xB3, 0xB3)},
1297 {(char_u *)"gray80", RGB(0xCC, 0xCC, 0xCC)},
1298 {(char_u *)"gray90", RGB(0xE5, 0xE5, 0xE5)},
1299 {(char_u *)"green", RGB(0x00, 0x64, 0x11)},
1300 {(char_u *)"grey", RGB(0xC0, 0xC0, 0xC0)},
1301 {(char_u *)"grey10", RGB(0x1A, 0x1A, 0x1A)},
1302 {(char_u *)"grey20", RGB(0x33, 0x33, 0x33)},
1303 {(char_u *)"grey30", RGB(0x4D, 0x4D, 0x4D)},
1304 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
1305 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
1306 {(char_u *)"grey60", RGB(0x99, 0x99, 0x99)},
1307 {(char_u *)"grey70", RGB(0xB3, 0xB3, 0xB3)},
1308 {(char_u *)"grey80", RGB(0xCC, 0xCC, 0xCC)},
1309 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)},
1310 {(char_u *)"lightblue", RGB(0xA0, 0xA0, 0xFF)},
1311 {(char_u *)"lightcyan", RGB(0xA0, 0xFF, 0xFF)},
1312 {(char_u *)"lightgray", RGB(0xE0, 0xE0, 0xE0)},
1313 {(char_u *)"lightgreen", RGB(0xA0, 0xFF, 0xA0)},
1314 {(char_u *)"lightgrey", RGB(0xE0, 0xE0, 0xE0)},
1315 {(char_u *)"lightmagenta",RGB(0xF0, 0xA0, 0xF0)},
1316 {(char_u *)"lightred", RGB(0xFF, 0xA0, 0xA0)},
1317 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xA0)},
1318 {(char_u *)"magenta", RGB(0xF2, 0x08, 0x84)},
1319 {(char_u *)"orange", RGB(0xFC, 0x80, 0x00)},
1320 {(char_u *)"purple", RGB(0xA0, 0x20, 0xF0)},
1321 {(char_u *)"red", RGB(0xDD, 0x08, 0x06)},
1322 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)},
1323 {(char_u *)"slateblue", RGB(0x6A, 0x5A, 0xCD)},
1324 {(char_u *)"violet", RGB(0x8D, 0x38, 0xC9)},
1325 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)},
1326 {(char_u *)"yellow", RGB(0xFC, 0xF3, 0x05)},
1327};
1328
1329 static int
1330hex_digit(int c)
1331{
1332 if (isdigit(c))
1333 return c - '0';
1334 c = TOLOWER_ASC(c);
1335 if (c >= 'a' && c <= 'f')
1336 return c - 'a' + 10;
1337 return 0x1ffffff;
1338}
1339
1340 guicolor_T
1341termtrue_mch_get_color(char_u *name)
1342{
1343 guicolor_T color;
1344 int i;
1345
1346 if (*name == '#' && strlen((char *) name) == 7)
1347 {
1348 color = RGB(((hex_digit(name[1])<<4) + hex_digit(name[2])),
1349 ((hex_digit(name[3])<<4) + hex_digit(name[4])),
1350 ((hex_digit(name[5])<<4) + hex_digit(name[6])));
1351 if (color > 0xffffff)
1352 return INVALCOLOR;
1353 return color;
1354 }
1355 else
1356 {
1357 /* Check if the name is one of the colors we know */
Bram Moolenaar380130f2016-04-22 11:24:43 +02001358 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001359 if (STRICMP(name, rgb_table[i].color_name) == 0)
1360 return rgb_table[i].color;
1361 }
1362
1363 /*
1364 * Last attempt. Look in the file "$VIM/rgb.txt".
1365 */
1366 {
1367#define LINE_LEN 100
1368 FILE *fd;
1369 char line[LINE_LEN];
1370 char_u *fname;
1371 int r, g, b;
1372
1373 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt");
1374 if (fname == NULL)
1375 return INVALCOLOR;
1376
1377 fd = fopen((char *)fname, "rt");
1378 vim_free(fname);
1379 if (fd == NULL)
1380 return INVALCOLOR;
1381
1382 while (!feof(fd))
1383 {
1384 int len;
1385 int pos;
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001386
Bram Moolenaar902647d2016-04-22 11:49:06 +02001387 (void)fgets(line, LINE_LEN, fd);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001388 len = strlen(line);
1389
1390 if (len <= 1 || line[len-1] != '\n')
1391 continue;
1392
1393 line[len-1] = '\0';
1394
1395 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
1396 if (i != 3)
1397 continue;
1398
Bram Moolenaar902647d2016-04-22 11:49:06 +02001399 if (STRICMP(line + pos, name) == 0)
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001400 {
1401 fclose(fd);
1402 return (guicolor_T) RGB(r, g, b);
1403 }
1404 }
1405 fclose(fd);
1406 }
1407
1408 return INVALCOLOR;
1409}
1410
1411 guicolor_T
1412termtrue_get_color(char_u *name)
1413{
1414 guicolor_T t;
1415
1416 if (*name == NUL)
1417 return INVALCOLOR;
1418 t = termtrue_mch_get_color(name);
1419
1420 if (t == INVALCOLOR)
1421 EMSG2(_("E254: Cannot allocate color %s"), name);
1422 return t;
1423}
1424
1425 long_u
1426termtrue_mch_get_rgb(guicolor_T color)
1427{
1428 return (long_u) color;
1429}
1430#endif
1431
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432/*
1433 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1434 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435#ifdef AMIGA
1436# define DEFAULT_TERM (char_u *)"amiga"
1437#endif
1438
1439#ifdef MSWIN
1440# define DEFAULT_TERM (char_u *)"win32"
1441#endif
1442
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443#if defined(UNIX) && !defined(__MINT__)
1444# define DEFAULT_TERM (char_u *)"ansi"
1445#endif
1446
1447#ifdef __MINT__
1448# define DEFAULT_TERM (char_u *)"vt52"
1449#endif
1450
1451#ifdef __EMX__
1452# define DEFAULT_TERM (char_u *)"os2ansi"
1453#endif
1454
1455#ifdef VMS
1456# define DEFAULT_TERM (char_u *)"vt320"
1457#endif
1458
1459#ifdef __BEOS__
1460# undef DEFAULT_TERM
1461# define DEFAULT_TERM (char_u *)"beos-ansi"
1462#endif
1463
1464#ifndef DEFAULT_TERM
1465# define DEFAULT_TERM (char_u *)"dumb"
1466#endif
1467
1468/*
1469 * Term_strings contains currently used terminal output strings.
1470 * It is initialized with the default values by parse_builtin_tcap().
1471 * The values can be changed by setting the option with the same name.
1472 */
1473char_u *(term_strings[(int)KS_LAST + 1]);
1474
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001475static int need_gather = FALSE; /* need to fill termleader[] */
1476static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001478static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479#endif
1480
1481 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001482find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483{
1484 struct builtin_term *p;
1485
1486 p = builtin_termcaps;
1487 while (p->bt_string != NULL)
1488 {
1489 if (p->bt_entry == (int)KS_NAME)
1490 {
1491#ifdef UNIX
1492 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1493 return p;
1494 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1495 return p;
1496 else
1497#endif
1498#ifdef VMS
1499 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1500 return p;
1501 else
1502#endif
1503 if (STRCMP(term, p->bt_string) == 0)
1504 return p;
1505 }
1506 ++p;
1507 }
1508 return p;
1509}
1510
1511/*
1512 * Parsing of the builtin termcap entries.
1513 * Caller should check if 'name' is a valid builtin term.
1514 * The terminal's name is not set, as this is already done in termcapinit().
1515 */
1516 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001517parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518{
1519 struct builtin_term *p;
1520 char_u name[2];
1521 int term_8bit;
1522
1523 p = find_builtin_term(term);
1524 term_8bit = term_is_8bit(term);
1525
1526 /* Do not parse if builtin term not found */
1527 if (p->bt_string == NULL)
1528 return;
1529
1530 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1531 {
1532 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1533 {
1534 /* Only set the value if it wasn't set yet. */
1535 if (term_strings[p->bt_entry] == NULL
1536 || term_strings[p->bt_entry] == empty_option)
1537 {
1538 /* 8bit terminal: use CSI instead of <Esc>[ */
1539 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1540 {
1541 char_u *s, *t;
1542
1543 s = vim_strsave((char_u *)p->bt_string);
1544 if (s != NULL)
1545 {
1546 for (t = s; *t; ++t)
1547 if (term_7to8bit(t))
1548 {
1549 *t = term_7to8bit(t);
1550 STRCPY(t + 1, t + 2);
1551 }
1552 term_strings[p->bt_entry] = s;
1553 set_term_option_alloced(&term_strings[p->bt_entry]);
1554 }
1555 }
1556 else
1557 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1558 }
1559 }
1560 else
1561 {
1562 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1563 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1564 if (find_termcode(name) == NULL)
1565 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1566 }
1567 }
1568}
1569#if defined(HAVE_TGETENT) || defined(FEAT_TERMRESPONSE)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001570static void set_color_count(int nr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571
1572/*
1573 * Set number of colors.
1574 * Store it as a number in t_colors.
1575 * Store it as a string in T_CCO (using nr_colors[]).
1576 */
1577 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001578set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579{
1580 char_u nr_colors[20]; /* string for number of colors */
1581
1582 t_colors = nr;
1583 if (t_colors > 1)
1584 sprintf((char *)nr_colors, "%d", t_colors);
1585 else
1586 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001587 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588}
1589#endif
1590
1591#ifdef HAVE_TGETENT
1592static char *(key_names[]) =
1593{
1594#ifdef FEAT_TERMRESPONSE
1595 /* Do this one first, it may cause a screen redraw. */
1596 "Co",
1597#endif
1598 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 "#2", "#4", "%i", "*7",
1600 "k1", "k2", "k3", "k4", "k5", "k6",
1601 "k7", "k8", "k9", "k;", "F1", "F2",
1602 "%1", "&8", "kb", "kI", "kD", "kh",
1603 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1604 NULL
1605};
1606#endif
1607
1608/*
1609 * Set terminal options for terminal "term".
1610 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1611 *
1612 * While doing this, until ttest(), some options may be NULL, be careful.
1613 */
1614 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001615set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616{
1617 struct builtin_term *termp;
1618#ifdef HAVE_TGETENT
1619 int builtin_first = p_tbi;
1620 int try;
1621 int termcap_cleared = FALSE;
1622#endif
1623 int width = 0, height = 0;
1624 char_u *error_msg = NULL;
1625 char_u *bs_p, *del_p;
1626
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001627 /* In silect mode (ex -s) we don't use the 'term' option. */
1628 if (silent_mode)
1629 return OK;
1630
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 detected_8bit = FALSE; /* reset 8-bit detection */
1632
1633 if (term_is_builtin(term))
1634 {
1635 term += 8;
1636#ifdef HAVE_TGETENT
1637 builtin_first = 1;
1638#endif
1639 }
1640
1641/*
1642 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1643 * If builtin_first is TRUE:
1644 * 0. try builtin termcap
1645 * 1. try external termcap
1646 * 2. if both fail default to a builtin terminal
1647 * If builtin_first is FALSE:
1648 * 1. try external termcap
1649 * 2. try builtin termcap, if both fail default to a builtin terminal
1650 */
1651#ifdef HAVE_TGETENT
1652 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1653 {
1654 /*
1655 * Use external termcap
1656 */
1657 if (try == 1)
1658 {
1659 char_u *p;
1660 static char_u tstrbuf[TBUFSZ];
1661 int i;
1662 char_u tbuf[TBUFSZ];
1663 char_u *tp;
1664 static struct {
1665 enum SpecialKey dest; /* index in term_strings[] */
1666 char *name; /* termcap name for string */
1667 } string_names[] =
1668 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1669 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1670 {KS_CL, "cl"}, {KS_CD, "cd"},
1671 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1672 {KS_VS, "vs"}, {KS_ME, "me"}, {KS_MR, "mr"},
1673 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1674 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001675 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1676 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1678 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1679 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1680 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1681 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1682 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1683 {KS_TS, "ts"}, {KS_FS, "fs"},
1684 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001685 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaare5401222015-06-25 19:16:56 +02001686 {KS_U7, "u7"}, {KS_RBG, "RB"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001687 {KS_8F, "8f"}, {KS_8B, "8b"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 {(enum SpecialKey)0, NULL}
1689 };
1690
1691 /*
1692 * If the external termcap does not have a matching entry, try the
1693 * builtin ones.
1694 */
1695 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1696 {
1697 tp = tstrbuf;
1698 if (!termcap_cleared)
1699 {
1700 clear_termoptions(); /* clear old options */
1701 termcap_cleared = TRUE;
1702 }
1703
1704 /* get output strings */
1705 for (i = 0; string_names[i].name != NULL; ++i)
1706 {
1707 if (term_str(string_names[i].dest) == NULL
1708 || term_str(string_names[i].dest) == empty_option)
1709 term_str(string_names[i].dest) =
1710 TGETSTR(string_names[i].name, &tp);
1711 }
1712
1713 /* tgetflag() returns 1 if the flag is present, 0 if not and
1714 * possibly -1 if the flag doesn't exist. */
1715 if ((T_MS == NULL || T_MS == empty_option)
1716 && tgetflag("ms") > 0)
1717 T_MS = (char_u *)"y";
1718 if ((T_XS == NULL || T_XS == empty_option)
1719 && tgetflag("xs") > 0)
1720 T_XS = (char_u *)"y";
Bram Moolenaar494838a2015-02-10 19:20:37 +01001721 if ((T_XN == NULL || T_XN == empty_option)
1722 && tgetflag("xn") > 0)
1723 T_XN = (char_u *)"y";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 if ((T_DB == NULL || T_DB == empty_option)
1725 && tgetflag("db") > 0)
1726 T_DB = (char_u *)"y";
1727 if ((T_DA == NULL || T_DA == empty_option)
1728 && tgetflag("da") > 0)
1729 T_DA = (char_u *)"y";
1730 if ((T_UT == NULL || T_UT == empty_option)
1731 && tgetflag("ut") > 0)
1732 T_UT = (char_u *)"y";
1733
1734
1735 /*
1736 * get key codes
1737 */
1738 for (i = 0; key_names[i] != NULL; ++i)
1739 {
1740 if (find_termcode((char_u *)key_names[i]) == NULL)
1741 {
1742 p = TGETSTR(key_names[i], &tp);
1743 /* if cursor-left == backspace, ignore it (televideo
1744 * 925) */
1745 if (p != NULL
1746 && (*p != Ctrl_H
1747 || key_names[i][0] != 'k'
1748 || key_names[i][1] != 'l'))
1749 add_termcode((char_u *)key_names[i], p, FALSE);
1750 }
1751 }
1752
1753 if (height == 0)
1754 height = tgetnum("li");
1755 if (width == 0)
1756 width = tgetnum("co");
1757
1758 /*
1759 * Get number of colors (if not done already).
1760 */
1761 if (term_str(KS_CCO) == NULL
1762 || term_str(KS_CCO) == empty_option)
1763 set_color_count(tgetnum("Co"));
1764
1765# ifndef hpux
1766 BC = (char *)TGETSTR("bc", &tp);
1767 UP = (char *)TGETSTR("up", &tp);
1768 p = TGETSTR("pc", &tp);
1769 if (p)
1770 PC = *p;
1771# endif /* hpux */
1772 }
1773 }
1774 else /* try == 0 || try == 2 */
1775#endif /* HAVE_TGETENT */
1776 /*
1777 * Use builtin termcap
1778 */
1779 {
1780#ifdef HAVE_TGETENT
1781 /*
1782 * If builtin termcap was already used, there is no need to search
1783 * for the builtin termcap again, quit now.
1784 */
1785 if (try == 2 && builtin_first && termcap_cleared)
1786 break;
1787#endif
1788 /*
1789 * search for 'term' in builtin_termcaps[]
1790 */
1791 termp = find_builtin_term(term);
1792 if (termp->bt_string == NULL) /* did not find it */
1793 {
1794#ifdef HAVE_TGETENT
1795 /*
1796 * If try == 0, first try the external termcap. If that is not
1797 * found we'll get back here with try == 2.
1798 * If termcap_cleared is set we used the external termcap,
1799 * don't complain about not finding the term in the builtin
1800 * termcap.
1801 */
1802 if (try == 0) /* try external one */
1803 continue;
1804 if (termcap_cleared) /* found in external termcap */
1805 break;
1806#endif
1807
1808 mch_errmsg("\r\n");
1809 if (error_msg != NULL)
1810 {
1811 mch_errmsg((char *)error_msg);
1812 mch_errmsg("\r\n");
1813 }
1814 mch_errmsg("'");
1815 mch_errmsg((char *)term);
1816 mch_errmsg(_("' not known. Available builtin terminals are:"));
1817 mch_errmsg("\r\n");
1818 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1819 ++termp)
1820 {
1821 if (termp->bt_entry == (int)KS_NAME)
1822 {
1823#ifdef HAVE_TGETENT
1824 mch_errmsg(" builtin_");
1825#else
1826 mch_errmsg(" ");
1827#endif
1828 mch_errmsg(termp->bt_string);
1829 mch_errmsg("\r\n");
1830 }
1831 }
1832 /* when user typed :set term=xxx, quit here */
1833 if (starting != NO_SCREEN)
1834 {
1835 screen_start(); /* don't know where cursor is now */
1836 wait_return(TRUE);
1837 return FAIL;
1838 }
1839 term = DEFAULT_TERM;
1840 mch_errmsg(_("defaulting to '"));
1841 mch_errmsg((char *)term);
1842 mch_errmsg("'\r\n");
1843 if (emsg_silent == 0)
1844 {
1845 screen_start(); /* don't know where cursor is now */
1846 out_flush();
1847 ui_delay(2000L, TRUE);
1848 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001849 set_string_option_direct((char_u *)"term", -1, term,
1850 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 display_errors();
1852 }
1853 out_flush();
1854#ifdef HAVE_TGETENT
1855 if (!termcap_cleared)
1856 {
1857#endif
1858 clear_termoptions(); /* clear old options */
1859#ifdef HAVE_TGETENT
1860 termcap_cleared = TRUE;
1861 }
1862#endif
1863 parse_builtin_tcap(term);
1864#ifdef FEAT_GUI
1865 if (term_is_gui(term))
1866 {
1867 out_flush();
1868 gui_init();
1869 /* If starting the GUI failed, don't do any of the other
1870 * things for this terminal */
1871 if (!gui.in_use)
1872 return FAIL;
1873#ifdef HAVE_TGETENT
1874 break; /* don't try using external termcap */
1875#endif
1876 }
1877#endif /* FEAT_GUI */
1878 }
1879#ifdef HAVE_TGETENT
1880 }
1881#endif
1882
1883/*
1884 * special: There is no info in the termcap about whether the cursor
1885 * positioning is relative to the start of the screen or to the start of the
1886 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1887 * relative.
1888 */
1889 if (STRCMP(term, "pcterm") == 0)
1890 T_CCS = (char_u *)"yes";
1891 else
1892 T_CCS = empty_option;
1893
1894#ifdef UNIX
1895/*
1896 * Any "stty" settings override the default for t_kb from the termcap.
1897 * This is in os_unix.c, because it depends a lot on the version of unix that
1898 * is being used.
1899 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1900 */
1901#ifdef FEAT_GUI
1902 if (!gui.in_use)
1903#endif
1904 get_stty();
1905#endif
1906
1907/*
1908 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1909 * didn't work, use the default CTRL-H
1910 * The default for t_kD is DEL, unless t_kb is DEL.
1911 * The vim_strsave'd strings are probably lost forever, well it's only two
1912 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1913 * directly.
1914 */
1915#ifdef FEAT_GUI
1916 if (!gui.in_use)
1917#endif
1918 {
1919 bs_p = find_termcode((char_u *)"kb");
1920 del_p = find_termcode((char_u *)"kD");
1921 if (bs_p == NULL || *bs_p == NUL)
1922 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1923 if ((del_p == NULL || *del_p == NUL) &&
1924 (bs_p == NULL || *bs_p != DEL))
1925 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1926 }
1927
1928#if defined(UNIX) || defined(VMS)
1929 term_is_xterm = vim_is_xterm(term);
1930#endif
1931
1932#ifdef FEAT_MOUSE
1933# if defined(UNIX) || defined(VMS)
1934# ifdef FEAT_MOUSE_TTY
1935 /*
1936 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1937 * The termcode for the mouse is added as a side effect in option.c.
1938 */
1939 {
1940 char_u *p;
1941
1942 p = (char_u *)"";
1943# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001944 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 {
1946 if (use_xterm_mouse())
1947 p = NULL; /* keep existing value, might be "xterm2" */
1948 else
1949 p = (char_u *)"xterm";
1950 }
1951# endif
1952 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001953 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001955 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1956 * "xterm2" in check_termcode(). */
1957 reset_option_was_set((char_u *)"ttym");
1958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 if (p == NULL
1960# ifdef FEAT_GUI
1961 || gui.in_use
1962# endif
1963 )
1964 check_mouse_termcode(); /* set mouse termcode anyway */
1965 }
1966# endif
1967# else
1968 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1969# endif
1970#endif /* FEAT_MOUSE */
1971
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972#ifdef USE_TERM_CONSOLE
1973 /* DEFAULT_TERM indicates that it is the machine console. */
1974 if (STRCMP(term, DEFAULT_TERM) != 0)
1975 term_console = FALSE;
1976 else
1977 {
1978 term_console = TRUE;
1979# ifdef AMIGA
1980 win_resize_on(); /* enable window resizing reports */
1981# endif
1982 }
1983#endif
1984
1985#if defined(UNIX) || defined(VMS)
1986 /*
1987 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1988 */
1989 if (vim_is_fastterm(term))
1990 p_tf = TRUE;
1991#endif
1992#ifdef USE_TERM_CONSOLE
1993 /*
1994 * 'ttyfast' is default on consoles
1995 */
1996 if (term_console)
1997 p_tf = TRUE;
1998#endif
1999
2000 ttest(TRUE); /* make sure we have a valid set of terminal codes */
2001
2002 full_screen = TRUE; /* we can use termcap codes from now on */
2003 set_term_defaults(); /* use current values as defaults */
2004#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +02002005 LOG_TR("setting crv_status to CRV_GET");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 crv_status = CRV_GET; /* Get terminal version later */
2007#endif
2008
2009 /*
2010 * Initialize the terminal with the appropriate termcap codes.
2011 * Set the mouse and window title if possible.
2012 * Don't do this when starting, need to parse the .vimrc first, because it
2013 * may redefine t_TI etc.
2014 */
2015 if (starting != NO_SCREEN)
2016 {
2017 starttermcap(); /* may change terminal mode */
2018#ifdef FEAT_MOUSE
2019 setmouse(); /* may start using the mouse */
2020#endif
2021#ifdef FEAT_TITLE
2022 maketitle(); /* may display window title */
2023#endif
2024 }
2025
2026 /* display initial screen after ttest() checking. jw. */
2027 if (width <= 0 || height <= 0)
2028 {
2029 /* termcap failed to report size */
2030 /* set defaults, in case ui_get_shellsize() also fails */
2031 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002032#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 height = 25; /* console is often 25 lines */
2034#else
2035 height = 24; /* most terminals are 24 lines */
2036#endif
2037 }
2038 set_shellsize(width, height, FALSE); /* may change Rows */
2039 if (starting != NO_SCREEN)
2040 {
2041 if (scroll_region)
2042 scroll_region_reset(); /* In case Rows changed */
2043 check_map_keycodes(); /* check mappings for terminal codes used */
2044
2045#ifdef FEAT_AUTOCMD
2046 {
2047 buf_T *old_curbuf;
2048
2049 /*
2050 * Execute the TermChanged autocommands for each buffer that is
2051 * loaded.
2052 */
2053 old_curbuf = curbuf;
2054 for (curbuf = firstbuf; curbuf != NULL; curbuf = curbuf->b_next)
2055 {
2056 if (curbuf->b_ml.ml_mfp != NULL)
2057 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2058 curbuf);
2059 }
2060 if (buf_valid(old_curbuf))
2061 curbuf = old_curbuf;
2062 }
2063#endif
2064 }
2065
2066#ifdef FEAT_TERMRESPONSE
2067 may_req_termresponse();
2068#endif
2069
2070 return OK;
2071}
2072
2073#if defined(FEAT_MOUSE) || defined(PROTO)
2074
2075# ifdef FEAT_MOUSE_TTY
2076# define HMT_NORMAL 1
2077# define HMT_NETTERM 2
2078# define HMT_DEC 4
2079# define HMT_JSBTERM 8
2080# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002081# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002082# define HMT_SGR 64
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083static int has_mouse_termcode = 0;
2084# endif
2085
Bram Moolenaar864207d2008-06-24 22:14:38 +00002086# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002088set_mouse_termcode(
2089 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2090 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091{
2092 char_u name[2];
2093
2094 name[0] = n;
2095 name[1] = KE_FILLER;
2096 add_termcode(name, s, FALSE);
2097# ifdef FEAT_MOUSE_TTY
2098# ifdef FEAT_MOUSE_JSB
2099 if (n == KS_JSBTERM_MOUSE)
2100 has_mouse_termcode |= HMT_JSBTERM;
2101 else
2102# endif
2103# ifdef FEAT_MOUSE_NET
2104 if (n == KS_NETTERM_MOUSE)
2105 has_mouse_termcode |= HMT_NETTERM;
2106 else
2107# endif
2108# ifdef FEAT_MOUSE_DEC
2109 if (n == KS_DEC_MOUSE)
2110 has_mouse_termcode |= HMT_DEC;
2111 else
2112# endif
2113# ifdef FEAT_MOUSE_PTERM
2114 if (n == KS_PTERM_MOUSE)
2115 has_mouse_termcode |= HMT_PTERM;
2116 else
2117# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002118# ifdef FEAT_MOUSE_URXVT
2119 if (n == KS_URXVT_MOUSE)
2120 has_mouse_termcode |= HMT_URXVT;
2121 else
2122# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002123# ifdef FEAT_MOUSE_SGR
2124 if (n == KS_SGR_MOUSE)
2125 has_mouse_termcode |= HMT_SGR;
2126 else
2127# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 has_mouse_termcode |= HMT_NORMAL;
2129# endif
2130}
2131# endif
2132
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002133# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002134 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002136del_mouse_termcode(
2137 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138{
2139 char_u name[2];
2140
2141 name[0] = n;
2142 name[1] = KE_FILLER;
2143 del_termcode(name);
2144# ifdef FEAT_MOUSE_TTY
2145# ifdef FEAT_MOUSE_JSB
2146 if (n == KS_JSBTERM_MOUSE)
2147 has_mouse_termcode &= ~HMT_JSBTERM;
2148 else
2149# endif
2150# ifdef FEAT_MOUSE_NET
2151 if (n == KS_NETTERM_MOUSE)
2152 has_mouse_termcode &= ~HMT_NETTERM;
2153 else
2154# endif
2155# ifdef FEAT_MOUSE_DEC
2156 if (n == KS_DEC_MOUSE)
2157 has_mouse_termcode &= ~HMT_DEC;
2158 else
2159# endif
2160# ifdef FEAT_MOUSE_PTERM
2161 if (n == KS_PTERM_MOUSE)
2162 has_mouse_termcode &= ~HMT_PTERM;
2163 else
2164# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002165# ifdef FEAT_MOUSE_URXVT
2166 if (n == KS_URXVT_MOUSE)
2167 has_mouse_termcode &= ~HMT_URXVT;
2168 else
2169# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002170# ifdef FEAT_MOUSE_SGR
2171 if (n == KS_SGR_MOUSE)
2172 has_mouse_termcode &= ~HMT_SGR;
2173 else
2174# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 has_mouse_termcode &= ~HMT_NORMAL;
2176# endif
2177}
2178# endif
2179#endif
2180
2181#ifdef HAVE_TGETENT
2182/*
2183 * Call tgetent()
2184 * Return error message if it fails, NULL if it's OK.
2185 */
2186 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002187tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188{
2189 int i;
2190
2191 i = TGETENT(tbuf, term);
2192 if (i < 0 /* -1 is always an error */
2193# ifdef TGETENT_ZERO_ERR
2194 || i == 0 /* sometimes zero is also an error */
2195# endif
2196 )
2197 {
2198 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2199 * tgetent() with the always existing "dumb" entry to avoid a crash or
2200 * hang. */
2201 (void)TGETENT(tbuf, "dumb");
2202
2203 if (i < 0)
2204# ifdef TGETENT_ZERO_ERR
2205 return (char_u *)_("E557: Cannot open termcap file");
2206 if (i == 0)
2207# endif
2208#ifdef TERMINFO
2209 return (char_u *)_("E558: Terminal entry not found in terminfo");
2210#else
2211 return (char_u *)_("E559: Terminal entry not found in termcap");
2212#endif
2213 }
2214 return NULL;
2215}
2216
2217/*
2218 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2219 * Fix that here.
2220 */
2221 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002222vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223{
2224 char *p;
2225
2226 p = tgetstr(s, (char **)pp);
2227 if (p == (char *)-1)
2228 p = NULL;
2229 return (char_u *)p;
2230}
2231#endif /* HAVE_TGETENT */
2232
2233#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(__EMX__) || defined(VMS) || defined(MACOS_X))
2234/*
2235 * Get Columns and Rows from the termcap. Used after a window signal if the
2236 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2237 * and "li" entries never change. But on some systems this works.
2238 * Errors while getting the entries are ignored.
2239 */
2240 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002241getlinecol(
2242 long *cp, /* pointer to columns */
2243 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244{
2245 char_u tbuf[TBUFSZ];
2246
2247 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2248 {
2249 if (*cp == 0)
2250 *cp = tgetnum("co");
2251 if (*rp == 0)
2252 *rp = tgetnum("li");
2253 }
2254}
2255#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2256
2257/*
2258 * Get a string entry from the termcap and add it to the list of termcodes.
2259 * Used for <t_xx> special keys.
2260 * Give an error message for failure when not sourcing.
2261 * If force given, replace an existing entry.
2262 * Return FAIL if the entry was not found, OK if the entry was added.
2263 */
2264 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002265add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266{
2267 char_u *term;
2268 int key;
2269 struct builtin_term *termp;
2270#ifdef HAVE_TGETENT
2271 char_u *string;
2272 int i;
2273 int builtin_first;
2274 char_u tbuf[TBUFSZ];
2275 char_u tstrbuf[TBUFSZ];
2276 char_u *tp = tstrbuf;
2277 char_u *error_msg = NULL;
2278#endif
2279
2280/*
2281 * If the GUI is running or will start in a moment, we only support the keys
2282 * that the GUI can produce.
2283 */
2284#ifdef FEAT_GUI
2285 if (gui.in_use || gui.starting)
2286 return gui_mch_haskey(name);
2287#endif
2288
2289 if (!force && find_termcode(name) != NULL) /* it's already there */
2290 return OK;
2291
2292 term = T_NAME;
2293 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2294 return FAIL;
2295
2296 if (term_is_builtin(term)) /* name starts with "builtin_" */
2297 {
2298 term += 8;
2299#ifdef HAVE_TGETENT
2300 builtin_first = TRUE;
2301#endif
2302 }
2303#ifdef HAVE_TGETENT
2304 else
2305 builtin_first = p_tbi;
2306#endif
2307
2308#ifdef HAVE_TGETENT
2309/*
2310 * We can get the entry from the builtin termcap and from the external one.
2311 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2312 * builtin termcap first.
2313 * If 'ttybuiltin' is off, try external termcap first.
2314 */
2315 for (i = 0; i < 2; ++i)
2316 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002317 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318#endif
2319 /*
2320 * Search in builtin termcap
2321 */
2322 {
2323 termp = find_builtin_term(term);
2324 if (termp->bt_string != NULL) /* found it */
2325 {
2326 key = TERMCAP2KEY(name[0], name[1]);
2327 while (termp->bt_entry != (int)KS_NAME)
2328 {
2329 if ((int)termp->bt_entry == key)
2330 {
2331 add_termcode(name, (char_u *)termp->bt_string,
2332 term_is_8bit(term));
2333 return OK;
2334 }
2335 ++termp;
2336 }
2337 }
2338 }
2339#ifdef HAVE_TGETENT
2340 else
2341 /*
2342 * Search in external termcap
2343 */
2344 {
2345 error_msg = tgetent_error(tbuf, term);
2346 if (error_msg == NULL)
2347 {
2348 string = TGETSTR((char *)name, &tp);
2349 if (string != NULL && *string != NUL)
2350 {
2351 add_termcode(name, string, FALSE);
2352 return OK;
2353 }
2354 }
2355 }
2356 }
2357#endif
2358
2359 if (sourcing_name == NULL)
2360 {
2361#ifdef HAVE_TGETENT
2362 if (error_msg != NULL)
2363 EMSG(error_msg);
2364 else
2365#endif
2366 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2367 }
2368 return FAIL;
2369}
2370
2371 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002372term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373{
2374 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2375}
2376
2377/*
2378 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2379 * Assume that the terminal is using 8-bit controls when the name contains
2380 * "8bit", like in "xterm-8bit".
2381 */
2382 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002383term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384{
2385 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2386}
2387
2388/*
2389 * Translate terminal control chars from 7-bit to 8-bit:
2390 * <Esc>[ -> CSI
2391 * <Esc>] -> <M-C-]>
2392 * <Esc>O -> <M-C-O>
2393 */
2394 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002395term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396{
2397 if (*p == ESC)
2398 {
2399 if (p[1] == '[')
2400 return CSI;
2401 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002402 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 if (p[1] == 'O')
2404 return 0x8f;
2405 }
2406 return 0;
2407}
2408
2409#ifdef FEAT_GUI
2410 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002411term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412{
2413 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2414}
2415#endif
2416
2417#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2418
2419 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002420tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422 static char_u buf[16];
2423 char_u *p;
2424
2425 p = buf + 15;
2426 *p = '\0';
2427 do
2428 {
2429 --p;
2430 *p = (char_u) (i % 10 + '0');
2431 i /= 10;
2432 }
2433 while (i > 0 && p > buf);
2434 return p;
2435}
2436#endif
2437
2438#ifndef HAVE_TGETENT
2439
2440/*
2441 * minimal tgoto() implementation.
2442 * no padding and we only parse for %i %d and %+char
2443 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002444static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002446 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002447tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448{
2449 static char buf[30];
2450 char *p, *s, *e;
2451
2452 if (!cm)
2453 return "OOPS";
2454 e = buf + 29;
2455 for (s = buf; s < e && *cm; cm++)
2456 {
2457 if (*cm != '%')
2458 {
2459 *s++ = *cm;
2460 continue;
2461 }
2462 switch (*++cm)
2463 {
2464 case 'd':
2465 p = (char *)tltoa((unsigned long)y);
2466 y = x;
2467 while (*p)
2468 *s++ = *p++;
2469 break;
2470 case 'i':
2471 x++;
2472 y++;
2473 break;
2474 case '+':
2475 *s++ = (char)(*++cm + y);
2476 y = x;
2477 break;
2478 case '%':
2479 *s++ = *cm;
2480 break;
2481 default:
2482 return "OOPS";
2483 }
2484 }
2485 *s = '\0';
2486 return buf;
2487}
2488
2489#endif /* HAVE_TGETENT */
2490
2491/*
2492 * Set the terminal name and initialize the terminal options.
2493 * If "name" is NULL or empty, get the terminal name from the environment.
2494 * If that fails, use the default terminal name.
2495 */
2496 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002497termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498{
2499 char_u *term;
2500
2501 if (name != NULL && *name == NUL)
2502 name = NULL; /* empty name is equal to no name */
2503 term = name;
2504
2505#ifdef __BEOS__
2506 /*
2507 * TERM environment variable is normally set to 'ansi' on the Bebox;
2508 * Since the BeBox doesn't quite support full ANSI yet, we use our
2509 * own custom 'ansi-beos' termcap instead, unless the -T option has
2510 * been given on the command line.
2511 */
2512 if (term == NULL
2513 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2514 term = DEFAULT_TERM;
2515#endif
2516#ifndef MSWIN
2517 if (term == NULL)
2518 term = mch_getenv((char_u *)"TERM");
2519#endif
2520 if (term == NULL || *term == NUL)
2521 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002522 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523
2524 /* Set the default terminal name. */
2525 set_string_default("term", term);
2526 set_string_default("ttytype", term);
2527
2528 /*
2529 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2530 */
2531 set_termname(T_NAME != NULL ? T_NAME : term);
2532}
2533
2534/*
2535 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2536 */
2537#ifdef DOS16
2538# define OUT_SIZE 255 /* only have 640K total... */
2539#else
Bram Moolenaare89ff042016-02-20 22:17:05 +01002540# define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541#endif
2542 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2543static char_u out_buf[OUT_SIZE + 1];
2544static int out_pos = 0; /* number of chars in out_buf */
2545
2546/*
2547 * out_flush(): flush the output buffer
2548 */
2549 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002550out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551{
2552 int len;
2553
2554 if (out_pos != 0)
2555 {
2556 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2557 len = out_pos;
2558 out_pos = 0;
2559 ui_write(out_buf, len);
2560 }
2561}
2562
2563#if defined(FEAT_MBYTE) || defined(PROTO)
2564/*
2565 * Sometimes a byte out of a multi-byte character is written with out_char().
2566 * To avoid flushing half of the character, call this function first.
2567 */
2568 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002569out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570{
2571 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2572 out_flush();
2573}
2574#endif
2575
2576#ifdef FEAT_GUI
2577/*
2578 * out_trash(): Throw away the contents of the output buffer
2579 */
2580 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002581out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582{
2583 out_pos = 0;
2584}
2585#endif
2586
2587/*
2588 * out_char(c): put a byte into the output buffer.
2589 * Flush it if it becomes full.
2590 * This should not be used for outputting text on the screen (use functions
2591 * like msg_puts() and screen_putchar() for that).
2592 */
2593 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002594out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
2596#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2597 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2598 out_char('\r');
2599#endif
2600
2601 out_buf[out_pos++] = c;
2602
2603 /* For testing we flush each time. */
2604 if (out_pos >= OUT_SIZE || p_wd)
2605 out_flush();
2606}
2607
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002608static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609
2610/*
2611 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2612 */
2613 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002614out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615{
2616#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2617 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2618 out_char_nf('\r');
2619#endif
2620
2621 out_buf[out_pos++] = c;
2622
2623 if (out_pos >= OUT_SIZE)
2624 out_flush();
2625}
2626
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002627#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2628 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629/*
2630 * A never-padding out_str.
2631 * use this whenever you don't want to run the string through tputs.
2632 * tputs above is harmless, but tputs from the termcap library
2633 * is likely to strip off leading digits, that it mistakes for padding
2634 * information, and "%i", "%d", etc.
2635 * This should only be used for writing terminal codes, not for outputting
2636 * normal text (use functions like msg_puts() and screen_putchar() for that).
2637 */
2638 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002639out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2642 out_flush();
2643 while (*s)
2644 out_char_nf(*s++);
2645
2646 /* For testing we write one string at a time. */
2647 if (p_wd)
2648 out_flush();
2649}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002650#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651
2652/*
2653 * out_str(s): Put a character string a byte at a time into the output buffer.
2654 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2655 * This should only be used for writing terminal codes, not for outputting
2656 * normal text (use functions like msg_puts() and screen_putchar() for that).
2657 */
2658 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002659out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660{
2661 if (s != NULL && *s)
2662 {
2663#ifdef FEAT_GUI
2664 /* Don't use tputs() when GUI is used, ncurses crashes. */
2665 if (gui.in_use)
2666 {
2667 out_str_nf(s);
2668 return;
2669 }
2670#endif
2671 /* avoid terminal strings being split up */
2672 if (out_pos > OUT_SIZE - 20)
2673 out_flush();
2674#ifdef HAVE_TGETENT
2675 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2676#else
2677 while (*s)
2678 out_char_nf(*s++);
2679#endif
2680
2681 /* For testing we write one string at a time. */
2682 if (p_wd)
2683 out_flush();
2684 }
2685}
2686
2687/*
2688 * cursor positioning using termcap parser. (jw)
2689 */
2690 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002691term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692{
2693 OUT_STR(tgoto((char *)T_CM, col, row));
2694}
2695
2696 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002697term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698{
2699 OUT_STR(tgoto((char *)T_CRI, 0, i));
2700}
2701
2702 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002703term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704{
2705 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2706}
2707
2708 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002709term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710{
2711 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2712}
2713
2714#if defined(HAVE_TGETENT) || defined(PROTO)
2715 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002716term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717{
2718 /* Can't handle a negative value here */
2719 if (x < 0)
2720 x = 0;
2721 if (y < 0)
2722 y = 0;
2723 OUT_STR(tgoto((char *)T_CWP, y, x));
2724}
2725
2726 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002727term_set_winsize(int width, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728{
2729 OUT_STR(tgoto((char *)T_CWS, height, width));
2730}
2731#endif
2732
2733 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002734term_fg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735{
2736 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2737 if (*T_CAF)
2738 term_color(T_CAF, n);
2739 else if (*T_CSF)
2740 term_color(T_CSF, n);
2741}
2742
2743 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002744term_bg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745{
2746 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2747 if (*T_CAB)
2748 term_color(T_CAB, n);
2749 else if (*T_CSB)
2750 term_color(T_CSB, n);
2751}
2752
2753 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002754term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755{
2756 char buf[20];
2757 int i = 2; /* index in s[] just after <Esc>[ or CSI */
2758
2759 /* Special handling of 16 colors, because termcap can't handle it */
2760 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2761 /* Also accept CSI instead of <Esc>[ */
2762 if (n >= 8 && t_colors >= 16
2763 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2764 && s[i] != NUL
2765 && (STRCMP(s + i + 1, "%p1%dm") == 0
2766 || STRCMP(s + i + 1, "%dm") == 0)
2767 && (s[i] == '3' || s[i] == '4'))
2768 {
2769 sprintf(buf,
2770#ifdef TERMINFO
2771 "%s%s%%p1%%dm",
2772#else
2773 "%s%s%%dm",
2774#endif
2775 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2776 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2777 : (n >= 16 ? "48;5;" : "10"));
2778 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2779 }
2780 else
2781 OUT_STR(tgoto((char *)s, 0, n));
2782}
2783
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002784#if defined(FEAT_TERMTRUECOLOR) || defined(PROTO)
2785 void
2786term_fg_rgb_color(long_u rgb)
2787{
2788 term_rgb_color(T_8F, rgb);
2789}
2790
2791 void
2792term_bg_rgb_color(long_u rgb)
2793{
2794 term_rgb_color(T_8B, rgb);
2795}
2796
2797#define RED(rgb) ((rgb>>16)&0xFF)
2798#define GREEN(rgb) ((rgb>> 8)&0xFF)
2799#define BLUE(rgb) ((rgb )&0xFF)
2800
2801 static void
2802term_rgb_color(char_u *s, long_u rgb)
2803{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002804#define MAX_COLOR_STR_LEN 100
2805 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002806
Bram Moolenaara1c487e2016-04-22 20:20:19 +02002807 vim_snprintf(buf, MAX_COLOR_STR_LEN,
Bram Moolenaar380130f2016-04-22 11:24:43 +02002808 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002809 OUT_STR(buf);
2810}
2811#endif
2812
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002813#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2814 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815/*
2816 * Generic function to set window title, using t_ts and t_fs.
2817 */
2818 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002819term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820{
2821 /* t_ts takes one argument: column in status line */
2822 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2823 out_str_nf(title);
2824 out_str(T_FS); /* set title end */
2825 out_flush();
2826}
2827#endif
2828
2829/*
2830 * Make sure we have a valid set or terminal options.
2831 * Replace all entries that are NULL by empty_option
2832 */
2833 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002834ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835{
2836 check_options(); /* make sure no options are NULL */
2837
2838 /*
2839 * MUST have "cm": cursor motion.
2840 */
2841 if (*T_CM == NUL)
2842 EMSG(_("E437: terminal capability \"cm\" required"));
2843
2844 /*
2845 * if "cs" defined, use a scroll region, it's faster.
2846 */
2847 if (*T_CS != NUL)
2848 scroll_region = TRUE;
2849 else
2850 scroll_region = FALSE;
2851
2852 if (pairs)
2853 {
2854 /*
2855 * optional pairs
2856 */
2857 /* TP goes to normal mode for TI (invert) and TB (bold) */
2858 if (*T_ME == NUL)
2859 T_ME = T_MR = T_MD = T_MB = empty_option;
2860 if (*T_SO == NUL || *T_SE == NUL)
2861 T_SO = T_SE = empty_option;
2862 if (*T_US == NUL || *T_UE == NUL)
2863 T_US = T_UE = empty_option;
2864 if (*T_CZH == NUL || *T_CZR == NUL)
2865 T_CZH = T_CZR = empty_option;
2866
2867 /* T_VE is needed even though T_VI is not defined */
2868 if (*T_VE == NUL)
2869 T_VI = empty_option;
2870
2871 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2872 if (*T_ME == NUL)
2873 {
2874 T_ME = T_SE;
2875 T_MR = T_SO;
2876 T_MD = T_SO;
2877 }
2878
2879 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2880 if (*T_SO == NUL)
2881 {
2882 T_SE = T_ME;
2883 if (*T_MR == NUL)
2884 T_SO = T_MD;
2885 else
2886 T_SO = T_MR;
2887 }
2888
2889 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2890 if (*T_CZH == NUL)
2891 {
2892 T_CZR = T_ME;
2893 if (*T_MR == NUL)
2894 T_CZH = T_MD;
2895 else
2896 T_CZH = T_MR;
2897 }
2898
2899 /* "Sb" and "Sf" come in pairs */
2900 if (*T_CSB == NUL || *T_CSF == NUL)
2901 {
2902 T_CSB = empty_option;
2903 T_CSF = empty_option;
2904 }
2905
2906 /* "AB" and "AF" come in pairs */
2907 if (*T_CAB == NUL || *T_CAF == NUL)
2908 {
2909 T_CAB = empty_option;
2910 T_CAF = empty_option;
2911 }
2912
2913 /* if 'Sb' and 'AB' are not defined, reset "Co" */
2914 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00002915 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916
2917 /* Set 'weirdinvert' according to value of 't_xs' */
2918 p_wiv = (*T_XS != NUL);
2919 }
2920 need_gather = TRUE;
2921
2922 /* Set t_colors to the value of t_Co. */
2923 t_colors = atoi((char *)T_CCO);
2924}
2925
2926#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
2927 || defined(PROTO)
2928/*
2929 * Represent the given long_u as individual bytes, with the most significant
2930 * byte first, and store them in dst.
2931 */
2932 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002933add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934{
2935 int i;
2936 int shift;
2937
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002938 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 {
2940 shift = 8 * (sizeof(long_u) - i);
2941 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
2942 }
2943}
2944
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002945static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946
2947/*
2948 * Interpret the next string of bytes in buf as a long integer, with the most
2949 * significant byte first. Note that it is assumed that buf has been through
2950 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
2951 * Puts result in val, and returns the number of bytes read from buf
2952 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
2953 * were present.
2954 */
2955 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002956get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957{
2958 int len;
2959 char_u bytes[sizeof(long_u)];
2960 int i;
2961 int shift;
2962
2963 *val = 0;
2964 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
2965 if (len != -1)
2966 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002967 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 {
2969 shift = 8 * (sizeof(long_u) - 1 - i);
2970 *val += (long_u)bytes[i] << shift;
2971 }
2972 }
2973 return len;
2974}
2975#endif
2976
2977#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002978 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
2979 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980/*
2981 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
2982 * that buf has been through inchar(). Returns the actual number of bytes used
2983 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
2984 * available.
2985 */
2986 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002987get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988{
2989 int len = 0;
2990 int i;
2991 char_u c;
2992
2993 for (i = 0; i < num_bytes; i++)
2994 {
2995 if ((c = buf[len++]) == NUL)
2996 return -1;
2997 if (c == K_SPECIAL)
2998 {
2999 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3000 return -1;
3001 if (buf[len++] == (int)KS_ZERO)
3002 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003003 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3004 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3005 if (buf[len++] == (int)KE_CSI)
3006 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003008 else if (c == CSI && buf[len] == KS_EXTRA
3009 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003010 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3011 * the start of a special key, see add_to_input_buf_csi(). */
3012 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 bytes[i] = c;
3014 }
3015 return len;
3016}
3017#endif
3018
3019/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003020 * Check if the new shell size is valid, correct it if it's too small or way
3021 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 */
3023 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003024check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 if (Rows < min_rows()) /* need room for one window and command line */
3027 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003028 limit_screen_size();
3029}
3030
3031/*
3032 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3033 */
3034 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003035limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003036{
3037 if (Columns < MIN_COLUMNS)
3038 Columns = MIN_COLUMNS;
3039 else if (Columns > 10000)
3040 Columns = 10000;
3041 if (Rows > 1000)
3042 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043}
3044
Bram Moolenaar86b68352004-12-27 21:59:20 +00003045/*
3046 * Invoked just before the screen structures are going to be (re)allocated.
3047 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003049win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 static int old_Rows = 0;
3052 static int old_Columns = 0;
3053
3054 if (old_Rows != Rows || old_Columns != Columns)
3055 ui_new_shellsize();
3056 if (old_Rows != Rows)
3057 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003058 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003059 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003060 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 old_Rows = Rows;
3062 shell_new_rows(); /* update window sizes */
3063 }
3064 if (old_Columns != Columns)
3065 {
3066 old_Columns = Columns;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003067#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 shell_new_columns(); /* update window sizes */
3069#endif
3070 }
3071}
3072
3073/*
3074 * Call this function when the Vim shell has been resized in any way.
3075 * Will obtain the current size and redraw (also when size didn't change).
3076 */
3077 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003078shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079{
3080 set_shellsize(0, 0, FALSE);
3081}
3082
3083/*
3084 * Check if the shell size changed. Handle a resize.
3085 * When the size didn't change, nothing happens.
3086 */
3087 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003088shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089{
3090 int old_Rows = Rows;
3091 int old_Columns = Columns;
3092
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003093 if (!exiting
3094#ifdef FEAT_GUI
3095 /* Do not get the size when executing a shell command during
3096 * startup. */
3097 && !gui.starting
3098#endif
3099 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003100 {
3101 (void)ui_get_shellsize();
3102 check_shellsize();
3103 if (old_Rows != Rows || old_Columns != Columns)
3104 shell_resized();
3105 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106}
3107
3108/*
3109 * Set size of the Vim shell.
3110 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3111 * window size (this is used for the :win command).
3112 * If 'mustset' is FALSE, we may try to get the real window size and if
3113 * it fails use 'width' and 'height'.
3114 */
3115 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003116set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117{
3118 static int busy = FALSE;
3119
3120 /*
3121 * Avoid recursiveness, can happen when setting the window size causes
3122 * another window-changed signal.
3123 */
3124 if (busy)
3125 return;
3126
3127 if (width < 0 || height < 0) /* just checking... */
3128 return;
3129
Bram Moolenaara971b822011-09-14 14:43:25 +02003130 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003132 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 State = SETWSIZE;
3134 return;
3135 }
3136
Bram Moolenaara971b822011-09-14 14:43:25 +02003137 /* curwin->w_buffer can be NULL when we are closing a window and the
3138 * buffer has already been closed and removing a scrollbar causes a resize
3139 * event. Don't resize then, it will happen after entering another buffer.
3140 */
3141 if (curwin->w_buffer == NULL)
3142 return;
3143
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 ++busy;
3145
3146#ifdef AMIGA
3147 out_flush(); /* must do this before mch_get_shellsize() for
3148 some obscure reason */
3149#endif
3150
3151 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3152 {
3153 Rows = height;
3154 Columns = width;
3155 check_shellsize();
3156 ui_set_shellsize(mustset);
3157 }
3158 else
3159 check_shellsize();
3160
3161 /* The window layout used to be adjusted here, but it now happens in
3162 * screenalloc() (also invoked from screenclear()). That is because the
3163 * "busy" check above may skip this, but not screenalloc(). */
3164
3165 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3166 screenclear();
3167 else
3168 screen_start(); /* don't know where cursor is now */
3169
3170 if (starting != NO_SCREEN)
3171 {
3172#ifdef FEAT_TITLE
3173 maketitle();
3174#endif
3175 changed_line_abv_curs();
3176 invalidate_botline();
3177
3178 /*
3179 * We only redraw when it's needed:
3180 * - While at the more prompt or executing an external command, don't
3181 * redraw, but position the cursor.
3182 * - While editing the command line, only redraw that.
3183 * - in Ex mode, don't redraw anything.
3184 * - Otherwise, redraw right now, and position the cursor.
3185 * Always need to call update_screen() or screenalloc(), to make
3186 * sure Rows/Columns and the size of ScreenLines[] is correct!
3187 */
3188 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3189 || exmode_active)
3190 {
3191 screenalloc(FALSE);
3192 repeat_message();
3193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 else
3195 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003196#ifdef FEAT_SCROLLBIND
3197 if (curwin->w_p_scb)
3198 do_check_scrollbind(TRUE);
3199#endif
3200 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003201 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003202 update_screen(NOT_VALID);
3203 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003204 }
3205 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003206 {
3207 update_topline();
3208#if defined(FEAT_INS_EXPAND)
3209 if (pum_visible())
3210 {
3211 redraw_later(NOT_VALID);
3212 ins_compl_show_pum(); /* This includes the redraw. */
3213 }
3214 else
Bram Moolenaar280f1262006-01-30 00:14:18 +00003215#endif
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003216 update_screen(NOT_VALID);
3217 if (redrawing())
3218 setcursor();
3219 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 }
3221 cursor_on(); /* redrawing may have switched it off */
3222 }
3223 out_flush();
3224 --busy;
3225}
3226
3227/*
3228 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3229 * commands and Ex mode).
3230 */
3231 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003232settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233{
3234#ifdef FEAT_GUI
3235 /* don't set the term where gvim was started to any mode */
3236 if (gui.in_use)
3237 return;
3238#endif
3239
3240 if (full_screen)
3241 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 /*
3243 * When returning after calling a shell we want to really set the
3244 * terminal to raw mode, even though we think it already is, because
3245 * the shell program may have reset the terminal mode.
3246 * When we think the terminal is normal, don't try to set it to
3247 * normal again, because that causes problems (logout!) on some
3248 * machines.
3249 */
3250 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3251 {
3252#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003253# ifdef FEAT_GUI
3254 if (!gui.in_use && !gui.starting)
3255# endif
3256 {
3257 /* May need to check for T_CRV response and termcodes, it
3258 * doesn't work in Cooked mode, an external program may get
3259 * them. */
Bram Moolenaar9584b312013-03-13 19:29:28 +01003260 if (tmode != TMODE_RAW && (crv_status == CRV_SENT
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003261 || u7_status == U7_SENT
3262 || rbg_status == RBG_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003263 (void)vpeekc_nomap();
3264 check_for_codes_from_term();
3265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266#endif
3267#ifdef FEAT_MOUSE_TTY
3268 if (tmode != TMODE_RAW)
3269 mch_setmouse(FALSE); /* switch mouse off */
3270#endif
3271 out_flush();
3272 mch_settmode(tmode); /* machine specific function */
3273 cur_tmode = tmode;
3274#ifdef FEAT_MOUSE
3275 if (tmode == TMODE_RAW)
3276 setmouse(); /* may switch mouse on */
3277#endif
3278 out_flush();
3279 }
3280#ifdef FEAT_TERMRESPONSE
3281 may_req_termresponse();
3282#endif
3283 }
3284}
3285
3286 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003287starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288{
3289 if (full_screen && !termcap_active)
3290 {
3291 out_str(T_TI); /* start termcap mode */
3292 out_str(T_KS); /* start "keypad transmit" mode */
3293 out_flush();
3294 termcap_active = TRUE;
3295 screen_start(); /* don't know where cursor is now */
3296#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003297# ifdef FEAT_GUI
3298 if (!gui.in_use && !gui.starting)
3299# endif
3300 {
3301 may_req_termresponse();
3302 /* Immediately check for a response. If t_Co changes, we don't
3303 * want to redraw with wrong colors first. */
Bram Moolenaar90013c62014-05-22 18:14:31 +02003304 if (crv_status == CRV_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003305 check_for_codes_from_term();
3306 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307#endif
3308 }
3309}
3310
3311 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003312stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313{
3314 screen_stop_highlight();
3315 reset_cterm_colors();
3316 if (termcap_active)
3317 {
3318#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003319# ifdef FEAT_GUI
3320 if (!gui.in_use && !gui.starting)
3321# endif
3322 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003323 /* May need to discard T_CRV, T_U7 or T_RBG response. */
3324 if (crv_status == CRV_SENT || u7_status == U7_SENT
3325 || rbg_status == RBG_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003326 {
3327# ifdef UNIX
3328 /* Give the terminal a chance to respond. */
3329 mch_delay(100L, FALSE);
3330# endif
3331# ifdef TCIFLUSH
3332 /* Discard data received but not read. */
3333 if (exiting)
3334 tcflush(fileno(stdin), TCIFLUSH);
3335# endif
3336 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003337 /* Check for termcodes first, otherwise an external program may
3338 * get them. */
3339 check_for_codes_from_term();
3340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341#endif
3342 out_str(T_KE); /* stop "keypad transmit" mode */
3343 out_flush();
3344 termcap_active = FALSE;
3345 cursor_on(); /* just in case it is still off */
3346 out_str(T_TE); /* stop termcap mode */
3347 screen_start(); /* don't know where cursor is now */
3348 out_flush();
3349 }
3350}
3351
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003352#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353/*
3354 * Request version string (for xterm) when needed.
3355 * Only do this after switching to raw mode, otherwise the result will be
3356 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003357 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003358 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 * Only do this after termcap mode has been started, otherwise the codes for
3360 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003361 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3362 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003363 * On Unix only do it when both output and input are a tty (avoid writing
3364 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 * The result is caught in check_termcode().
3366 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003367 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003368may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369{
3370 if (crv_status == CRV_GET
3371 && cur_tmode == TMODE_RAW
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003372 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 && termcap_active
Bram Moolenaarebefac62005-12-28 22:39:57 +00003374 && p_ek
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003375# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 && isatty(1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003377 && isatty(read_cmd_fd)
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003378# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 && *T_CRV != NUL)
3380 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02003381 LOG_TR("Sending CRV");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 out_str(T_CRV);
3383 crv_status = CRV_SENT;
3384 /* check for the characters now, otherwise they might be eaten by
3385 * get_keystroke() */
3386 out_flush();
3387 (void)vpeekc_nomap();
3388 }
3389}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003390
3391# if defined(FEAT_MBYTE) || defined(PROTO)
3392/*
3393 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003394 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003395 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003396 * If the terminal treats \u25bd as single width, the position is (1, 1),
3397 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003398 * This function has the side effect that changes cursor position, so
3399 * it must be called immediately after entering termcap mode.
3400 */
3401 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003402may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003403{
3404 if (u7_status == U7_GET
3405 && cur_tmode == TMODE_RAW
3406 && termcap_active
3407 && p_ek
3408# ifdef UNIX
3409 && isatty(1)
3410 && isatty(read_cmd_fd)
3411# endif
3412 && *T_U7 != NUL
3413 && !option_was_set((char_u *)"ambiwidth"))
3414 {
3415 char_u buf[16];
3416
Bram Moolenaar2951b772013-07-03 12:45:31 +02003417 LOG_TR("Sending U7 request");
3418 /* Do this in the second row. In the first row the returned sequence
3419 * may be CSI 1;2R, which is the same as <S-F3>. */
3420 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003421 buf[mb_char2bytes(0x25bd, buf)] = 0;
3422 out_str(buf);
3423 out_str(T_U7);
3424 u7_status = U7_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003425 out_flush();
3426 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003427 out_str((char_u *)" ");
3428 term_windgoto(0, 0);
3429 /* check for the characters now, otherwise they might be eaten by
3430 * get_keystroke() */
3431 out_flush();
3432 (void)vpeekc_nomap();
3433 }
3434}
3435# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003436
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003437#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
3438/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003439 * Similar to requesting the version string: Request the terminal background
3440 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003441 */
3442 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003443may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003444{
3445 if (rbg_status == RBG_GET
3446 && cur_tmode == TMODE_RAW
3447 && termcap_active
3448 && p_ek
3449# ifdef UNIX
3450 && isatty(1)
3451 && isatty(read_cmd_fd)
3452# endif
3453 && *T_RBG != NUL
3454 && !option_was_set((char_u *)"bg"))
3455 {
3456 LOG_TR("Sending BG request");
3457 out_str(T_RBG);
3458 rbg_status = RBG_SENT;
3459 /* check for the characters now, otherwise they might be eaten by
3460 * get_keystroke() */
3461 out_flush();
3462 (void)vpeekc_nomap();
3463 }
3464}
3465# endif
3466
Bram Moolenaar2951b772013-07-03 12:45:31 +02003467# ifdef DEBUG_TERMRESPONSE
3468 static void
3469log_tr(char *msg)
3470{
3471 static FILE *fd_tr = NULL;
3472 static proftime_T start;
3473 proftime_T now;
3474
3475 if (fd_tr == NULL)
3476 {
3477 fd_tr = fopen("termresponse.log", "w");
3478 profile_start(&start);
3479 }
3480 now = start;
3481 profile_end(&now);
3482 fprintf(fd_tr, "%s: %s %s\n",
3483 profile_msg(&now),
3484 must_redraw == NOT_VALID ? "NV"
3485 : must_redraw == CLEAR ? "CL" : " ",
3486 msg);
3487}
3488# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489#endif
3490
3491/*
3492 * Return TRUE when saving and restoring the screen.
3493 */
3494 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003495swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496{
3497 return (full_screen && *T_TI != NUL);
3498}
3499
3500#ifdef FEAT_MOUSE
3501/*
3502 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3503 */
3504 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003505setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506{
3507# ifdef FEAT_MOUSE_TTY
3508 int checkfor;
3509# endif
3510
3511# ifdef FEAT_MOUSESHAPE
3512 update_mouseshape(-1);
3513# endif
3514
3515# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3516# ifdef FEAT_GUI
3517 /* In the GUI the mouse is always enabled. */
3518 if (gui.in_use)
3519 return;
3520# endif
3521 /* be quick when mouse is off */
3522 if (*p_mouse == NUL || has_mouse_termcode == 0)
3523 return;
3524
3525 /* don't switch mouse on when not in raw mode (Ex mode) */
3526 if (cur_tmode != TMODE_RAW)
3527 {
3528 mch_setmouse(FALSE);
3529 return;
3530 }
3531
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 if (VIsual_active)
3533 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003534 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 checkfor = MOUSE_RETURN;
3536 else if (State & INSERT)
3537 checkfor = MOUSE_INSERT;
3538 else if (State & CMDLINE)
3539 checkfor = MOUSE_COMMAND;
3540 else if (State == CONFIRM || State == EXTERNCMD)
3541 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3542 else
3543 checkfor = MOUSE_NORMAL; /* assume normal mode */
3544
3545 if (mouse_has(checkfor))
3546 mch_setmouse(TRUE);
3547 else
3548 mch_setmouse(FALSE);
3549# endif
3550}
3551
3552/*
3553 * Return TRUE if
3554 * - "c" is in 'mouse', or
3555 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3556 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3557 * normal editing mode (not at hit-return message).
3558 */
3559 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003560mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561{
3562 char_u *p;
3563
3564 for (p = p_mouse; *p; ++p)
3565 switch (*p)
3566 {
3567 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3568 return TRUE;
3569 break;
3570 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3571 return TRUE;
3572 break;
3573 default: if (c == *p) return TRUE; break;
3574 }
3575 return FALSE;
3576}
3577
3578/*
3579 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3580 */
3581 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003582mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583{
3584 return (p_mousem[0] == 'p');
3585}
3586#endif
3587
3588/*
3589 * By outputting the 'cursor very visible' termcap code, for some windowed
3590 * terminals this makes the screen scrolled to the correct position.
3591 * Used when starting Vim or returning from a shell.
3592 */
3593 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003594scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595{
3596 if (*T_VS != NUL)
3597 {
3598 out_str(T_VS);
3599 out_str(T_VE);
3600 screen_start(); /* don't know where cursor is now */
3601 }
3602}
3603
3604static int cursor_is_off = FALSE;
3605
3606/*
3607 * Enable the cursor.
3608 */
3609 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003610cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611{
3612 if (cursor_is_off)
3613 {
3614 out_str(T_VE);
3615 cursor_is_off = FALSE;
3616 }
3617}
3618
3619/*
3620 * Disable the cursor.
3621 */
3622 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003623cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624{
3625 if (full_screen)
3626 {
3627 if (!cursor_is_off)
3628 out_str(T_VI); /* disable cursor */
3629 cursor_is_off = TRUE;
3630 }
3631}
3632
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003633#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003635 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003636 */
3637 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003638term_cursor_shape(void)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003639{
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003640 static int showing_mode = NORMAL;
3641 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003642
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003643 /* Only do something when redrawing the screen and we can restore the
3644 * mode. */
3645 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003646 return;
3647
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003648 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003649 {
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003650 if (showing_mode != REPLACE)
3651 {
3652 if (*T_CSR != NUL)
3653 p = T_CSR; /* Replace mode cursor */
3654 else
3655 p = T_CSI; /* fall back to Insert mode cursor */
3656 if (*p != NUL)
3657 {
3658 out_str(p);
3659 showing_mode = REPLACE;
3660 }
3661 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003662 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003663 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003664 {
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003665 if (showing_mode != INSERT && *T_CSI != NUL)
3666 {
3667 out_str(T_CSI); /* Insert mode cursor */
3668 showing_mode = INSERT;
3669 }
3670 }
3671 else if (showing_mode != NORMAL)
3672 {
3673 out_str(T_CEI); /* non-Insert mode cursor */
3674 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003675 }
3676}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003677#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003678
3679/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 * Set scrolling region for window 'wp'.
3681 * The region starts 'off' lines from the start of the window.
3682 * Also set the vertical scroll region for a vertically split window. Always
3683 * the full width of the window, excluding the vertical separator.
3684 */
3685 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003686scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687{
3688 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3689 W_WINROW(wp) + off));
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003690#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 if (*T_CSV != NUL && wp->w_width != Columns)
3692 OUT_STR(tgoto((char *)T_CSV, W_WINCOL(wp) + wp->w_width - 1,
3693 W_WINCOL(wp)));
3694#endif
3695 screen_start(); /* don't know where cursor is now */
3696}
3697
3698/*
3699 * Reset scrolling region to the whole screen.
3700 */
3701 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003702scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703{
3704 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003705#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 if (*T_CSV != NUL)
3707 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
3708#endif
3709 screen_start(); /* don't know where cursor is now */
3710}
3711
3712
3713/*
3714 * List of terminal codes that are currently recognized.
3715 */
3716
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003717static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718{
3719 char_u name[2]; /* termcap name of entry */
3720 char_u *code; /* terminal code (in allocated memory) */
3721 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003722 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723} *termcodes = NULL;
3724
3725static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3726static int tc_len = 0; /* current number of entries in termcodes[] */
3727
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003728static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003729
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003731clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732{
3733 while (tc_len > 0)
3734 vim_free(termcodes[--tc_len].code);
3735 vim_free(termcodes);
3736 termcodes = NULL;
3737 tc_max_len = 0;
3738
3739#ifdef HAVE_TGETENT
3740 BC = (char *)empty_option;
3741 UP = (char *)empty_option;
3742 PC = NUL; /* set pad character to NUL */
3743 ospeed = 0;
3744#endif
3745
3746 need_gather = TRUE; /* need to fill termleader[] */
3747}
3748
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003749#define ATC_FROM_TERM 55
3750
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751/*
3752 * Add a new entry to the list of terminal codes.
3753 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003754 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3755 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 */
3757 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003758add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759{
3760 struct termcode *new_tc;
3761 int i, j;
3762 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003763 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764
3765 if (string == NULL || *string == NUL)
3766 {
3767 del_termcode(name);
3768 return;
3769 }
3770
Bram Moolenaar45500912014-07-09 20:51:07 +02003771#if defined(WIN3264) && !defined(FEAT_GUI)
3772 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 if (s == NULL)
3777 return;
3778
3779 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003780 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003782 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 s[0] = term_7to8bit(string);
3784 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003785
3786#if defined(WIN3264) && !defined(FEAT_GUI)
3787 if (s[0] == K_NUL)
3788 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003789 STRMOVE(s + 1, s);
3790 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02003791 }
3792#endif
3793
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003794 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795
3796 need_gather = TRUE; /* need to fill termleader[] */
3797
3798 /*
3799 * need to make space for more entries
3800 */
3801 if (tc_len == tc_max_len)
3802 {
3803 tc_max_len += 20;
3804 new_tc = (struct termcode *)alloc(
3805 (unsigned)(tc_max_len * sizeof(struct termcode)));
3806 if (new_tc == NULL)
3807 {
3808 tc_max_len -= 20;
3809 return;
3810 }
3811 for (i = 0; i < tc_len; ++i)
3812 new_tc[i] = termcodes[i];
3813 vim_free(termcodes);
3814 termcodes = new_tc;
3815 }
3816
3817 /*
3818 * Look for existing entry with the same name, it is replaced.
3819 * Look for an existing entry that is alphabetical higher, the new entry
3820 * is inserted in front of it.
3821 */
3822 for (i = 0; i < tc_len; ++i)
3823 {
3824 if (termcodes[i].name[0] < name[0])
3825 continue;
3826 if (termcodes[i].name[0] == name[0])
3827 {
3828 if (termcodes[i].name[1] < name[1])
3829 continue;
3830 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003831 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 */
3833 if (termcodes[i].name[1] == name[1])
3834 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003835 if (flags == ATC_FROM_TERM && (j = termcode_star(
3836 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003837 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003838 /* Don't replace ESC[123;*X or ESC O*X with another when
3839 * invoked from got_code_from_term(). */
3840 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003841 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003842 && s[len - 1]
3843 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003844 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003845 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003846 vim_free(s);
3847 return;
3848 }
3849 }
3850 else
3851 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003852 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003853 vim_free(termcodes[i].code);
3854 --tc_len;
3855 break;
3856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 }
3858 }
3859 /*
3860 * Found alphabetical larger entry, move rest to insert new entry
3861 */
3862 for (j = tc_len; j > i; --j)
3863 termcodes[j] = termcodes[j - 1];
3864 break;
3865 }
3866
3867 termcodes[i].name[0] = name[0];
3868 termcodes[i].name[1] = name[1];
3869 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003870 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003871
3872 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
3873 * accept modifiers. */
3874 termcodes[i].modlen = 0;
3875 j = termcode_star(s, len);
3876 if (j > 0)
3877 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 ++tc_len;
3879}
3880
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003881/*
3882 * Check termcode "code[len]" for ending in ;*X, <Esc>O*X or <M-O>*X.
3883 * The "X" can be any character.
3884 * Return 0 if not found, 2 for ;*X and 1 for O*X and <M-O>*X.
3885 */
3886 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003887termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003888{
3889 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
3890 if (len >= 3 && code[len - 2] == '*')
3891 {
3892 if (len >= 5 && code[len - 3] == ';')
3893 return 2;
3894 if ((len >= 4 && code[len - 3] == 'O') || code[len - 3] == 'O' + 128)
3895 return 1;
3896 }
3897 return 0;
3898}
3899
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003901find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902{
3903 int i;
3904
3905 for (i = 0; i < tc_len; ++i)
3906 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3907 return termcodes[i].code;
3908 return NULL;
3909}
3910
3911#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3912 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003913get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914{
3915 if (i >= tc_len)
3916 return NULL;
3917 return &termcodes[i].name[0];
3918}
3919#endif
3920
3921 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003922del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923{
3924 int i;
3925
3926 if (termcodes == NULL) /* nothing there yet */
3927 return;
3928
3929 need_gather = TRUE; /* need to fill termleader[] */
3930
3931 for (i = 0; i < tc_len; ++i)
3932 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3933 {
3934 del_termcode_idx(i);
3935 return;
3936 }
3937 /* not found. Give error message? */
3938}
3939
3940 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003941del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942{
3943 int i;
3944
3945 vim_free(termcodes[idx].code);
3946 --tc_len;
3947 for (i = idx; i < tc_len; ++i)
3948 termcodes[i] = termcodes[i + 1];
3949}
3950
3951#ifdef FEAT_TERMRESPONSE
3952/*
3953 * Called when detected that the terminal sends 8-bit codes.
3954 * Convert all 7-bit codes to their 8-bit equivalent.
3955 */
3956 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003957switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958{
3959 int i;
3960 int c;
3961
3962 /* Only need to do something when not already using 8-bit codes. */
3963 if (!term_is_8bit(T_NAME))
3964 {
3965 for (i = 0; i < tc_len; ++i)
3966 {
3967 c = term_7to8bit(termcodes[i].code);
3968 if (c != 0)
3969 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003970 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 termcodes[i].code[0] = c;
3972 }
3973 }
3974 need_gather = TRUE; /* need to fill termleader[] */
3975 }
3976 detected_8bit = TRUE;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003977 LOG_TR("Switching to 8 bit");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978}
3979#endif
3980
3981#ifdef CHECK_DOUBLE_CLICK
3982static linenr_T orig_topline = 0;
3983# ifdef FEAT_DIFF
3984static int orig_topfill = 0;
3985# endif
3986#endif
3987#if (defined(FEAT_WINDOWS) && defined(CHECK_DOUBLE_CLICK)) || defined(PROTO)
3988/*
3989 * Checking for double clicks ourselves.
3990 * "orig_topline" is used to avoid detecting a double-click when the window
3991 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3992 */
3993/*
3994 * Set orig_topline. Used when jumping to another window, so that a double
3995 * click still works.
3996 */
3997 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003998set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999{
4000 orig_topline = wp->w_topline;
4001# ifdef FEAT_DIFF
4002 orig_topfill = wp->w_topfill;
4003# endif
4004}
4005#endif
4006
4007/*
4008 * Check if typebuf.tb_buf[] contains a terminal key code.
4009 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4010 * + max_offset].
4011 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004012 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 * With a match, the match is removed, the replacement code is inserted in
4014 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4015 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004016 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4017 * "buflen" is then the length of the string in buf[] and is updated for
4018 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 */
4020 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004021check_termcode(
4022 int max_offset,
4023 char_u *buf,
4024 int bufsize,
4025 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026{
4027 char_u *tp;
4028 char_u *p;
4029 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004030 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004032 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 int offset;
4034 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004035 int modifiers;
4036 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 int new_slen;
4038 int extra;
4039 char_u string[MAX_KEY_CODE_LEN + 1];
4040 int i, j;
4041 int idx = 0;
4042#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004043# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4044 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 char_u bytes[6];
4046 int num_bytes;
4047# endif
4048 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 int is_click, is_drag;
4050 int wheel_code = 0;
4051 int current_button;
4052 static int held_button = MOUSE_RELEASE;
4053 static int orig_num_clicks = 1;
4054 static int orig_mouse_code = 0x0;
4055# ifdef CHECK_DOUBLE_CLICK
4056 static int orig_mouse_col = 0;
4057 static int orig_mouse_row = 0;
4058 static struct timeval orig_mouse_time = {0, 0};
4059 /* time of previous mouse click */
4060 struct timeval mouse_time; /* time of current mouse click */
4061 long timediff; /* elapsed time in msec */
4062# endif
4063#endif
4064 int cpo_koffset;
4065#ifdef FEAT_MOUSE_GPM
4066 extern int gpm_flag; /* gpm library variable */
4067#endif
4068
4069 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4070
4071 /*
4072 * Speed up the checks for terminal codes by gathering all first bytes
4073 * used in termleader[]. Often this is just a single <Esc>.
4074 */
4075 if (need_gather)
4076 gather_termleader();
4077
4078 /*
4079 * Check at several positions in typebuf.tb_buf[], to catch something like
4080 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4081 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004082 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 * This is used often, KEEP IT FAST!
4084 */
4085 for (offset = 0; offset < max_offset; ++offset)
4086 {
4087 if (buf == NULL)
4088 {
4089 if (offset >= typebuf.tb_len)
4090 break;
4091 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4092 len = typebuf.tb_len - offset; /* length of the input */
4093 }
4094 else
4095 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004096 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 break;
4098 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004099 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 }
4101
4102 /*
4103 * Don't check characters after K_SPECIAL, those are already
4104 * translated terminal chars (avoid translating ~@^Hx).
4105 */
4106 if (*tp == K_SPECIAL)
4107 {
4108 offset += 2; /* there are always 2 extra characters */
4109 continue;
4110 }
4111
4112 /*
4113 * Skip this position if the character does not appear as the first
4114 * character in term_strings. This speeds up a lot, since most
4115 * termcodes start with the same character (ESC or CSI).
4116 */
4117 i = *tp;
4118 for (p = termleader; *p && *p != i; ++p)
4119 ;
4120 if (*p == NUL)
4121 continue;
4122
4123 /*
4124 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4125 * are in Insert mode.
4126 */
4127 if (*tp == ESC && !p_ek && (State & INSERT))
4128 continue;
4129
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004131 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004132 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133
4134#ifdef FEAT_GUI
4135 if (gui.in_use)
4136 {
4137 /*
4138 * GUI special key codes are all of the form [CSI xx].
4139 */
4140 if (*tp == CSI) /* Special key from GUI */
4141 {
4142 if (len < 3)
4143 return -1; /* Shouldn't happen */
4144 slen = 3;
4145 key_name[0] = tp[1];
4146 key_name[1] = tp[2];
4147 }
4148 }
4149 else
4150#endif /* FEAT_GUI */
4151 {
4152 for (idx = 0; idx < tc_len; ++idx)
4153 {
4154 /*
4155 * Ignore the entry if we are not at the start of
4156 * typebuf.tb_buf[]
4157 * and there are not enough characters to make a match.
4158 * But only when the 'K' flag is in 'cpoptions'.
4159 */
4160 slen = termcodes[idx].len;
4161 if (cpo_koffset && offset && len < slen)
4162 continue;
4163 if (STRNCMP(termcodes[idx].code, tp,
4164 (size_t)(slen > len ? len : slen)) == 0)
4165 {
4166 if (len < slen) /* got a partial sequence */
4167 return -1; /* need to get more chars */
4168
4169 /*
4170 * When found a keypad key, check if there is another key
4171 * that matches and use that one. This makes <Home> to be
4172 * found instead of <kHome> when they produce the same
4173 * key code.
4174 */
4175 if (termcodes[idx].name[0] == 'K'
4176 && VIM_ISDIGIT(termcodes[idx].name[1]))
4177 {
4178 for (j = idx + 1; j < tc_len; ++j)
4179 if (termcodes[j].len == slen &&
4180 STRNCMP(termcodes[idx].code,
4181 termcodes[j].code, slen) == 0)
4182 {
4183 idx = j;
4184 break;
4185 }
4186 }
4187
4188 key_name[0] = termcodes[idx].name[0];
4189 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 break;
4191 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004192
4193 /*
4194 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004195 * <Esc>[123;*X (modslen == slen - 3)
4196 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4197 * When there is a modifier the * matches a number.
4198 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004199 */
4200 if (termcodes[idx].modlen > 0)
4201 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004202 modslen = termcodes[idx].modlen;
4203 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004204 continue;
4205 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004206 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004207 {
4208 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004209
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004210 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004211 return -1; /* need to get more chars */
4212
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004213 if (tp[modslen] == termcodes[idx].code[slen - 1])
4214 slen = modslen + 1; /* no modifiers */
4215 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004216 continue; /* no match */
4217 else
4218 {
4219 /* Skip over the digits, the final char must
4220 * follow. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004221 for (j = slen - 2; j < len && isdigit(tp[j]); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004222 ;
4223 ++j;
4224 if (len < j) /* got a partial sequence */
4225 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004226 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4227 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004228
4229 /* Match! Convert modifier bits. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004230 n = atoi((char *)tp + slen - 2) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004231 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004232 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004233 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004234 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004235 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004236 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004237 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004238 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004239
4240 slen = j;
4241 }
4242 key_name[0] = termcodes[idx].name[0];
4243 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004244 break;
4245 }
4246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 }
4248 }
4249
4250#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004251 if (key_name[0] == NUL
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004252 /* Mouse codes of DEC, pterm, and URXVT start with <ESC>[. When
4253 * detecting the start of these mouse codes they might as well be
4254 * another key code or terminal response. */
4255# ifdef FEAT_MOUSE_DEC
4256 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004257# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004258# ifdef FEAT_MOUSE_PTERM
4259 || key_name[0] == KS_PTERM_MOUSE
4260# endif
4261# ifdef FEAT_MOUSE_URXVT
4262 || key_name[0] == KS_URXVT_MOUSE
4263# endif
4264 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004266 /* Check for some responses from the terminal starting with
4267 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004268 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004269 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaar9584b312013-03-13 19:29:28 +01004270 * Also eat other possible responses to t_RV, rxvt returns
4271 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4272 * mrxvt has been reported to have "+" in the version. Assume
4273 * the escape sequence ends with a letter or one of "{|}~".
4274 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004275 * - Cursor position report: <Esc>[{row};{col}R
4276 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004277 * ambiguous-width character state.
4278 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004279 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004280
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004281 if ((*T_CRV != NUL || *T_U7 != NUL)
4282 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004283 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004284 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 {
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004286#ifdef FEAT_MBYTE
4287 int col;
Bram Moolenaarc41053062014-03-25 13:46:26 +01004288 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004289#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 j = 0;
4291 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004292 for (i = 2 + (tp[0] != CSI); i < len
4293 && !(tp[i] >= '{' && tp[i] <= '~')
4294 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 if (tp[i] == ';' && ++j == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004296 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004297 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004298#ifdef FEAT_MBYTE
4299 row_char = tp[i - 1];
4300#endif
4301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004303 {
4304 LOG_TR("Not enough characters for CRV");
4305 return -1;
4306 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004307#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004308 if (extra > 0)
4309 col = atoi((char *)tp + extra);
4310 else
4311 col = 0;
4312
4313 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4314 * u7_status is not "sent", it may be from a previous Vim that
4315 * just exited. But not for <S-F3>, it sends something
4316 * similar, check for row and column to make sense. */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004317 if (j == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004318 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004319 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004320 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004321 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004322
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004323 LOG_TR("Received U7 status");
4324 u7_status = U7_GOT;
4325# ifdef FEAT_AUTOCMD
4326 did_cursorhold = TRUE;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004327# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004328 if (col == 2)
4329 aw = "single";
4330 else if (col == 3)
4331 aw = "double";
4332 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4333 {
4334 /* Setting the option causes a screen redraw. Do
4335 * that right away if possible, keeping any
4336 * messages. */
4337 set_option_value((char_u *)"ambw", 0L,
4338 (char_u *)aw, 0);
4339# ifdef DEBUG_TERMRESPONSE
4340 {
4341 char buf[100];
4342 int r = redraw_asap(CLEAR);
4343
4344 sprintf(buf,
4345 "set 'ambiwidth', redraw_asap(): %d",
4346 r);
4347 log_tr(buf);
4348 }
4349# else
4350 redraw_asap(CLEAR);
4351# endif
4352 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004353 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004354 key_name[0] = (int)KS_EXTRA;
4355 key_name[1] = (int)KE_IGNORE;
4356 slen = i + 1;
4357 }
4358 else
4359#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004361 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004363 LOG_TR("Received CRV");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 crv_status = CRV_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004365# ifdef FEAT_AUTOCMD
4366 did_cursorhold = TRUE;
4367# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368
4369 /* If this code starts with CSI, you can bet that the
4370 * terminal uses 8-bit codes. */
4371 if (tp[0] == CSI)
4372 switch_to_8bit();
4373
4374 /* rxvt sends its version number: "20703" is 2.7.3.
4375 * Ignore it for when the user has set 'term' to xterm,
4376 * even though it's an rxvt. */
Bram Moolenaar46a75612013-05-15 14:22:41 +02004377 if (extra > 0)
4378 extra = atoi((char *)tp + extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 if (extra > 20000)
4380 extra = 0;
4381
4382 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2)
4383 {
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004384 /* Only set 'ttymouse' automatically if it was not set
4385 * by the user already. */
4386 if (!option_was_set((char_u *)"ttym"))
4387 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004388# ifdef TTYM_SGR
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004389 if (extra >= 277)
4390 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004391 (char_u *)"sgr", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004392 else
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004393# endif
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004394 /* if xterm version >= 95 use mouse dragging */
4395 if (extra >= 95)
4396 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 (char_u *)"xterm2", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004398 }
4399
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 /* if xterm version >= 141 try to get termcap codes */
4401 if (extra >= 141)
4402 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004403 LOG_TR("Enable checking for XT codes");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 check_for_codes = TRUE;
4405 need_gather = TRUE;
4406 req_codes_from_term();
4407 }
4408 }
4409# ifdef FEAT_EVAL
4410 set_vim_var_string(VV_TERMRESPONSE, tp, i + 1);
4411# endif
4412# ifdef FEAT_AUTOCMD
4413 apply_autocmds(EVENT_TERMRESPONSE,
4414 NULL, NULL, FALSE, curbuf);
4415# endif
4416 key_name[0] = (int)KS_EXTRA;
4417 key_name[1] = (int)KE_IGNORE;
4418 slen = i + 1;
4419 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004420 }
4421
4422 /* Check for background color response from the terminal:
4423 *
4424 * {lead}11;rgb:{rrrr}/{gggg}/{bbbb}{tail}
4425 *
4426 * {lead} can be <Esc>] or OSC
4427 * {tail} can be '\007', <Esc>\ or STERM.
4428 *
4429 * Consume any code that starts with "{lead}11;", it's also
4430 * possible that "rgba" is following.
4431 */
4432 else if (*T_RBG != NUL
4433 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4434 || tp[0] == OSC))
4435 {
4436 j = 1 + (tp[0] == ESC);
4437 if (len >= j + 3 && (argp[0] != '1'
4438 || argp[1] != '1' || argp[2] != ';'))
4439 i = 0; /* no match */
4440 else
4441 for (i = j; i < len; ++i)
4442 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4443 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004444 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004445 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
4446 && tp[j + 11] == '/' && tp[j + 16] == '/'
4447 && !option_was_set((char_u *)"bg"))
4448 {/* TODO: don't set option when already the right value */
4449 LOG_TR("Received RBG");
4450 rbg_status = RBG_GOT;
4451 set_option_value((char_u *)"bg", 0L, (char_u *)(
4452 (3 * '6' < tp[j+7] + tp[j+12] + tp[j+17])
4453 ? "light" : "dark"), 0);
4454 reset_option_was_set((char_u *)"bg");
4455 redraw_asap(CLEAR);
4456 }
4457
4458 /* got finished code: consume it */
4459 key_name[0] = (int)KS_EXTRA;
4460 key_name[1] = (int)KE_IGNORE;
4461 slen = i + 1 + (tp[i] == ESC);
4462 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004463 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004464 if (i == len)
4465 {
4466 LOG_TR("not enough characters for RB");
4467 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 }
4470
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004471 /* Check for key code response from xterm:
4472 *
4473 * {lead}{flag}+r<hex bytes><{tail}
4474 *
4475 * {lead} can be <Esc>P or DCS
4476 * {flag} can be '0' or '1'
4477 * {tail} can be Esc>\ or STERM
4478 *
4479 * Consume any code that starts with "{lead}.+r".
4480 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 else if (check_for_codes
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004482 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 || tp[0] == DCS))
4484 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004485 j = 1 + (tp[0] == ESC);
4486 if (len >= j + 3 && (argp[1] != '+' || argp[2] != 'r'))
4487 i = 0; /* no match */
4488 else
4489 for (i = j; i < len; ++i)
4490 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 || tp[i] == STERM)
4492 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004493 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 got_code_from_term(tp + j, i);
4495 key_name[0] = (int)KS_EXTRA;
4496 key_name[1] = (int)KE_IGNORE;
4497 slen = i + 1 + (tp[i] == ESC);
4498 break;
4499 }
4500
4501 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004502 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004503 /* These codes arrive many together, each code can be
4504 * truncated at any point. */
Bram Moolenaar2951b772013-07-03 12:45:31 +02004505 LOG_TR("not enough characters for XT");
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004506 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004507 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 }
4509 }
4510#endif
4511
4512 if (key_name[0] == NUL)
4513 continue; /* No match at this position, try next one */
4514
4515 /* We only get here when we have a complete termcode match */
4516
4517#ifdef FEAT_MOUSE
4518# ifdef FEAT_GUI
4519 /*
4520 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4521 * so that we know which window to scroll later.
4522 */
4523 if (gui.in_use
4524 && key_name[0] == (int)KS_EXTRA
4525 && (key_name[1] == (int)KE_X1MOUSE
4526 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004527 || key_name[1] == (int)KE_MOUSELEFT
4528 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 || key_name[1] == (int)KE_MOUSEDOWN
4530 || key_name[1] == (int)KE_MOUSEUP))
4531 {
4532 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4533 if (num_bytes == -1) /* not enough coordinates */
4534 return -1;
4535 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4536 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4537 slen += num_bytes;
4538 }
4539 else
4540# endif
4541 /*
4542 * If it is a mouse click, get the coordinates.
4543 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004544 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004546 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547# endif
4548# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004549 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550# endif
4551# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004552 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553# endif
4554# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004555 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004557# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004558 || key_name[0] == KS_URXVT_MOUSE
4559# endif
4560# ifdef FEAT_MOUSE_SGR
4561 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004562# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 )
4564 {
4565 is_click = is_drag = FALSE;
4566
Bram Moolenaar864207d2008-06-24 22:14:38 +00004567# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4568 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 if (key_name[0] == (int)KS_MOUSE)
4570 {
4571 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004572 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 * s == encoded button state:
4574 * 0x20 = left button down
4575 * 0x21 = middle button down
4576 * 0x22 = right button down
4577 * 0x23 = any button release
4578 * 0x60 = button 4 down (scroll wheel down)
4579 * 0x61 = button 5 down (scroll wheel up)
4580 * add 0x04 for SHIFT
4581 * add 0x08 for ALT
4582 * add 0x10 for CTRL
4583 * add 0x20 for mouse drag (0x40 is drag with left button)
4584 * c == column + ' ' + 1 == column + 33
4585 * r == row + ' ' + 1 == row + 33
4586 *
4587 * The coordinates are passed on through global variables.
4588 * Ugly, but this avoids trouble with mouse clicks at an
4589 * unexpected moment and allows for mapping them.
4590 */
4591 for (;;)
4592 {
4593#ifdef FEAT_GUI
4594 if (gui.in_use)
4595 {
4596 /* GUI uses more bits for columns > 223 */
4597 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
4598 if (num_bytes == -1) /* not enough coordinates */
4599 return -1;
4600 mouse_code = bytes[0];
4601 mouse_col = 128 * (bytes[1] - ' ' - 1)
4602 + bytes[2] - ' ' - 1;
4603 mouse_row = 128 * (bytes[3] - ' ' - 1)
4604 + bytes[4] - ' ' - 1;
4605 }
4606 else
4607#endif
4608 {
4609 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
4610 if (num_bytes == -1) /* not enough coordinates */
4611 return -1;
4612 mouse_code = bytes[0];
4613 mouse_col = bytes[1] - ' ' - 1;
4614 mouse_row = bytes[2] - ' ' - 1;
4615 }
4616 slen += num_bytes;
4617
4618 /* If the following bytes is also a mouse code and it has
4619 * the same code, dump this one and get the next. This
4620 * makes dragging a whole lot faster. */
4621#ifdef FEAT_GUI
4622 if (gui.in_use)
4623 j = 3;
4624 else
4625#endif
4626 j = termcodes[idx].len;
4627 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
4628 && tp[slen + j] == mouse_code
4629 && tp[slen + j + 1] != NUL
4630 && tp[slen + j + 2] != NUL
4631#ifdef FEAT_GUI
4632 && (!gui.in_use
4633 || (tp[slen + j + 3] != NUL
4634 && tp[slen + j + 4] != NUL))
4635#endif
4636 )
4637 slen += j;
4638 else
4639 break;
4640 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004641 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004643# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
4644 if (key_name[0] == KS_URXVT_MOUSE
4645 || key_name[0] == KS_SGR_MOUSE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004646 {
4647 for (;;)
4648 {
4649 /* URXVT 1015 mouse reporting mode:
4650 * Almost identical to xterm mouse mode, except the values
4651 * are decimal instead of bytes.
4652 *
4653 * \033[%d;%d;%dM
4654 * ^-- row
4655 * ^----- column
4656 * ^-------- code
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004657 *
4658 * SGR 1006 mouse reporting mode:
4659 * Almost identical to xterm mouse mode, except the values
4660 * are decimal instead of bytes.
4661 *
4662 * \033[<%d;%d;%dM
4663 * ^-- row
4664 * ^----- column
4665 * ^-------- code
4666 *
4667 * \033[<%d;%d;%dm : mouse release event
4668 * ^-- row
4669 * ^----- column
4670 * ^-------- code
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004671 */
4672 p = tp + slen;
4673
4674 mouse_code = getdigits(&p);
4675 if (*p++ != ';')
4676 return -1;
4677
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004678 /* when mouse reporting is SGR, add 32 to mouse code */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004679 if (key_name[0] == KS_SGR_MOUSE)
4680 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004681
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004682 mouse_col = getdigits(&p) - 1;
4683 if (*p++ != ';')
4684 return -1;
4685
4686 mouse_row = getdigits(&p) - 1;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004687 if (key_name[0] == KS_SGR_MOUSE && *p == 'm')
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004688 mouse_code |= MOUSE_RELEASE;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004689 else if (*p != 'M')
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004690 return -1;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004691 p++;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004692
4693 slen += (int)(p - (tp + slen));
4694
4695 /* skip this one if next one has same code (like xterm
4696 * case) */
4697 j = termcodes[idx].len;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004698 if (STRNCMP(tp, tp + slen, (size_t)j) == 0)
4699 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004700 int slen2;
4701 int cmd_complete = 0;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004702
4703 /* check if the command is complete by looking for the
4704 * 'M' */
4705 for (slen2 = slen; slen2 < len; slen2++)
4706 {
4707 if (tp[slen2] == 'M'
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004708 || (key_name[0] == KS_SGR_MOUSE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004709 && tp[slen2] == 'm'))
4710 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004711 cmd_complete = 1;
4712 break;
4713 }
4714 }
4715 p += j;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004716 if (cmd_complete && getdigits(&p) == mouse_code)
4717 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004718 slen += j; /* skip the \033[ */
4719 continue;
4720 }
4721 }
4722 break;
4723 }
4724 }
4725# endif
4726
4727 if (key_name[0] == (int)KS_MOUSE
4728#ifdef FEAT_MOUSE_URXVT
4729 || key_name[0] == (int)KS_URXVT_MOUSE
4730#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004731#ifdef FEAT_MOUSE_SGR
4732 || key_name[0] == KS_SGR_MOUSE
4733#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004734 )
4735 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004736# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 /*
4738 * Handle mouse events.
4739 * Recognize the xterm mouse wheel, but not in the GUI, the
4740 * Linux console with GPM and the MS-DOS or Win32 console
4741 * (multi-clicks use >= 0x60).
4742 */
4743 if (mouse_code >= MOUSEWHEEL_LOW
4744# ifdef FEAT_GUI
4745 && !gui.in_use
4746# endif
4747# ifdef FEAT_MOUSE_GPM
4748 && gpm_flag == 0
4749# endif
4750 )
4751 {
4752 /* Keep the mouse_code before it's changed, so that we
4753 * remember that it was a mouse wheel click. */
4754 wheel_code = mouse_code;
4755 }
4756# ifdef FEAT_MOUSE_XTERM
4757 else if (held_button == MOUSE_RELEASE
4758# ifdef FEAT_GUI
4759 && !gui.in_use
4760# endif
4761 && (mouse_code == 0x23 || mouse_code == 0x24))
4762 {
4763 /* Apparently used by rxvt scroll wheel. */
4764 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW;
4765 }
4766# endif
4767
4768# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
4769 else if (use_xterm_mouse() > 1)
4770 {
4771 if (mouse_code & MOUSE_DRAG_XTERM)
4772 mouse_code |= MOUSE_DRAG;
4773 }
4774# endif
4775# ifdef FEAT_XCLIPBOARD
4776 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
4777 {
4778 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
4779 stop_xterm_trace();
4780 else
4781 start_xterm_trace(mouse_code);
4782 }
4783# endif
4784# endif
4785 }
4786# endif /* !UNIX || FEAT_MOUSE_XTERM */
4787# ifdef FEAT_MOUSE_NET
4788 if (key_name[0] == (int)KS_NETTERM_MOUSE)
4789 {
4790 int mc, mr;
4791
4792 /* expect a rather limited sequence like: balancing {
4793 * \033}6,45\r
4794 * '6' is the row, 45 is the column
4795 */
4796 p = tp + slen;
4797 mr = getdigits(&p);
4798 if (*p++ != ',')
4799 return -1;
4800 mc = getdigits(&p);
4801 if (*p++ != '\r')
4802 return -1;
4803
4804 mouse_col = mc - 1;
4805 mouse_row = mr - 1;
4806 mouse_code = MOUSE_LEFT;
4807 slen += (int)(p - (tp + slen));
4808 }
4809# endif /* FEAT_MOUSE_NET */
4810# ifdef FEAT_MOUSE_JSB
4811 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
4812 {
4813 int mult, val, iter, button, status;
4814
4815 /* JSBTERM Input Model
4816 * \033[0~zw uniq escape sequence
4817 * (L-x) Left button pressed - not pressed x not reporting
4818 * (M-x) Middle button pressed - not pressed x not reporting
4819 * (R-x) Right button pressed - not pressed x not reporting
4820 * (SDmdu) Single , Double click, m mouse move d button down
4821 * u button up
4822 * ### X cursor position padded to 3 digits
4823 * ### Y cursor position padded to 3 digits
4824 * (s-x) SHIFT key pressed - not pressed x not reporting
4825 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004826 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 */
4828
4829 p = tp + slen;
4830 button = mouse_code = 0;
4831 switch (*p++)
4832 {
4833 case 'L': button = 1; break;
4834 case '-': break;
4835 case 'x': break; /* ignore sequence */
4836 default: return -1; /* Unknown Result */
4837 }
4838 switch (*p++)
4839 {
4840 case 'M': button |= 2; break;
4841 case '-': break;
4842 case 'x': break; /* ignore sequence */
4843 default: return -1; /* Unknown Result */
4844 }
4845 switch (*p++)
4846 {
4847 case 'R': button |= 4; break;
4848 case '-': break;
4849 case 'x': break; /* ignore sequence */
4850 default: return -1; /* Unknown Result */
4851 }
4852 status = *p++;
4853 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4854 mult /= 10, p++)
4855 if (*p >= '0' && *p <= '9')
4856 val += (*p - '0') * mult;
4857 else
4858 return -1;
4859 mouse_col = val;
4860 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4861 mult /= 10, p++)
4862 if (*p >= '0' && *p <= '9')
4863 val += (*p - '0') * mult;
4864 else
4865 return -1;
4866 mouse_row = val;
4867 switch (*p++)
4868 {
4869 case 's': button |= 8; break; /* SHIFT key Pressed */
4870 case '-': break; /* Not Pressed */
4871 case 'x': break; /* Not Reporting */
4872 default: return -1; /* Unknown Result */
4873 }
4874 switch (*p++)
4875 {
4876 case 'c': button |= 16; break; /* CTRL key Pressed */
4877 case '-': break; /* Not Pressed */
4878 case 'x': break; /* Not Reporting */
4879 default: return -1; /* Unknown Result */
4880 }
4881 if (*p++ != '\033')
4882 return -1;
4883 if (*p++ != '\\')
4884 return -1;
4885 switch (status)
4886 {
4887 case 'D': /* Double Click */
4888 case 'S': /* Single Click */
4889 if (button & 1) mouse_code |= MOUSE_LEFT;
4890 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4891 if (button & 4) mouse_code |= MOUSE_RIGHT;
4892 if (button & 8) mouse_code |= MOUSE_SHIFT;
4893 if (button & 16) mouse_code |= MOUSE_CTRL;
4894 break;
4895 case 'm': /* Mouse move */
4896 if (button & 1) mouse_code |= MOUSE_LEFT;
4897 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4898 if (button & 4) mouse_code |= MOUSE_RIGHT;
4899 if (button & 8) mouse_code |= MOUSE_SHIFT;
4900 if (button & 16) mouse_code |= MOUSE_CTRL;
4901 if ((button & 7) != 0)
4902 {
4903 held_button = mouse_code;
4904 mouse_code |= MOUSE_DRAG;
4905 }
4906 is_drag = TRUE;
4907 showmode();
4908 break;
4909 case 'd': /* Button Down */
4910 if (button & 1) mouse_code |= MOUSE_LEFT;
4911 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4912 if (button & 4) mouse_code |= MOUSE_RIGHT;
4913 if (button & 8) mouse_code |= MOUSE_SHIFT;
4914 if (button & 16) mouse_code |= MOUSE_CTRL;
4915 break;
4916 case 'u': /* Button Up */
4917 if (button & 1)
4918 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
4919 if (button & 2)
4920 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
4921 if (button & 4)
4922 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
4923 if (button & 8)
4924 mouse_code |= MOUSE_SHIFT;
4925 if (button & 16)
4926 mouse_code |= MOUSE_CTRL;
4927 break;
4928 default: return -1; /* Unknown Result */
4929 }
4930
4931 slen += (p - (tp + slen));
4932 }
4933# endif /* FEAT_MOUSE_JSB */
4934# ifdef FEAT_MOUSE_DEC
4935 if (key_name[0] == (int)KS_DEC_MOUSE)
4936 {
4937 /* The DEC Locator Input Model
4938 * Netterm delivers the code sequence:
4939 * \033[2;4;24;80&w (left button down)
4940 * \033[3;0;24;80&w (left button up)
4941 * \033[6;1;24;80&w (right button down)
4942 * \033[7;0;24;80&w (right button up)
4943 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
4944 * Pe is the event code
4945 * Pb is the button code
4946 * Pr is the row coordinate
4947 * Pc is the column coordinate
4948 * Pp is the third coordinate (page number)
4949 * Pe, the event code indicates what event caused this report
4950 * The following event codes are defined:
4951 * 0 - request, the terminal received an explicit request
4952 * for a locator report, but the locator is unavailable
4953 * 1 - request, the terminal received an explicit request
4954 * for a locator report
4955 * 2 - left button down
4956 * 3 - left button up
4957 * 4 - middle button down
4958 * 5 - middle button up
4959 * 6 - right button down
4960 * 7 - right button up
4961 * 8 - fourth button down
4962 * 9 - fourth button up
4963 * 10 - locator outside filter rectangle
4964 * Pb, the button code, ASCII decimal 0-15 indicating which
4965 * buttons are down if any. The state of the four buttons
4966 * on the locator correspond to the low four bits of the
4967 * decimal value,
4968 * "1" means button depressed
4969 * 0 - no buttons down,
4970 * 1 - right,
4971 * 2 - middle,
4972 * 4 - left,
4973 * 8 - fourth
4974 * Pr is the row coordinate of the locator position in the page,
4975 * encoded as an ASCII decimal value.
4976 * If Pr is omitted, the locator position is undefined
4977 * (outside the terminal window for example).
4978 * Pc is the column coordinate of the locator position in the
4979 * page, encoded as an ASCII decimal value.
4980 * If Pc is omitted, the locator position is undefined
4981 * (outside the terminal window for example).
4982 * Pp is the page coordinate of the locator position
4983 * encoded as an ASCII decimal value.
4984 * The page coordinate may be omitted if the locator is on
4985 * page one (the default). We ignore it anyway.
4986 */
4987 int Pe, Pb, Pr, Pc;
4988
4989 p = tp + slen;
4990
4991 /* get event status */
4992 Pe = getdigits(&p);
4993 if (*p++ != ';')
4994 return -1;
4995
4996 /* get button status */
4997 Pb = getdigits(&p);
4998 if (*p++ != ';')
4999 return -1;
5000
5001 /* get row status */
5002 Pr = getdigits(&p);
5003 if (*p++ != ';')
5004 return -1;
5005
5006 /* get column status */
5007 Pc = getdigits(&p);
5008
5009 /* the page parameter is optional */
5010 if (*p == ';')
5011 {
5012 p++;
5013 (void)getdigits(&p);
5014 }
5015 if (*p++ != '&')
5016 return -1;
5017 if (*p++ != 'w')
5018 return -1;
5019
5020 mouse_code = 0;
5021 switch (Pe)
5022 {
5023 case 0: return -1; /* position request while unavailable */
5024 case 1: /* a response to a locator position request includes
5025 the status of all buttons */
5026 Pb &= 7; /* mask off and ignore fourth button */
5027 if (Pb & 4)
5028 mouse_code = MOUSE_LEFT;
5029 if (Pb & 2)
5030 mouse_code = MOUSE_MIDDLE;
5031 if (Pb & 1)
5032 mouse_code = MOUSE_RIGHT;
5033 if (Pb)
5034 {
5035 held_button = mouse_code;
5036 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005037 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 }
5039 is_drag = TRUE;
5040 showmode();
5041 break;
5042 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005043 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 break;
5045 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5046 break;
5047 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005048 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 break;
5050 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5051 break;
5052 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005053 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 break;
5055 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5056 break;
5057 case 8: return -1; /* fourth button down */
5058 case 9: return -1; /* fourth button up */
5059 case 10: return -1; /* mouse outside of filter rectangle */
5060 default: return -1; /* should never occur */
5061 }
5062
5063 mouse_col = Pc - 1;
5064 mouse_row = Pr - 1;
5065
5066 slen += (int)(p - (tp + slen));
5067 }
5068# endif /* FEAT_MOUSE_DEC */
5069# ifdef FEAT_MOUSE_PTERM
5070 if (key_name[0] == (int)KS_PTERM_MOUSE)
5071 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005072 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073
5074 p = tp + slen;
5075
5076 action = getdigits(&p);
5077 if (*p++ != ';')
5078 return -1;
5079
5080 mouse_row = getdigits(&p);
5081 if (*p++ != ';')
5082 return -1;
5083 mouse_col = getdigits(&p);
5084 if (*p++ != ';')
5085 return -1;
5086
5087 button = getdigits(&p);
5088 mouse_code = 0;
5089
5090 switch( button )
5091 {
5092 case 4: mouse_code = MOUSE_LEFT; break;
5093 case 1: mouse_code = MOUSE_RIGHT; break;
5094 case 2: mouse_code = MOUSE_MIDDLE; break;
5095 default: return -1;
5096 }
5097
5098 switch( action )
5099 {
5100 case 31: /* Initial press */
5101 if (*p++ != ';')
5102 return -1;
5103
5104 num_clicks = getdigits(&p); /* Not used */
5105 break;
5106
5107 case 32: /* Release */
5108 mouse_code |= MOUSE_RELEASE;
5109 break;
5110
5111 case 33: /* Drag */
5112 held_button = mouse_code;
5113 mouse_code |= MOUSE_DRAG;
5114 break;
5115
5116 default:
5117 return -1;
5118 }
5119
5120 if (*p++ != 't')
5121 return -1;
5122
5123 slen += (p - (tp + slen));
5124 }
5125# endif /* FEAT_MOUSE_PTERM */
5126
5127 /* Interpret the mouse code */
5128 current_button = (mouse_code & MOUSE_CLICK_MASK);
5129 if (current_button == MOUSE_RELEASE
5130# ifdef FEAT_MOUSE_XTERM
5131 && wheel_code == 0
5132# endif
5133 )
5134 {
5135 /*
5136 * If we get a mouse drag or release event when
5137 * there is no mouse button held down (held_button ==
5138 * MOUSE_RELEASE), produce a K_IGNORE below.
5139 * (can happen when you hold down two buttons
5140 * and then let them go, or click in the menu bar, but not
5141 * on a menu, and drag into the text).
5142 */
5143 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5144 is_drag = TRUE;
5145 current_button = held_button;
5146 }
5147 else if (wheel_code == 0)
5148 {
5149# ifdef CHECK_DOUBLE_CLICK
5150# ifdef FEAT_MOUSE_GPM
5151# ifdef FEAT_GUI
5152 /*
5153 * Only for Unix, when GUI or gpm is not active, we handle
5154 * multi-clicks here.
5155 */
5156 if (gpm_flag == 0 && !gui.in_use)
5157# else
5158 if (gpm_flag == 0)
5159# endif
5160# else
5161# ifdef FEAT_GUI
5162 if (!gui.in_use)
5163# endif
5164# endif
5165 {
5166 /*
5167 * Compute the time elapsed since the previous mouse click.
5168 */
5169 gettimeofday(&mouse_time, NULL);
5170 timediff = (mouse_time.tv_usec
5171 - orig_mouse_time.tv_usec) / 1000;
5172 if (timediff < 0)
5173 --orig_mouse_time.tv_sec;
5174 timediff += (mouse_time.tv_sec
5175 - orig_mouse_time.tv_sec) * 1000;
5176 orig_mouse_time = mouse_time;
5177 if (mouse_code == orig_mouse_code
5178 && timediff < p_mouset
5179 && orig_num_clicks != 4
5180 && orig_mouse_col == mouse_col
5181 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005182 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005184 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005186 )
5187#ifdef FEAT_WINDOWS
5188 /* Double click in tab pages line also works
5189 * when window contents changes. */
5190 || (mouse_row == 0 && firstwin->w_winrow > 0)
5191#endif
5192 )
5193 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 ++orig_num_clicks;
5195 else
5196 orig_num_clicks = 1;
5197 orig_mouse_col = mouse_col;
5198 orig_mouse_row = mouse_row;
5199 orig_topline = curwin->w_topline;
5200#ifdef FEAT_DIFF
5201 orig_topfill = curwin->w_topfill;
5202#endif
5203 }
5204# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5205 else
5206 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5207# endif
5208# else
5209 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5210# endif
5211 is_click = TRUE;
5212 orig_mouse_code = mouse_code;
5213 }
5214 if (!is_drag)
5215 held_button = mouse_code & MOUSE_CLICK_MASK;
5216
5217 /*
5218 * Translate the actual mouse event into a pseudo mouse event.
5219 * First work out what modifiers are to be used.
5220 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 if (orig_mouse_code & MOUSE_SHIFT)
5222 modifiers |= MOD_MASK_SHIFT;
5223 if (orig_mouse_code & MOUSE_CTRL)
5224 modifiers |= MOD_MASK_CTRL;
5225 if (orig_mouse_code & MOUSE_ALT)
5226 modifiers |= MOD_MASK_ALT;
5227 if (orig_num_clicks == 2)
5228 modifiers |= MOD_MASK_2CLICK;
5229 else if (orig_num_clicks == 3)
5230 modifiers |= MOD_MASK_3CLICK;
5231 else if (orig_num_clicks == 4)
5232 modifiers |= MOD_MASK_4CLICK;
5233
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 /* Work out our pseudo mouse event */
5235 key_name[0] = (int)KS_EXTRA;
5236 if (wheel_code != 0)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005237 {
5238 if (wheel_code & MOUSE_CTRL)
5239 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005240 if (wheel_code & MOUSE_ALT)
5241 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 key_name[1] = (wheel_code & 1)
5243 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 else
5246 key_name[1] = get_pseudo_mouse_code(current_button,
5247 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005248
5249 /* Make sure the mouse position is valid. Some terminals may
5250 * return weird values. */
5251 if (mouse_col >= Columns)
5252 mouse_col = Columns - 1;
5253 if (mouse_row >= Rows)
5254 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 }
5256#endif /* FEAT_MOUSE */
5257
5258#ifdef FEAT_GUI
5259 /*
5260 * If using the GUI, then we get menu and scrollbar events.
5261 *
5262 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5263 * four bytes which are to be taken as a pointer to the vimmenu_T
5264 * structure.
5265 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005266 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005267 * is one byte with the tab index.
5268 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5270 * by one byte representing the scrollbar number, and then four bytes
5271 * representing a long_u which is the new value of the scrollbar.
5272 *
5273 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5274 * KE_FILLER followed by four bytes representing a long_u which is the
5275 * new value of the scrollbar.
5276 */
5277# ifdef FEAT_MENU
5278 else if (key_name[0] == (int)KS_MENU)
5279 {
5280 long_u val;
5281
5282 num_bytes = get_long_from_buf(tp + slen, &val);
5283 if (num_bytes == -1)
5284 return -1;
5285 current_menu = (vimmenu_T *)val;
5286 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005287
5288 /* The menu may have been deleted right after it was used, check
5289 * for that. */
5290 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5291 {
5292 key_name[0] = KS_EXTRA;
5293 key_name[1] = (int)KE_IGNORE;
5294 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 }
5296# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005297# ifdef FEAT_GUI_TABLINE
5298 else if (key_name[0] == (int)KS_TABLINE)
5299 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005300 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005301 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5302 if (num_bytes == -1)
5303 return -1;
5304 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005305 if (current_tab == 255) /* -1 in a byte gives 255 */
5306 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005307 slen += num_bytes;
5308 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005309 else if (key_name[0] == (int)KS_TABMENU)
5310 {
5311 /* Selecting tabline tab or using its menu. */
5312 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5313 if (num_bytes == -1)
5314 return -1;
5315 current_tab = (int)bytes[0];
5316 current_tabmenu = (int)bytes[1];
5317 slen += num_bytes;
5318 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005319# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320# ifndef USE_ON_FLY_SCROLL
5321 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5322 {
5323 long_u val;
5324
5325 /* Get the last scrollbar event in the queue of the same type */
5326 j = 0;
5327 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5328 && tp[j + 2] != NUL; ++i)
5329 {
5330 j += 3;
5331 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5332 if (num_bytes == -1)
5333 break;
5334 if (i == 0)
5335 current_scrollbar = (int)bytes[0];
5336 else if (current_scrollbar != (int)bytes[0])
5337 break;
5338 j += num_bytes;
5339 num_bytes = get_long_from_buf(tp + j, &val);
5340 if (num_bytes == -1)
5341 break;
5342 scrollbar_value = val;
5343 j += num_bytes;
5344 slen = j;
5345 }
5346 if (i == 0) /* not enough characters to make one */
5347 return -1;
5348 }
5349 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5350 {
5351 long_u val;
5352
5353 /* Get the last horiz. scrollbar event in the queue */
5354 j = 0;
5355 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5356 && tp[j + 2] != NUL; ++i)
5357 {
5358 j += 3;
5359 num_bytes = get_long_from_buf(tp + j, &val);
5360 if (num_bytes == -1)
5361 break;
5362 scrollbar_value = val;
5363 j += num_bytes;
5364 slen = j;
5365 }
5366 if (i == 0) /* not enough characters to make one */
5367 return -1;
5368 }
5369# endif /* !USE_ON_FLY_SCROLL */
5370#endif /* FEAT_GUI */
5371
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005372 /*
5373 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5374 */
5375 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5376
5377 /*
5378 * Add any modifier codes to our string.
5379 */
5380 new_slen = 0; /* Length of what will replace the termcode */
5381 if (modifiers != 0)
5382 {
5383 /* Some keys have the modifier included. Need to handle that here
5384 * to make mappings work. */
5385 key = simplify_key(key, &modifiers);
5386 if (modifiers != 0)
5387 {
5388 string[new_slen++] = K_SPECIAL;
5389 string[new_slen++] = (int)KS_MODIFIER;
5390 string[new_slen++] = modifiers;
5391 }
5392 }
5393
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005395 key_name[0] = KEY2TERMCAP0(key);
5396 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005398 {
5399 /* from ":set <M-b>=xx" */
5400#ifdef FEAT_MBYTE
5401 if (has_mbyte)
5402 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5403 else
5404#endif
5405 string[new_slen++] = key_name[1];
5406 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005407 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5408 && key_name[1] == KE_IGNORE)
5409 {
5410 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5411 * to indicate what happened. */
5412 retval = KEYLEN_REMOVED;
5413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 else
5415 {
5416 string[new_slen++] = K_SPECIAL;
5417 string[new_slen++] = key_name[0];
5418 string[new_slen++] = key_name[1];
5419 }
5420 string[new_slen] = NUL;
5421 extra = new_slen - slen;
5422 if (buf == NULL)
5423 {
5424 if (extra < 0)
5425 /* remove matched chars, taking care of noremap */
5426 del_typebuf(-extra, offset);
5427 else if (extra > 0)
5428 /* insert the extra space we need */
5429 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5430
5431 /*
5432 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5433 * typebuf.tb_buf[]!
5434 */
5435 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5436 (size_t)new_slen);
5437 }
5438 else
5439 {
5440 if (extra < 0)
5441 /* remove matched characters */
5442 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005443 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005445 {
5446 /* Insert the extra space we need. If there is insufficient
5447 * space return -1. */
5448 if (*buflen + extra + new_slen >= bufsize)
5449 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005451 (size_t)(*buflen - offset));
5452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005454 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005456 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 }
5458
Bram Moolenaar2951b772013-07-03 12:45:31 +02005459#ifdef FEAT_TERMRESPONSE
5460 LOG_TR("normal character");
5461#endif
5462
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 return 0; /* no match found */
5464}
5465
5466/*
5467 * Replace any terminal code strings in from[] with the equivalent internal
5468 * vim representation. This is used for the "from" and "to" part of a
5469 * mapping, and the "to" part of a menu command.
5470 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5471 * '<'.
5472 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5473 *
5474 * The replacement is done in result[] and finally copied into allocated
5475 * memory. If this all works well *bufp is set to the allocated memory and a
5476 * pointer to it is returned. If something fails *bufp is set to NULL and from
5477 * is returned.
5478 *
5479 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5480 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5481 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5482 * instead of a CTRL-V.
5483 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005484 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005485replace_termcodes(
5486 char_u *from,
5487 char_u **bufp,
5488 int from_part,
5489 int do_lt, /* also translate <lt> */
5490 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491{
5492 int i;
5493 int slen;
5494 int key;
5495 int dlen = 0;
5496 char_u *src;
5497 int do_backslash; /* backslash is a special character */
5498 int do_special; /* recognize <> key codes */
5499 int do_key_code; /* recognize raw key codes */
5500 char_u *result; /* buffer for resulting string */
5501
5502 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005503 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5505
5506 /*
5507 * Allocate space for the translation. Worst case a single character is
5508 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5509 */
5510 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5511 if (result == NULL) /* out of memory */
5512 {
5513 *bufp = NULL;
5514 return from;
5515 }
5516
5517 src = from;
5518
5519 /*
5520 * Check for #n at start only: function key n
5521 */
5522 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
5523 {
5524 result[dlen++] = K_SPECIAL;
5525 result[dlen++] = 'k';
5526 if (src[1] == '0')
5527 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5528 else
5529 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5530 src += 2;
5531 }
5532
5533 /*
5534 * Copy each byte from *from to result[dlen]
5535 */
5536 while (*src != NUL)
5537 {
5538 /*
5539 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005540 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 */
5542 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
5543 {
5544#ifdef FEAT_EVAL
5545 /*
5546 * Replace <SID> by K_SNR <script-nr> _.
5547 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5548 */
5549 if (STRNICMP(src, "<SID>", 5) == 0)
5550 {
5551 if (current_SID <= 0)
5552 EMSG(_(e_usingsid));
5553 else
5554 {
5555 src += 5;
5556 result[dlen++] = K_SPECIAL;
5557 result[dlen++] = (int)KS_EXTRA;
5558 result[dlen++] = (int)KE_SNR;
5559 sprintf((char *)result + dlen, "%ld", (long)current_SID);
5560 dlen += (int)STRLEN(result + dlen);
5561 result[dlen++] = '_';
5562 continue;
5563 }
5564 }
5565#endif
5566
5567 slen = trans_special(&src, result + dlen, TRUE);
5568 if (slen)
5569 {
5570 dlen += slen;
5571 continue;
5572 }
5573 }
5574
5575 /*
5576 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5577 * Note that this is also checked after replacing the <> form.
5578 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5579 * it could be a character in the file.
5580 */
5581 if (do_key_code)
5582 {
5583 i = find_term_bykeys(src);
5584 if (i >= 0)
5585 {
5586 result[dlen++] = K_SPECIAL;
5587 result[dlen++] = termcodes[i].name[0];
5588 result[dlen++] = termcodes[i].name[1];
5589 src += termcodes[i].len;
5590 /* If terminal code matched, continue after it. */
5591 continue;
5592 }
5593 }
5594
5595#ifdef FEAT_EVAL
5596 if (do_special)
5597 {
5598 char_u *p, *s, len;
5599
5600 /*
5601 * Replace <Leader> by the value of "mapleader".
5602 * Replace <LocalLeader> by the value of "maplocalleader".
5603 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5604 */
5605 if (STRNICMP(src, "<Leader>", 8) == 0)
5606 {
5607 len = 8;
5608 p = get_var_value((char_u *)"g:mapleader");
5609 }
5610 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
5611 {
5612 len = 13;
5613 p = get_var_value((char_u *)"g:maplocalleader");
5614 }
5615 else
5616 {
5617 len = 0;
5618 p = NULL;
5619 }
5620 if (len != 0)
5621 {
5622 /* Allow up to 8 * 6 characters for "mapleader". */
5623 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
5624 s = (char_u *)"\\";
5625 else
5626 s = p;
5627 while (*s != NUL)
5628 result[dlen++] = *s++;
5629 src += len;
5630 continue;
5631 }
5632 }
5633#endif
5634
5635 /*
5636 * Remove CTRL-V and ignore the next character.
5637 * For "from" side the CTRL-V at the end is included, for the "to"
5638 * part it is removed.
5639 * If 'cpoptions' does not contain 'B', also accept a backslash.
5640 */
5641 key = *src;
5642 if (key == Ctrl_V || (do_backslash && key == '\\'))
5643 {
5644 ++src; /* skip CTRL-V or backslash */
5645 if (*src == NUL)
5646 {
5647 if (from_part)
5648 result[dlen++] = key;
5649 break;
5650 }
5651 }
5652
5653#ifdef FEAT_MBYTE
5654 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005655 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656#endif
5657 {
5658 /*
5659 * If the character is K_SPECIAL, replace it with K_SPECIAL
5660 * KS_SPECIAL KE_FILLER.
5661 * If compiled with the GUI replace CSI with K_CSI.
5662 */
5663 if (*src == K_SPECIAL)
5664 {
5665 result[dlen++] = K_SPECIAL;
5666 result[dlen++] = KS_SPECIAL;
5667 result[dlen++] = KE_FILLER;
5668 }
5669# ifdef FEAT_GUI
5670 else if (*src == CSI)
5671 {
5672 result[dlen++] = K_SPECIAL;
5673 result[dlen++] = KS_EXTRA;
5674 result[dlen++] = (int)KE_CSI;
5675 }
5676# endif
5677 else
5678 result[dlen++] = *src;
5679 ++src;
5680 }
5681 }
5682 result[dlen] = NUL;
5683
5684 /*
5685 * Copy the new string to allocated memory.
5686 * If this fails, just return from.
5687 */
5688 if ((*bufp = vim_strsave(result)) != NULL)
5689 from = *bufp;
5690 vim_free(result);
5691 return from;
5692}
5693
5694/*
5695 * Find a termcode with keys 'src' (must be NUL terminated).
5696 * Return the index in termcodes[], or -1 if not found.
5697 */
5698 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005699find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700{
5701 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01005702 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703
5704 for (i = 0; i < tc_len; ++i)
5705 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01005706 if (slen == termcodes[i].len
5707 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 return i;
5709 }
5710 return -1;
5711}
5712
5713/*
5714 * Gather the first characters in the terminal key codes into a string.
5715 * Used to speed up check_termcode().
5716 */
5717 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005718gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719{
5720 int i;
5721 int len = 0;
5722
5723#ifdef FEAT_GUI
5724 if (gui.in_use)
5725 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
5726#endif
5727#ifdef FEAT_TERMRESPONSE
5728 if (check_for_codes)
5729 termleader[len++] = DCS; /* the termcode response starts with DCS
5730 in 8-bit mode */
5731#endif
5732 termleader[len] = NUL;
5733
5734 for (i = 0; i < tc_len; ++i)
5735 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
5736 {
5737 termleader[len++] = termcodes[i].code[0];
5738 termleader[len] = NUL;
5739 }
5740
5741 need_gather = FALSE;
5742}
5743
5744/*
5745 * Show all termcodes (for ":set termcap")
5746 * This code looks a lot like showoptions(), but is different.
5747 */
5748 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005749show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750{
5751 int col;
5752 int *items;
5753 int item_count;
5754 int run;
5755 int row, rows;
5756 int cols;
5757 int i;
5758 int len;
5759
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005760#define INC3 27 /* try to make three columns */
5761#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762#define GAP 2 /* spaces between columns */
5763
5764 if (tc_len == 0) /* no terminal codes (must be GUI) */
5765 return;
5766 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
5767 if (items == NULL)
5768 return;
5769
5770 /* Highlight title */
5771 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
5772
5773 /*
5774 * do the loop two times:
5775 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005776 * 2. display the medium items (medium length strings)
5777 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005779 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 {
5781 /*
5782 * collect the items in items[]
5783 */
5784 item_count = 0;
5785 for (i = 0; i < tc_len; i++)
5786 {
5787 len = show_one_termcode(termcodes[i].name,
5788 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005789 if (len <= INC3 - GAP ? run == 1
5790 : len <= INC2 - GAP ? run == 2
5791 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 items[item_count++] = i;
5793 }
5794
5795 /*
5796 * display the items
5797 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005798 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005800 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 if (cols == 0)
5802 cols = 1;
5803 rows = (item_count + cols - 1) / cols;
5804 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005805 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 rows = item_count;
5807 for (row = 0; row < rows && !got_int; ++row)
5808 {
5809 msg_putchar('\n'); /* go to next line */
5810 if (got_int) /* 'q' typed in more */
5811 break;
5812 col = 0;
5813 for (i = row; i < item_count; i += rows)
5814 {
5815 msg_col = col; /* make columns */
5816 show_one_termcode(termcodes[items[i]].name,
5817 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005818 if (run == 2)
5819 col += INC2;
5820 else
5821 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 }
5823 out_flush();
5824 ui_breakcheck();
5825 }
5826 }
5827 vim_free(items);
5828}
5829
5830/*
5831 * Show one termcode entry.
5832 * Output goes into IObuff[]
5833 */
5834 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005835show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836{
5837 char_u *p;
5838 int len;
5839
5840 if (name[0] > '~')
5841 {
5842 IObuff[0] = ' ';
5843 IObuff[1] = ' ';
5844 IObuff[2] = ' ';
5845 IObuff[3] = ' ';
5846 }
5847 else
5848 {
5849 IObuff[0] = 't';
5850 IObuff[1] = '_';
5851 IObuff[2] = name[0];
5852 IObuff[3] = name[1];
5853 }
5854 IObuff[4] = ' ';
5855
5856 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
5857 if (p[1] != 't')
5858 STRCPY(IObuff + 5, p);
5859 else
5860 IObuff[5] = NUL;
5861 len = (int)STRLEN(IObuff);
5862 do
5863 IObuff[len++] = ' ';
5864 while (len < 17);
5865 IObuff[len] = NUL;
5866 if (code == NULL)
5867 len += 4;
5868 else
5869 len += vim_strsize(code);
5870
5871 if (printit)
5872 {
5873 msg_puts(IObuff);
5874 if (code == NULL)
5875 msg_puts((char_u *)"NULL");
5876 else
5877 msg_outtrans(code);
5878 }
5879 return len;
5880}
5881
5882#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
5883/*
5884 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
5885 * termcap codes from the terminal itself.
5886 * We get them one by one to avoid a very long response string.
5887 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005888static int xt_index_in = 0;
5889static int xt_index_out = 0;
5890
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005892req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893{
5894 xt_index_out = 0;
5895 xt_index_in = 0;
5896 req_more_codes_from_term();
5897}
5898
5899 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005900req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901{
5902 char buf[11];
5903 int old_idx = xt_index_out;
5904
5905 /* Don't do anything when going to exit. */
5906 if (exiting)
5907 return;
5908
5909 /* Send up to 10 more requests out than we received. Avoid sending too
5910 * many, there can be a buffer overflow somewhere. */
5911 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
5912 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02005913# ifdef DEBUG_TERMRESPONSE
5914 char dbuf[100];
5915
5916 sprintf(dbuf, "Requesting XT %d: %s",
5917 xt_index_out, key_names[xt_index_out]);
5918 log_tr(dbuf);
5919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 sprintf(buf, "\033P+q%02x%02x\033\\",
5921 key_names[xt_index_out][0], key_names[xt_index_out][1]);
5922 out_str_nf((char_u *)buf);
5923 ++xt_index_out;
5924 }
5925
5926 /* Send the codes out right away. */
5927 if (xt_index_out != old_idx)
5928 out_flush();
5929}
5930
5931/*
5932 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
5933 * A "0" instead of the "1" indicates a code that isn't supported.
5934 * Both <name> and <string> are encoded in hex.
5935 * "code" points to the "0" or "1".
5936 */
5937 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005938got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939{
5940#define XT_LEN 100
5941 char_u name[3];
5942 char_u str[XT_LEN];
5943 int i;
5944 int j = 0;
5945 int c;
5946
5947 /* A '1' means the code is supported, a '0' means it isn't.
5948 * When half the length is > XT_LEN we can't use it.
5949 * Our names are currently all 2 characters. */
5950 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
5951 {
5952 /* Get the name from the response and find it in the table. */
5953 name[0] = hexhex2nr(code + 3);
5954 name[1] = hexhex2nr(code + 5);
5955 name[2] = NUL;
5956 for (i = 0; key_names[i] != NULL; ++i)
5957 {
5958 if (STRCMP(key_names[i], name) == 0)
5959 {
5960 xt_index_in = i;
5961 break;
5962 }
5963 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02005964# ifdef DEBUG_TERMRESPONSE
5965 {
5966 char buf[100];
5967
5968 sprintf(buf, "Received XT %d: %s", xt_index_in, (char *)name);
5969 log_tr(buf);
5970 }
5971# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972 if (key_names[i] != NULL)
5973 {
5974 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
5975 str[j++] = c;
5976 str[j] = NUL;
5977 if (name[0] == 'C' && name[1] == 'o')
5978 {
5979 /* Color count is not a key code. */
5980 i = atoi((char *)str);
5981 if (i != t_colors)
5982 {
5983 /* Nr of colors changed, initialize highlighting and
Bram Moolenaar238a5642006-02-21 22:12:05 +00005984 * redraw everything. This causes a redraw, which usually
5985 * clears the message. Try keeping the message if it
5986 * might work. */
5987 set_keep_msg_from_hist();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 set_color_count(i);
5989 init_highlight(TRUE, FALSE);
Bram Moolenaar2951b772013-07-03 12:45:31 +02005990#ifdef DEBUG_TERMRESPONSE
5991 {
5992 char buf[100];
5993 int r = redraw_asap(CLEAR);
5994
5995 sprintf(buf, "Received t_Co, redraw_asap(): %d", r);
5996 log_tr(buf);
5997 }
5998#else
5999 redraw_asap(CLEAR);
6000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 }
6002 }
6003 else
6004 {
6005 /* First delete any existing entry with the same code. */
6006 i = find_term_bykeys(str);
6007 if (i >= 0)
6008 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006009 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 }
6011 }
6012 }
6013
6014 /* May request more codes now that we received one. */
6015 ++xt_index_in;
6016 req_more_codes_from_term();
6017}
6018
6019/*
6020 * Check if there are any unanswered requests and deal with them.
6021 * This is called before starting an external program or getting direct
6022 * keyboard input. We don't want responses to be send to that program or
6023 * handled as typed text.
6024 */
6025 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006026check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027{
6028 int c;
6029
6030 /* If no codes requested or all are answered, no need to wait. */
6031 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6032 return;
6033
6034 /* Vgetc() will check for and handle any response.
6035 * Keep calling vpeekc() until we don't get any responses. */
6036 ++no_mapping;
6037 ++allow_keys;
6038 for (;;)
6039 {
6040 c = vpeekc();
6041 if (c == NUL) /* nothing available */
6042 break;
6043
6044 /* If a response is recognized it's replaced with K_IGNORE, must read
6045 * it from the input stream. If there is no K_IGNORE we can't do
6046 * anything, break here (there might be some responses further on, but
6047 * we don't want to throw away any typed chars). */
6048 if (c != K_SPECIAL && c != K_IGNORE)
6049 break;
6050 c = vgetc();
6051 if (c != K_IGNORE)
6052 {
6053 vungetc(c);
6054 break;
6055 }
6056 }
6057 --no_mapping;
6058 --allow_keys;
6059}
6060#endif
6061
6062#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6063/*
6064 * Translate an internal mapping/abbreviation representation into the
6065 * corresponding external one recognized by :map/:abbrev commands;
6066 * respects the current B/k/< settings of 'cpoption'.
6067 *
6068 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006069 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 *
6071 * It uses a growarray to build the translation string since the
6072 * latter can be wider than the original description. The caller has to
6073 * free the string afterwards.
6074 *
6075 * Returns NULL when there is a problem.
6076 */
6077 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006078translate_mapping(
6079 char_u *str,
6080 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081{
6082 garray_T ga;
6083 int c;
6084 int modifiers;
6085 int cpo_bslash;
6086 int cpo_special;
6087 int cpo_keycode;
6088
6089 ga_init(&ga);
6090 ga.ga_itemsize = 1;
6091 ga.ga_growsize = 40;
6092
6093 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6094 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6095 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6096
6097 for (; *str; ++str)
6098 {
6099 c = *str;
6100 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6101 {
6102 modifiers = 0;
6103 if (str[1] == KS_MODIFIER)
6104 {
6105 str++;
6106 modifiers = *++str;
6107 c = *++str;
6108 }
6109 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6110 {
6111 int i;
6112
6113 /* try to find special key in termcodes */
6114 for (i = 0; i < tc_len; ++i)
6115 if (termcodes[i].name[0] == str[1]
6116 && termcodes[i].name[1] == str[2])
6117 break;
6118 if (i < tc_len)
6119 {
6120 ga_concat(&ga, termcodes[i].code);
6121 str += 2;
6122 continue; /* for (str) */
6123 }
6124 }
6125 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6126 {
6127 if (expmap && cpo_special)
6128 {
6129 ga_clear(&ga);
6130 return NULL;
6131 }
6132 c = TO_SPECIAL(str[1], str[2]);
6133 if (c == K_ZERO) /* display <Nul> as ^@ */
6134 c = NUL;
6135 str += 2;
6136 }
6137 if (IS_SPECIAL(c) || modifiers) /* special key */
6138 {
6139 if (expmap && cpo_special)
6140 {
6141 ga_clear(&ga);
6142 return NULL;
6143 }
6144 ga_concat(&ga, get_special_key_name(c, modifiers));
6145 continue; /* for (str) */
6146 }
6147 }
6148 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6149 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6150 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6151 if (c)
6152 ga_append(&ga, c);
6153 }
6154 ga_append(&ga, NUL);
6155 return (char_u *)(ga.ga_data);
6156}
6157#endif
6158
6159#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6160static char ksme_str[20];
6161static char ksmr_str[20];
6162static char ksmd_str[20];
6163
6164/*
6165 * For Win32 console: update termcap codes for existing console attributes.
6166 */
6167 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006168update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169{
6170 struct builtin_term *p;
6171
6172 p = find_builtin_term(DEFAULT_TERM);
6173 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6174 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6175 attr | 0x08); /* FOREGROUND_INTENSITY */
6176 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6177 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6178
6179 while (p->bt_string != NULL)
6180 {
6181 if (p->bt_entry == (int)KS_ME)
6182 p->bt_string = &ksme_str[0];
6183 else if (p->bt_entry == (int)KS_MR)
6184 p->bt_string = &ksmr_str[0];
6185 else if (p->bt_entry == (int)KS_MD)
6186 p->bt_string = &ksmd_str[0];
6187 ++p;
6188 }
6189}
6190#endif