blob: d85cd537b714852b9b570e3f4273f41149dc3491 [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;
1386 char *color;
1387
Bram Moolenaar380130f2016-04-22 11:24:43 +02001388 ignored = fgets(line, LINE_LEN, fd);
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001389 len = strlen(line);
1390
1391 if (len <= 1 || line[len-1] != '\n')
1392 continue;
1393
1394 line[len-1] = '\0';
1395
1396 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos);
1397 if (i != 3)
1398 continue;
1399
1400 color = line + pos;
1401
1402 if (STRICMP(color, name) == 0)
1403 {
1404 fclose(fd);
1405 return (guicolor_T) RGB(r, g, b);
1406 }
1407 }
1408 fclose(fd);
1409 }
1410
1411 return INVALCOLOR;
1412}
1413
1414 guicolor_T
1415termtrue_get_color(char_u *name)
1416{
1417 guicolor_T t;
1418
1419 if (*name == NUL)
1420 return INVALCOLOR;
1421 t = termtrue_mch_get_color(name);
1422
1423 if (t == INVALCOLOR)
1424 EMSG2(_("E254: Cannot allocate color %s"), name);
1425 return t;
1426}
1427
1428 long_u
1429termtrue_mch_get_rgb(guicolor_T color)
1430{
1431 return (long_u) color;
1432}
1433#endif
1434
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435/*
1436 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1437 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438#ifdef AMIGA
1439# define DEFAULT_TERM (char_u *)"amiga"
1440#endif
1441
1442#ifdef MSWIN
1443# define DEFAULT_TERM (char_u *)"win32"
1444#endif
1445
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446#if defined(UNIX) && !defined(__MINT__)
1447# define DEFAULT_TERM (char_u *)"ansi"
1448#endif
1449
1450#ifdef __MINT__
1451# define DEFAULT_TERM (char_u *)"vt52"
1452#endif
1453
1454#ifdef __EMX__
1455# define DEFAULT_TERM (char_u *)"os2ansi"
1456#endif
1457
1458#ifdef VMS
1459# define DEFAULT_TERM (char_u *)"vt320"
1460#endif
1461
1462#ifdef __BEOS__
1463# undef DEFAULT_TERM
1464# define DEFAULT_TERM (char_u *)"beos-ansi"
1465#endif
1466
1467#ifndef DEFAULT_TERM
1468# define DEFAULT_TERM (char_u *)"dumb"
1469#endif
1470
1471/*
1472 * Term_strings contains currently used terminal output strings.
1473 * It is initialized with the default values by parse_builtin_tcap().
1474 * The values can be changed by setting the option with the same name.
1475 */
1476char_u *(term_strings[(int)KS_LAST + 1]);
1477
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001478static int need_gather = FALSE; /* need to fill termleader[] */
1479static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001481static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482#endif
1483
1484 static struct builtin_term *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001485find_builtin_term(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486{
1487 struct builtin_term *p;
1488
1489 p = builtin_termcaps;
1490 while (p->bt_string != NULL)
1491 {
1492 if (p->bt_entry == (int)KS_NAME)
1493 {
1494#ifdef UNIX
1495 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1496 return p;
1497 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1498 return p;
1499 else
1500#endif
1501#ifdef VMS
1502 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1503 return p;
1504 else
1505#endif
1506 if (STRCMP(term, p->bt_string) == 0)
1507 return p;
1508 }
1509 ++p;
1510 }
1511 return p;
1512}
1513
1514/*
1515 * Parsing of the builtin termcap entries.
1516 * Caller should check if 'name' is a valid builtin term.
1517 * The terminal's name is not set, as this is already done in termcapinit().
1518 */
1519 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001520parse_builtin_tcap(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521{
1522 struct builtin_term *p;
1523 char_u name[2];
1524 int term_8bit;
1525
1526 p = find_builtin_term(term);
1527 term_8bit = term_is_8bit(term);
1528
1529 /* Do not parse if builtin term not found */
1530 if (p->bt_string == NULL)
1531 return;
1532
1533 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1534 {
1535 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1536 {
1537 /* Only set the value if it wasn't set yet. */
1538 if (term_strings[p->bt_entry] == NULL
1539 || term_strings[p->bt_entry] == empty_option)
1540 {
1541 /* 8bit terminal: use CSI instead of <Esc>[ */
1542 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1543 {
1544 char_u *s, *t;
1545
1546 s = vim_strsave((char_u *)p->bt_string);
1547 if (s != NULL)
1548 {
1549 for (t = s; *t; ++t)
1550 if (term_7to8bit(t))
1551 {
1552 *t = term_7to8bit(t);
1553 STRCPY(t + 1, t + 2);
1554 }
1555 term_strings[p->bt_entry] = s;
1556 set_term_option_alloced(&term_strings[p->bt_entry]);
1557 }
1558 }
1559 else
1560 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1561 }
1562 }
1563 else
1564 {
1565 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1566 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1567 if (find_termcode(name) == NULL)
1568 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1569 }
1570 }
1571}
1572#if defined(HAVE_TGETENT) || defined(FEAT_TERMRESPONSE)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001573static void set_color_count(int nr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574
1575/*
1576 * Set number of colors.
1577 * Store it as a number in t_colors.
1578 * Store it as a string in T_CCO (using nr_colors[]).
1579 */
1580 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001581set_color_count(int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582{
1583 char_u nr_colors[20]; /* string for number of colors */
1584
1585 t_colors = nr;
1586 if (t_colors > 1)
1587 sprintf((char *)nr_colors, "%d", t_colors);
1588 else
1589 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001590 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591}
1592#endif
1593
1594#ifdef HAVE_TGETENT
1595static char *(key_names[]) =
1596{
1597#ifdef FEAT_TERMRESPONSE
1598 /* Do this one first, it may cause a screen redraw. */
1599 "Co",
1600#endif
1601 "ku", "kd", "kr", "kl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 "#2", "#4", "%i", "*7",
1603 "k1", "k2", "k3", "k4", "k5", "k6",
1604 "k7", "k8", "k9", "k;", "F1", "F2",
1605 "%1", "&8", "kb", "kI", "kD", "kh",
1606 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1607 NULL
1608};
1609#endif
1610
1611/*
1612 * Set terminal options for terminal "term".
1613 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1614 *
1615 * While doing this, until ttest(), some options may be NULL, be careful.
1616 */
1617 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001618set_termname(char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619{
1620 struct builtin_term *termp;
1621#ifdef HAVE_TGETENT
1622 int builtin_first = p_tbi;
1623 int try;
1624 int termcap_cleared = FALSE;
1625#endif
1626 int width = 0, height = 0;
1627 char_u *error_msg = NULL;
1628 char_u *bs_p, *del_p;
1629
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001630 /* In silect mode (ex -s) we don't use the 'term' option. */
1631 if (silent_mode)
1632 return OK;
1633
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 detected_8bit = FALSE; /* reset 8-bit detection */
1635
1636 if (term_is_builtin(term))
1637 {
1638 term += 8;
1639#ifdef HAVE_TGETENT
1640 builtin_first = 1;
1641#endif
1642 }
1643
1644/*
1645 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1646 * If builtin_first is TRUE:
1647 * 0. try builtin termcap
1648 * 1. try external termcap
1649 * 2. if both fail default to a builtin terminal
1650 * If builtin_first is FALSE:
1651 * 1. try external termcap
1652 * 2. try builtin termcap, if both fail default to a builtin terminal
1653 */
1654#ifdef HAVE_TGETENT
1655 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1656 {
1657 /*
1658 * Use external termcap
1659 */
1660 if (try == 1)
1661 {
1662 char_u *p;
1663 static char_u tstrbuf[TBUFSZ];
1664 int i;
1665 char_u tbuf[TBUFSZ];
1666 char_u *tp;
1667 static struct {
1668 enum SpecialKey dest; /* index in term_strings[] */
1669 char *name; /* termcap name for string */
1670 } string_names[] =
1671 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1672 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1673 {KS_CL, "cl"}, {KS_CD, "cd"},
1674 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1675 {KS_VS, "vs"}, {KS_ME, "me"}, {KS_MR, "mr"},
1676 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1677 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001678 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1679 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1681 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1682 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1683 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1684 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1685 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1686 {KS_TS, "ts"}, {KS_FS, "fs"},
1687 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001688 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaare5401222015-06-25 19:16:56 +02001689 {KS_U7, "u7"}, {KS_RBG, "RB"},
Bram Moolenaar8a633e32016-04-21 21:10:14 +02001690 {KS_8F, "8f"}, {KS_8B, "8b"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 {(enum SpecialKey)0, NULL}
1692 };
1693
1694 /*
1695 * If the external termcap does not have a matching entry, try the
1696 * builtin ones.
1697 */
1698 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1699 {
1700 tp = tstrbuf;
1701 if (!termcap_cleared)
1702 {
1703 clear_termoptions(); /* clear old options */
1704 termcap_cleared = TRUE;
1705 }
1706
1707 /* get output strings */
1708 for (i = 0; string_names[i].name != NULL; ++i)
1709 {
1710 if (term_str(string_names[i].dest) == NULL
1711 || term_str(string_names[i].dest) == empty_option)
1712 term_str(string_names[i].dest) =
1713 TGETSTR(string_names[i].name, &tp);
1714 }
1715
1716 /* tgetflag() returns 1 if the flag is present, 0 if not and
1717 * possibly -1 if the flag doesn't exist. */
1718 if ((T_MS == NULL || T_MS == empty_option)
1719 && tgetflag("ms") > 0)
1720 T_MS = (char_u *)"y";
1721 if ((T_XS == NULL || T_XS == empty_option)
1722 && tgetflag("xs") > 0)
1723 T_XS = (char_u *)"y";
Bram Moolenaar494838a2015-02-10 19:20:37 +01001724 if ((T_XN == NULL || T_XN == empty_option)
1725 && tgetflag("xn") > 0)
1726 T_XN = (char_u *)"y";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 if ((T_DB == NULL || T_DB == empty_option)
1728 && tgetflag("db") > 0)
1729 T_DB = (char_u *)"y";
1730 if ((T_DA == NULL || T_DA == empty_option)
1731 && tgetflag("da") > 0)
1732 T_DA = (char_u *)"y";
1733 if ((T_UT == NULL || T_UT == empty_option)
1734 && tgetflag("ut") > 0)
1735 T_UT = (char_u *)"y";
1736
1737
1738 /*
1739 * get key codes
1740 */
1741 for (i = 0; key_names[i] != NULL; ++i)
1742 {
1743 if (find_termcode((char_u *)key_names[i]) == NULL)
1744 {
1745 p = TGETSTR(key_names[i], &tp);
1746 /* if cursor-left == backspace, ignore it (televideo
1747 * 925) */
1748 if (p != NULL
1749 && (*p != Ctrl_H
1750 || key_names[i][0] != 'k'
1751 || key_names[i][1] != 'l'))
1752 add_termcode((char_u *)key_names[i], p, FALSE);
1753 }
1754 }
1755
1756 if (height == 0)
1757 height = tgetnum("li");
1758 if (width == 0)
1759 width = tgetnum("co");
1760
1761 /*
1762 * Get number of colors (if not done already).
1763 */
1764 if (term_str(KS_CCO) == NULL
1765 || term_str(KS_CCO) == empty_option)
1766 set_color_count(tgetnum("Co"));
1767
1768# ifndef hpux
1769 BC = (char *)TGETSTR("bc", &tp);
1770 UP = (char *)TGETSTR("up", &tp);
1771 p = TGETSTR("pc", &tp);
1772 if (p)
1773 PC = *p;
1774# endif /* hpux */
1775 }
1776 }
1777 else /* try == 0 || try == 2 */
1778#endif /* HAVE_TGETENT */
1779 /*
1780 * Use builtin termcap
1781 */
1782 {
1783#ifdef HAVE_TGETENT
1784 /*
1785 * If builtin termcap was already used, there is no need to search
1786 * for the builtin termcap again, quit now.
1787 */
1788 if (try == 2 && builtin_first && termcap_cleared)
1789 break;
1790#endif
1791 /*
1792 * search for 'term' in builtin_termcaps[]
1793 */
1794 termp = find_builtin_term(term);
1795 if (termp->bt_string == NULL) /* did not find it */
1796 {
1797#ifdef HAVE_TGETENT
1798 /*
1799 * If try == 0, first try the external termcap. If that is not
1800 * found we'll get back here with try == 2.
1801 * If termcap_cleared is set we used the external termcap,
1802 * don't complain about not finding the term in the builtin
1803 * termcap.
1804 */
1805 if (try == 0) /* try external one */
1806 continue;
1807 if (termcap_cleared) /* found in external termcap */
1808 break;
1809#endif
1810
1811 mch_errmsg("\r\n");
1812 if (error_msg != NULL)
1813 {
1814 mch_errmsg((char *)error_msg);
1815 mch_errmsg("\r\n");
1816 }
1817 mch_errmsg("'");
1818 mch_errmsg((char *)term);
1819 mch_errmsg(_("' not known. Available builtin terminals are:"));
1820 mch_errmsg("\r\n");
1821 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1822 ++termp)
1823 {
1824 if (termp->bt_entry == (int)KS_NAME)
1825 {
1826#ifdef HAVE_TGETENT
1827 mch_errmsg(" builtin_");
1828#else
1829 mch_errmsg(" ");
1830#endif
1831 mch_errmsg(termp->bt_string);
1832 mch_errmsg("\r\n");
1833 }
1834 }
1835 /* when user typed :set term=xxx, quit here */
1836 if (starting != NO_SCREEN)
1837 {
1838 screen_start(); /* don't know where cursor is now */
1839 wait_return(TRUE);
1840 return FAIL;
1841 }
1842 term = DEFAULT_TERM;
1843 mch_errmsg(_("defaulting to '"));
1844 mch_errmsg((char *)term);
1845 mch_errmsg("'\r\n");
1846 if (emsg_silent == 0)
1847 {
1848 screen_start(); /* don't know where cursor is now */
1849 out_flush();
1850 ui_delay(2000L, TRUE);
1851 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001852 set_string_option_direct((char_u *)"term", -1, term,
1853 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 display_errors();
1855 }
1856 out_flush();
1857#ifdef HAVE_TGETENT
1858 if (!termcap_cleared)
1859 {
1860#endif
1861 clear_termoptions(); /* clear old options */
1862#ifdef HAVE_TGETENT
1863 termcap_cleared = TRUE;
1864 }
1865#endif
1866 parse_builtin_tcap(term);
1867#ifdef FEAT_GUI
1868 if (term_is_gui(term))
1869 {
1870 out_flush();
1871 gui_init();
1872 /* If starting the GUI failed, don't do any of the other
1873 * things for this terminal */
1874 if (!gui.in_use)
1875 return FAIL;
1876#ifdef HAVE_TGETENT
1877 break; /* don't try using external termcap */
1878#endif
1879 }
1880#endif /* FEAT_GUI */
1881 }
1882#ifdef HAVE_TGETENT
1883 }
1884#endif
1885
1886/*
1887 * special: There is no info in the termcap about whether the cursor
1888 * positioning is relative to the start of the screen or to the start of the
1889 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1890 * relative.
1891 */
1892 if (STRCMP(term, "pcterm") == 0)
1893 T_CCS = (char_u *)"yes";
1894 else
1895 T_CCS = empty_option;
1896
1897#ifdef UNIX
1898/*
1899 * Any "stty" settings override the default for t_kb from the termcap.
1900 * This is in os_unix.c, because it depends a lot on the version of unix that
1901 * is being used.
1902 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1903 */
1904#ifdef FEAT_GUI
1905 if (!gui.in_use)
1906#endif
1907 get_stty();
1908#endif
1909
1910/*
1911 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1912 * didn't work, use the default CTRL-H
1913 * The default for t_kD is DEL, unless t_kb is DEL.
1914 * The vim_strsave'd strings are probably lost forever, well it's only two
1915 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1916 * directly.
1917 */
1918#ifdef FEAT_GUI
1919 if (!gui.in_use)
1920#endif
1921 {
1922 bs_p = find_termcode((char_u *)"kb");
1923 del_p = find_termcode((char_u *)"kD");
1924 if (bs_p == NULL || *bs_p == NUL)
1925 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1926 if ((del_p == NULL || *del_p == NUL) &&
1927 (bs_p == NULL || *bs_p != DEL))
1928 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1929 }
1930
1931#if defined(UNIX) || defined(VMS)
1932 term_is_xterm = vim_is_xterm(term);
1933#endif
1934
1935#ifdef FEAT_MOUSE
1936# if defined(UNIX) || defined(VMS)
1937# ifdef FEAT_MOUSE_TTY
1938 /*
1939 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1940 * The termcode for the mouse is added as a side effect in option.c.
1941 */
1942 {
1943 char_u *p;
1944
1945 p = (char_u *)"";
1946# ifdef FEAT_MOUSE_XTERM
Bram Moolenaar864207d2008-06-24 22:14:38 +00001947 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 {
1949 if (use_xterm_mouse())
1950 p = NULL; /* keep existing value, might be "xterm2" */
1951 else
1952 p = (char_u *)"xterm";
1953 }
1954# endif
1955 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001956 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001958 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1959 * "xterm2" in check_termcode(). */
1960 reset_option_was_set((char_u *)"ttym");
1961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 if (p == NULL
1963# ifdef FEAT_GUI
1964 || gui.in_use
1965# endif
1966 )
1967 check_mouse_termcode(); /* set mouse termcode anyway */
1968 }
1969# endif
1970# else
1971 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1972# endif
1973#endif /* FEAT_MOUSE */
1974
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975#ifdef USE_TERM_CONSOLE
1976 /* DEFAULT_TERM indicates that it is the machine console. */
1977 if (STRCMP(term, DEFAULT_TERM) != 0)
1978 term_console = FALSE;
1979 else
1980 {
1981 term_console = TRUE;
1982# ifdef AMIGA
1983 win_resize_on(); /* enable window resizing reports */
1984# endif
1985 }
1986#endif
1987
1988#if defined(UNIX) || defined(VMS)
1989 /*
1990 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1991 */
1992 if (vim_is_fastterm(term))
1993 p_tf = TRUE;
1994#endif
1995#ifdef USE_TERM_CONSOLE
1996 /*
1997 * 'ttyfast' is default on consoles
1998 */
1999 if (term_console)
2000 p_tf = TRUE;
2001#endif
2002
2003 ttest(TRUE); /* make sure we have a valid set of terminal codes */
2004
2005 full_screen = TRUE; /* we can use termcap codes from now on */
2006 set_term_defaults(); /* use current values as defaults */
2007#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2951b772013-07-03 12:45:31 +02002008 LOG_TR("setting crv_status to CRV_GET");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 crv_status = CRV_GET; /* Get terminal version later */
2010#endif
2011
2012 /*
2013 * Initialize the terminal with the appropriate termcap codes.
2014 * Set the mouse and window title if possible.
2015 * Don't do this when starting, need to parse the .vimrc first, because it
2016 * may redefine t_TI etc.
2017 */
2018 if (starting != NO_SCREEN)
2019 {
2020 starttermcap(); /* may change terminal mode */
2021#ifdef FEAT_MOUSE
2022 setmouse(); /* may start using the mouse */
2023#endif
2024#ifdef FEAT_TITLE
2025 maketitle(); /* may display window title */
2026#endif
2027 }
2028
2029 /* display initial screen after ttest() checking. jw. */
2030 if (width <= 0 || height <= 0)
2031 {
2032 /* termcap failed to report size */
2033 /* set defaults, in case ui_get_shellsize() also fails */
2034 width = 80;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002035#if defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 height = 25; /* console is often 25 lines */
2037#else
2038 height = 24; /* most terminals are 24 lines */
2039#endif
2040 }
2041 set_shellsize(width, height, FALSE); /* may change Rows */
2042 if (starting != NO_SCREEN)
2043 {
2044 if (scroll_region)
2045 scroll_region_reset(); /* In case Rows changed */
2046 check_map_keycodes(); /* check mappings for terminal codes used */
2047
2048#ifdef FEAT_AUTOCMD
2049 {
2050 buf_T *old_curbuf;
2051
2052 /*
2053 * Execute the TermChanged autocommands for each buffer that is
2054 * loaded.
2055 */
2056 old_curbuf = curbuf;
2057 for (curbuf = firstbuf; curbuf != NULL; curbuf = curbuf->b_next)
2058 {
2059 if (curbuf->b_ml.ml_mfp != NULL)
2060 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
2061 curbuf);
2062 }
2063 if (buf_valid(old_curbuf))
2064 curbuf = old_curbuf;
2065 }
2066#endif
2067 }
2068
2069#ifdef FEAT_TERMRESPONSE
2070 may_req_termresponse();
2071#endif
2072
2073 return OK;
2074}
2075
2076#if defined(FEAT_MOUSE) || defined(PROTO)
2077
2078# ifdef FEAT_MOUSE_TTY
2079# define HMT_NORMAL 1
2080# define HMT_NETTERM 2
2081# define HMT_DEC 4
2082# define HMT_JSBTERM 8
2083# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002084# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002085# define HMT_SGR 64
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086static int has_mouse_termcode = 0;
2087# endif
2088
Bram Moolenaar864207d2008-06-24 22:14:38 +00002089# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002091set_mouse_termcode(
2092 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2093 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094{
2095 char_u name[2];
2096
2097 name[0] = n;
2098 name[1] = KE_FILLER;
2099 add_termcode(name, s, FALSE);
2100# ifdef FEAT_MOUSE_TTY
2101# ifdef FEAT_MOUSE_JSB
2102 if (n == KS_JSBTERM_MOUSE)
2103 has_mouse_termcode |= HMT_JSBTERM;
2104 else
2105# endif
2106# ifdef FEAT_MOUSE_NET
2107 if (n == KS_NETTERM_MOUSE)
2108 has_mouse_termcode |= HMT_NETTERM;
2109 else
2110# endif
2111# ifdef FEAT_MOUSE_DEC
2112 if (n == KS_DEC_MOUSE)
2113 has_mouse_termcode |= HMT_DEC;
2114 else
2115# endif
2116# ifdef FEAT_MOUSE_PTERM
2117 if (n == KS_PTERM_MOUSE)
2118 has_mouse_termcode |= HMT_PTERM;
2119 else
2120# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002121# ifdef FEAT_MOUSE_URXVT
2122 if (n == KS_URXVT_MOUSE)
2123 has_mouse_termcode |= HMT_URXVT;
2124 else
2125# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002126# ifdef FEAT_MOUSE_SGR
2127 if (n == KS_SGR_MOUSE)
2128 has_mouse_termcode |= HMT_SGR;
2129 else
2130# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 has_mouse_termcode |= HMT_NORMAL;
2132# endif
2133}
2134# endif
2135
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002136# if ((defined(UNIX) || defined(VMS)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002137 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002139del_mouse_termcode(
2140 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141{
2142 char_u name[2];
2143
2144 name[0] = n;
2145 name[1] = KE_FILLER;
2146 del_termcode(name);
2147# ifdef FEAT_MOUSE_TTY
2148# ifdef FEAT_MOUSE_JSB
2149 if (n == KS_JSBTERM_MOUSE)
2150 has_mouse_termcode &= ~HMT_JSBTERM;
2151 else
2152# endif
2153# ifdef FEAT_MOUSE_NET
2154 if (n == KS_NETTERM_MOUSE)
2155 has_mouse_termcode &= ~HMT_NETTERM;
2156 else
2157# endif
2158# ifdef FEAT_MOUSE_DEC
2159 if (n == KS_DEC_MOUSE)
2160 has_mouse_termcode &= ~HMT_DEC;
2161 else
2162# endif
2163# ifdef FEAT_MOUSE_PTERM
2164 if (n == KS_PTERM_MOUSE)
2165 has_mouse_termcode &= ~HMT_PTERM;
2166 else
2167# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002168# ifdef FEAT_MOUSE_URXVT
2169 if (n == KS_URXVT_MOUSE)
2170 has_mouse_termcode &= ~HMT_URXVT;
2171 else
2172# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002173# ifdef FEAT_MOUSE_SGR
2174 if (n == KS_SGR_MOUSE)
2175 has_mouse_termcode &= ~HMT_SGR;
2176 else
2177# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 has_mouse_termcode &= ~HMT_NORMAL;
2179# endif
2180}
2181# endif
2182#endif
2183
2184#ifdef HAVE_TGETENT
2185/*
2186 * Call tgetent()
2187 * Return error message if it fails, NULL if it's OK.
2188 */
2189 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002190tgetent_error(char_u *tbuf, char_u *term)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191{
2192 int i;
2193
2194 i = TGETENT(tbuf, term);
2195 if (i < 0 /* -1 is always an error */
2196# ifdef TGETENT_ZERO_ERR
2197 || i == 0 /* sometimes zero is also an error */
2198# endif
2199 )
2200 {
2201 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2202 * tgetent() with the always existing "dumb" entry to avoid a crash or
2203 * hang. */
2204 (void)TGETENT(tbuf, "dumb");
2205
2206 if (i < 0)
2207# ifdef TGETENT_ZERO_ERR
2208 return (char_u *)_("E557: Cannot open termcap file");
2209 if (i == 0)
2210# endif
2211#ifdef TERMINFO
2212 return (char_u *)_("E558: Terminal entry not found in terminfo");
2213#else
2214 return (char_u *)_("E559: Terminal entry not found in termcap");
2215#endif
2216 }
2217 return NULL;
2218}
2219
2220/*
2221 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2222 * Fix that here.
2223 */
2224 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002225vim_tgetstr(char *s, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226{
2227 char *p;
2228
2229 p = tgetstr(s, (char **)pp);
2230 if (p == (char *)-1)
2231 p = NULL;
2232 return (char_u *)p;
2233}
2234#endif /* HAVE_TGETENT */
2235
2236#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(__EMX__) || defined(VMS) || defined(MACOS_X))
2237/*
2238 * Get Columns and Rows from the termcap. Used after a window signal if the
2239 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2240 * and "li" entries never change. But on some systems this works.
2241 * Errors while getting the entries are ignored.
2242 */
2243 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002244getlinecol(
2245 long *cp, /* pointer to columns */
2246 long *rp) /* pointer to rows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247{
2248 char_u tbuf[TBUFSZ];
2249
2250 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2251 {
2252 if (*cp == 0)
2253 *cp = tgetnum("co");
2254 if (*rp == 0)
2255 *rp = tgetnum("li");
2256 }
2257}
2258#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2259
2260/*
2261 * Get a string entry from the termcap and add it to the list of termcodes.
2262 * Used for <t_xx> special keys.
2263 * Give an error message for failure when not sourcing.
2264 * If force given, replace an existing entry.
2265 * Return FAIL if the entry was not found, OK if the entry was added.
2266 */
2267 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002268add_termcap_entry(char_u *name, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269{
2270 char_u *term;
2271 int key;
2272 struct builtin_term *termp;
2273#ifdef HAVE_TGETENT
2274 char_u *string;
2275 int i;
2276 int builtin_first;
2277 char_u tbuf[TBUFSZ];
2278 char_u tstrbuf[TBUFSZ];
2279 char_u *tp = tstrbuf;
2280 char_u *error_msg = NULL;
2281#endif
2282
2283/*
2284 * If the GUI is running or will start in a moment, we only support the keys
2285 * that the GUI can produce.
2286 */
2287#ifdef FEAT_GUI
2288 if (gui.in_use || gui.starting)
2289 return gui_mch_haskey(name);
2290#endif
2291
2292 if (!force && find_termcode(name) != NULL) /* it's already there */
2293 return OK;
2294
2295 term = T_NAME;
2296 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2297 return FAIL;
2298
2299 if (term_is_builtin(term)) /* name starts with "builtin_" */
2300 {
2301 term += 8;
2302#ifdef HAVE_TGETENT
2303 builtin_first = TRUE;
2304#endif
2305 }
2306#ifdef HAVE_TGETENT
2307 else
2308 builtin_first = p_tbi;
2309#endif
2310
2311#ifdef HAVE_TGETENT
2312/*
2313 * We can get the entry from the builtin termcap and from the external one.
2314 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2315 * builtin termcap first.
2316 * If 'ttybuiltin' is off, try external termcap first.
2317 */
2318 for (i = 0; i < 2; ++i)
2319 {
Bram Moolenaar98b30a42015-11-10 15:18:02 +01002320 if ((!builtin_first) == i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321#endif
2322 /*
2323 * Search in builtin termcap
2324 */
2325 {
2326 termp = find_builtin_term(term);
2327 if (termp->bt_string != NULL) /* found it */
2328 {
2329 key = TERMCAP2KEY(name[0], name[1]);
2330 while (termp->bt_entry != (int)KS_NAME)
2331 {
2332 if ((int)termp->bt_entry == key)
2333 {
2334 add_termcode(name, (char_u *)termp->bt_string,
2335 term_is_8bit(term));
2336 return OK;
2337 }
2338 ++termp;
2339 }
2340 }
2341 }
2342#ifdef HAVE_TGETENT
2343 else
2344 /*
2345 * Search in external termcap
2346 */
2347 {
2348 error_msg = tgetent_error(tbuf, term);
2349 if (error_msg == NULL)
2350 {
2351 string = TGETSTR((char *)name, &tp);
2352 if (string != NULL && *string != NUL)
2353 {
2354 add_termcode(name, string, FALSE);
2355 return OK;
2356 }
2357 }
2358 }
2359 }
2360#endif
2361
2362 if (sourcing_name == NULL)
2363 {
2364#ifdef HAVE_TGETENT
2365 if (error_msg != NULL)
2366 EMSG(error_msg);
2367 else
2368#endif
2369 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2370 }
2371 return FAIL;
2372}
2373
2374 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002375term_is_builtin(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376{
2377 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2378}
2379
2380/*
2381 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2382 * Assume that the terminal is using 8-bit controls when the name contains
2383 * "8bit", like in "xterm-8bit".
2384 */
2385 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002386term_is_8bit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387{
2388 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2389}
2390
2391/*
2392 * Translate terminal control chars from 7-bit to 8-bit:
2393 * <Esc>[ -> CSI
2394 * <Esc>] -> <M-C-]>
2395 * <Esc>O -> <M-C-O>
2396 */
2397 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002398term_7to8bit(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399{
2400 if (*p == ESC)
2401 {
2402 if (p[1] == '[')
2403 return CSI;
2404 if (p[1] == ']')
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02002405 return OSC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 if (p[1] == 'O')
2407 return 0x8f;
2408 }
2409 return 0;
2410}
2411
2412#ifdef FEAT_GUI
2413 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002414term_is_gui(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415{
2416 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2417}
2418#endif
2419
2420#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2421
2422 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002423tltoa(unsigned long i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424{
2425 static char_u buf[16];
2426 char_u *p;
2427
2428 p = buf + 15;
2429 *p = '\0';
2430 do
2431 {
2432 --p;
2433 *p = (char_u) (i % 10 + '0');
2434 i /= 10;
2435 }
2436 while (i > 0 && p > buf);
2437 return p;
2438}
2439#endif
2440
2441#ifndef HAVE_TGETENT
2442
2443/*
2444 * minimal tgoto() implementation.
2445 * no padding and we only parse for %i %d and %+char
2446 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002447static char *tgoto(char *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002449 static char *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002450tgoto(char *cm, int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451{
2452 static char buf[30];
2453 char *p, *s, *e;
2454
2455 if (!cm)
2456 return "OOPS";
2457 e = buf + 29;
2458 for (s = buf; s < e && *cm; cm++)
2459 {
2460 if (*cm != '%')
2461 {
2462 *s++ = *cm;
2463 continue;
2464 }
2465 switch (*++cm)
2466 {
2467 case 'd':
2468 p = (char *)tltoa((unsigned long)y);
2469 y = x;
2470 while (*p)
2471 *s++ = *p++;
2472 break;
2473 case 'i':
2474 x++;
2475 y++;
2476 break;
2477 case '+':
2478 *s++ = (char)(*++cm + y);
2479 y = x;
2480 break;
2481 case '%':
2482 *s++ = *cm;
2483 break;
2484 default:
2485 return "OOPS";
2486 }
2487 }
2488 *s = '\0';
2489 return buf;
2490}
2491
2492#endif /* HAVE_TGETENT */
2493
2494/*
2495 * Set the terminal name and initialize the terminal options.
2496 * If "name" is NULL or empty, get the terminal name from the environment.
2497 * If that fails, use the default terminal name.
2498 */
2499 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002500termcapinit(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501{
2502 char_u *term;
2503
2504 if (name != NULL && *name == NUL)
2505 name = NULL; /* empty name is equal to no name */
2506 term = name;
2507
2508#ifdef __BEOS__
2509 /*
2510 * TERM environment variable is normally set to 'ansi' on the Bebox;
2511 * Since the BeBox doesn't quite support full ANSI yet, we use our
2512 * own custom 'ansi-beos' termcap instead, unless the -T option has
2513 * been given on the command line.
2514 */
2515 if (term == NULL
2516 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2517 term = DEFAULT_TERM;
2518#endif
2519#ifndef MSWIN
2520 if (term == NULL)
2521 term = mch_getenv((char_u *)"TERM");
2522#endif
2523 if (term == NULL || *term == NUL)
2524 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002525 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526
2527 /* Set the default terminal name. */
2528 set_string_default("term", term);
2529 set_string_default("ttytype", term);
2530
2531 /*
2532 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2533 */
2534 set_termname(T_NAME != NULL ? T_NAME : term);
2535}
2536
2537/*
2538 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2539 */
2540#ifdef DOS16
2541# define OUT_SIZE 255 /* only have 640K total... */
2542#else
Bram Moolenaare89ff042016-02-20 22:17:05 +01002543# define OUT_SIZE 2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544#endif
2545 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2546static char_u out_buf[OUT_SIZE + 1];
2547static int out_pos = 0; /* number of chars in out_buf */
2548
2549/*
2550 * out_flush(): flush the output buffer
2551 */
2552 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002553out_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
2555 int len;
2556
2557 if (out_pos != 0)
2558 {
2559 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2560 len = out_pos;
2561 out_pos = 0;
2562 ui_write(out_buf, len);
2563 }
2564}
2565
2566#if defined(FEAT_MBYTE) || defined(PROTO)
2567/*
2568 * Sometimes a byte out of a multi-byte character is written with out_char().
2569 * To avoid flushing half of the character, call this function first.
2570 */
2571 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002572out_flush_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573{
2574 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2575 out_flush();
2576}
2577#endif
2578
2579#ifdef FEAT_GUI
2580/*
2581 * out_trash(): Throw away the contents of the output buffer
2582 */
2583 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002584out_trash(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585{
2586 out_pos = 0;
2587}
2588#endif
2589
2590/*
2591 * out_char(c): put a byte into the output buffer.
2592 * Flush it if it becomes full.
2593 * This should not be used for outputting text on the screen (use functions
2594 * like msg_puts() and screen_putchar() for that).
2595 */
2596 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002597out_char(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598{
2599#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2600 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2601 out_char('\r');
2602#endif
2603
2604 out_buf[out_pos++] = c;
2605
2606 /* For testing we flush each time. */
2607 if (out_pos >= OUT_SIZE || p_wd)
2608 out_flush();
2609}
2610
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002611static void out_char_nf(unsigned);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612
2613/*
2614 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2615 */
2616 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002617out_char_nf(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618{
2619#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2620 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2621 out_char_nf('\r');
2622#endif
2623
2624 out_buf[out_pos++] = c;
2625
2626 if (out_pos >= OUT_SIZE)
2627 out_flush();
2628}
2629
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002630#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2631 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632/*
2633 * A never-padding out_str.
2634 * use this whenever you don't want to run the string through tputs.
2635 * tputs above is harmless, but tputs from the termcap library
2636 * is likely to strip off leading digits, that it mistakes for padding
2637 * information, and "%i", "%d", etc.
2638 * This should only be used for writing terminal codes, not for outputting
2639 * normal text (use functions like msg_puts() and screen_putchar() for that).
2640 */
2641 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002642out_str_nf(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643{
2644 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2645 out_flush();
2646 while (*s)
2647 out_char_nf(*s++);
2648
2649 /* For testing we write one string at a time. */
2650 if (p_wd)
2651 out_flush();
2652}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002653#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654
2655/*
2656 * out_str(s): Put a character string a byte at a time into the output buffer.
2657 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2658 * This should only be used for writing terminal codes, not for outputting
2659 * normal text (use functions like msg_puts() and screen_putchar() for that).
2660 */
2661 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002662out_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663{
2664 if (s != NULL && *s)
2665 {
2666#ifdef FEAT_GUI
2667 /* Don't use tputs() when GUI is used, ncurses crashes. */
2668 if (gui.in_use)
2669 {
2670 out_str_nf(s);
2671 return;
2672 }
2673#endif
2674 /* avoid terminal strings being split up */
2675 if (out_pos > OUT_SIZE - 20)
2676 out_flush();
2677#ifdef HAVE_TGETENT
2678 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2679#else
2680 while (*s)
2681 out_char_nf(*s++);
2682#endif
2683
2684 /* For testing we write one string at a time. */
2685 if (p_wd)
2686 out_flush();
2687 }
2688}
2689
2690/*
2691 * cursor positioning using termcap parser. (jw)
2692 */
2693 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002694term_windgoto(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695{
2696 OUT_STR(tgoto((char *)T_CM, col, row));
2697}
2698
2699 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002700term_cursor_right(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701{
2702 OUT_STR(tgoto((char *)T_CRI, 0, i));
2703}
2704
2705 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002706term_append_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707{
2708 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2709}
2710
2711 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002712term_delete_lines(int line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
2714 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2715}
2716
2717#if defined(HAVE_TGETENT) || defined(PROTO)
2718 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002719term_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720{
2721 /* Can't handle a negative value here */
2722 if (x < 0)
2723 x = 0;
2724 if (y < 0)
2725 y = 0;
2726 OUT_STR(tgoto((char *)T_CWP, y, x));
2727}
2728
2729 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002730term_set_winsize(int width, int height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731{
2732 OUT_STR(tgoto((char *)T_CWS, height, width));
2733}
2734#endif
2735
2736 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002737term_fg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738{
2739 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2740 if (*T_CAF)
2741 term_color(T_CAF, n);
2742 else if (*T_CSF)
2743 term_color(T_CSF, n);
2744}
2745
2746 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002747term_bg_color(int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748{
2749 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2750 if (*T_CAB)
2751 term_color(T_CAB, n);
2752 else if (*T_CSB)
2753 term_color(T_CSB, n);
2754}
2755
2756 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002757term_color(char_u *s, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758{
2759 char buf[20];
2760 int i = 2; /* index in s[] just after <Esc>[ or CSI */
2761
2762 /* Special handling of 16 colors, because termcap can't handle it */
2763 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2764 /* Also accept CSI instead of <Esc>[ */
2765 if (n >= 8 && t_colors >= 16
2766 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2767 && s[i] != NUL
2768 && (STRCMP(s + i + 1, "%p1%dm") == 0
2769 || STRCMP(s + i + 1, "%dm") == 0)
2770 && (s[i] == '3' || s[i] == '4'))
2771 {
2772 sprintf(buf,
2773#ifdef TERMINFO
2774 "%s%s%%p1%%dm",
2775#else
2776 "%s%s%%dm",
2777#endif
2778 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2779 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2780 : (n >= 16 ? "48;5;" : "10"));
2781 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2782 }
2783 else
2784 OUT_STR(tgoto((char *)s, 0, n));
2785}
2786
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002787#if defined(FEAT_TERMTRUECOLOR) || defined(PROTO)
2788 void
2789term_fg_rgb_color(long_u rgb)
2790{
2791 term_rgb_color(T_8F, rgb);
2792}
2793
2794 void
2795term_bg_rgb_color(long_u rgb)
2796{
2797 term_rgb_color(T_8B, rgb);
2798}
2799
2800#define RED(rgb) ((rgb>>16)&0xFF)
2801#define GREEN(rgb) ((rgb>> 8)&0xFF)
2802#define BLUE(rgb) ((rgb )&0xFF)
2803
2804 static void
2805term_rgb_color(char_u *s, long_u rgb)
2806{
Bram Moolenaar380130f2016-04-22 11:24:43 +02002807#define MAX_COLOR_STR_LEN 100
2808 char buf[MAX_COLOR_STR_LEN];
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002809
Bram Moolenaar380130f2016-04-22 11:24:43 +02002810 vim_snprintf(buf, MAX_KEY_CODE_LEN,
2811 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
Bram Moolenaar8a633e32016-04-21 21:10:14 +02002812 OUT_STR(buf);
2813}
2814#endif
2815
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002816#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \
2817 || defined(MACOS_X))) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818/*
2819 * Generic function to set window title, using t_ts and t_fs.
2820 */
2821 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002822term_settitle(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823{
2824 /* t_ts takes one argument: column in status line */
2825 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2826 out_str_nf(title);
2827 out_str(T_FS); /* set title end */
2828 out_flush();
2829}
2830#endif
2831
2832/*
2833 * Make sure we have a valid set or terminal options.
2834 * Replace all entries that are NULL by empty_option
2835 */
2836 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002837ttest(int pairs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838{
2839 check_options(); /* make sure no options are NULL */
2840
2841 /*
2842 * MUST have "cm": cursor motion.
2843 */
2844 if (*T_CM == NUL)
2845 EMSG(_("E437: terminal capability \"cm\" required"));
2846
2847 /*
2848 * if "cs" defined, use a scroll region, it's faster.
2849 */
2850 if (*T_CS != NUL)
2851 scroll_region = TRUE;
2852 else
2853 scroll_region = FALSE;
2854
2855 if (pairs)
2856 {
2857 /*
2858 * optional pairs
2859 */
2860 /* TP goes to normal mode for TI (invert) and TB (bold) */
2861 if (*T_ME == NUL)
2862 T_ME = T_MR = T_MD = T_MB = empty_option;
2863 if (*T_SO == NUL || *T_SE == NUL)
2864 T_SO = T_SE = empty_option;
2865 if (*T_US == NUL || *T_UE == NUL)
2866 T_US = T_UE = empty_option;
2867 if (*T_CZH == NUL || *T_CZR == NUL)
2868 T_CZH = T_CZR = empty_option;
2869
2870 /* T_VE is needed even though T_VI is not defined */
2871 if (*T_VE == NUL)
2872 T_VI = empty_option;
2873
2874 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2875 if (*T_ME == NUL)
2876 {
2877 T_ME = T_SE;
2878 T_MR = T_SO;
2879 T_MD = T_SO;
2880 }
2881
2882 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2883 if (*T_SO == NUL)
2884 {
2885 T_SE = T_ME;
2886 if (*T_MR == NUL)
2887 T_SO = T_MD;
2888 else
2889 T_SO = T_MR;
2890 }
2891
2892 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2893 if (*T_CZH == NUL)
2894 {
2895 T_CZR = T_ME;
2896 if (*T_MR == NUL)
2897 T_CZH = T_MD;
2898 else
2899 T_CZH = T_MR;
2900 }
2901
2902 /* "Sb" and "Sf" come in pairs */
2903 if (*T_CSB == NUL || *T_CSF == NUL)
2904 {
2905 T_CSB = empty_option;
2906 T_CSF = empty_option;
2907 }
2908
2909 /* "AB" and "AF" come in pairs */
2910 if (*T_CAB == NUL || *T_CAF == NUL)
2911 {
2912 T_CAB = empty_option;
2913 T_CAF = empty_option;
2914 }
2915
2916 /* if 'Sb' and 'AB' are not defined, reset "Co" */
2917 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00002918 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919
2920 /* Set 'weirdinvert' according to value of 't_xs' */
2921 p_wiv = (*T_XS != NUL);
2922 }
2923 need_gather = TRUE;
2924
2925 /* Set t_colors to the value of t_Co. */
2926 t_colors = atoi((char *)T_CCO);
2927}
2928
2929#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
2930 || defined(PROTO)
2931/*
2932 * Represent the given long_u as individual bytes, with the most significant
2933 * byte first, and store them in dst.
2934 */
2935 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002936add_long_to_buf(long_u val, char_u *dst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 int i;
2939 int shift;
2940
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002941 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 {
2943 shift = 8 * (sizeof(long_u) - i);
2944 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
2945 }
2946}
2947
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002948static int get_long_from_buf(char_u *buf, long_u *val);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949
2950/*
2951 * Interpret the next string of bytes in buf as a long integer, with the most
2952 * significant byte first. Note that it is assumed that buf has been through
2953 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
2954 * Puts result in val, and returns the number of bytes read from buf
2955 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
2956 * were present.
2957 */
2958 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002959get_long_from_buf(char_u *buf, long_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 int len;
2962 char_u bytes[sizeof(long_u)];
2963 int i;
2964 int shift;
2965
2966 *val = 0;
2967 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
2968 if (len != -1)
2969 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002970 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 {
2972 shift = 8 * (sizeof(long_u) - 1 - i);
2973 *val += (long_u)bytes[i] << shift;
2974 }
2975 }
2976 return len;
2977}
2978#endif
2979
2980#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002981 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
2982 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983/*
2984 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
2985 * that buf has been through inchar(). Returns the actual number of bytes used
2986 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
2987 * available.
2988 */
2989 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002990get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 int len = 0;
2993 int i;
2994 char_u c;
2995
2996 for (i = 0; i < num_bytes; i++)
2997 {
2998 if ((c = buf[len++]) == NUL)
2999 return -1;
3000 if (c == K_SPECIAL)
3001 {
3002 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
3003 return -1;
3004 if (buf[len++] == (int)KS_ZERO)
3005 c = NUL;
Bram Moolenaar0e710d62013-07-01 20:06:19 +02003006 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is
3007 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */
3008 if (buf[len++] == (int)KE_CSI)
3009 c = CSI;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00003011 else if (c == CSI && buf[len] == KS_EXTRA
3012 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003013 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
3014 * the start of a special key, see add_to_input_buf_csi(). */
3015 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 bytes[i] = c;
3017 }
3018 return len;
3019}
3020#endif
3021
3022/*
Bram Moolenaare057d402013-06-30 17:51:51 +02003023 * Check if the new shell size is valid, correct it if it's too small or way
3024 * too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 */
3026 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003027check_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 if (Rows < min_rows()) /* need room for one window and command line */
3030 Rows = min_rows();
Bram Moolenaare057d402013-06-30 17:51:51 +02003031 limit_screen_size();
3032}
3033
3034/*
3035 * Limit Rows and Columns to avoid an overflow in Rows * Columns.
3036 */
3037 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003038limit_screen_size(void)
Bram Moolenaare057d402013-06-30 17:51:51 +02003039{
3040 if (Columns < MIN_COLUMNS)
3041 Columns = MIN_COLUMNS;
3042 else if (Columns > 10000)
3043 Columns = 10000;
3044 if (Rows > 1000)
3045 Rows = 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046}
3047
Bram Moolenaar86b68352004-12-27 21:59:20 +00003048/*
3049 * Invoked just before the screen structures are going to be (re)allocated.
3050 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003052win_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053{
3054 static int old_Rows = 0;
3055 static int old_Columns = 0;
3056
3057 if (old_Rows != Rows || old_Columns != Columns)
3058 ui_new_shellsize();
3059 if (old_Rows != Rows)
3060 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003061 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003062 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003063 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 old_Rows = Rows;
3065 shell_new_rows(); /* update window sizes */
3066 }
3067 if (old_Columns != Columns)
3068 {
3069 old_Columns = Columns;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003070#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 shell_new_columns(); /* update window sizes */
3072#endif
3073 }
3074}
3075
3076/*
3077 * Call this function when the Vim shell has been resized in any way.
3078 * Will obtain the current size and redraw (also when size didn't change).
3079 */
3080 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003081shell_resized(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082{
3083 set_shellsize(0, 0, FALSE);
3084}
3085
3086/*
3087 * Check if the shell size changed. Handle a resize.
3088 * When the size didn't change, nothing happens.
3089 */
3090 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003091shell_resized_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093 int old_Rows = Rows;
3094 int old_Columns = Columns;
3095
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003096 if (!exiting
3097#ifdef FEAT_GUI
3098 /* Do not get the size when executing a shell command during
3099 * startup. */
3100 && !gui.starting
3101#endif
3102 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003103 {
3104 (void)ui_get_shellsize();
3105 check_shellsize();
3106 if (old_Rows != Rows || old_Columns != Columns)
3107 shell_resized();
3108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109}
3110
3111/*
3112 * Set size of the Vim shell.
3113 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3114 * window size (this is used for the :win command).
3115 * If 'mustset' is FALSE, we may try to get the real window size and if
3116 * it fails use 'width' and 'height'.
3117 */
3118 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003119set_shellsize(int width, int height, int mustset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120{
3121 static int busy = FALSE;
3122
3123 /*
3124 * Avoid recursiveness, can happen when setting the window size causes
3125 * another window-changed signal.
3126 */
3127 if (busy)
3128 return;
3129
3130 if (width < 0 || height < 0) /* just checking... */
3131 return;
3132
Bram Moolenaara971b822011-09-14 14:43:25 +02003133 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003135 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 State = SETWSIZE;
3137 return;
3138 }
3139
Bram Moolenaara971b822011-09-14 14:43:25 +02003140 /* curwin->w_buffer can be NULL when we are closing a window and the
3141 * buffer has already been closed and removing a scrollbar causes a resize
3142 * event. Don't resize then, it will happen after entering another buffer.
3143 */
3144 if (curwin->w_buffer == NULL)
3145 return;
3146
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 ++busy;
3148
3149#ifdef AMIGA
3150 out_flush(); /* must do this before mch_get_shellsize() for
3151 some obscure reason */
3152#endif
3153
3154 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3155 {
3156 Rows = height;
3157 Columns = width;
3158 check_shellsize();
3159 ui_set_shellsize(mustset);
3160 }
3161 else
3162 check_shellsize();
3163
3164 /* The window layout used to be adjusted here, but it now happens in
3165 * screenalloc() (also invoked from screenclear()). That is because the
3166 * "busy" check above may skip this, but not screenalloc(). */
3167
3168 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3169 screenclear();
3170 else
3171 screen_start(); /* don't know where cursor is now */
3172
3173 if (starting != NO_SCREEN)
3174 {
3175#ifdef FEAT_TITLE
3176 maketitle();
3177#endif
3178 changed_line_abv_curs();
3179 invalidate_botline();
3180
3181 /*
3182 * We only redraw when it's needed:
3183 * - While at the more prompt or executing an external command, don't
3184 * redraw, but position the cursor.
3185 * - While editing the command line, only redraw that.
3186 * - in Ex mode, don't redraw anything.
3187 * - Otherwise, redraw right now, and position the cursor.
3188 * Always need to call update_screen() or screenalloc(), to make
3189 * sure Rows/Columns and the size of ScreenLines[] is correct!
3190 */
3191 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3192 || exmode_active)
3193 {
3194 screenalloc(FALSE);
3195 repeat_message();
3196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 else
3198 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003199#ifdef FEAT_SCROLLBIND
3200 if (curwin->w_p_scb)
3201 do_check_scrollbind(TRUE);
3202#endif
3203 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003204 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003205 update_screen(NOT_VALID);
3206 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003207 }
3208 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003209 {
3210 update_topline();
3211#if defined(FEAT_INS_EXPAND)
3212 if (pum_visible())
3213 {
3214 redraw_later(NOT_VALID);
3215 ins_compl_show_pum(); /* This includes the redraw. */
3216 }
3217 else
Bram Moolenaar280f1262006-01-30 00:14:18 +00003218#endif
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003219 update_screen(NOT_VALID);
3220 if (redrawing())
3221 setcursor();
3222 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 }
3224 cursor_on(); /* redrawing may have switched it off */
3225 }
3226 out_flush();
3227 --busy;
3228}
3229
3230/*
3231 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3232 * commands and Ex mode).
3233 */
3234 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003235settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236{
3237#ifdef FEAT_GUI
3238 /* don't set the term where gvim was started to any mode */
3239 if (gui.in_use)
3240 return;
3241#endif
3242
3243 if (full_screen)
3244 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 /*
3246 * When returning after calling a shell we want to really set the
3247 * terminal to raw mode, even though we think it already is, because
3248 * the shell program may have reset the terminal mode.
3249 * When we think the terminal is normal, don't try to set it to
3250 * normal again, because that causes problems (logout!) on some
3251 * machines.
3252 */
3253 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3254 {
3255#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003256# ifdef FEAT_GUI
3257 if (!gui.in_use && !gui.starting)
3258# endif
3259 {
3260 /* May need to check for T_CRV response and termcodes, it
3261 * doesn't work in Cooked mode, an external program may get
3262 * them. */
Bram Moolenaar9584b312013-03-13 19:29:28 +01003263 if (tmode != TMODE_RAW && (crv_status == CRV_SENT
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003264 || u7_status == U7_SENT
3265 || rbg_status == RBG_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003266 (void)vpeekc_nomap();
3267 check_for_codes_from_term();
3268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269#endif
3270#ifdef FEAT_MOUSE_TTY
3271 if (tmode != TMODE_RAW)
3272 mch_setmouse(FALSE); /* switch mouse off */
3273#endif
3274 out_flush();
3275 mch_settmode(tmode); /* machine specific function */
3276 cur_tmode = tmode;
3277#ifdef FEAT_MOUSE
3278 if (tmode == TMODE_RAW)
3279 setmouse(); /* may switch mouse on */
3280#endif
3281 out_flush();
3282 }
3283#ifdef FEAT_TERMRESPONSE
3284 may_req_termresponse();
3285#endif
3286 }
3287}
3288
3289 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003290starttermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291{
3292 if (full_screen && !termcap_active)
3293 {
3294 out_str(T_TI); /* start termcap mode */
3295 out_str(T_KS); /* start "keypad transmit" mode */
3296 out_flush();
3297 termcap_active = TRUE;
3298 screen_start(); /* don't know where cursor is now */
3299#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003300# ifdef FEAT_GUI
3301 if (!gui.in_use && !gui.starting)
3302# endif
3303 {
3304 may_req_termresponse();
3305 /* Immediately check for a response. If t_Co changes, we don't
3306 * want to redraw with wrong colors first. */
Bram Moolenaar90013c62014-05-22 18:14:31 +02003307 if (crv_status == CRV_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003308 check_for_codes_from_term();
3309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310#endif
3311 }
3312}
3313
3314 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003315stoptermcap(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316{
3317 screen_stop_highlight();
3318 reset_cterm_colors();
3319 if (termcap_active)
3320 {
3321#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003322# ifdef FEAT_GUI
3323 if (!gui.in_use && !gui.starting)
3324# endif
3325 {
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003326 /* May need to discard T_CRV, T_U7 or T_RBG response. */
3327 if (crv_status == CRV_SENT || u7_status == U7_SENT
3328 || rbg_status == RBG_SENT)
Bram Moolenaar29607ac2013-05-13 20:26:53 +02003329 {
3330# ifdef UNIX
3331 /* Give the terminal a chance to respond. */
3332 mch_delay(100L, FALSE);
3333# endif
3334# ifdef TCIFLUSH
3335 /* Discard data received but not read. */
3336 if (exiting)
3337 tcflush(fileno(stdin), TCIFLUSH);
3338# endif
3339 }
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003340 /* Check for termcodes first, otherwise an external program may
3341 * get them. */
3342 check_for_codes_from_term();
3343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344#endif
3345 out_str(T_KE); /* stop "keypad transmit" mode */
3346 out_flush();
3347 termcap_active = FALSE;
3348 cursor_on(); /* just in case it is still off */
3349 out_str(T_TE); /* stop termcap mode */
3350 screen_start(); /* don't know where cursor is now */
3351 out_flush();
3352 }
3353}
3354
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003355#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356/*
3357 * Request version string (for xterm) when needed.
3358 * Only do this after switching to raw mode, otherwise the result will be
3359 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003360 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003361 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 * Only do this after termcap mode has been started, otherwise the codes for
3363 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003364 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3365 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003366 * On Unix only do it when both output and input are a tty (avoid writing
3367 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 * The result is caught in check_termcode().
3369 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003370 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003371may_req_termresponse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372{
3373 if (crv_status == CRV_GET
3374 && cur_tmode == TMODE_RAW
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003375 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 && termcap_active
Bram Moolenaarebefac62005-12-28 22:39:57 +00003377 && p_ek
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003378# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 && isatty(1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003380 && isatty(read_cmd_fd)
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003381# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 && *T_CRV != NUL)
3383 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02003384 LOG_TR("Sending CRV");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 out_str(T_CRV);
3386 crv_status = CRV_SENT;
3387 /* check for the characters now, otherwise they might be eaten by
3388 * get_keystroke() */
3389 out_flush();
3390 (void)vpeekc_nomap();
3391 }
3392}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003393
3394# if defined(FEAT_MBYTE) || defined(PROTO)
3395/*
3396 * Check how the terminal treats ambiguous character width (UAX #11).
Bram Moolenaar2951b772013-07-03 12:45:31 +02003397 * First, we move the cursor to (1, 0) and print a test ambiguous character
Bram Moolenaar9584b312013-03-13 19:29:28 +01003398 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
Bram Moolenaar2951b772013-07-03 12:45:31 +02003399 * If the terminal treats \u25bd as single width, the position is (1, 1),
3400 * or if it is treated as double width, that will be (1, 2).
Bram Moolenaar9584b312013-03-13 19:29:28 +01003401 * This function has the side effect that changes cursor position, so
3402 * it must be called immediately after entering termcap mode.
3403 */
3404 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003405may_req_ambiguous_char_width(void)
Bram Moolenaar9584b312013-03-13 19:29:28 +01003406{
3407 if (u7_status == U7_GET
3408 && cur_tmode == TMODE_RAW
3409 && termcap_active
3410 && p_ek
3411# ifdef UNIX
3412 && isatty(1)
3413 && isatty(read_cmd_fd)
3414# endif
3415 && *T_U7 != NUL
3416 && !option_was_set((char_u *)"ambiwidth"))
3417 {
3418 char_u buf[16];
3419
Bram Moolenaar2951b772013-07-03 12:45:31 +02003420 LOG_TR("Sending U7 request");
3421 /* Do this in the second row. In the first row the returned sequence
3422 * may be CSI 1;2R, which is the same as <S-F3>. */
3423 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003424 buf[mb_char2bytes(0x25bd, buf)] = 0;
3425 out_str(buf);
3426 out_str(T_U7);
3427 u7_status = U7_SENT;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01003428 out_flush();
3429 term_windgoto(1, 0);
Bram Moolenaar9584b312013-03-13 19:29:28 +01003430 out_str((char_u *)" ");
3431 term_windgoto(0, 0);
3432 /* check for the characters now, otherwise they might be eaten by
3433 * get_keystroke() */
3434 out_flush();
3435 (void)vpeekc_nomap();
3436 }
3437}
3438# endif
Bram Moolenaar2951b772013-07-03 12:45:31 +02003439
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003440#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
3441/*
Bram Moolenaar4921c242015-06-27 18:34:24 +02003442 * Similar to requesting the version string: Request the terminal background
3443 * color when it is the right moment.
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003444 */
3445 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003446may_req_bg_color(void)
Bram Moolenaarb5c32652015-06-25 17:03:36 +02003447{
3448 if (rbg_status == RBG_GET
3449 && cur_tmode == TMODE_RAW
3450 && termcap_active
3451 && p_ek
3452# ifdef UNIX
3453 && isatty(1)
3454 && isatty(read_cmd_fd)
3455# endif
3456 && *T_RBG != NUL
3457 && !option_was_set((char_u *)"bg"))
3458 {
3459 LOG_TR("Sending BG request");
3460 out_str(T_RBG);
3461 rbg_status = RBG_SENT;
3462 /* check for the characters now, otherwise they might be eaten by
3463 * get_keystroke() */
3464 out_flush();
3465 (void)vpeekc_nomap();
3466 }
3467}
3468# endif
3469
Bram Moolenaar2951b772013-07-03 12:45:31 +02003470# ifdef DEBUG_TERMRESPONSE
3471 static void
3472log_tr(char *msg)
3473{
3474 static FILE *fd_tr = NULL;
3475 static proftime_T start;
3476 proftime_T now;
3477
3478 if (fd_tr == NULL)
3479 {
3480 fd_tr = fopen("termresponse.log", "w");
3481 profile_start(&start);
3482 }
3483 now = start;
3484 profile_end(&now);
3485 fprintf(fd_tr, "%s: %s %s\n",
3486 profile_msg(&now),
3487 must_redraw == NOT_VALID ? "NV"
3488 : must_redraw == CLEAR ? "CL" : " ",
3489 msg);
3490}
3491# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492#endif
3493
3494/*
3495 * Return TRUE when saving and restoring the screen.
3496 */
3497 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003498swapping_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499{
3500 return (full_screen && *T_TI != NUL);
3501}
3502
3503#ifdef FEAT_MOUSE
3504/*
3505 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3506 */
3507 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003508setmouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509{
3510# ifdef FEAT_MOUSE_TTY
3511 int checkfor;
3512# endif
3513
3514# ifdef FEAT_MOUSESHAPE
3515 update_mouseshape(-1);
3516# endif
3517
3518# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3519# ifdef FEAT_GUI
3520 /* In the GUI the mouse is always enabled. */
3521 if (gui.in_use)
3522 return;
3523# endif
3524 /* be quick when mouse is off */
3525 if (*p_mouse == NUL || has_mouse_termcode == 0)
3526 return;
3527
3528 /* don't switch mouse on when not in raw mode (Ex mode) */
3529 if (cur_tmode != TMODE_RAW)
3530 {
3531 mch_setmouse(FALSE);
3532 return;
3533 }
3534
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 if (VIsual_active)
3536 checkfor = MOUSE_VISUAL;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003537 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 checkfor = MOUSE_RETURN;
3539 else if (State & INSERT)
3540 checkfor = MOUSE_INSERT;
3541 else if (State & CMDLINE)
3542 checkfor = MOUSE_COMMAND;
3543 else if (State == CONFIRM || State == EXTERNCMD)
3544 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3545 else
3546 checkfor = MOUSE_NORMAL; /* assume normal mode */
3547
3548 if (mouse_has(checkfor))
3549 mch_setmouse(TRUE);
3550 else
3551 mch_setmouse(FALSE);
3552# endif
3553}
3554
3555/*
3556 * Return TRUE if
3557 * - "c" is in 'mouse', or
3558 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3559 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3560 * normal editing mode (not at hit-return message).
3561 */
3562 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003563mouse_has(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564{
3565 char_u *p;
3566
3567 for (p = p_mouse; *p; ++p)
3568 switch (*p)
3569 {
3570 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3571 return TRUE;
3572 break;
3573 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3574 return TRUE;
3575 break;
3576 default: if (c == *p) return TRUE; break;
3577 }
3578 return FALSE;
3579}
3580
3581/*
3582 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3583 */
3584 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003585mouse_model_popup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586{
3587 return (p_mousem[0] == 'p');
3588}
3589#endif
3590
3591/*
3592 * By outputting the 'cursor very visible' termcap code, for some windowed
3593 * terminals this makes the screen scrolled to the correct position.
3594 * Used when starting Vim or returning from a shell.
3595 */
3596 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003597scroll_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598{
3599 if (*T_VS != NUL)
3600 {
3601 out_str(T_VS);
3602 out_str(T_VE);
3603 screen_start(); /* don't know where cursor is now */
3604 }
3605}
3606
3607static int cursor_is_off = FALSE;
3608
3609/*
3610 * Enable the cursor.
3611 */
3612 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003613cursor_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614{
3615 if (cursor_is_off)
3616 {
3617 out_str(T_VE);
3618 cursor_is_off = FALSE;
3619 }
3620}
3621
3622/*
3623 * Disable the cursor.
3624 */
3625 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003626cursor_off(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627{
3628 if (full_screen)
3629 {
3630 if (!cursor_is_off)
3631 out_str(T_VI); /* disable cursor */
3632 cursor_is_off = TRUE;
3633 }
3634}
3635
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003636#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637/*
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003638 * Set cursor shape to match Insert or Replace mode.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003639 */
3640 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003641term_cursor_shape(void)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003642{
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003643 static int showing_mode = NORMAL;
3644 char_u *p;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003645
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003646 /* Only do something when redrawing the screen and we can restore the
3647 * mode. */
3648 if (!full_screen || *T_CEI == NUL)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003649 return;
3650
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003651 if ((State & REPLACE) == REPLACE)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003652 {
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003653 if (showing_mode != REPLACE)
3654 {
3655 if (*T_CSR != NUL)
3656 p = T_CSR; /* Replace mode cursor */
3657 else
3658 p = T_CSI; /* fall back to Insert mode cursor */
3659 if (*p != NUL)
3660 {
3661 out_str(p);
3662 showing_mode = REPLACE;
3663 }
3664 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003665 }
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003666 else if (State & INSERT)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003667 {
Bram Moolenaar1e7813a2015-03-31 18:31:03 +02003668 if (showing_mode != INSERT && *T_CSI != NUL)
3669 {
3670 out_str(T_CSI); /* Insert mode cursor */
3671 showing_mode = INSERT;
3672 }
3673 }
3674 else if (showing_mode != NORMAL)
3675 {
3676 out_str(T_CEI); /* non-Insert mode cursor */
3677 showing_mode = NORMAL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003678 }
3679}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003680#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003681
3682/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 * Set scrolling region for window 'wp'.
3684 * The region starts 'off' lines from the start of the window.
3685 * Also set the vertical scroll region for a vertically split window. Always
3686 * the full width of the window, excluding the vertical separator.
3687 */
3688 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003689scroll_region_set(win_T *wp, int off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690{
3691 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3692 W_WINROW(wp) + off));
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003693#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 if (*T_CSV != NUL && wp->w_width != Columns)
3695 OUT_STR(tgoto((char *)T_CSV, W_WINCOL(wp) + wp->w_width - 1,
3696 W_WINCOL(wp)));
3697#endif
3698 screen_start(); /* don't know where cursor is now */
3699}
3700
3701/*
3702 * Reset scrolling region to the whole screen.
3703 */
3704 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003705scroll_region_reset(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706{
3707 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003708#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 if (*T_CSV != NUL)
3710 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
3711#endif
3712 screen_start(); /* don't know where cursor is now */
3713}
3714
3715
3716/*
3717 * List of terminal codes that are currently recognized.
3718 */
3719
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003720static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721{
3722 char_u name[2]; /* termcap name of entry */
3723 char_u *code; /* terminal code (in allocated memory) */
3724 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003725 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726} *termcodes = NULL;
3727
3728static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3729static int tc_len = 0; /* current number of entries in termcodes[] */
3730
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003731static int termcode_star(char_u *code, int len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003732
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003734clear_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735{
3736 while (tc_len > 0)
3737 vim_free(termcodes[--tc_len].code);
3738 vim_free(termcodes);
3739 termcodes = NULL;
3740 tc_max_len = 0;
3741
3742#ifdef HAVE_TGETENT
3743 BC = (char *)empty_option;
3744 UP = (char *)empty_option;
3745 PC = NUL; /* set pad character to NUL */
3746 ospeed = 0;
3747#endif
3748
3749 need_gather = TRUE; /* need to fill termleader[] */
3750}
3751
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003752#define ATC_FROM_TERM 55
3753
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754/*
3755 * Add a new entry to the list of terminal codes.
3756 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003757 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3758 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 */
3760 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003761add_termcode(char_u *name, char_u *string, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762{
3763 struct termcode *new_tc;
3764 int i, j;
3765 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003766 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767
3768 if (string == NULL || *string == NUL)
3769 {
3770 del_termcode(name);
3771 return;
3772 }
3773
Bram Moolenaar45500912014-07-09 20:51:07 +02003774#if defined(WIN3264) && !defined(FEAT_GUI)
3775 s = vim_strnsave(string, (int)STRLEN(string) + 1);
3776#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 s = vim_strsave(string);
Bram Moolenaar45500912014-07-09 20:51:07 +02003778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 if (s == NULL)
3780 return;
3781
3782 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003783 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003785 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 s[0] = term_7to8bit(string);
3787 }
Bram Moolenaar45500912014-07-09 20:51:07 +02003788
3789#if defined(WIN3264) && !defined(FEAT_GUI)
3790 if (s[0] == K_NUL)
3791 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003792 STRMOVE(s + 1, s);
3793 s[1] = 3;
Bram Moolenaar45500912014-07-09 20:51:07 +02003794 }
3795#endif
3796
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003797 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798
3799 need_gather = TRUE; /* need to fill termleader[] */
3800
3801 /*
3802 * need to make space for more entries
3803 */
3804 if (tc_len == tc_max_len)
3805 {
3806 tc_max_len += 20;
3807 new_tc = (struct termcode *)alloc(
3808 (unsigned)(tc_max_len * sizeof(struct termcode)));
3809 if (new_tc == NULL)
3810 {
3811 tc_max_len -= 20;
3812 return;
3813 }
3814 for (i = 0; i < tc_len; ++i)
3815 new_tc[i] = termcodes[i];
3816 vim_free(termcodes);
3817 termcodes = new_tc;
3818 }
3819
3820 /*
3821 * Look for existing entry with the same name, it is replaced.
3822 * Look for an existing entry that is alphabetical higher, the new entry
3823 * is inserted in front of it.
3824 */
3825 for (i = 0; i < tc_len; ++i)
3826 {
3827 if (termcodes[i].name[0] < name[0])
3828 continue;
3829 if (termcodes[i].name[0] == name[0])
3830 {
3831 if (termcodes[i].name[1] < name[1])
3832 continue;
3833 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003834 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 */
3836 if (termcodes[i].name[1] == name[1])
3837 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003838 if (flags == ATC_FROM_TERM && (j = termcode_star(
3839 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003840 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003841 /* Don't replace ESC[123;*X or ESC O*X with another when
3842 * invoked from got_code_from_term(). */
3843 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003844 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003845 && s[len - 1]
3846 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003847 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003848 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003849 vim_free(s);
3850 return;
3851 }
3852 }
3853 else
3854 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003855 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003856 vim_free(termcodes[i].code);
3857 --tc_len;
3858 break;
3859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 }
3861 }
3862 /*
3863 * Found alphabetical larger entry, move rest to insert new entry
3864 */
3865 for (j = tc_len; j > i; --j)
3866 termcodes[j] = termcodes[j - 1];
3867 break;
3868 }
3869
3870 termcodes[i].name[0] = name[0];
3871 termcodes[i].name[1] = name[1];
3872 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003873 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003874
3875 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
3876 * accept modifiers. */
3877 termcodes[i].modlen = 0;
3878 j = termcode_star(s, len);
3879 if (j > 0)
3880 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 ++tc_len;
3882}
3883
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003884/*
3885 * Check termcode "code[len]" for ending in ;*X, <Esc>O*X or <M-O>*X.
3886 * The "X" can be any character.
3887 * Return 0 if not found, 2 for ;*X and 1 for O*X and <M-O>*X.
3888 */
3889 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003890termcode_star(char_u *code, int len)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003891{
3892 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
3893 if (len >= 3 && code[len - 2] == '*')
3894 {
3895 if (len >= 5 && code[len - 3] == ';')
3896 return 2;
3897 if ((len >= 4 && code[len - 3] == 'O') || code[len - 3] == 'O' + 128)
3898 return 1;
3899 }
3900 return 0;
3901}
3902
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003904find_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905{
3906 int i;
3907
3908 for (i = 0; i < tc_len; ++i)
3909 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3910 return termcodes[i].code;
3911 return NULL;
3912}
3913
3914#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3915 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003916get_termcode(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917{
3918 if (i >= tc_len)
3919 return NULL;
3920 return &termcodes[i].name[0];
3921}
3922#endif
3923
3924 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003925del_termcode(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926{
3927 int i;
3928
3929 if (termcodes == NULL) /* nothing there yet */
3930 return;
3931
3932 need_gather = TRUE; /* need to fill termleader[] */
3933
3934 for (i = 0; i < tc_len; ++i)
3935 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3936 {
3937 del_termcode_idx(i);
3938 return;
3939 }
3940 /* not found. Give error message? */
3941}
3942
3943 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003944del_termcode_idx(int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945{
3946 int i;
3947
3948 vim_free(termcodes[idx].code);
3949 --tc_len;
3950 for (i = idx; i < tc_len; ++i)
3951 termcodes[i] = termcodes[i + 1];
3952}
3953
3954#ifdef FEAT_TERMRESPONSE
3955/*
3956 * Called when detected that the terminal sends 8-bit codes.
3957 * Convert all 7-bit codes to their 8-bit equivalent.
3958 */
3959 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003960switch_to_8bit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961{
3962 int i;
3963 int c;
3964
3965 /* Only need to do something when not already using 8-bit codes. */
3966 if (!term_is_8bit(T_NAME))
3967 {
3968 for (i = 0; i < tc_len; ++i)
3969 {
3970 c = term_7to8bit(termcodes[i].code);
3971 if (c != 0)
3972 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003973 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 termcodes[i].code[0] = c;
3975 }
3976 }
3977 need_gather = TRUE; /* need to fill termleader[] */
3978 }
3979 detected_8bit = TRUE;
Bram Moolenaar2951b772013-07-03 12:45:31 +02003980 LOG_TR("Switching to 8 bit");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981}
3982#endif
3983
3984#ifdef CHECK_DOUBLE_CLICK
3985static linenr_T orig_topline = 0;
3986# ifdef FEAT_DIFF
3987static int orig_topfill = 0;
3988# endif
3989#endif
3990#if (defined(FEAT_WINDOWS) && defined(CHECK_DOUBLE_CLICK)) || defined(PROTO)
3991/*
3992 * Checking for double clicks ourselves.
3993 * "orig_topline" is used to avoid detecting a double-click when the window
3994 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3995 */
3996/*
3997 * Set orig_topline. Used when jumping to another window, so that a double
3998 * click still works.
3999 */
4000 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004001set_mouse_topline(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002{
4003 orig_topline = wp->w_topline;
4004# ifdef FEAT_DIFF
4005 orig_topfill = wp->w_topfill;
4006# endif
4007}
4008#endif
4009
4010/*
4011 * Check if typebuf.tb_buf[] contains a terminal key code.
4012 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
4013 * + max_offset].
4014 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004015 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 * With a match, the match is removed, the replacement code is inserted in
4017 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
4018 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004019 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
4020 * "buflen" is then the length of the string in buf[] and is updated for
4021 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 */
4023 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004024check_termcode(
4025 int max_offset,
4026 char_u *buf,
4027 int bufsize,
4028 int *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029{
4030 char_u *tp;
4031 char_u *p;
4032 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004033 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01004035 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 int offset;
4037 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004038 int modifiers;
4039 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 int new_slen;
4041 int extra;
4042 char_u string[MAX_KEY_CODE_LEN + 1];
4043 int i, j;
4044 int idx = 0;
4045#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00004046# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4047 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 char_u bytes[6];
4049 int num_bytes;
4050# endif
4051 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 int is_click, is_drag;
4053 int wheel_code = 0;
4054 int current_button;
4055 static int held_button = MOUSE_RELEASE;
4056 static int orig_num_clicks = 1;
4057 static int orig_mouse_code = 0x0;
4058# ifdef CHECK_DOUBLE_CLICK
4059 static int orig_mouse_col = 0;
4060 static int orig_mouse_row = 0;
4061 static struct timeval orig_mouse_time = {0, 0};
4062 /* time of previous mouse click */
4063 struct timeval mouse_time; /* time of current mouse click */
4064 long timediff; /* elapsed time in msec */
4065# endif
4066#endif
4067 int cpo_koffset;
4068#ifdef FEAT_MOUSE_GPM
4069 extern int gpm_flag; /* gpm library variable */
4070#endif
4071
4072 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
4073
4074 /*
4075 * Speed up the checks for terminal codes by gathering all first bytes
4076 * used in termleader[]. Often this is just a single <Esc>.
4077 */
4078 if (need_gather)
4079 gather_termleader();
4080
4081 /*
4082 * Check at several positions in typebuf.tb_buf[], to catch something like
4083 * "x<Up>" that can be mapped. Stop at max_offset, because characters
4084 * after that cannot be used for mapping, and with @r commands
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004085 * typebuf.tb_buf[] can become very long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 * This is used often, KEEP IT FAST!
4087 */
4088 for (offset = 0; offset < max_offset; ++offset)
4089 {
4090 if (buf == NULL)
4091 {
4092 if (offset >= typebuf.tb_len)
4093 break;
4094 tp = typebuf.tb_buf + typebuf.tb_off + offset;
4095 len = typebuf.tb_len - offset; /* length of the input */
4096 }
4097 else
4098 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004099 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 break;
4101 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01004102 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 }
4104
4105 /*
4106 * Don't check characters after K_SPECIAL, those are already
4107 * translated terminal chars (avoid translating ~@^Hx).
4108 */
4109 if (*tp == K_SPECIAL)
4110 {
4111 offset += 2; /* there are always 2 extra characters */
4112 continue;
4113 }
4114
4115 /*
4116 * Skip this position if the character does not appear as the first
4117 * character in term_strings. This speeds up a lot, since most
4118 * termcodes start with the same character (ESC or CSI).
4119 */
4120 i = *tp;
4121 for (p = termleader; *p && *p != i; ++p)
4122 ;
4123 if (*p == NUL)
4124 continue;
4125
4126 /*
4127 * Skip this position if p_ek is not set and tp[0] is an ESC and we
4128 * are in Insert mode.
4129 */
4130 if (*tp == ESC && !p_ek && (State & INSERT))
4131 continue;
4132
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004134 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004135 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136
4137#ifdef FEAT_GUI
4138 if (gui.in_use)
4139 {
4140 /*
4141 * GUI special key codes are all of the form [CSI xx].
4142 */
4143 if (*tp == CSI) /* Special key from GUI */
4144 {
4145 if (len < 3)
4146 return -1; /* Shouldn't happen */
4147 slen = 3;
4148 key_name[0] = tp[1];
4149 key_name[1] = tp[2];
4150 }
4151 }
4152 else
4153#endif /* FEAT_GUI */
4154 {
4155 for (idx = 0; idx < tc_len; ++idx)
4156 {
4157 /*
4158 * Ignore the entry if we are not at the start of
4159 * typebuf.tb_buf[]
4160 * and there are not enough characters to make a match.
4161 * But only when the 'K' flag is in 'cpoptions'.
4162 */
4163 slen = termcodes[idx].len;
4164 if (cpo_koffset && offset && len < slen)
4165 continue;
4166 if (STRNCMP(termcodes[idx].code, tp,
4167 (size_t)(slen > len ? len : slen)) == 0)
4168 {
4169 if (len < slen) /* got a partial sequence */
4170 return -1; /* need to get more chars */
4171
4172 /*
4173 * When found a keypad key, check if there is another key
4174 * that matches and use that one. This makes <Home> to be
4175 * found instead of <kHome> when they produce the same
4176 * key code.
4177 */
4178 if (termcodes[idx].name[0] == 'K'
4179 && VIM_ISDIGIT(termcodes[idx].name[1]))
4180 {
4181 for (j = idx + 1; j < tc_len; ++j)
4182 if (termcodes[j].len == slen &&
4183 STRNCMP(termcodes[idx].code,
4184 termcodes[j].code, slen) == 0)
4185 {
4186 idx = j;
4187 break;
4188 }
4189 }
4190
4191 key_name[0] = termcodes[idx].name[0];
4192 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 break;
4194 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004195
4196 /*
4197 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004198 * <Esc>[123;*X (modslen == slen - 3)
4199 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4200 * When there is a modifier the * matches a number.
4201 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004202 */
4203 if (termcodes[idx].modlen > 0)
4204 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004205 modslen = termcodes[idx].modlen;
4206 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004207 continue;
4208 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004209 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004210 {
4211 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004212
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004213 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004214 return -1; /* need to get more chars */
4215
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004216 if (tp[modslen] == termcodes[idx].code[slen - 1])
4217 slen = modslen + 1; /* no modifiers */
4218 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004219 continue; /* no match */
4220 else
4221 {
4222 /* Skip over the digits, the final char must
4223 * follow. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004224 for (j = slen - 2; j < len && isdigit(tp[j]); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004225 ;
4226 ++j;
4227 if (len < j) /* got a partial sequence */
4228 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004229 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4230 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004231
4232 /* Match! Convert modifier bits. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004233 n = atoi((char *)tp + slen - 2) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004234 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004235 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004236 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004237 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004238 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004239 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004240 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004241 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004242
4243 slen = j;
4244 }
4245 key_name[0] = termcodes[idx].name[0];
4246 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004247 break;
4248 }
4249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 }
4251 }
4252
4253#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004254 if (key_name[0] == NUL
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004255 /* Mouse codes of DEC, pterm, and URXVT start with <ESC>[. When
4256 * detecting the start of these mouse codes they might as well be
4257 * another key code or terminal response. */
4258# ifdef FEAT_MOUSE_DEC
4259 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaare533bbe2013-03-16 14:33:36 +01004260# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004261# ifdef FEAT_MOUSE_PTERM
4262 || key_name[0] == KS_PTERM_MOUSE
4263# endif
4264# ifdef FEAT_MOUSE_URXVT
4265 || key_name[0] == KS_URXVT_MOUSE
4266# endif
4267 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004269 /* Check for some responses from the terminal starting with
4270 * "<Esc>[" or CSI:
Bram Moolenaar9584b312013-03-13 19:29:28 +01004271 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004272 * - Xterm version string: <Esc>[>{x};{vers};{y}c
Bram Moolenaar9584b312013-03-13 19:29:28 +01004273 * Also eat other possible responses to t_RV, rxvt returns
4274 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4275 * mrxvt has been reported to have "+" in the version. Assume
4276 * the escape sequence ends with a letter or one of "{|}~".
4277 *
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004278 * - Cursor position report: <Esc>[{row};{col}R
4279 * The final byte must be 'R'. It is used for checking the
Bram Moolenaar9584b312013-03-13 19:29:28 +01004280 * ambiguous-width character state.
4281 */
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004282 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004283
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004284 if ((*T_CRV != NUL || *T_U7 != NUL)
4285 && ((tp[0] == ESC && len >= 3 && tp[1] == '[')
Bram Moolenaar46a75612013-05-15 14:22:41 +02004286 || (tp[0] == CSI && len >= 2))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004287 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 {
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004289#ifdef FEAT_MBYTE
4290 int col;
Bram Moolenaarc41053062014-03-25 13:46:26 +01004291 int row_char = NUL;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004292#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 j = 0;
4294 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004295 for (i = 2 + (tp[0] != CSI); i < len
4296 && !(tp[i] >= '{' && tp[i] <= '~')
4297 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 if (tp[i] == ';' && ++j == 1)
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004299 {
Bram Moolenaar46a75612013-05-15 14:22:41 +02004300 extra = i + 1;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004301#ifdef FEAT_MBYTE
4302 row_char = tp[i - 1];
4303#endif
4304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004306 {
4307 LOG_TR("Not enough characters for CRV");
4308 return -1;
4309 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004310#ifdef FEAT_MBYTE
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004311 if (extra > 0)
4312 col = atoi((char *)tp + extra);
4313 else
4314 col = 0;
4315
4316 /* Eat it when it has 2 arguments and ends in 'R'. Also when
4317 * u7_status is not "sent", it may be from a previous Vim that
4318 * just exited. But not for <S-F3>, it sends something
4319 * similar, check for row and column to make sense. */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004320 if (j == 1 && tp[i] == 'R')
Bram Moolenaar9584b312013-03-13 19:29:28 +01004321 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004322 if (row_char == '2' && col >= 2)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004323 {
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004324 char *aw = NULL;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004325
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004326 LOG_TR("Received U7 status");
4327 u7_status = U7_GOT;
4328# ifdef FEAT_AUTOCMD
4329 did_cursorhold = TRUE;
Bram Moolenaar9c8c8c52014-03-19 14:01:57 +01004330# endif
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004331 if (col == 2)
4332 aw = "single";
4333 else if (col == 3)
4334 aw = "double";
4335 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
4336 {
4337 /* Setting the option causes a screen redraw. Do
4338 * that right away if possible, keeping any
4339 * messages. */
4340 set_option_value((char_u *)"ambw", 0L,
4341 (char_u *)aw, 0);
4342# ifdef DEBUG_TERMRESPONSE
4343 {
4344 char buf[100];
4345 int r = redraw_asap(CLEAR);
4346
4347 sprintf(buf,
4348 "set 'ambiwidth', redraw_asap(): %d",
4349 r);
4350 log_tr(buf);
4351 }
4352# else
4353 redraw_asap(CLEAR);
4354# endif
4355 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02004356 }
Bram Moolenaar9584b312013-03-13 19:29:28 +01004357 key_name[0] = (int)KS_EXTRA;
4358 key_name[1] = (int)KE_IGNORE;
4359 slen = i + 1;
4360 }
4361 else
4362#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004364 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004366 LOG_TR("Received CRV");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 crv_status = CRV_GOT;
Bram Moolenaar68879252013-04-05 19:50:17 +02004368# ifdef FEAT_AUTOCMD
4369 did_cursorhold = TRUE;
4370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371
4372 /* If this code starts with CSI, you can bet that the
4373 * terminal uses 8-bit codes. */
4374 if (tp[0] == CSI)
4375 switch_to_8bit();
4376
4377 /* rxvt sends its version number: "20703" is 2.7.3.
4378 * Ignore it for when the user has set 'term' to xterm,
4379 * even though it's an rxvt. */
Bram Moolenaar46a75612013-05-15 14:22:41 +02004380 if (extra > 0)
4381 extra = atoi((char *)tp + extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 if (extra > 20000)
4383 extra = 0;
4384
4385 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2)
4386 {
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004387 /* Only set 'ttymouse' automatically if it was not set
4388 * by the user already. */
4389 if (!option_was_set((char_u *)"ttym"))
4390 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004391# ifdef TTYM_SGR
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004392 if (extra >= 277)
4393 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004394 (char_u *)"sgr", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004395 else
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004396# endif
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004397 /* if xterm version >= 95 use mouse dragging */
4398 if (extra >= 95)
4399 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 (char_u *)"xterm2", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004401 }
4402
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 /* if xterm version >= 141 try to get termcap codes */
4404 if (extra >= 141)
4405 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02004406 LOG_TR("Enable checking for XT codes");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 check_for_codes = TRUE;
4408 need_gather = TRUE;
4409 req_codes_from_term();
4410 }
4411 }
4412# ifdef FEAT_EVAL
4413 set_vim_var_string(VV_TERMRESPONSE, tp, i + 1);
4414# endif
4415# ifdef FEAT_AUTOCMD
4416 apply_autocmds(EVENT_TERMRESPONSE,
4417 NULL, NULL, FALSE, curbuf);
4418# endif
4419 key_name[0] = (int)KS_EXTRA;
4420 key_name[1] = (int)KE_IGNORE;
4421 slen = i + 1;
4422 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004423 }
4424
4425 /* Check for background color response from the terminal:
4426 *
4427 * {lead}11;rgb:{rrrr}/{gggg}/{bbbb}{tail}
4428 *
4429 * {lead} can be <Esc>] or OSC
4430 * {tail} can be '\007', <Esc>\ or STERM.
4431 *
4432 * Consume any code that starts with "{lead}11;", it's also
4433 * possible that "rgba" is following.
4434 */
4435 else if (*T_RBG != NUL
4436 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
4437 || tp[0] == OSC))
4438 {
4439 j = 1 + (tp[0] == ESC);
4440 if (len >= j + 3 && (argp[0] != '1'
4441 || argp[1] != '1' || argp[2] != ';'))
4442 i = 0; /* no match */
4443 else
4444 for (i = j; i < len; ++i)
4445 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
4446 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004447 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004448 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
4449 && tp[j + 11] == '/' && tp[j + 16] == '/'
4450 && !option_was_set((char_u *)"bg"))
4451 {/* TODO: don't set option when already the right value */
4452 LOG_TR("Received RBG");
4453 rbg_status = RBG_GOT;
4454 set_option_value((char_u *)"bg", 0L, (char_u *)(
4455 (3 * '6' < tp[j+7] + tp[j+12] + tp[j+17])
4456 ? "light" : "dark"), 0);
4457 reset_option_was_set((char_u *)"bg");
4458 redraw_asap(CLEAR);
4459 }
4460
4461 /* got finished code: consume it */
4462 key_name[0] = (int)KS_EXTRA;
4463 key_name[1] = (int)KE_IGNORE;
4464 slen = i + 1 + (tp[i] == ESC);
4465 break;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004466 }
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004467 if (i == len)
4468 {
4469 LOG_TR("not enough characters for RB");
4470 return -1;
Bram Moolenaarb5c32652015-06-25 17:03:36 +02004471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 }
4473
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004474 /* Check for key code response from xterm:
4475 *
4476 * {lead}{flag}+r<hex bytes><{tail}
4477 *
4478 * {lead} can be <Esc>P or DCS
4479 * {flag} can be '0' or '1'
4480 * {tail} can be Esc>\ or STERM
4481 *
4482 * Consume any code that starts with "{lead}.+r".
4483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 else if (check_for_codes
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004485 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 || tp[0] == DCS))
4487 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004488 j = 1 + (tp[0] == ESC);
4489 if (len >= j + 3 && (argp[1] != '+' || argp[2] != 'r'))
4490 i = 0; /* no match */
4491 else
4492 for (i = j; i < len; ++i)
4493 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 || tp[i] == STERM)
4495 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004496 if (i - j >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 got_code_from_term(tp + j, i);
4498 key_name[0] = (int)KS_EXTRA;
4499 key_name[1] = (int)KE_IGNORE;
4500 slen = i + 1 + (tp[i] == ESC);
4501 break;
4502 }
4503
4504 if (i == len)
Bram Moolenaar2951b772013-07-03 12:45:31 +02004505 {
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004506 /* These codes arrive many together, each code can be
4507 * truncated at any point. */
Bram Moolenaar2951b772013-07-03 12:45:31 +02004508 LOG_TR("not enough characters for XT");
Bram Moolenaar46fd4df2015-07-10 14:05:10 +02004509 return -1;
Bram Moolenaar2951b772013-07-03 12:45:31 +02004510 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511 }
4512 }
4513#endif
4514
4515 if (key_name[0] == NUL)
4516 continue; /* No match at this position, try next one */
4517
4518 /* We only get here when we have a complete termcode match */
4519
4520#ifdef FEAT_MOUSE
4521# ifdef FEAT_GUI
4522 /*
4523 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4524 * so that we know which window to scroll later.
4525 */
4526 if (gui.in_use
4527 && key_name[0] == (int)KS_EXTRA
4528 && (key_name[1] == (int)KE_X1MOUSE
4529 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004530 || key_name[1] == (int)KE_MOUSELEFT
4531 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 || key_name[1] == (int)KE_MOUSEDOWN
4533 || key_name[1] == (int)KE_MOUSEUP))
4534 {
4535 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4536 if (num_bytes == -1) /* not enough coordinates */
4537 return -1;
4538 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4539 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4540 slen += num_bytes;
4541 }
4542 else
4543# endif
4544 /*
4545 * If it is a mouse click, get the coordinates.
4546 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004547 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004549 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550# endif
4551# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004552 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553# endif
4554# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004555 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556# endif
4557# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004558 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004560# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004561 || key_name[0] == KS_URXVT_MOUSE
4562# endif
4563# ifdef FEAT_MOUSE_SGR
4564 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004565# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 )
4567 {
4568 is_click = is_drag = FALSE;
4569
Bram Moolenaar864207d2008-06-24 22:14:38 +00004570# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4571 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 if (key_name[0] == (int)KS_MOUSE)
4573 {
4574 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004575 * For xterm we get "<t_mouse>scr", where
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 * s == encoded button state:
4577 * 0x20 = left button down
4578 * 0x21 = middle button down
4579 * 0x22 = right button down
4580 * 0x23 = any button release
4581 * 0x60 = button 4 down (scroll wheel down)
4582 * 0x61 = button 5 down (scroll wheel up)
4583 * add 0x04 for SHIFT
4584 * add 0x08 for ALT
4585 * add 0x10 for CTRL
4586 * add 0x20 for mouse drag (0x40 is drag with left button)
4587 * c == column + ' ' + 1 == column + 33
4588 * r == row + ' ' + 1 == row + 33
4589 *
4590 * The coordinates are passed on through global variables.
4591 * Ugly, but this avoids trouble with mouse clicks at an
4592 * unexpected moment and allows for mapping them.
4593 */
4594 for (;;)
4595 {
4596#ifdef FEAT_GUI
4597 if (gui.in_use)
4598 {
4599 /* GUI uses more bits for columns > 223 */
4600 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
4601 if (num_bytes == -1) /* not enough coordinates */
4602 return -1;
4603 mouse_code = bytes[0];
4604 mouse_col = 128 * (bytes[1] - ' ' - 1)
4605 + bytes[2] - ' ' - 1;
4606 mouse_row = 128 * (bytes[3] - ' ' - 1)
4607 + bytes[4] - ' ' - 1;
4608 }
4609 else
4610#endif
4611 {
4612 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
4613 if (num_bytes == -1) /* not enough coordinates */
4614 return -1;
4615 mouse_code = bytes[0];
4616 mouse_col = bytes[1] - ' ' - 1;
4617 mouse_row = bytes[2] - ' ' - 1;
4618 }
4619 slen += num_bytes;
4620
4621 /* If the following bytes is also a mouse code and it has
4622 * the same code, dump this one and get the next. This
4623 * makes dragging a whole lot faster. */
4624#ifdef FEAT_GUI
4625 if (gui.in_use)
4626 j = 3;
4627 else
4628#endif
4629 j = termcodes[idx].len;
4630 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
4631 && tp[slen + j] == mouse_code
4632 && tp[slen + j + 1] != NUL
4633 && tp[slen + j + 2] != NUL
4634#ifdef FEAT_GUI
4635 && (!gui.in_use
4636 || (tp[slen + j + 3] != NUL
4637 && tp[slen + j + 4] != NUL))
4638#endif
4639 )
4640 slen += j;
4641 else
4642 break;
4643 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004646# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
4647 if (key_name[0] == KS_URXVT_MOUSE
4648 || key_name[0] == KS_SGR_MOUSE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004649 {
4650 for (;;)
4651 {
4652 /* URXVT 1015 mouse reporting mode:
4653 * Almost identical to xterm mouse mode, except the values
4654 * are decimal instead of bytes.
4655 *
4656 * \033[%d;%d;%dM
4657 * ^-- row
4658 * ^----- column
4659 * ^-------- code
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004660 *
4661 * SGR 1006 mouse reporting mode:
4662 * Almost identical to xterm mouse mode, except the values
4663 * are decimal instead of bytes.
4664 *
4665 * \033[<%d;%d;%dM
4666 * ^-- row
4667 * ^----- column
4668 * ^-------- code
4669 *
4670 * \033[<%d;%d;%dm : mouse release event
4671 * ^-- row
4672 * ^----- column
4673 * ^-------- code
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004674 */
4675 p = tp + slen;
4676
4677 mouse_code = getdigits(&p);
4678 if (*p++ != ';')
4679 return -1;
4680
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004681 /* when mouse reporting is SGR, add 32 to mouse code */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004682 if (key_name[0] == KS_SGR_MOUSE)
4683 mouse_code += 32;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004684
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004685 mouse_col = getdigits(&p) - 1;
4686 if (*p++ != ';')
4687 return -1;
4688
4689 mouse_row = getdigits(&p) - 1;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004690 if (key_name[0] == KS_SGR_MOUSE && *p == 'm')
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004691 mouse_code |= MOUSE_RELEASE;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004692 else if (*p != 'M')
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004693 return -1;
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004694 p++;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004695
4696 slen += (int)(p - (tp + slen));
4697
4698 /* skip this one if next one has same code (like xterm
4699 * case) */
4700 j = termcodes[idx].len;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004701 if (STRNCMP(tp, tp + slen, (size_t)j) == 0)
4702 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004703 int slen2;
4704 int cmd_complete = 0;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004705
4706 /* check if the command is complete by looking for the
4707 * 'M' */
4708 for (slen2 = slen; slen2 < len; slen2++)
4709 {
4710 if (tp[slen2] == 'M'
Bram Moolenaar4e067c82014-07-30 17:21:58 +02004711 || (key_name[0] == KS_SGR_MOUSE
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004712 && tp[slen2] == 'm'))
4713 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004714 cmd_complete = 1;
4715 break;
4716 }
4717 }
4718 p += j;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004719 if (cmd_complete && getdigits(&p) == mouse_code)
4720 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004721 slen += j; /* skip the \033[ */
4722 continue;
4723 }
4724 }
4725 break;
4726 }
4727 }
4728# endif
4729
4730 if (key_name[0] == (int)KS_MOUSE
4731#ifdef FEAT_MOUSE_URXVT
4732 || key_name[0] == (int)KS_URXVT_MOUSE
4733#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004734#ifdef FEAT_MOUSE_SGR
4735 || key_name[0] == KS_SGR_MOUSE
4736#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004737 )
4738 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004739# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 /*
4741 * Handle mouse events.
4742 * Recognize the xterm mouse wheel, but not in the GUI, the
4743 * Linux console with GPM and the MS-DOS or Win32 console
4744 * (multi-clicks use >= 0x60).
4745 */
4746 if (mouse_code >= MOUSEWHEEL_LOW
4747# ifdef FEAT_GUI
4748 && !gui.in_use
4749# endif
4750# ifdef FEAT_MOUSE_GPM
4751 && gpm_flag == 0
4752# endif
4753 )
4754 {
4755 /* Keep the mouse_code before it's changed, so that we
4756 * remember that it was a mouse wheel click. */
4757 wheel_code = mouse_code;
4758 }
4759# ifdef FEAT_MOUSE_XTERM
4760 else if (held_button == MOUSE_RELEASE
4761# ifdef FEAT_GUI
4762 && !gui.in_use
4763# endif
4764 && (mouse_code == 0x23 || mouse_code == 0x24))
4765 {
4766 /* Apparently used by rxvt scroll wheel. */
4767 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW;
4768 }
4769# endif
4770
4771# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
4772 else if (use_xterm_mouse() > 1)
4773 {
4774 if (mouse_code & MOUSE_DRAG_XTERM)
4775 mouse_code |= MOUSE_DRAG;
4776 }
4777# endif
4778# ifdef FEAT_XCLIPBOARD
4779 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
4780 {
4781 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
4782 stop_xterm_trace();
4783 else
4784 start_xterm_trace(mouse_code);
4785 }
4786# endif
4787# endif
4788 }
4789# endif /* !UNIX || FEAT_MOUSE_XTERM */
4790# ifdef FEAT_MOUSE_NET
4791 if (key_name[0] == (int)KS_NETTERM_MOUSE)
4792 {
4793 int mc, mr;
4794
4795 /* expect a rather limited sequence like: balancing {
4796 * \033}6,45\r
4797 * '6' is the row, 45 is the column
4798 */
4799 p = tp + slen;
4800 mr = getdigits(&p);
4801 if (*p++ != ',')
4802 return -1;
4803 mc = getdigits(&p);
4804 if (*p++ != '\r')
4805 return -1;
4806
4807 mouse_col = mc - 1;
4808 mouse_row = mr - 1;
4809 mouse_code = MOUSE_LEFT;
4810 slen += (int)(p - (tp + slen));
4811 }
4812# endif /* FEAT_MOUSE_NET */
4813# ifdef FEAT_MOUSE_JSB
4814 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
4815 {
4816 int mult, val, iter, button, status;
4817
4818 /* JSBTERM Input Model
4819 * \033[0~zw uniq escape sequence
4820 * (L-x) Left button pressed - not pressed x not reporting
4821 * (M-x) Middle button pressed - not pressed x not reporting
4822 * (R-x) Right button pressed - not pressed x not reporting
4823 * (SDmdu) Single , Double click, m mouse move d button down
4824 * u button up
4825 * ### X cursor position padded to 3 digits
4826 * ### Y cursor position padded to 3 digits
4827 * (s-x) SHIFT key pressed - not pressed x not reporting
4828 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004829 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 */
4831
4832 p = tp + slen;
4833 button = mouse_code = 0;
4834 switch (*p++)
4835 {
4836 case 'L': button = 1; break;
4837 case '-': break;
4838 case 'x': break; /* ignore sequence */
4839 default: return -1; /* Unknown Result */
4840 }
4841 switch (*p++)
4842 {
4843 case 'M': button |= 2; break;
4844 case '-': break;
4845 case 'x': break; /* ignore sequence */
4846 default: return -1; /* Unknown Result */
4847 }
4848 switch (*p++)
4849 {
4850 case 'R': button |= 4; break;
4851 case '-': break;
4852 case 'x': break; /* ignore sequence */
4853 default: return -1; /* Unknown Result */
4854 }
4855 status = *p++;
4856 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4857 mult /= 10, p++)
4858 if (*p >= '0' && *p <= '9')
4859 val += (*p - '0') * mult;
4860 else
4861 return -1;
4862 mouse_col = val;
4863 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4864 mult /= 10, p++)
4865 if (*p >= '0' && *p <= '9')
4866 val += (*p - '0') * mult;
4867 else
4868 return -1;
4869 mouse_row = val;
4870 switch (*p++)
4871 {
4872 case 's': button |= 8; break; /* SHIFT key Pressed */
4873 case '-': break; /* Not Pressed */
4874 case 'x': break; /* Not Reporting */
4875 default: return -1; /* Unknown Result */
4876 }
4877 switch (*p++)
4878 {
4879 case 'c': button |= 16; break; /* CTRL key Pressed */
4880 case '-': break; /* Not Pressed */
4881 case 'x': break; /* Not Reporting */
4882 default: return -1; /* Unknown Result */
4883 }
4884 if (*p++ != '\033')
4885 return -1;
4886 if (*p++ != '\\')
4887 return -1;
4888 switch (status)
4889 {
4890 case 'D': /* Double Click */
4891 case 'S': /* Single Click */
4892 if (button & 1) mouse_code |= MOUSE_LEFT;
4893 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4894 if (button & 4) mouse_code |= MOUSE_RIGHT;
4895 if (button & 8) mouse_code |= MOUSE_SHIFT;
4896 if (button & 16) mouse_code |= MOUSE_CTRL;
4897 break;
4898 case 'm': /* Mouse move */
4899 if (button & 1) mouse_code |= MOUSE_LEFT;
4900 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4901 if (button & 4) mouse_code |= MOUSE_RIGHT;
4902 if (button & 8) mouse_code |= MOUSE_SHIFT;
4903 if (button & 16) mouse_code |= MOUSE_CTRL;
4904 if ((button & 7) != 0)
4905 {
4906 held_button = mouse_code;
4907 mouse_code |= MOUSE_DRAG;
4908 }
4909 is_drag = TRUE;
4910 showmode();
4911 break;
4912 case 'd': /* Button Down */
4913 if (button & 1) mouse_code |= MOUSE_LEFT;
4914 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4915 if (button & 4) mouse_code |= MOUSE_RIGHT;
4916 if (button & 8) mouse_code |= MOUSE_SHIFT;
4917 if (button & 16) mouse_code |= MOUSE_CTRL;
4918 break;
4919 case 'u': /* Button Up */
4920 if (button & 1)
4921 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
4922 if (button & 2)
4923 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
4924 if (button & 4)
4925 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
4926 if (button & 8)
4927 mouse_code |= MOUSE_SHIFT;
4928 if (button & 16)
4929 mouse_code |= MOUSE_CTRL;
4930 break;
4931 default: return -1; /* Unknown Result */
4932 }
4933
4934 slen += (p - (tp + slen));
4935 }
4936# endif /* FEAT_MOUSE_JSB */
4937# ifdef FEAT_MOUSE_DEC
4938 if (key_name[0] == (int)KS_DEC_MOUSE)
4939 {
4940 /* The DEC Locator Input Model
4941 * Netterm delivers the code sequence:
4942 * \033[2;4;24;80&w (left button down)
4943 * \033[3;0;24;80&w (left button up)
4944 * \033[6;1;24;80&w (right button down)
4945 * \033[7;0;24;80&w (right button up)
4946 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
4947 * Pe is the event code
4948 * Pb is the button code
4949 * Pr is the row coordinate
4950 * Pc is the column coordinate
4951 * Pp is the third coordinate (page number)
4952 * Pe, the event code indicates what event caused this report
4953 * The following event codes are defined:
4954 * 0 - request, the terminal received an explicit request
4955 * for a locator report, but the locator is unavailable
4956 * 1 - request, the terminal received an explicit request
4957 * for a locator report
4958 * 2 - left button down
4959 * 3 - left button up
4960 * 4 - middle button down
4961 * 5 - middle button up
4962 * 6 - right button down
4963 * 7 - right button up
4964 * 8 - fourth button down
4965 * 9 - fourth button up
4966 * 10 - locator outside filter rectangle
4967 * Pb, the button code, ASCII decimal 0-15 indicating which
4968 * buttons are down if any. The state of the four buttons
4969 * on the locator correspond to the low four bits of the
4970 * decimal value,
4971 * "1" means button depressed
4972 * 0 - no buttons down,
4973 * 1 - right,
4974 * 2 - middle,
4975 * 4 - left,
4976 * 8 - fourth
4977 * Pr is the row coordinate of the locator position in the page,
4978 * encoded as an ASCII decimal value.
4979 * If Pr is omitted, the locator position is undefined
4980 * (outside the terminal window for example).
4981 * Pc is the column coordinate of the locator position in the
4982 * page, encoded as an ASCII decimal value.
4983 * If Pc is omitted, the locator position is undefined
4984 * (outside the terminal window for example).
4985 * Pp is the page coordinate of the locator position
4986 * encoded as an ASCII decimal value.
4987 * The page coordinate may be omitted if the locator is on
4988 * page one (the default). We ignore it anyway.
4989 */
4990 int Pe, Pb, Pr, Pc;
4991
4992 p = tp + slen;
4993
4994 /* get event status */
4995 Pe = getdigits(&p);
4996 if (*p++ != ';')
4997 return -1;
4998
4999 /* get button status */
5000 Pb = getdigits(&p);
5001 if (*p++ != ';')
5002 return -1;
5003
5004 /* get row status */
5005 Pr = getdigits(&p);
5006 if (*p++ != ';')
5007 return -1;
5008
5009 /* get column status */
5010 Pc = getdigits(&p);
5011
5012 /* the page parameter is optional */
5013 if (*p == ';')
5014 {
5015 p++;
5016 (void)getdigits(&p);
5017 }
5018 if (*p++ != '&')
5019 return -1;
5020 if (*p++ != 'w')
5021 return -1;
5022
5023 mouse_code = 0;
5024 switch (Pe)
5025 {
5026 case 0: return -1; /* position request while unavailable */
5027 case 1: /* a response to a locator position request includes
5028 the status of all buttons */
5029 Pb &= 7; /* mask off and ignore fourth button */
5030 if (Pb & 4)
5031 mouse_code = MOUSE_LEFT;
5032 if (Pb & 2)
5033 mouse_code = MOUSE_MIDDLE;
5034 if (Pb & 1)
5035 mouse_code = MOUSE_RIGHT;
5036 if (Pb)
5037 {
5038 held_button = mouse_code;
5039 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005040 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 }
5042 is_drag = TRUE;
5043 showmode();
5044 break;
5045 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005046 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 break;
5048 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
5049 break;
5050 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005051 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 break;
5053 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
5054 break;
5055 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005056 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 break;
5058 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
5059 break;
5060 case 8: return -1; /* fourth button down */
5061 case 9: return -1; /* fourth button up */
5062 case 10: return -1; /* mouse outside of filter rectangle */
5063 default: return -1; /* should never occur */
5064 }
5065
5066 mouse_col = Pc - 1;
5067 mouse_row = Pr - 1;
5068
5069 slen += (int)(p - (tp + slen));
5070 }
5071# endif /* FEAT_MOUSE_DEC */
5072# ifdef FEAT_MOUSE_PTERM
5073 if (key_name[0] == (int)KS_PTERM_MOUSE)
5074 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02005075 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076
5077 p = tp + slen;
5078
5079 action = getdigits(&p);
5080 if (*p++ != ';')
5081 return -1;
5082
5083 mouse_row = getdigits(&p);
5084 if (*p++ != ';')
5085 return -1;
5086 mouse_col = getdigits(&p);
5087 if (*p++ != ';')
5088 return -1;
5089
5090 button = getdigits(&p);
5091 mouse_code = 0;
5092
5093 switch( button )
5094 {
5095 case 4: mouse_code = MOUSE_LEFT; break;
5096 case 1: mouse_code = MOUSE_RIGHT; break;
5097 case 2: mouse_code = MOUSE_MIDDLE; break;
5098 default: return -1;
5099 }
5100
5101 switch( action )
5102 {
5103 case 31: /* Initial press */
5104 if (*p++ != ';')
5105 return -1;
5106
5107 num_clicks = getdigits(&p); /* Not used */
5108 break;
5109
5110 case 32: /* Release */
5111 mouse_code |= MOUSE_RELEASE;
5112 break;
5113
5114 case 33: /* Drag */
5115 held_button = mouse_code;
5116 mouse_code |= MOUSE_DRAG;
5117 break;
5118
5119 default:
5120 return -1;
5121 }
5122
5123 if (*p++ != 't')
5124 return -1;
5125
5126 slen += (p - (tp + slen));
5127 }
5128# endif /* FEAT_MOUSE_PTERM */
5129
5130 /* Interpret the mouse code */
5131 current_button = (mouse_code & MOUSE_CLICK_MASK);
5132 if (current_button == MOUSE_RELEASE
5133# ifdef FEAT_MOUSE_XTERM
5134 && wheel_code == 0
5135# endif
5136 )
5137 {
5138 /*
5139 * If we get a mouse drag or release event when
5140 * there is no mouse button held down (held_button ==
5141 * MOUSE_RELEASE), produce a K_IGNORE below.
5142 * (can happen when you hold down two buttons
5143 * and then let them go, or click in the menu bar, but not
5144 * on a menu, and drag into the text).
5145 */
5146 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
5147 is_drag = TRUE;
5148 current_button = held_button;
5149 }
5150 else if (wheel_code == 0)
5151 {
5152# ifdef CHECK_DOUBLE_CLICK
5153# ifdef FEAT_MOUSE_GPM
5154# ifdef FEAT_GUI
5155 /*
5156 * Only for Unix, when GUI or gpm is not active, we handle
5157 * multi-clicks here.
5158 */
5159 if (gpm_flag == 0 && !gui.in_use)
5160# else
5161 if (gpm_flag == 0)
5162# endif
5163# else
5164# ifdef FEAT_GUI
5165 if (!gui.in_use)
5166# endif
5167# endif
5168 {
5169 /*
5170 * Compute the time elapsed since the previous mouse click.
5171 */
5172 gettimeofday(&mouse_time, NULL);
5173 timediff = (mouse_time.tv_usec
5174 - orig_mouse_time.tv_usec) / 1000;
5175 if (timediff < 0)
5176 --orig_mouse_time.tv_sec;
5177 timediff += (mouse_time.tv_sec
5178 - orig_mouse_time.tv_sec) * 1000;
5179 orig_mouse_time = mouse_time;
5180 if (mouse_code == orig_mouse_code
5181 && timediff < p_mouset
5182 && orig_num_clicks != 4
5183 && orig_mouse_col == mouse_col
5184 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005185 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005187 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00005189 )
5190#ifdef FEAT_WINDOWS
5191 /* Double click in tab pages line also works
5192 * when window contents changes. */
5193 || (mouse_row == 0 && firstwin->w_winrow > 0)
5194#endif
5195 )
5196 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 ++orig_num_clicks;
5198 else
5199 orig_num_clicks = 1;
5200 orig_mouse_col = mouse_col;
5201 orig_mouse_row = mouse_row;
5202 orig_topline = curwin->w_topline;
5203#ifdef FEAT_DIFF
5204 orig_topfill = curwin->w_topfill;
5205#endif
5206 }
5207# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
5208 else
5209 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5210# endif
5211# else
5212 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
5213# endif
5214 is_click = TRUE;
5215 orig_mouse_code = mouse_code;
5216 }
5217 if (!is_drag)
5218 held_button = mouse_code & MOUSE_CLICK_MASK;
5219
5220 /*
5221 * Translate the actual mouse event into a pseudo mouse event.
5222 * First work out what modifiers are to be used.
5223 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 if (orig_mouse_code & MOUSE_SHIFT)
5225 modifiers |= MOD_MASK_SHIFT;
5226 if (orig_mouse_code & MOUSE_CTRL)
5227 modifiers |= MOD_MASK_CTRL;
5228 if (orig_mouse_code & MOUSE_ALT)
5229 modifiers |= MOD_MASK_ALT;
5230 if (orig_num_clicks == 2)
5231 modifiers |= MOD_MASK_2CLICK;
5232 else if (orig_num_clicks == 3)
5233 modifiers |= MOD_MASK_3CLICK;
5234 else if (orig_num_clicks == 4)
5235 modifiers |= MOD_MASK_4CLICK;
5236
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 /* Work out our pseudo mouse event */
5238 key_name[0] = (int)KS_EXTRA;
5239 if (wheel_code != 0)
Bram Moolenaar5074e302010-07-18 14:26:11 +02005240 {
5241 if (wheel_code & MOUSE_CTRL)
5242 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02005243 if (wheel_code & MOUSE_ALT)
5244 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 key_name[1] = (wheel_code & 1)
5246 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar5074e302010-07-18 14:26:11 +02005247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 else
5249 key_name[1] = get_pseudo_mouse_code(current_button,
5250 is_click, is_drag);
Bram Moolenaar294a7e52015-11-22 19:39:38 +01005251
5252 /* Make sure the mouse position is valid. Some terminals may
5253 * return weird values. */
5254 if (mouse_col >= Columns)
5255 mouse_col = Columns - 1;
5256 if (mouse_row >= Rows)
5257 mouse_row = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 }
5259#endif /* FEAT_MOUSE */
5260
5261#ifdef FEAT_GUI
5262 /*
5263 * If using the GUI, then we get menu and scrollbar events.
5264 *
5265 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
5266 * four bytes which are to be taken as a pointer to the vimmenu_T
5267 * structure.
5268 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00005269 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005270 * is one byte with the tab index.
5271 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
5273 * by one byte representing the scrollbar number, and then four bytes
5274 * representing a long_u which is the new value of the scrollbar.
5275 *
5276 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
5277 * KE_FILLER followed by four bytes representing a long_u which is the
5278 * new value of the scrollbar.
5279 */
5280# ifdef FEAT_MENU
5281 else if (key_name[0] == (int)KS_MENU)
5282 {
5283 long_u val;
5284
5285 num_bytes = get_long_from_buf(tp + slen, &val);
5286 if (num_bytes == -1)
5287 return -1;
5288 current_menu = (vimmenu_T *)val;
5289 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00005290
5291 /* The menu may have been deleted right after it was used, check
5292 * for that. */
5293 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5294 {
5295 key_name[0] = KS_EXTRA;
5296 key_name[1] = (int)KE_IGNORE;
5297 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 }
5299# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005300# ifdef FEAT_GUI_TABLINE
5301 else if (key_name[0] == (int)KS_TABLINE)
5302 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005303 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005304 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5305 if (num_bytes == -1)
5306 return -1;
5307 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005308 if (current_tab == 255) /* -1 in a byte gives 255 */
5309 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005310 slen += num_bytes;
5311 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005312 else if (key_name[0] == (int)KS_TABMENU)
5313 {
5314 /* Selecting tabline tab or using its menu. */
5315 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5316 if (num_bytes == -1)
5317 return -1;
5318 current_tab = (int)bytes[0];
5319 current_tabmenu = (int)bytes[1];
5320 slen += num_bytes;
5321 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323# ifndef USE_ON_FLY_SCROLL
5324 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5325 {
5326 long_u val;
5327
5328 /* Get the last scrollbar event in the queue of the same type */
5329 j = 0;
5330 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5331 && tp[j + 2] != NUL; ++i)
5332 {
5333 j += 3;
5334 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5335 if (num_bytes == -1)
5336 break;
5337 if (i == 0)
5338 current_scrollbar = (int)bytes[0];
5339 else if (current_scrollbar != (int)bytes[0])
5340 break;
5341 j += num_bytes;
5342 num_bytes = get_long_from_buf(tp + j, &val);
5343 if (num_bytes == -1)
5344 break;
5345 scrollbar_value = val;
5346 j += num_bytes;
5347 slen = j;
5348 }
5349 if (i == 0) /* not enough characters to make one */
5350 return -1;
5351 }
5352 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5353 {
5354 long_u val;
5355
5356 /* Get the last horiz. scrollbar event in the queue */
5357 j = 0;
5358 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5359 && tp[j + 2] != NUL; ++i)
5360 {
5361 j += 3;
5362 num_bytes = get_long_from_buf(tp + j, &val);
5363 if (num_bytes == -1)
5364 break;
5365 scrollbar_value = val;
5366 j += num_bytes;
5367 slen = j;
5368 }
5369 if (i == 0) /* not enough characters to make one */
5370 return -1;
5371 }
5372# endif /* !USE_ON_FLY_SCROLL */
5373#endif /* FEAT_GUI */
5374
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005375 /*
5376 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5377 */
5378 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5379
5380 /*
5381 * Add any modifier codes to our string.
5382 */
5383 new_slen = 0; /* Length of what will replace the termcode */
5384 if (modifiers != 0)
5385 {
5386 /* Some keys have the modifier included. Need to handle that here
5387 * to make mappings work. */
5388 key = simplify_key(key, &modifiers);
5389 if (modifiers != 0)
5390 {
5391 string[new_slen++] = K_SPECIAL;
5392 string[new_slen++] = (int)KS_MODIFIER;
5393 string[new_slen++] = modifiers;
5394 }
5395 }
5396
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005398 key_name[0] = KEY2TERMCAP0(key);
5399 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005401 {
5402 /* from ":set <M-b>=xx" */
5403#ifdef FEAT_MBYTE
5404 if (has_mbyte)
5405 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5406 else
5407#endif
5408 string[new_slen++] = key_name[1];
5409 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005410 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5411 && key_name[1] == KE_IGNORE)
5412 {
5413 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5414 * to indicate what happened. */
5415 retval = KEYLEN_REMOVED;
5416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 else
5418 {
5419 string[new_slen++] = K_SPECIAL;
5420 string[new_slen++] = key_name[0];
5421 string[new_slen++] = key_name[1];
5422 }
5423 string[new_slen] = NUL;
5424 extra = new_slen - slen;
5425 if (buf == NULL)
5426 {
5427 if (extra < 0)
5428 /* remove matched chars, taking care of noremap */
5429 del_typebuf(-extra, offset);
5430 else if (extra > 0)
5431 /* insert the extra space we need */
5432 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5433
5434 /*
5435 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5436 * typebuf.tb_buf[]!
5437 */
5438 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5439 (size_t)new_slen);
5440 }
5441 else
5442 {
5443 if (extra < 0)
5444 /* remove matched characters */
5445 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005446 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005448 {
5449 /* Insert the extra space we need. If there is insufficient
5450 * space return -1. */
5451 if (*buflen + extra + new_slen >= bufsize)
5452 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005454 (size_t)(*buflen - offset));
5455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005457 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005459 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 }
5461
Bram Moolenaar2951b772013-07-03 12:45:31 +02005462#ifdef FEAT_TERMRESPONSE
5463 LOG_TR("normal character");
5464#endif
5465
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 return 0; /* no match found */
5467}
5468
5469/*
5470 * Replace any terminal code strings in from[] with the equivalent internal
5471 * vim representation. This is used for the "from" and "to" part of a
5472 * mapping, and the "to" part of a menu command.
5473 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5474 * '<'.
5475 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5476 *
5477 * The replacement is done in result[] and finally copied into allocated
5478 * memory. If this all works well *bufp is set to the allocated memory and a
5479 * pointer to it is returned. If something fails *bufp is set to NULL and from
5480 * is returned.
5481 *
5482 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5483 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5484 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5485 * instead of a CTRL-V.
5486 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005487 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005488replace_termcodes(
5489 char_u *from,
5490 char_u **bufp,
5491 int from_part,
5492 int do_lt, /* also translate <lt> */
5493 int special) /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494{
5495 int i;
5496 int slen;
5497 int key;
5498 int dlen = 0;
5499 char_u *src;
5500 int do_backslash; /* backslash is a special character */
5501 int do_special; /* recognize <> key codes */
5502 int do_key_code; /* recognize raw key codes */
5503 char_u *result; /* buffer for resulting string */
5504
5505 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005506 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5508
5509 /*
5510 * Allocate space for the translation. Worst case a single character is
5511 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5512 */
5513 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5514 if (result == NULL) /* out of memory */
5515 {
5516 *bufp = NULL;
5517 return from;
5518 }
5519
5520 src = from;
5521
5522 /*
5523 * Check for #n at start only: function key n
5524 */
5525 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
5526 {
5527 result[dlen++] = K_SPECIAL;
5528 result[dlen++] = 'k';
5529 if (src[1] == '0')
5530 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5531 else
5532 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5533 src += 2;
5534 }
5535
5536 /*
5537 * Copy each byte from *from to result[dlen]
5538 */
5539 while (*src != NUL)
5540 {
5541 /*
5542 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005543 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 */
5545 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
5546 {
5547#ifdef FEAT_EVAL
5548 /*
5549 * Replace <SID> by K_SNR <script-nr> _.
5550 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5551 */
5552 if (STRNICMP(src, "<SID>", 5) == 0)
5553 {
5554 if (current_SID <= 0)
5555 EMSG(_(e_usingsid));
5556 else
5557 {
5558 src += 5;
5559 result[dlen++] = K_SPECIAL;
5560 result[dlen++] = (int)KS_EXTRA;
5561 result[dlen++] = (int)KE_SNR;
5562 sprintf((char *)result + dlen, "%ld", (long)current_SID);
5563 dlen += (int)STRLEN(result + dlen);
5564 result[dlen++] = '_';
5565 continue;
5566 }
5567 }
5568#endif
5569
5570 slen = trans_special(&src, result + dlen, TRUE);
5571 if (slen)
5572 {
5573 dlen += slen;
5574 continue;
5575 }
5576 }
5577
5578 /*
5579 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5580 * Note that this is also checked after replacing the <> form.
5581 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5582 * it could be a character in the file.
5583 */
5584 if (do_key_code)
5585 {
5586 i = find_term_bykeys(src);
5587 if (i >= 0)
5588 {
5589 result[dlen++] = K_SPECIAL;
5590 result[dlen++] = termcodes[i].name[0];
5591 result[dlen++] = termcodes[i].name[1];
5592 src += termcodes[i].len;
5593 /* If terminal code matched, continue after it. */
5594 continue;
5595 }
5596 }
5597
5598#ifdef FEAT_EVAL
5599 if (do_special)
5600 {
5601 char_u *p, *s, len;
5602
5603 /*
5604 * Replace <Leader> by the value of "mapleader".
5605 * Replace <LocalLeader> by the value of "maplocalleader".
5606 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5607 */
5608 if (STRNICMP(src, "<Leader>", 8) == 0)
5609 {
5610 len = 8;
5611 p = get_var_value((char_u *)"g:mapleader");
5612 }
5613 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
5614 {
5615 len = 13;
5616 p = get_var_value((char_u *)"g:maplocalleader");
5617 }
5618 else
5619 {
5620 len = 0;
5621 p = NULL;
5622 }
5623 if (len != 0)
5624 {
5625 /* Allow up to 8 * 6 characters for "mapleader". */
5626 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
5627 s = (char_u *)"\\";
5628 else
5629 s = p;
5630 while (*s != NUL)
5631 result[dlen++] = *s++;
5632 src += len;
5633 continue;
5634 }
5635 }
5636#endif
5637
5638 /*
5639 * Remove CTRL-V and ignore the next character.
5640 * For "from" side the CTRL-V at the end is included, for the "to"
5641 * part it is removed.
5642 * If 'cpoptions' does not contain 'B', also accept a backslash.
5643 */
5644 key = *src;
5645 if (key == Ctrl_V || (do_backslash && key == '\\'))
5646 {
5647 ++src; /* skip CTRL-V or backslash */
5648 if (*src == NUL)
5649 {
5650 if (from_part)
5651 result[dlen++] = key;
5652 break;
5653 }
5654 }
5655
5656#ifdef FEAT_MBYTE
5657 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005658 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659#endif
5660 {
5661 /*
5662 * If the character is K_SPECIAL, replace it with K_SPECIAL
5663 * KS_SPECIAL KE_FILLER.
5664 * If compiled with the GUI replace CSI with K_CSI.
5665 */
5666 if (*src == K_SPECIAL)
5667 {
5668 result[dlen++] = K_SPECIAL;
5669 result[dlen++] = KS_SPECIAL;
5670 result[dlen++] = KE_FILLER;
5671 }
5672# ifdef FEAT_GUI
5673 else if (*src == CSI)
5674 {
5675 result[dlen++] = K_SPECIAL;
5676 result[dlen++] = KS_EXTRA;
5677 result[dlen++] = (int)KE_CSI;
5678 }
5679# endif
5680 else
5681 result[dlen++] = *src;
5682 ++src;
5683 }
5684 }
5685 result[dlen] = NUL;
5686
5687 /*
5688 * Copy the new string to allocated memory.
5689 * If this fails, just return from.
5690 */
5691 if ((*bufp = vim_strsave(result)) != NULL)
5692 from = *bufp;
5693 vim_free(result);
5694 return from;
5695}
5696
5697/*
5698 * Find a termcode with keys 'src' (must be NUL terminated).
5699 * Return the index in termcodes[], or -1 if not found.
5700 */
5701 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005702find_term_bykeys(char_u *src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703{
5704 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01005705 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706
5707 for (i = 0; i < tc_len; ++i)
5708 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01005709 if (slen == termcodes[i].len
5710 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 return i;
5712 }
5713 return -1;
5714}
5715
5716/*
5717 * Gather the first characters in the terminal key codes into a string.
5718 * Used to speed up check_termcode().
5719 */
5720 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005721gather_termleader(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722{
5723 int i;
5724 int len = 0;
5725
5726#ifdef FEAT_GUI
5727 if (gui.in_use)
5728 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
5729#endif
5730#ifdef FEAT_TERMRESPONSE
5731 if (check_for_codes)
5732 termleader[len++] = DCS; /* the termcode response starts with DCS
5733 in 8-bit mode */
5734#endif
5735 termleader[len] = NUL;
5736
5737 for (i = 0; i < tc_len; ++i)
5738 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
5739 {
5740 termleader[len++] = termcodes[i].code[0];
5741 termleader[len] = NUL;
5742 }
5743
5744 need_gather = FALSE;
5745}
5746
5747/*
5748 * Show all termcodes (for ":set termcap")
5749 * This code looks a lot like showoptions(), but is different.
5750 */
5751 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005752show_termcodes(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753{
5754 int col;
5755 int *items;
5756 int item_count;
5757 int run;
5758 int row, rows;
5759 int cols;
5760 int i;
5761 int len;
5762
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005763#define INC3 27 /* try to make three columns */
5764#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765#define GAP 2 /* spaces between columns */
5766
5767 if (tc_len == 0) /* no terminal codes (must be GUI) */
5768 return;
5769 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
5770 if (items == NULL)
5771 return;
5772
5773 /* Highlight title */
5774 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
5775
5776 /*
5777 * do the loop two times:
5778 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005779 * 2. display the medium items (medium length strings)
5780 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005782 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783 {
5784 /*
5785 * collect the items in items[]
5786 */
5787 item_count = 0;
5788 for (i = 0; i < tc_len; i++)
5789 {
5790 len = show_one_termcode(termcodes[i].name,
5791 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005792 if (len <= INC3 - GAP ? run == 1
5793 : len <= INC2 - GAP ? run == 2
5794 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 items[item_count++] = i;
5796 }
5797
5798 /*
5799 * display the items
5800 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005801 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005803 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 if (cols == 0)
5805 cols = 1;
5806 rows = (item_count + cols - 1) / cols;
5807 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005808 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 rows = item_count;
5810 for (row = 0; row < rows && !got_int; ++row)
5811 {
5812 msg_putchar('\n'); /* go to next line */
5813 if (got_int) /* 'q' typed in more */
5814 break;
5815 col = 0;
5816 for (i = row; i < item_count; i += rows)
5817 {
5818 msg_col = col; /* make columns */
5819 show_one_termcode(termcodes[items[i]].name,
5820 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005821 if (run == 2)
5822 col += INC2;
5823 else
5824 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 }
5826 out_flush();
5827 ui_breakcheck();
5828 }
5829 }
5830 vim_free(items);
5831}
5832
5833/*
5834 * Show one termcode entry.
5835 * Output goes into IObuff[]
5836 */
5837 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005838show_one_termcode(char_u *name, char_u *code, int printit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839{
5840 char_u *p;
5841 int len;
5842
5843 if (name[0] > '~')
5844 {
5845 IObuff[0] = ' ';
5846 IObuff[1] = ' ';
5847 IObuff[2] = ' ';
5848 IObuff[3] = ' ';
5849 }
5850 else
5851 {
5852 IObuff[0] = 't';
5853 IObuff[1] = '_';
5854 IObuff[2] = name[0];
5855 IObuff[3] = name[1];
5856 }
5857 IObuff[4] = ' ';
5858
5859 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
5860 if (p[1] != 't')
5861 STRCPY(IObuff + 5, p);
5862 else
5863 IObuff[5] = NUL;
5864 len = (int)STRLEN(IObuff);
5865 do
5866 IObuff[len++] = ' ';
5867 while (len < 17);
5868 IObuff[len] = NUL;
5869 if (code == NULL)
5870 len += 4;
5871 else
5872 len += vim_strsize(code);
5873
5874 if (printit)
5875 {
5876 msg_puts(IObuff);
5877 if (code == NULL)
5878 msg_puts((char_u *)"NULL");
5879 else
5880 msg_outtrans(code);
5881 }
5882 return len;
5883}
5884
5885#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
5886/*
5887 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
5888 * termcap codes from the terminal itself.
5889 * We get them one by one to avoid a very long response string.
5890 */
Bram Moolenaar4e067c82014-07-30 17:21:58 +02005891static int xt_index_in = 0;
5892static int xt_index_out = 0;
5893
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005895req_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896{
5897 xt_index_out = 0;
5898 xt_index_in = 0;
5899 req_more_codes_from_term();
5900}
5901
5902 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005903req_more_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904{
5905 char buf[11];
5906 int old_idx = xt_index_out;
5907
5908 /* Don't do anything when going to exit. */
5909 if (exiting)
5910 return;
5911
5912 /* Send up to 10 more requests out than we received. Avoid sending too
5913 * many, there can be a buffer overflow somewhere. */
5914 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
5915 {
Bram Moolenaar2951b772013-07-03 12:45:31 +02005916# ifdef DEBUG_TERMRESPONSE
5917 char dbuf[100];
5918
5919 sprintf(dbuf, "Requesting XT %d: %s",
5920 xt_index_out, key_names[xt_index_out]);
5921 log_tr(dbuf);
5922# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 sprintf(buf, "\033P+q%02x%02x\033\\",
5924 key_names[xt_index_out][0], key_names[xt_index_out][1]);
5925 out_str_nf((char_u *)buf);
5926 ++xt_index_out;
5927 }
5928
5929 /* Send the codes out right away. */
5930 if (xt_index_out != old_idx)
5931 out_flush();
5932}
5933
5934/*
5935 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
5936 * A "0" instead of the "1" indicates a code that isn't supported.
5937 * Both <name> and <string> are encoded in hex.
5938 * "code" points to the "0" or "1".
5939 */
5940 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005941got_code_from_term(char_u *code, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942{
5943#define XT_LEN 100
5944 char_u name[3];
5945 char_u str[XT_LEN];
5946 int i;
5947 int j = 0;
5948 int c;
5949
5950 /* A '1' means the code is supported, a '0' means it isn't.
5951 * When half the length is > XT_LEN we can't use it.
5952 * Our names are currently all 2 characters. */
5953 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
5954 {
5955 /* Get the name from the response and find it in the table. */
5956 name[0] = hexhex2nr(code + 3);
5957 name[1] = hexhex2nr(code + 5);
5958 name[2] = NUL;
5959 for (i = 0; key_names[i] != NULL; ++i)
5960 {
5961 if (STRCMP(key_names[i], name) == 0)
5962 {
5963 xt_index_in = i;
5964 break;
5965 }
5966 }
Bram Moolenaar2951b772013-07-03 12:45:31 +02005967# ifdef DEBUG_TERMRESPONSE
5968 {
5969 char buf[100];
5970
5971 sprintf(buf, "Received XT %d: %s", xt_index_in, (char *)name);
5972 log_tr(buf);
5973 }
5974# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 if (key_names[i] != NULL)
5976 {
5977 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
5978 str[j++] = c;
5979 str[j] = NUL;
5980 if (name[0] == 'C' && name[1] == 'o')
5981 {
5982 /* Color count is not a key code. */
5983 i = atoi((char *)str);
5984 if (i != t_colors)
5985 {
5986 /* Nr of colors changed, initialize highlighting and
Bram Moolenaar238a5642006-02-21 22:12:05 +00005987 * redraw everything. This causes a redraw, which usually
5988 * clears the message. Try keeping the message if it
5989 * might work. */
5990 set_keep_msg_from_hist();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 set_color_count(i);
5992 init_highlight(TRUE, FALSE);
Bram Moolenaar2951b772013-07-03 12:45:31 +02005993#ifdef DEBUG_TERMRESPONSE
5994 {
5995 char buf[100];
5996 int r = redraw_asap(CLEAR);
5997
5998 sprintf(buf, "Received t_Co, redraw_asap(): %d", r);
5999 log_tr(buf);
6000 }
6001#else
6002 redraw_asap(CLEAR);
6003#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004 }
6005 }
6006 else
6007 {
6008 /* First delete any existing entry with the same code. */
6009 i = find_term_bykeys(str);
6010 if (i >= 0)
6011 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006012 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 }
6014 }
6015 }
6016
6017 /* May request more codes now that we received one. */
6018 ++xt_index_in;
6019 req_more_codes_from_term();
6020}
6021
6022/*
6023 * Check if there are any unanswered requests and deal with them.
6024 * This is called before starting an external program or getting direct
6025 * keyboard input. We don't want responses to be send to that program or
6026 * handled as typed text.
6027 */
6028 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006029check_for_codes_from_term(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030{
6031 int c;
6032
6033 /* If no codes requested or all are answered, no need to wait. */
6034 if (xt_index_out == 0 || xt_index_out == xt_index_in)
6035 return;
6036
6037 /* Vgetc() will check for and handle any response.
6038 * Keep calling vpeekc() until we don't get any responses. */
6039 ++no_mapping;
6040 ++allow_keys;
6041 for (;;)
6042 {
6043 c = vpeekc();
6044 if (c == NUL) /* nothing available */
6045 break;
6046
6047 /* If a response is recognized it's replaced with K_IGNORE, must read
6048 * it from the input stream. If there is no K_IGNORE we can't do
6049 * anything, break here (there might be some responses further on, but
6050 * we don't want to throw away any typed chars). */
6051 if (c != K_SPECIAL && c != K_IGNORE)
6052 break;
6053 c = vgetc();
6054 if (c != K_IGNORE)
6055 {
6056 vungetc(c);
6057 break;
6058 }
6059 }
6060 --no_mapping;
6061 --allow_keys;
6062}
6063#endif
6064
6065#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6066/*
6067 * Translate an internal mapping/abbreviation representation into the
6068 * corresponding external one recognized by :map/:abbrev commands;
6069 * respects the current B/k/< settings of 'cpoption'.
6070 *
6071 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00006072 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 *
6074 * It uses a growarray to build the translation string since the
6075 * latter can be wider than the original description. The caller has to
6076 * free the string afterwards.
6077 *
6078 * Returns NULL when there is a problem.
6079 */
6080 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006081translate_mapping(
6082 char_u *str,
6083 int expmap) /* TRUE when expanding mappings on command-line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084{
6085 garray_T ga;
6086 int c;
6087 int modifiers;
6088 int cpo_bslash;
6089 int cpo_special;
6090 int cpo_keycode;
6091
6092 ga_init(&ga);
6093 ga.ga_itemsize = 1;
6094 ga.ga_growsize = 40;
6095
6096 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
6097 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
6098 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
6099
6100 for (; *str; ++str)
6101 {
6102 c = *str;
6103 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6104 {
6105 modifiers = 0;
6106 if (str[1] == KS_MODIFIER)
6107 {
6108 str++;
6109 modifiers = *++str;
6110 c = *++str;
6111 }
6112 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
6113 {
6114 int i;
6115
6116 /* try to find special key in termcodes */
6117 for (i = 0; i < tc_len; ++i)
6118 if (termcodes[i].name[0] == str[1]
6119 && termcodes[i].name[1] == str[2])
6120 break;
6121 if (i < tc_len)
6122 {
6123 ga_concat(&ga, termcodes[i].code);
6124 str += 2;
6125 continue; /* for (str) */
6126 }
6127 }
6128 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
6129 {
6130 if (expmap && cpo_special)
6131 {
6132 ga_clear(&ga);
6133 return NULL;
6134 }
6135 c = TO_SPECIAL(str[1], str[2]);
6136 if (c == K_ZERO) /* display <Nul> as ^@ */
6137 c = NUL;
6138 str += 2;
6139 }
6140 if (IS_SPECIAL(c) || modifiers) /* special key */
6141 {
6142 if (expmap && cpo_special)
6143 {
6144 ga_clear(&ga);
6145 return NULL;
6146 }
6147 ga_concat(&ga, get_special_key_name(c, modifiers));
6148 continue; /* for (str) */
6149 }
6150 }
6151 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
6152 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
6153 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
6154 if (c)
6155 ga_append(&ga, c);
6156 }
6157 ga_append(&ga, NUL);
6158 return (char_u *)(ga.ga_data);
6159}
6160#endif
6161
6162#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
6163static char ksme_str[20];
6164static char ksmr_str[20];
6165static char ksmd_str[20];
6166
6167/*
6168 * For Win32 console: update termcap codes for existing console attributes.
6169 */
6170 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01006171update_tcap(int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172{
6173 struct builtin_term *p;
6174
6175 p = find_builtin_term(DEFAULT_TERM);
6176 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
6177 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6178 attr | 0x08); /* FOREGROUND_INTENSITY */
6179 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
6180 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
6181
6182 while (p->bt_string != NULL)
6183 {
6184 if (p->bt_entry == (int)KS_ME)
6185 p->bt_string = &ksme_str[0];
6186 else if (p->bt_entry == (int)KS_MR)
6187 p->bt_string = &ksmr_str[0];
6188 else if (p->bt_entry == (int)KS_MD)
6189 p->bt_string = &ksmd_str[0];
6190 ++p;
6191 }
6192}
6193#endif