blob: 480a5c079c8925f1cfb9f663f254bc15f94d43ba [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 *
13 * primitive termcap support for Amiga, MSDOS, and Win32 included
14 *
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
77static struct builtin_term *find_builtin_term __ARGS((char_u *name));
78static void parse_builtin_tcap __ARGS((char_u *s));
79static void term_color __ARGS((char_u *s, int n));
80static void gather_termleader __ARGS((void));
81#ifdef FEAT_TERMRESPONSE
82static void req_codes_from_term __ARGS((void));
83static void req_more_codes_from_term __ARGS((void));
84static void got_code_from_term __ARGS((char_u *code, int len));
85static void check_for_codes_from_term __ARGS((void));
86#endif
87#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +000088 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
89 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +000090static int get_bytes_from_buf __ARGS((char_u *, char_u *, int));
91#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000092static void del_termcode_idx __ARGS((int idx));
93static int term_is_builtin __ARGS((char_u *name));
94static int term_7to8bit __ARGS((char_u *p));
95#ifdef FEAT_TERMRESPONSE
96static void switch_to_8bit __ARGS((void));
97#endif
98
99#ifdef HAVE_TGETENT
100static char_u *tgetent_error __ARGS((char_u *, char_u *));
101
102/*
103 * Here is our own prototype for tgetstr(), any prototypes from the include
104 * files have been disabled by the define at the start of this file.
105 */
106char *tgetstr __ARGS((char *, char **));
107
108# ifdef FEAT_TERMRESPONSE
109/* Request Terminal Version status: */
110# define CRV_GET 1 /* send T_CRV when switched to RAW mode */
111# define CRV_SENT 2 /* did send T_CRV, waiting for answer */
112# define CRV_GOT 3 /* received T_CRV response */
113static int crv_status = CRV_GET;
Bram Moolenaar9584b312013-03-13 19:29:28 +0100114/* Request Cursor position report: */
115# define U7_GET 1 /* send T_U7 when switched to RAW mode */
116# define U7_SENT 2 /* did send T_U7, waiting for answer */
117# define U7_GOT 3 /* received T_U7 response */
118static int u7_status = U7_GET;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119# endif
120
121/*
122 * Don't declare these variables if termcap.h contains them.
123 * Autoconf checks if these variables should be declared extern (not all
124 * systems have them).
125 * Some versions define ospeed to be speed_t, but that is incompatible with
126 * BSD, where ospeed is short and speed_t is long.
127 */
128# ifndef HAVE_OSPEED
129# ifdef OSPEED_EXTERN
130extern short ospeed;
131# else
132short ospeed;
133# endif
134# endif
135# ifndef HAVE_UP_BC_PC
136# ifdef UP_BC_PC_EXTERN
137extern char *UP, *BC, PC;
138# else
139char *UP, *BC, PC;
140# endif
141# endif
142
143# define TGETSTR(s, p) vim_tgetstr((s), (p))
144# define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
145static char_u *vim_tgetstr __ARGS((char *s, char_u **pp));
146#endif /* HAVE_TGETENT */
147
148static int detected_8bit = FALSE; /* detected 8-bit terminal */
149
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000150static struct builtin_term builtin_termcaps[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151{
152
153#if defined(FEAT_GUI)
154/*
155 * GUI pseudo term-cap.
156 */
157 {(int)KS_NAME, "gui"},
158 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
159 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
160# ifdef TERMINFO
161 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
162# else
163 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
164# endif
165 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
166# ifdef TERMINFO
167 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
168 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
169# ifdef FEAT_VERTSPLIT
170 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
171# endif
172# else
173 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
174 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
175# ifdef FEAT_VERTSPLIT
176 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
177# endif
178# endif
179 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
180 /* attributes switched on with 'h', off with * 'H' */
181 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */
182 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */
183 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */
184 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */
185 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */
186 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */
187 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000188 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */
189 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */
191 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */
192 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
193 {(int)KS_MS, "y"},
194 {(int)KS_UT, "y"},
195 {(int)KS_LE, "\b"}, /* cursor-left = BS */
196 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
197# ifdef TERMINFO
198 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
199# else
200 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
201# endif
202 /* there are no key sequences here, the GUI sequences are recognized
Bram Moolenaare2cc9702005-03-15 22:43:58 +0000203 * in check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204#endif
205
206#ifndef NO_BUILTIN_TCAPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207
208# if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
209/*
210 * Amiga console window, default for Amiga
211 */
212 {(int)KS_NAME, "amiga"},
213 {(int)KS_CE, "\033[K"},
214 {(int)KS_CD, "\033[J"},
215 {(int)KS_AL, "\033[L"},
216# ifdef TERMINFO
217 {(int)KS_CAL, "\033[%p1%dL"},
218# else
219 {(int)KS_CAL, "\033[%dL"},
220# endif
221 {(int)KS_DL, "\033[M"},
222# ifdef TERMINFO
223 {(int)KS_CDL, "\033[%p1%dM"},
224# else
225 {(int)KS_CDL, "\033[%dM"},
226# endif
227 {(int)KS_CL, "\014"},
228 {(int)KS_VI, "\033[0 p"},
229 {(int)KS_VE, "\033[1 p"},
230 {(int)KS_ME, "\033[0m"},
231 {(int)KS_MR, "\033[7m"},
232 {(int)KS_MD, "\033[1m"},
233 {(int)KS_SE, "\033[0m"},
234 {(int)KS_SO, "\033[33m"},
235 {(int)KS_US, "\033[4m"},
236 {(int)KS_UE, "\033[0m"},
237 {(int)KS_CZH, "\033[3m"},
238 {(int)KS_CZR, "\033[0m"},
239#if defined(__MORPHOS__) || defined(__AROS__)
240 {(int)KS_CCO, "8"}, /* allow 8 colors */
241# ifdef TERMINFO
242 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
243 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
244# else
245 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
246 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
247# endif
248 {(int)KS_OP, "\033[m"}, /* reset colors */
249#endif
250 {(int)KS_MS, "y"},
251 {(int)KS_UT, "y"}, /* guessed */
252 {(int)KS_LE, "\b"},
253# ifdef TERMINFO
254 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
255# else
256 {(int)KS_CM, "\033[%i%d;%dH"},
257# endif
258#if defined(__MORPHOS__)
259 {(int)KS_SR, "\033M"},
260#endif
261# ifdef TERMINFO
262 {(int)KS_CRI, "\033[%p1%dC"},
263# else
264 {(int)KS_CRI, "\033[%dC"},
265# endif
266 {K_UP, "\233A"},
267 {K_DOWN, "\233B"},
268 {K_LEFT, "\233D"},
269 {K_RIGHT, "\233C"},
270 {K_S_UP, "\233T"},
271 {K_S_DOWN, "\233S"},
272 {K_S_LEFT, "\233 A"},
273 {K_S_RIGHT, "\233 @"},
274 {K_S_TAB, "\233Z"},
275 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */
276 {K_F2, "\233\061~"},
277 {K_F3, "\233\062~"},
278 {K_F4, "\233\063~"},
279 {K_F5, "\233\064~"},
280 {K_F6, "\233\065~"},
281 {K_F7, "\233\066~"},
282 {K_F8, "\233\067~"},
283 {K_F9, "\233\070~"},
284 {K_F10, "\233\071~"},
285 {K_S_F1, "\233\061\060~"},
286 {K_S_F2, "\233\061\061~"},
287 {K_S_F3, "\233\061\062~"},
288 {K_S_F4, "\233\061\063~"},
289 {K_S_F5, "\233\061\064~"},
290 {K_S_F6, "\233\061\065~"},
291 {K_S_F7, "\233\061\066~"},
292 {K_S_F8, "\233\061\067~"},
293 {K_S_F9, "\233\061\070~"},
294 {K_S_F10, "\233\061\071~"},
295 {K_HELP, "\233?~"},
296 {K_INS, "\233\064\060~"}, /* 101 key keyboard */
297 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */
298 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */
299 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */
300 {K_END, "\233\064\065~"}, /* 101 key keyboard */
301
302 {BT_EXTRA_KEYS, ""},
303 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
304 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
305 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
306# endif
307
308# if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
309/*
310 * almost standard ANSI terminal, default for bebox
311 */
312 {(int)KS_NAME, "beos-ansi"},
313 {(int)KS_CE, "\033[K"},
314 {(int)KS_CD, "\033[J"},
315 {(int)KS_AL, "\033[L"},
316# ifdef TERMINFO
317 {(int)KS_CAL, "\033[%p1%dL"},
318# else
319 {(int)KS_CAL, "\033[%dL"},
320# endif
321 {(int)KS_DL, "\033[M"},
322# ifdef TERMINFO
323 {(int)KS_CDL, "\033[%p1%dM"},
324# else
325 {(int)KS_CDL, "\033[%dM"},
326# endif
327#ifdef BEOS_PR_OR_BETTER
328# ifdef TERMINFO
329 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
330# else
331 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */
332# endif
333#endif
334 {(int)KS_CL, "\033[H\033[2J"},
335#ifdef notyet
336 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
337 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
338#endif
339 {(int)KS_ME, "\033[m"}, /* normal mode */
340 {(int)KS_MR, "\033[7m"}, /* reverse */
341 {(int)KS_MD, "\033[1m"}, /* bold */
342 {(int)KS_SO, "\033[31m"}, /* standout mode: red */
343 {(int)KS_SE, "\033[m"}, /* standout end */
344 {(int)KS_CZH, "\033[35m"}, /* italic: purple */
345 {(int)KS_CZR, "\033[m"}, /* italic end */
346 {(int)KS_US, "\033[4m"}, /* underscore mode */
347 {(int)KS_UE, "\033[m"}, /* underscore end */
348 {(int)KS_CCO, "8"}, /* allow 8 colors */
349# ifdef TERMINFO
350 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
351 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
352# else
353 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
354 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
355# endif
356 {(int)KS_OP, "\033[m"}, /* reset colors */
357 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */
358 {(int)KS_UT, "y"}, /* guessed */
359 {(int)KS_LE, "\b"},
360# ifdef TERMINFO
361 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
362# else
363 {(int)KS_CM, "\033[%i%d;%dH"},
364# endif
365 {(int)KS_SR, "\033M"},
366# ifdef TERMINFO
367 {(int)KS_CRI, "\033[%p1%dC"},
368# else
369 {(int)KS_CRI, "\033[%dC"},
370# endif
371#if defined(BEOS_DR8)
372 {(int)KS_DB, ""}, /* hack! see screen.c */
373#endif
374
375 {K_UP, "\033[A"},
376 {K_DOWN, "\033[B"},
377 {K_LEFT, "\033[D"},
378 {K_RIGHT, "\033[C"},
379# endif
380
381# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__)
382/*
383 * standard ANSI terminal, default for unix
384 */
385 {(int)KS_NAME, "ansi"},
386 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
387 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
388# ifdef TERMINFO
389 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
390# else
391 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
392# endif
393 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
394# ifdef TERMINFO
395 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
396# else
397 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
398# endif
399 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
400 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
401 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
402 {(int)KS_MS, "y"},
403 {(int)KS_UT, "y"}, /* guessed */
404 {(int)KS_LE, "\b"},
405# ifdef TERMINFO
406 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
407# else
408 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
409# endif
410# ifdef TERMINFO
411 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
412# else
413 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
414# endif
415# endif
416
417# if defined(MSDOS) || defined(ALL_BUILTIN_TCAPS) || defined(__EMX__)
418/*
419 * These codes are valid when nansi.sys or equivalent has been installed.
420 * Function keys on a PC are preceded with a NUL. These are converted into
421 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
422 * CTRL-arrow is used instead of SHIFT-arrow.
423 */
424#ifdef __EMX__
425 {(int)KS_NAME, "os2ansi"},
426#else
427 {(int)KS_NAME, "pcansi"},
428 {(int)KS_DL, "\033[M"},
429 {(int)KS_AL, "\033[L"},
430#endif
431 {(int)KS_CE, "\033[K"},
432 {(int)KS_CL, "\033[2J"},
433 {(int)KS_ME, "\033[0m"},
434 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */
435 {(int)KS_MD, "\033[1m"}, /* bold: white text */
436 {(int)KS_SE, "\033[0m"}, /* standout end */
437 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */
438 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */
439 {(int)KS_CZR, "\033[0m"}, /* italic mode end */
440 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */
441 {(int)KS_UE, "\033[0m"}, /* underscore mode end */
442 {(int)KS_CCO, "8"}, /* allow 8 colors */
443# ifdef TERMINFO
444 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */
445 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */
446# else
447 {(int)KS_CAB, "\033[4%dm"}, /* set background color */
448 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */
449# endif
450 {(int)KS_OP, "\033[0m"}, /* reset colors */
451 {(int)KS_MS, "y"},
452 {(int)KS_UT, "y"}, /* guessed */
453 {(int)KS_LE, "\b"},
454# ifdef TERMINFO
455 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
456# else
457 {(int)KS_CM, "\033[%i%d;%dH"},
458# endif
459# ifdef TERMINFO
460 {(int)KS_CRI, "\033[%p1%dC"},
461# else
462 {(int)KS_CRI, "\033[%dC"},
463# endif
464 {K_UP, "\316H"},
465 {K_DOWN, "\316P"},
466 {K_LEFT, "\316K"},
467 {K_RIGHT, "\316M"},
468 {K_S_LEFT, "\316s"},
469 {K_S_RIGHT, "\316t"},
470 {K_F1, "\316;"},
471 {K_F2, "\316<"},
472 {K_F3, "\316="},
473 {K_F4, "\316>"},
474 {K_F5, "\316?"},
475 {K_F6, "\316@"},
476 {K_F7, "\316A"},
477 {K_F8, "\316B"},
478 {K_F9, "\316C"},
479 {K_F10, "\316D"},
480 {K_F11, "\316\205"}, /* guessed */
481 {K_F12, "\316\206"}, /* guessed */
482 {K_S_F1, "\316T"},
483 {K_S_F2, "\316U"},
484 {K_S_F3, "\316V"},
485 {K_S_F4, "\316W"},
486 {K_S_F5, "\316X"},
487 {K_S_F6, "\316Y"},
488 {K_S_F7, "\316Z"},
489 {K_S_F8, "\316["},
490 {K_S_F9, "\316\\"},
491 {K_S_F10, "\316]"},
492 {K_S_F11, "\316\207"}, /* guessed */
493 {K_S_F12, "\316\210"}, /* guessed */
494 {K_INS, "\316R"},
495 {K_DEL, "\316S"},
496 {K_HOME, "\316G"},
497 {K_END, "\316O"},
498 {K_PAGEDOWN, "\316Q"},
499 {K_PAGEUP, "\316I"},
500# endif
501
502# if defined(MSDOS)
503/*
504 * These codes are valid for the pc video. The entries that start with ESC |
505 * are translated into conio calls in os_msdos.c. Default for MSDOS.
506 */
507 {(int)KS_NAME, "pcterm"},
508 {(int)KS_CE, "\033|K"},
509 {(int)KS_AL, "\033|L"},
510 {(int)KS_DL, "\033|M"},
511# ifdef TERMINFO
512 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},
513# ifdef FEAT_VERTSPLIT
514 {(int)KS_CSV, "\033|%i%p1%d;%p2%dV"},
515# endif
516# else
517 {(int)KS_CS, "\033|%i%d;%dr"},
518# ifdef FEAT_VERTSPLIT
519 {(int)KS_CSV, "\033|%i%d;%dV"},
520# endif
521# endif
522 {(int)KS_CL, "\033|J"},
523 {(int)KS_ME, "\033|0m"}, /* normal */
524 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgrey */
525 {(int)KS_MD, "\033|15m"}, /* bold: white text */
526 {(int)KS_SE, "\033|0m"}, /* standout end */
527 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
528 {(int)KS_CZH, "\033|225m"}, /* italic mode: blue text on yellow */
529 {(int)KS_CZR, "\033|0m"}, /* italic mode end */
530 {(int)KS_US, "\033|67m"}, /* underscore mode: cyan text on red */
531 {(int)KS_UE, "\033|0m"}, /* underscore mode end */
532 {(int)KS_CCO, "16"}, /* allow 16 colors */
533# ifdef TERMINFO
534 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
535 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
536# else
537 {(int)KS_CAB, "\033|%db"}, /* set background color */
538 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
539# endif
540 {(int)KS_MS, "y"},
541 {(int)KS_UT, "y"},
542 {(int)KS_LE, "\b"},
543# ifdef TERMINFO
544 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},
545# else
546 {(int)KS_CM, "\033|%i%d;%dH"},
547# endif
548#ifdef DJGPP
549 {(int)KS_VB, "\033|B"}, /* visual bell */
550#endif
551 {K_UP, "\316H"},
552 {K_DOWN, "\316P"},
553 {K_LEFT, "\316K"},
554 {K_RIGHT, "\316M"},
555 {K_S_LEFT, "\316s"},
556 {K_S_RIGHT, "\316t"},
557 {K_S_TAB, "\316\017"},
558 {K_F1, "\316;"},
559 {K_F2, "\316<"},
560 {K_F3, "\316="},
561 {K_F4, "\316>"},
562 {K_F5, "\316?"},
563 {K_F6, "\316@"},
564 {K_F7, "\316A"},
565 {K_F8, "\316B"},
566 {K_F9, "\316C"},
567 {K_F10, "\316D"},
568 {K_F11, "\316\205"},
569 {K_F12, "\316\206"},
570 {K_S_F1, "\316T"},
571 {K_S_F2, "\316U"},
572 {K_S_F3, "\316V"},
573 {K_S_F4, "\316W"},
574 {K_S_F5, "\316X"},
575 {K_S_F6, "\316Y"},
576 {K_S_F7, "\316Z"},
577 {K_S_F8, "\316["},
578 {K_S_F9, "\316\\"},
579 {K_S_F10, "\316]"},
580 {K_S_F11, "\316\207"},
581 {K_S_F12, "\316\210"},
582 {K_INS, "\316R"},
583 {K_DEL, "\316S"},
584 {K_HOME, "\316G"},
585 {K_END, "\316O"},
586 {K_PAGEDOWN, "\316Q"},
587 {K_PAGEUP, "\316I"},
588 {K_KPLUS, "\316N"},
589 {K_KMINUS, "\316J"},
590 {K_KMULTIPLY, "\3167"},
591 {K_K0, "\316\332"},
592 {K_K1, "\316\336"},
593 {K_K2, "\316\342"},
594 {K_K3, "\316\346"},
595 {K_K4, "\316\352"},
596 {K_K5, "\316\356"},
597 {K_K6, "\316\362"},
598 {K_K7, "\316\366"},
599 {K_K8, "\316\372"},
600 {K_K9, "\316\376"},
601# endif
602
603# if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS) || defined(__EMX__)
604/*
605 * These codes are valid for the Win32 Console . The entries that start with
606 * ESC | are translated into console calls in os_win32.c. The function keys
607 * are also translated in os_win32.c.
608 */
609 {(int)KS_NAME, "win32"},
610 {(int)KS_CE, "\033|K"}, /* clear to end of line */
611 {(int)KS_AL, "\033|L"}, /* add new blank line */
612# ifdef TERMINFO
613 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */
614# else
615 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */
616# endif
617 {(int)KS_DL, "\033|M"}, /* delete line */
618# ifdef TERMINFO
619 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */
620# else
621 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */
622# endif
623 {(int)KS_CL, "\033|J"}, /* clear screen */
624 {(int)KS_CD, "\033|j"}, /* clear to end of display */
625 {(int)KS_VI, "\033|v"}, /* cursor invisible */
626 {(int)KS_VE, "\033|V"}, /* cursor visible */
627
628 {(int)KS_ME, "\033|0m"}, /* normal */
629 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */
630 {(int)KS_MD, "\033|15m"}, /* bold: white on black */
631#if 1
632 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */
633 {(int)KS_SE, "\033|0m"}, /* standout end */
634#else
635 {(int)KS_SO, "\033|F"}, /* standout: high intensity */
636 {(int)KS_SE, "\033|f"}, /* standout end */
637#endif
638 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */
639 {(int)KS_CZR, "\033|0m"}, /* italic end */
640 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */
641 {(int)KS_UE, "\033|0m"}, /* underscore end */
642 {(int)KS_CCO, "16"}, /* allow 16 colors */
643# ifdef TERMINFO
644 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */
645 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */
646# else
647 {(int)KS_CAB, "\033|%db"}, /* set background color */
648 {(int)KS_CAF, "\033|%df"}, /* set foreground color */
649# endif
650
651 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */
652 {(int)KS_UT, "y"},
653 {(int)KS_LE, "\b"},
654# ifdef TERMINFO
655 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
656# else
657 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */
658# endif
659 {(int)KS_VB, "\033|B"}, /* visual bell */
660 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */
661 {(int)KS_TE, "\033|E"}, /* out of termcap mode */
662# ifdef TERMINFO
663 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */
664# else
665 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */
666# endif
667
668 {K_UP, "\316H"},
669 {K_DOWN, "\316P"},
670 {K_LEFT, "\316K"},
671 {K_RIGHT, "\316M"},
672 {K_S_UP, "\316\304"},
673 {K_S_DOWN, "\316\317"},
674 {K_S_LEFT, "\316\311"},
675 {K_C_LEFT, "\316s"},
676 {K_S_RIGHT, "\316\313"},
677 {K_C_RIGHT, "\316t"},
678 {K_S_TAB, "\316\017"},
679 {K_F1, "\316;"},
680 {K_F2, "\316<"},
681 {K_F3, "\316="},
682 {K_F4, "\316>"},
683 {K_F5, "\316?"},
684 {K_F6, "\316@"},
685 {K_F7, "\316A"},
686 {K_F8, "\316B"},
687 {K_F9, "\316C"},
688 {K_F10, "\316D"},
689 {K_F11, "\316\205"},
690 {K_F12, "\316\206"},
691 {K_S_F1, "\316T"},
692 {K_S_F2, "\316U"},
693 {K_S_F3, "\316V"},
694 {K_S_F4, "\316W"},
695 {K_S_F5, "\316X"},
696 {K_S_F6, "\316Y"},
697 {K_S_F7, "\316Z"},
698 {K_S_F8, "\316["},
699 {K_S_F9, "\316\\"},
700 {K_S_F10, "\316]"},
701 {K_S_F11, "\316\207"},
702 {K_S_F12, "\316\210"},
703 {K_INS, "\316R"},
704 {K_DEL, "\316S"},
705 {K_HOME, "\316G"},
706 {K_S_HOME, "\316\302"},
707 {K_C_HOME, "\316w"},
708 {K_END, "\316O"},
709 {K_S_END, "\316\315"},
710 {K_C_END, "\316u"},
711 {K_PAGEDOWN, "\316Q"},
712 {K_PAGEUP, "\316I"},
713 {K_KPLUS, "\316N"},
714 {K_KMINUS, "\316J"},
715 {K_KMULTIPLY, "\316\067"},
716 {K_K0, "\316\332"},
717 {K_K1, "\316\336"},
718 {K_K2, "\316\342"},
719 {K_K3, "\316\346"},
720 {K_K4, "\316\352"},
721 {K_K5, "\316\356"},
722 {K_K6, "\316\362"},
723 {K_K7, "\316\366"},
724 {K_K8, "\316\372"},
725 {K_K9, "\316\376"},
726# endif
727
728# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
729/*
730 * VT320 is working as an ANSI terminal compatible DEC terminal.
731 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
732 * Note: K_F1...K_F5 are for internal use, should not be defined.
733 * TODO:- rewrite ESC[ codes to CSI
734 * - keyboard languages (CSI ? 26 n)
735 */
736 {(int)KS_NAME, "vt320"},
737 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
738 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
739# ifdef TERMINFO
740 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
741# else
742 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
743# endif
744 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
745# ifdef TERMINFO
746 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
747# else
748 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
749# endif
750 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000751 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
752 {(int)KS_CCO, "8"}, /* allow 8 colors */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
754 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000755 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */
756 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */
757 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */
758 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */
759 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */
760 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */
761 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */
762 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */
763 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */
764 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 {(int)KS_MS, "y"},
766 {(int)KS_UT, "y"},
767 {(int)KS_LE, "\b"},
768# ifdef TERMINFO
769 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
770 ESC_STR "[%i%p1%d;%p2%dH")},
771# else
772 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
773# endif
774# ifdef TERMINFO
775 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
776# else
777 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
778# endif
779 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
780 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
781 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
782 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000783 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
784 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
785 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
786 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
787 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
789 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
790 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
791 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
792 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000793 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
795 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
796 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
797 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */
798 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */
799 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
800 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
801 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
802 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
803 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
804 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
805 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
806 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
807 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
808 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
809 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */
810 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */
811 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */
812 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */
813 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */
814 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */
815# endif
816
817# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
818/*
819 * Ordinary vt52
820 */
821 {(int)KS_NAME, "vt52"},
822 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
823 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")},
824 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")},
825 {(int)KS_LE, "\b"},
826# ifdef __MINT__
827 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
828 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")},
829 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
830 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
831 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
832 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
833 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
834 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
835 {K_UP, IF_EB("\033A", ESC_STR "A")},
836 {K_DOWN, IF_EB("\033B", ESC_STR "B")},
837 {K_LEFT, IF_EB("\033D", ESC_STR "D")},
838 {K_RIGHT, IF_EB("\033C", ESC_STR "C")},
839 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
840 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
841 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
842 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
843 {K_F1, IF_EB("\033P", ESC_STR "P")},
844 {K_F2, IF_EB("\033Q", ESC_STR "Q")},
845 {K_F3, IF_EB("\033R", ESC_STR "R")},
846 {K_F4, IF_EB("\033S", ESC_STR "S")},
847 {K_F5, IF_EB("\033T", ESC_STR "T")},
848 {K_F6, IF_EB("\033U", ESC_STR "U")},
849 {K_F7, IF_EB("\033V", ESC_STR "V")},
850 {K_F8, IF_EB("\033W", ESC_STR "W")},
851 {K_F9, IF_EB("\033X", ESC_STR "X")},
852 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
853 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
854 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
855 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
856 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
857 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
858 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
859 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
860 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
861 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
862 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
863 {K_INS, IF_EB("\033I", ESC_STR "I")},
864 {K_HOME, IF_EB("\033E", ESC_STR "E")},
865 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
866 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
867# else
868 {(int)KS_AL, IF_EB("\033T", ESC_STR "T")},
869 {(int)KS_DL, IF_EB("\033U", ESC_STR "U")},
870 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
871 {(int)KS_ME, IF_EB("\033SO", ESC_STR "SO")},
872 {(int)KS_MR, IF_EB("\033S2", ESC_STR "S2")},
873 {(int)KS_MS, "y"},
874# endif
875# endif
876
877# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 {(int)KS_NAME, "xterm"},
879 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
880 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
881# ifdef TERMINFO
882 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
883# else
884 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
885# endif
886 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
887# ifdef TERMINFO
888 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
889# else
890 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
891# endif
892# ifdef TERMINFO
893 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
894 ESC_STR "[%i%p1%d;%p2%dr")},
895# else
896 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
897# endif
898 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
899 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
900 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
901 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
902 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
903 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
904 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")},
905 {(int)KS_MS, "y"},
906 {(int)KS_UT, "y"},
907 {(int)KS_LE, "\b"},
908# ifdef TERMINFO
909 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
910 ESC_STR "[%i%p1%d;%p2%dH")},
911# else
912 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
913# endif
914 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
915# ifdef TERMINFO
916 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
917# else
918 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
919# endif
920 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
921 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
922# ifdef FEAT_XTERM_SAVE
923 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
924 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338",
925 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")},
926# endif
927 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
928 {(int)KS_CIE, "\007"},
929 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
930 {(int)KS_FS, "\007"},
931# ifdef TERMINFO
932 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
933 ESC_STR "[8;%p1%d;%p2%dt")},
934 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
935 ESC_STR "[3;%p1%d;%p2%dt")},
936# else
937 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
938 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")},
939# endif
940 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")},
Bram Moolenaar9584b312013-03-13 19:29:28 +0100941 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000942
943 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
944 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
945 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
946 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
947 /* An extra set of cursor keys for vt100 mode */
948 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
949 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
950 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
951 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 /* An extra set of function keys for vt100 mode */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000953 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
954 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
955 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
956 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000957 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
958 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
959 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
960 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
961 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
962 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
963 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
964 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
965 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
966 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
967 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
968 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000970 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
971 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
972 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
973 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000974 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
975 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000976 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000977 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000978 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000979 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000980 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
981 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000982 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000983 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000984 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000985 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
986 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000987 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */
988 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */
989 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */
990 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */
991 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */
992 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000993 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994
995 {BT_EXTRA_KEYS, ""},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000996 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */
997 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */
998 /* F14 and F15 are missing, because they send the same codes as the undo
999 * and help key, although they don't work on all keyboards. */
1000 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */
1001 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */
1002 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */
1003 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */
1004 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */
1005
1006 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */
1007 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */
1008 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */
1009 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */
1010 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */
1011 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */
1012 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */
1013 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */
1014 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */
1015 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */
1016
1017 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */
1018 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */
1019 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */
1020 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */
1021 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */
1022 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */
1023 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024# endif
1025
1026# if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
1027/*
1028 * iris-ansi for Silicon Graphics machines.
1029 */
1030 {(int)KS_NAME, "iris-ansi"},
1031 {(int)KS_CE, "\033[K"},
1032 {(int)KS_CD, "\033[J"},
1033 {(int)KS_AL, "\033[L"},
1034# ifdef TERMINFO
1035 {(int)KS_CAL, "\033[%p1%dL"},
1036# else
1037 {(int)KS_CAL, "\033[%dL"},
1038# endif
1039 {(int)KS_DL, "\033[M"},
1040# ifdef TERMINFO
1041 {(int)KS_CDL, "\033[%p1%dM"},
1042# else
1043 {(int)KS_CDL, "\033[%dM"},
1044# endif
1045#if 0 /* The scroll region is not working as Vim expects. */
1046# ifdef TERMINFO
1047 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
1048# else
1049 {(int)KS_CS, "\033[%i%d;%dr"},
1050# endif
1051#endif
1052 {(int)KS_CL, "\033[H\033[2J"},
1053 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */
1054 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1055 {(int)KS_TI, "\033[=6h"},
1056 {(int)KS_TE, "\033[=6l"},
1057 {(int)KS_SE, "\033[21;27m"},
1058 {(int)KS_SO, "\033[1;7m"},
1059 {(int)KS_ME, "\033[m"},
1060 {(int)KS_MR, "\033[7m"},
1061 {(int)KS_MD, "\033[1m"},
1062 {(int)KS_CCO, "8"}, /* allow 8 colors */
1063 {(int)KS_CZH, "\033[3m"}, /* italic mode on */
1064 {(int)KS_CZR, "\033[23m"}, /* italic mode off */
1065 {(int)KS_US, "\033[4m"}, /* underline on */
1066 {(int)KS_UE, "\033[24m"}, /* underline off */
1067# ifdef TERMINFO
1068 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */
1069 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1070 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */
1071 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */
1072# else
1073 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */
1074 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */
1075 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */
1076 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */
1077# endif
1078 {(int)KS_MS, "y"}, /* guessed */
1079 {(int)KS_UT, "y"}, /* guessed */
1080 {(int)KS_LE, "\b"},
1081# ifdef TERMINFO
1082 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
1083# else
1084 {(int)KS_CM, "\033[%i%d;%dH"},
1085# endif
1086 {(int)KS_SR, "\033M"},
1087# ifdef TERMINFO
1088 {(int)KS_CRI, "\033[%p1%dC"},
1089# else
1090 {(int)KS_CRI, "\033[%dC"},
1091# endif
1092 {(int)KS_CIS, "\033P3.y"},
1093 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */
1094 {(int)KS_TS, "\033P1.y"},
1095 {(int)KS_FS, "\234"}, /* ST "String Terminator" */
1096# ifdef TERMINFO
1097 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
1098 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
1099# else
1100 {(int)KS_CWS, "\033[203;%d;%d/y"},
1101 {(int)KS_CWP, "\033[205;%d;%d/y"},
1102# endif
1103 {K_UP, "\033[A"},
1104 {K_DOWN, "\033[B"},
1105 {K_LEFT, "\033[D"},
1106 {K_RIGHT, "\033[C"},
1107 {K_S_UP, "\033[161q"},
1108 {K_S_DOWN, "\033[164q"},
1109 {K_S_LEFT, "\033[158q"},
1110 {K_S_RIGHT, "\033[167q"},
1111 {K_F1, "\033[001q"},
1112 {K_F2, "\033[002q"},
1113 {K_F3, "\033[003q"},
1114 {K_F4, "\033[004q"},
1115 {K_F5, "\033[005q"},
1116 {K_F6, "\033[006q"},
1117 {K_F7, "\033[007q"},
1118 {K_F8, "\033[008q"},
1119 {K_F9, "\033[009q"},
1120 {K_F10, "\033[010q"},
1121 {K_F11, "\033[011q"},
1122 {K_F12, "\033[012q"},
1123 {K_S_F1, "\033[013q"},
1124 {K_S_F2, "\033[014q"},
1125 {K_S_F3, "\033[015q"},
1126 {K_S_F4, "\033[016q"},
1127 {K_S_F5, "\033[017q"},
1128 {K_S_F6, "\033[018q"},
1129 {K_S_F7, "\033[019q"},
1130 {K_S_F8, "\033[020q"},
1131 {K_S_F9, "\033[021q"},
1132 {K_S_F10, "\033[022q"},
1133 {K_S_F11, "\033[023q"},
1134 {K_S_F12, "\033[024q"},
1135 {K_INS, "\033[139q"},
1136 {K_HOME, "\033[H"},
1137 {K_END, "\033[146q"},
1138 {K_PAGEUP, "\033[150q"},
1139 {K_PAGEDOWN, "\033[154q"},
1140# endif
1141
1142# if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1143/*
1144 * for debugging
1145 */
1146 {(int)KS_NAME, "debug"},
1147 {(int)KS_CE, "[CE]"},
1148 {(int)KS_CD, "[CD]"},
1149 {(int)KS_AL, "[AL]"},
1150# ifdef TERMINFO
1151 {(int)KS_CAL, "[CAL%p1%d]"},
1152# else
1153 {(int)KS_CAL, "[CAL%d]"},
1154# endif
1155 {(int)KS_DL, "[DL]"},
1156# ifdef TERMINFO
1157 {(int)KS_CDL, "[CDL%p1%d]"},
1158# else
1159 {(int)KS_CDL, "[CDL%d]"},
1160# endif
1161# ifdef TERMINFO
1162 {(int)KS_CS, "[%p1%dCS%p2%d]"},
1163# else
1164 {(int)KS_CS, "[%dCS%d]"},
1165# endif
1166# ifdef FEAT_VERTSPLIT
1167# ifdef TERMINFO
1168 {(int)KS_CSV, "[%p1%dCSV%p2%d]"},
1169# else
1170 {(int)KS_CSV, "[%dCSV%d]"},
1171# endif
1172# endif
1173# ifdef TERMINFO
1174 {(int)KS_CAB, "[CAB%p1%d]"},
1175 {(int)KS_CAF, "[CAF%p1%d]"},
1176 {(int)KS_CSB, "[CSB%p1%d]"},
1177 {(int)KS_CSF, "[CSF%p1%d]"},
1178# else
1179 {(int)KS_CAB, "[CAB%d]"},
1180 {(int)KS_CAF, "[CAF%d]"},
1181 {(int)KS_CSB, "[CSB%d]"},
1182 {(int)KS_CSF, "[CSF%d]"},
1183# endif
1184 {(int)KS_OP, "[OP]"},
1185 {(int)KS_LE, "[LE]"},
1186 {(int)KS_CL, "[CL]"},
1187 {(int)KS_VI, "[VI]"},
1188 {(int)KS_VE, "[VE]"},
1189 {(int)KS_VS, "[VS]"},
1190 {(int)KS_ME, "[ME]"},
1191 {(int)KS_MR, "[MR]"},
1192 {(int)KS_MB, "[MB]"},
1193 {(int)KS_MD, "[MD]"},
1194 {(int)KS_SE, "[SE]"},
1195 {(int)KS_SO, "[SO]"},
1196 {(int)KS_UE, "[UE]"},
1197 {(int)KS_US, "[US]"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001198 {(int)KS_UCE, "[UCE]"},
1199 {(int)KS_UCS, "[UCS]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 {(int)KS_MS, "[MS]"},
1201 {(int)KS_UT, "[UT]"},
1202# ifdef TERMINFO
1203 {(int)KS_CM, "[%p1%dCM%p2%d]"},
1204# else
1205 {(int)KS_CM, "[%dCM%d]"},
1206# endif
1207 {(int)KS_SR, "[SR]"},
1208# ifdef TERMINFO
1209 {(int)KS_CRI, "[CRI%p1%d]"},
1210# else
1211 {(int)KS_CRI, "[CRI%d]"},
1212# endif
1213 {(int)KS_VB, "[VB]"},
1214 {(int)KS_KS, "[KS]"},
1215 {(int)KS_KE, "[KE]"},
1216 {(int)KS_TI, "[TI]"},
1217 {(int)KS_TE, "[TE]"},
1218 {(int)KS_CIS, "[CIS]"},
1219 {(int)KS_CIE, "[CIE]"},
1220 {(int)KS_TS, "[TS]"},
1221 {(int)KS_FS, "[FS]"},
1222# ifdef TERMINFO
1223 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
1224 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
1225# else
1226 {(int)KS_CWS, "[%dCWS%d]"},
1227 {(int)KS_CWP, "[%dCWP%d]"},
1228# endif
1229 {(int)KS_CRV, "[CRV]"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001230 {(int)KS_U7, "[U7]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 {K_UP, "[KU]"},
1232 {K_DOWN, "[KD]"},
1233 {K_LEFT, "[KL]"},
1234 {K_RIGHT, "[KR]"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001235 {K_XUP, "[xKU]"},
1236 {K_XDOWN, "[xKD]"},
1237 {K_XLEFT, "[xKL]"},
1238 {K_XRIGHT, "[xKR]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 {K_S_UP, "[S-KU]"},
1240 {K_S_DOWN, "[S-KD]"},
1241 {K_S_LEFT, "[S-KL]"},
1242 {K_C_LEFT, "[C-KL]"},
1243 {K_S_RIGHT, "[S-KR]"},
1244 {K_C_RIGHT, "[C-KR]"},
1245 {K_F1, "[F1]"},
1246 {K_XF1, "[xF1]"},
1247 {K_F2, "[F2]"},
1248 {K_XF2, "[xF2]"},
1249 {K_F3, "[F3]"},
1250 {K_XF3, "[xF3]"},
1251 {K_F4, "[F4]"},
1252 {K_XF4, "[xF4]"},
1253 {K_F5, "[F5]"},
1254 {K_F6, "[F6]"},
1255 {K_F7, "[F7]"},
1256 {K_F8, "[F8]"},
1257 {K_F9, "[F9]"},
1258 {K_F10, "[F10]"},
1259 {K_F11, "[F11]"},
1260 {K_F12, "[F12]"},
1261 {K_S_F1, "[S-F1]"},
1262 {K_S_XF1, "[S-xF1]"},
1263 {K_S_F2, "[S-F2]"},
1264 {K_S_XF2, "[S-xF2]"},
1265 {K_S_F3, "[S-F3]"},
1266 {K_S_XF3, "[S-xF3]"},
1267 {K_S_F4, "[S-F4]"},
1268 {K_S_XF4, "[S-xF4]"},
1269 {K_S_F5, "[S-F5]"},
1270 {K_S_F6, "[S-F6]"},
1271 {K_S_F7, "[S-F7]"},
1272 {K_S_F8, "[S-F8]"},
1273 {K_S_F9, "[S-F9]"},
1274 {K_S_F10, "[S-F10]"},
1275 {K_S_F11, "[S-F11]"},
1276 {K_S_F12, "[S-F12]"},
1277 {K_HELP, "[HELP]"},
1278 {K_UNDO, "[UNDO]"},
1279 {K_BS, "[BS]"},
1280 {K_INS, "[INS]"},
1281 {K_KINS, "[KINS]"},
1282 {K_DEL, "[DEL]"},
1283 {K_KDEL, "[KDEL]"},
1284 {K_HOME, "[HOME]"},
1285 {K_S_HOME, "[C-HOME]"},
1286 {K_C_HOME, "[C-HOME]"},
1287 {K_KHOME, "[KHOME]"},
1288 {K_XHOME, "[XHOME]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001289 {K_ZHOME, "[ZHOME]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 {K_END, "[END]"},
1291 {K_S_END, "[C-END]"},
1292 {K_C_END, "[C-END]"},
1293 {K_KEND, "[KEND]"},
1294 {K_XEND, "[XEND]"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001295 {K_ZEND, "[ZEND]"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 {K_PAGEUP, "[PAGEUP]"},
1297 {K_PAGEDOWN, "[PAGEDOWN]"},
1298 {K_KPAGEUP, "[KPAGEUP]"},
1299 {K_KPAGEDOWN, "[KPAGEDOWN]"},
1300 {K_MOUSE, "[MOUSE]"},
1301 {K_KPLUS, "[KPLUS]"},
1302 {K_KMINUS, "[KMINUS]"},
1303 {K_KDIVIDE, "[KDIVIDE]"},
1304 {K_KMULTIPLY, "[KMULTIPLY]"},
1305 {K_KENTER, "[KENTER]"},
1306 {K_KPOINT, "[KPOINT]"},
1307 {K_K0, "[K0]"},
1308 {K_K1, "[K1]"},
1309 {K_K2, "[K2]"},
1310 {K_K3, "[K3]"},
1311 {K_K4, "[K4]"},
1312 {K_K5, "[K5]"},
1313 {K_K6, "[K6]"},
1314 {K_K7, "[K7]"},
1315 {K_K8, "[K8]"},
1316 {K_K9, "[K9]"},
1317# endif
1318
1319#endif /* NO_BUILTIN_TCAPS */
1320
1321/*
1322 * The most minimal terminal: only clear screen and cursor positioning
1323 * Always included.
1324 */
1325 {(int)KS_NAME, "dumb"},
1326 {(int)KS_CL, "\014"},
1327#ifdef TERMINFO
1328 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
1329 ESC_STR "[%i%p1%d;%p2%dH")},
1330#else
1331 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
1332#endif
1333
1334/*
1335 * end marker
1336 */
1337 {(int)KS_NAME, NULL}
1338
1339}; /* end of builtin_termcaps */
1340
1341/*
1342 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1343 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344#ifdef AMIGA
1345# define DEFAULT_TERM (char_u *)"amiga"
1346#endif
1347
1348#ifdef MSWIN
1349# define DEFAULT_TERM (char_u *)"win32"
1350#endif
1351
1352#ifdef MSDOS
1353# define DEFAULT_TERM (char_u *)"pcterm"
1354#endif
1355
1356#if defined(UNIX) && !defined(__MINT__)
1357# define DEFAULT_TERM (char_u *)"ansi"
1358#endif
1359
1360#ifdef __MINT__
1361# define DEFAULT_TERM (char_u *)"vt52"
1362#endif
1363
1364#ifdef __EMX__
1365# define DEFAULT_TERM (char_u *)"os2ansi"
1366#endif
1367
1368#ifdef VMS
1369# define DEFAULT_TERM (char_u *)"vt320"
1370#endif
1371
1372#ifdef __BEOS__
1373# undef DEFAULT_TERM
1374# define DEFAULT_TERM (char_u *)"beos-ansi"
1375#endif
1376
1377#ifndef DEFAULT_TERM
1378# define DEFAULT_TERM (char_u *)"dumb"
1379#endif
1380
1381/*
1382 * Term_strings contains currently used terminal output strings.
1383 * It is initialized with the default values by parse_builtin_tcap().
1384 * The values can be changed by setting the option with the same name.
1385 */
1386char_u *(term_strings[(int)KS_LAST + 1]);
1387
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001388static int need_gather = FALSE; /* need to fill termleader[] */
1389static char_u termleader[256 + 1]; /* for check_termcode() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390#ifdef FEAT_TERMRESPONSE
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00001391static int check_for_codes = FALSE; /* check for key code response */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392#endif
1393
1394 static struct builtin_term *
1395find_builtin_term(term)
1396 char_u *term;
1397{
1398 struct builtin_term *p;
1399
1400 p = builtin_termcaps;
1401 while (p->bt_string != NULL)
1402 {
1403 if (p->bt_entry == (int)KS_NAME)
1404 {
1405#ifdef UNIX
1406 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
1407 return p;
1408 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
1409 return p;
1410 else
1411#endif
1412#ifdef VMS
1413 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
1414 return p;
1415 else
1416#endif
1417 if (STRCMP(term, p->bt_string) == 0)
1418 return p;
1419 }
1420 ++p;
1421 }
1422 return p;
1423}
1424
1425/*
1426 * Parsing of the builtin termcap entries.
1427 * Caller should check if 'name' is a valid builtin term.
1428 * The terminal's name is not set, as this is already done in termcapinit().
1429 */
1430 static void
1431parse_builtin_tcap(term)
1432 char_u *term;
1433{
1434 struct builtin_term *p;
1435 char_u name[2];
1436 int term_8bit;
1437
1438 p = find_builtin_term(term);
1439 term_8bit = term_is_8bit(term);
1440
1441 /* Do not parse if builtin term not found */
1442 if (p->bt_string == NULL)
1443 return;
1444
1445 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
1446 {
1447 if ((int)p->bt_entry >= 0) /* KS_xx entry */
1448 {
1449 /* Only set the value if it wasn't set yet. */
1450 if (term_strings[p->bt_entry] == NULL
1451 || term_strings[p->bt_entry] == empty_option)
1452 {
1453 /* 8bit terminal: use CSI instead of <Esc>[ */
1454 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
1455 {
1456 char_u *s, *t;
1457
1458 s = vim_strsave((char_u *)p->bt_string);
1459 if (s != NULL)
1460 {
1461 for (t = s; *t; ++t)
1462 if (term_7to8bit(t))
1463 {
1464 *t = term_7to8bit(t);
1465 STRCPY(t + 1, t + 2);
1466 }
1467 term_strings[p->bt_entry] = s;
1468 set_term_option_alloced(&term_strings[p->bt_entry]);
1469 }
1470 }
1471 else
1472 term_strings[p->bt_entry] = (char_u *)p->bt_string;
1473 }
1474 }
1475 else
1476 {
1477 name[0] = KEY2TERMCAP0((int)p->bt_entry);
1478 name[1] = KEY2TERMCAP1((int)p->bt_entry);
1479 if (find_termcode(name) == NULL)
1480 add_termcode(name, (char_u *)p->bt_string, term_8bit);
1481 }
1482 }
1483}
1484#if defined(HAVE_TGETENT) || defined(FEAT_TERMRESPONSE)
1485static void set_color_count __ARGS((int nr));
1486
1487/*
1488 * Set number of colors.
1489 * Store it as a number in t_colors.
1490 * Store it as a string in T_CCO (using nr_colors[]).
1491 */
1492 static void
1493set_color_count(nr)
1494 int nr;
1495{
1496 char_u nr_colors[20]; /* string for number of colors */
1497
1498 t_colors = nr;
1499 if (t_colors > 1)
1500 sprintf((char *)nr_colors, "%d", t_colors);
1501 else
1502 *nr_colors = NUL;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001503 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504}
1505#endif
1506
1507#ifdef HAVE_TGETENT
1508static char *(key_names[]) =
1509{
1510#ifdef FEAT_TERMRESPONSE
1511 /* Do this one first, it may cause a screen redraw. */
1512 "Co",
1513#endif
1514 "ku", "kd", "kr", "kl",
1515# ifdef ARCHIE
1516 "su", "sd", /* Termcap code made up! */
1517# endif
1518 "#2", "#4", "%i", "*7",
1519 "k1", "k2", "k3", "k4", "k5", "k6",
1520 "k7", "k8", "k9", "k;", "F1", "F2",
1521 "%1", "&8", "kb", "kI", "kD", "kh",
1522 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1523 NULL
1524};
1525#endif
1526
1527/*
1528 * Set terminal options for terminal "term".
1529 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1530 *
1531 * While doing this, until ttest(), some options may be NULL, be careful.
1532 */
1533 int
1534set_termname(term)
1535 char_u *term;
1536{
1537 struct builtin_term *termp;
1538#ifdef HAVE_TGETENT
1539 int builtin_first = p_tbi;
1540 int try;
1541 int termcap_cleared = FALSE;
1542#endif
1543 int width = 0, height = 0;
1544 char_u *error_msg = NULL;
1545 char_u *bs_p, *del_p;
1546
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001547 /* In silect mode (ex -s) we don't use the 'term' option. */
1548 if (silent_mode)
1549 return OK;
1550
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 detected_8bit = FALSE; /* reset 8-bit detection */
1552
1553 if (term_is_builtin(term))
1554 {
1555 term += 8;
1556#ifdef HAVE_TGETENT
1557 builtin_first = 1;
1558#endif
1559 }
1560
1561/*
1562 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1563 * If builtin_first is TRUE:
1564 * 0. try builtin termcap
1565 * 1. try external termcap
1566 * 2. if both fail default to a builtin terminal
1567 * If builtin_first is FALSE:
1568 * 1. try external termcap
1569 * 2. try builtin termcap, if both fail default to a builtin terminal
1570 */
1571#ifdef HAVE_TGETENT
1572 for (try = builtin_first ? 0 : 1; try < 3; ++try)
1573 {
1574 /*
1575 * Use external termcap
1576 */
1577 if (try == 1)
1578 {
1579 char_u *p;
1580 static char_u tstrbuf[TBUFSZ];
1581 int i;
1582 char_u tbuf[TBUFSZ];
1583 char_u *tp;
1584 static struct {
1585 enum SpecialKey dest; /* index in term_strings[] */
1586 char *name; /* termcap name for string */
1587 } string_names[] =
1588 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
1589 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
1590 {KS_CL, "cl"}, {KS_CD, "cd"},
1591 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
1592 {KS_VS, "vs"}, {KS_ME, "me"}, {KS_MR, "mr"},
1593 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
1594 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
Bram Moolenaare2cc9702005-03-15 22:43:58 +00001595 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
1596 {KS_CM, "cm"}, {KS_SR, "sr"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
1598 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
1599 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
1600 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
1601 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
1602 {KS_CIS, "IS"}, {KS_CIE, "IE"},
1603 {KS_TS, "ts"}, {KS_FS, "fs"},
1604 {KS_CWP, "WP"}, {KS_CWS, "WS"},
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001605 {KS_CSI, "SI"}, {KS_CEI, "EI"},
Bram Moolenaar9584b312013-03-13 19:29:28 +01001606 {KS_U7, "u7"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 {(enum SpecialKey)0, NULL}
1608 };
1609
1610 /*
1611 * If the external termcap does not have a matching entry, try the
1612 * builtin ones.
1613 */
1614 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
1615 {
1616 tp = tstrbuf;
1617 if (!termcap_cleared)
1618 {
1619 clear_termoptions(); /* clear old options */
1620 termcap_cleared = TRUE;
1621 }
1622
1623 /* get output strings */
1624 for (i = 0; string_names[i].name != NULL; ++i)
1625 {
1626 if (term_str(string_names[i].dest) == NULL
1627 || term_str(string_names[i].dest) == empty_option)
1628 term_str(string_names[i].dest) =
1629 TGETSTR(string_names[i].name, &tp);
1630 }
1631
1632 /* tgetflag() returns 1 if the flag is present, 0 if not and
1633 * possibly -1 if the flag doesn't exist. */
1634 if ((T_MS == NULL || T_MS == empty_option)
1635 && tgetflag("ms") > 0)
1636 T_MS = (char_u *)"y";
1637 if ((T_XS == NULL || T_XS == empty_option)
1638 && tgetflag("xs") > 0)
1639 T_XS = (char_u *)"y";
1640 if ((T_DB == NULL || T_DB == empty_option)
1641 && tgetflag("db") > 0)
1642 T_DB = (char_u *)"y";
1643 if ((T_DA == NULL || T_DA == empty_option)
1644 && tgetflag("da") > 0)
1645 T_DA = (char_u *)"y";
1646 if ((T_UT == NULL || T_UT == empty_option)
1647 && tgetflag("ut") > 0)
1648 T_UT = (char_u *)"y";
1649
1650
1651 /*
1652 * get key codes
1653 */
1654 for (i = 0; key_names[i] != NULL; ++i)
1655 {
1656 if (find_termcode((char_u *)key_names[i]) == NULL)
1657 {
1658 p = TGETSTR(key_names[i], &tp);
1659 /* if cursor-left == backspace, ignore it (televideo
1660 * 925) */
1661 if (p != NULL
1662 && (*p != Ctrl_H
1663 || key_names[i][0] != 'k'
1664 || key_names[i][1] != 'l'))
1665 add_termcode((char_u *)key_names[i], p, FALSE);
1666 }
1667 }
1668
1669 if (height == 0)
1670 height = tgetnum("li");
1671 if (width == 0)
1672 width = tgetnum("co");
1673
1674 /*
1675 * Get number of colors (if not done already).
1676 */
1677 if (term_str(KS_CCO) == NULL
1678 || term_str(KS_CCO) == empty_option)
1679 set_color_count(tgetnum("Co"));
1680
1681# ifndef hpux
1682 BC = (char *)TGETSTR("bc", &tp);
1683 UP = (char *)TGETSTR("up", &tp);
1684 p = TGETSTR("pc", &tp);
1685 if (p)
1686 PC = *p;
1687# endif /* hpux */
1688 }
1689 }
1690 else /* try == 0 || try == 2 */
1691#endif /* HAVE_TGETENT */
1692 /*
1693 * Use builtin termcap
1694 */
1695 {
1696#ifdef HAVE_TGETENT
1697 /*
1698 * If builtin termcap was already used, there is no need to search
1699 * for the builtin termcap again, quit now.
1700 */
1701 if (try == 2 && builtin_first && termcap_cleared)
1702 break;
1703#endif
1704 /*
1705 * search for 'term' in builtin_termcaps[]
1706 */
1707 termp = find_builtin_term(term);
1708 if (termp->bt_string == NULL) /* did not find it */
1709 {
1710#ifdef HAVE_TGETENT
1711 /*
1712 * If try == 0, first try the external termcap. If that is not
1713 * found we'll get back here with try == 2.
1714 * If termcap_cleared is set we used the external termcap,
1715 * don't complain about not finding the term in the builtin
1716 * termcap.
1717 */
1718 if (try == 0) /* try external one */
1719 continue;
1720 if (termcap_cleared) /* found in external termcap */
1721 break;
1722#endif
1723
1724 mch_errmsg("\r\n");
1725 if (error_msg != NULL)
1726 {
1727 mch_errmsg((char *)error_msg);
1728 mch_errmsg("\r\n");
1729 }
1730 mch_errmsg("'");
1731 mch_errmsg((char *)term);
1732 mch_errmsg(_("' not known. Available builtin terminals are:"));
1733 mch_errmsg("\r\n");
1734 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL;
1735 ++termp)
1736 {
1737 if (termp->bt_entry == (int)KS_NAME)
1738 {
1739#ifdef HAVE_TGETENT
1740 mch_errmsg(" builtin_");
1741#else
1742 mch_errmsg(" ");
1743#endif
1744 mch_errmsg(termp->bt_string);
1745 mch_errmsg("\r\n");
1746 }
1747 }
1748 /* when user typed :set term=xxx, quit here */
1749 if (starting != NO_SCREEN)
1750 {
1751 screen_start(); /* don't know where cursor is now */
1752 wait_return(TRUE);
1753 return FAIL;
1754 }
1755 term = DEFAULT_TERM;
1756 mch_errmsg(_("defaulting to '"));
1757 mch_errmsg((char *)term);
1758 mch_errmsg("'\r\n");
1759 if (emsg_silent == 0)
1760 {
1761 screen_start(); /* don't know where cursor is now */
1762 out_flush();
1763 ui_delay(2000L, TRUE);
1764 }
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001765 set_string_option_direct((char_u *)"term", -1, term,
1766 OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 display_errors();
1768 }
1769 out_flush();
1770#ifdef HAVE_TGETENT
1771 if (!termcap_cleared)
1772 {
1773#endif
1774 clear_termoptions(); /* clear old options */
1775#ifdef HAVE_TGETENT
1776 termcap_cleared = TRUE;
1777 }
1778#endif
1779 parse_builtin_tcap(term);
1780#ifdef FEAT_GUI
1781 if (term_is_gui(term))
1782 {
1783 out_flush();
1784 gui_init();
1785 /* If starting the GUI failed, don't do any of the other
1786 * things for this terminal */
1787 if (!gui.in_use)
1788 return FAIL;
1789#ifdef HAVE_TGETENT
1790 break; /* don't try using external termcap */
1791#endif
1792 }
1793#endif /* FEAT_GUI */
1794 }
1795#ifdef HAVE_TGETENT
1796 }
1797#endif
1798
1799/*
1800 * special: There is no info in the termcap about whether the cursor
1801 * positioning is relative to the start of the screen or to the start of the
1802 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1803 * relative.
1804 */
1805 if (STRCMP(term, "pcterm") == 0)
1806 T_CCS = (char_u *)"yes";
1807 else
1808 T_CCS = empty_option;
1809
1810#ifdef UNIX
1811/*
1812 * Any "stty" settings override the default for t_kb from the termcap.
1813 * This is in os_unix.c, because it depends a lot on the version of unix that
1814 * is being used.
1815 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1816 */
1817#ifdef FEAT_GUI
1818 if (!gui.in_use)
1819#endif
1820 get_stty();
1821#endif
1822
1823/*
1824 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1825 * didn't work, use the default CTRL-H
1826 * The default for t_kD is DEL, unless t_kb is DEL.
1827 * The vim_strsave'd strings are probably lost forever, well it's only two
1828 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1829 * directly.
1830 */
1831#ifdef FEAT_GUI
1832 if (!gui.in_use)
1833#endif
1834 {
1835 bs_p = find_termcode((char_u *)"kb");
1836 del_p = find_termcode((char_u *)"kD");
1837 if (bs_p == NULL || *bs_p == NUL)
1838 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
1839 if ((del_p == NULL || *del_p == NUL) &&
1840 (bs_p == NULL || *bs_p != DEL))
1841 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
1842 }
1843
1844#if defined(UNIX) || defined(VMS)
1845 term_is_xterm = vim_is_xterm(term);
1846#endif
1847
1848#ifdef FEAT_MOUSE
1849# if defined(UNIX) || defined(VMS)
1850# ifdef FEAT_MOUSE_TTY
1851 /*
1852 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1853 * The termcode for the mouse is added as a side effect in option.c.
1854 */
1855 {
1856 char_u *p;
1857
1858 p = (char_u *)"";
1859# ifdef FEAT_MOUSE_XTERM
1860# ifdef FEAT_CLIPBOARD
1861# ifdef FEAT_GUI
1862 if (!gui.in_use)
1863# endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001864# ifndef FEAT_CYGWIN_WIN32_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 clip_init(FALSE);
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001866# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867# endif
Bram Moolenaar864207d2008-06-24 22:14:38 +00001868 if (use_xterm_like_mouse(term))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 {
1870 if (use_xterm_mouse())
1871 p = NULL; /* keep existing value, might be "xterm2" */
1872 else
1873 p = (char_u *)"xterm";
1874 }
1875# endif
1876 if (p != NULL)
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001877 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 set_option_value((char_u *)"ttym", 0L, p, 0);
Bram Moolenaar15d55de2012-12-05 14:43:02 +01001879 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
1880 * "xterm2" in check_termcode(). */
1881 reset_option_was_set((char_u *)"ttym");
1882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 if (p == NULL
1884# ifdef FEAT_GUI
1885 || gui.in_use
1886# endif
1887 )
1888 check_mouse_termcode(); /* set mouse termcode anyway */
1889 }
1890# endif
1891# else
1892 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
1893# endif
1894#endif /* FEAT_MOUSE */
1895
1896#ifdef FEAT_SNIFF
1897 {
1898 char_u name[2];
1899
1900 name[0] = (int)KS_EXTRA;
1901 name[1] = (int)KE_SNIFF;
1902 add_termcode(name, (char_u *)"\233sniff", FALSE);
1903 }
1904#endif
1905
1906#ifdef USE_TERM_CONSOLE
1907 /* DEFAULT_TERM indicates that it is the machine console. */
1908 if (STRCMP(term, DEFAULT_TERM) != 0)
1909 term_console = FALSE;
1910 else
1911 {
1912 term_console = TRUE;
1913# ifdef AMIGA
1914 win_resize_on(); /* enable window resizing reports */
1915# endif
1916 }
1917#endif
1918
1919#if defined(UNIX) || defined(VMS)
1920 /*
1921 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1922 */
1923 if (vim_is_fastterm(term))
1924 p_tf = TRUE;
1925#endif
1926#ifdef USE_TERM_CONSOLE
1927 /*
1928 * 'ttyfast' is default on consoles
1929 */
1930 if (term_console)
1931 p_tf = TRUE;
1932#endif
1933
1934 ttest(TRUE); /* make sure we have a valid set of terminal codes */
1935
1936 full_screen = TRUE; /* we can use termcap codes from now on */
1937 set_term_defaults(); /* use current values as defaults */
1938#ifdef FEAT_TERMRESPONSE
1939 crv_status = CRV_GET; /* Get terminal version later */
1940#endif
1941
1942 /*
1943 * Initialize the terminal with the appropriate termcap codes.
1944 * Set the mouse and window title if possible.
1945 * Don't do this when starting, need to parse the .vimrc first, because it
1946 * may redefine t_TI etc.
1947 */
1948 if (starting != NO_SCREEN)
1949 {
1950 starttermcap(); /* may change terminal mode */
1951#ifdef FEAT_MOUSE
1952 setmouse(); /* may start using the mouse */
1953#endif
1954#ifdef FEAT_TITLE
1955 maketitle(); /* may display window title */
1956#endif
1957 }
1958
1959 /* display initial screen after ttest() checking. jw. */
1960 if (width <= 0 || height <= 0)
1961 {
1962 /* termcap failed to report size */
1963 /* set defaults, in case ui_get_shellsize() also fails */
1964 width = 80;
1965#if defined(MSDOS) || defined(WIN3264)
1966 height = 25; /* console is often 25 lines */
1967#else
1968 height = 24; /* most terminals are 24 lines */
1969#endif
1970 }
1971 set_shellsize(width, height, FALSE); /* may change Rows */
1972 if (starting != NO_SCREEN)
1973 {
1974 if (scroll_region)
1975 scroll_region_reset(); /* In case Rows changed */
1976 check_map_keycodes(); /* check mappings for terminal codes used */
1977
1978#ifdef FEAT_AUTOCMD
1979 {
1980 buf_T *old_curbuf;
1981
1982 /*
1983 * Execute the TermChanged autocommands for each buffer that is
1984 * loaded.
1985 */
1986 old_curbuf = curbuf;
1987 for (curbuf = firstbuf; curbuf != NULL; curbuf = curbuf->b_next)
1988 {
1989 if (curbuf->b_ml.ml_mfp != NULL)
1990 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
1991 curbuf);
1992 }
1993 if (buf_valid(old_curbuf))
1994 curbuf = old_curbuf;
1995 }
1996#endif
1997 }
1998
1999#ifdef FEAT_TERMRESPONSE
2000 may_req_termresponse();
2001#endif
2002
2003 return OK;
2004}
2005
2006#if defined(FEAT_MOUSE) || defined(PROTO)
2007
2008# ifdef FEAT_MOUSE_TTY
2009# define HMT_NORMAL 1
2010# define HMT_NETTERM 2
2011# define HMT_DEC 4
2012# define HMT_JSBTERM 8
2013# define HMT_PTERM 16
Bram Moolenaarb491c032011-11-30 14:47:15 +01002014# define HMT_URXVT 32
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002015# define HMT_SGR 64
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016static int has_mouse_termcode = 0;
2017# endif
2018
Bram Moolenaar864207d2008-06-24 22:14:38 +00002019# if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 void
2021set_mouse_termcode(n, s)
2022 int n; /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2023 char_u *s;
2024{
2025 char_u name[2];
2026
2027 name[0] = n;
2028 name[1] = KE_FILLER;
2029 add_termcode(name, s, FALSE);
2030# ifdef FEAT_MOUSE_TTY
2031# ifdef FEAT_MOUSE_JSB
2032 if (n == KS_JSBTERM_MOUSE)
2033 has_mouse_termcode |= HMT_JSBTERM;
2034 else
2035# endif
2036# ifdef FEAT_MOUSE_NET
2037 if (n == KS_NETTERM_MOUSE)
2038 has_mouse_termcode |= HMT_NETTERM;
2039 else
2040# endif
2041# ifdef FEAT_MOUSE_DEC
2042 if (n == KS_DEC_MOUSE)
2043 has_mouse_termcode |= HMT_DEC;
2044 else
2045# endif
2046# ifdef FEAT_MOUSE_PTERM
2047 if (n == KS_PTERM_MOUSE)
2048 has_mouse_termcode |= HMT_PTERM;
2049 else
2050# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002051# ifdef FEAT_MOUSE_URXVT
2052 if (n == KS_URXVT_MOUSE)
2053 has_mouse_termcode |= HMT_URXVT;
2054 else
2055# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002056# ifdef FEAT_MOUSE_SGR
2057 if (n == KS_SGR_MOUSE)
2058 has_mouse_termcode |= HMT_SGR;
2059 else
2060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 has_mouse_termcode |= HMT_NORMAL;
2062# endif
2063}
2064# endif
2065
2066# if ((defined(UNIX) || defined(VMS) || defined(OS2)) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002067 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 void
2069del_mouse_termcode(n)
2070 int n; /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2071{
2072 char_u name[2];
2073
2074 name[0] = n;
2075 name[1] = KE_FILLER;
2076 del_termcode(name);
2077# ifdef FEAT_MOUSE_TTY
2078# ifdef FEAT_MOUSE_JSB
2079 if (n == KS_JSBTERM_MOUSE)
2080 has_mouse_termcode &= ~HMT_JSBTERM;
2081 else
2082# endif
2083# ifdef FEAT_MOUSE_NET
2084 if (n == KS_NETTERM_MOUSE)
2085 has_mouse_termcode &= ~HMT_NETTERM;
2086 else
2087# endif
2088# ifdef FEAT_MOUSE_DEC
2089 if (n == KS_DEC_MOUSE)
2090 has_mouse_termcode &= ~HMT_DEC;
2091 else
2092# endif
2093# ifdef FEAT_MOUSE_PTERM
2094 if (n == KS_PTERM_MOUSE)
2095 has_mouse_termcode &= ~HMT_PTERM;
2096 else
2097# endif
Bram Moolenaarb491c032011-11-30 14:47:15 +01002098# ifdef FEAT_MOUSE_URXVT
2099 if (n == KS_URXVT_MOUSE)
2100 has_mouse_termcode &= ~HMT_URXVT;
2101 else
2102# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002103# ifdef FEAT_MOUSE_SGR
2104 if (n == KS_SGR_MOUSE)
2105 has_mouse_termcode &= ~HMT_SGR;
2106 else
2107# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 has_mouse_termcode &= ~HMT_NORMAL;
2109# endif
2110}
2111# endif
2112#endif
2113
2114#ifdef HAVE_TGETENT
2115/*
2116 * Call tgetent()
2117 * Return error message if it fails, NULL if it's OK.
2118 */
2119 static char_u *
2120tgetent_error(tbuf, term)
2121 char_u *tbuf;
2122 char_u *term;
2123{
2124 int i;
2125
2126 i = TGETENT(tbuf, term);
2127 if (i < 0 /* -1 is always an error */
2128# ifdef TGETENT_ZERO_ERR
2129 || i == 0 /* sometimes zero is also an error */
2130# endif
2131 )
2132 {
2133 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2134 * tgetent() with the always existing "dumb" entry to avoid a crash or
2135 * hang. */
2136 (void)TGETENT(tbuf, "dumb");
2137
2138 if (i < 0)
2139# ifdef TGETENT_ZERO_ERR
2140 return (char_u *)_("E557: Cannot open termcap file");
2141 if (i == 0)
2142# endif
2143#ifdef TERMINFO
2144 return (char_u *)_("E558: Terminal entry not found in terminfo");
2145#else
2146 return (char_u *)_("E559: Terminal entry not found in termcap");
2147#endif
2148 }
2149 return NULL;
2150}
2151
2152/*
2153 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2154 * Fix that here.
2155 */
2156 static char_u *
2157vim_tgetstr(s, pp)
2158 char *s;
2159 char_u **pp;
2160{
2161 char *p;
2162
2163 p = tgetstr(s, (char **)pp);
2164 if (p == (char *)-1)
2165 p = NULL;
2166 return (char_u *)p;
2167}
2168#endif /* HAVE_TGETENT */
2169
2170#if defined(HAVE_TGETENT) && (defined(UNIX) || defined(__EMX__) || defined(VMS) || defined(MACOS_X))
2171/*
2172 * Get Columns and Rows from the termcap. Used after a window signal if the
2173 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2174 * and "li" entries never change. But on some systems this works.
2175 * Errors while getting the entries are ignored.
2176 */
2177 void
2178getlinecol(cp, rp)
2179 long *cp; /* pointer to columns */
2180 long *rp; /* pointer to rows */
2181{
2182 char_u tbuf[TBUFSZ];
2183
2184 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
2185 {
2186 if (*cp == 0)
2187 *cp = tgetnum("co");
2188 if (*rp == 0)
2189 *rp = tgetnum("li");
2190 }
2191}
2192#endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2193
2194/*
2195 * Get a string entry from the termcap and add it to the list of termcodes.
2196 * Used for <t_xx> special keys.
2197 * Give an error message for failure when not sourcing.
2198 * If force given, replace an existing entry.
2199 * Return FAIL if the entry was not found, OK if the entry was added.
2200 */
2201 int
2202add_termcap_entry(name, force)
2203 char_u *name;
2204 int force;
2205{
2206 char_u *term;
2207 int key;
2208 struct builtin_term *termp;
2209#ifdef HAVE_TGETENT
2210 char_u *string;
2211 int i;
2212 int builtin_first;
2213 char_u tbuf[TBUFSZ];
2214 char_u tstrbuf[TBUFSZ];
2215 char_u *tp = tstrbuf;
2216 char_u *error_msg = NULL;
2217#endif
2218
2219/*
2220 * If the GUI is running or will start in a moment, we only support the keys
2221 * that the GUI can produce.
2222 */
2223#ifdef FEAT_GUI
2224 if (gui.in_use || gui.starting)
2225 return gui_mch_haskey(name);
2226#endif
2227
2228 if (!force && find_termcode(name) != NULL) /* it's already there */
2229 return OK;
2230
2231 term = T_NAME;
2232 if (term == NULL || *term == NUL) /* 'term' not defined yet */
2233 return FAIL;
2234
2235 if (term_is_builtin(term)) /* name starts with "builtin_" */
2236 {
2237 term += 8;
2238#ifdef HAVE_TGETENT
2239 builtin_first = TRUE;
2240#endif
2241 }
2242#ifdef HAVE_TGETENT
2243 else
2244 builtin_first = p_tbi;
2245#endif
2246
2247#ifdef HAVE_TGETENT
2248/*
2249 * We can get the entry from the builtin termcap and from the external one.
2250 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2251 * builtin termcap first.
2252 * If 'ttybuiltin' is off, try external termcap first.
2253 */
2254 for (i = 0; i < 2; ++i)
2255 {
2256 if (!builtin_first == i)
2257#endif
2258 /*
2259 * Search in builtin termcap
2260 */
2261 {
2262 termp = find_builtin_term(term);
2263 if (termp->bt_string != NULL) /* found it */
2264 {
2265 key = TERMCAP2KEY(name[0], name[1]);
2266 while (termp->bt_entry != (int)KS_NAME)
2267 {
2268 if ((int)termp->bt_entry == key)
2269 {
2270 add_termcode(name, (char_u *)termp->bt_string,
2271 term_is_8bit(term));
2272 return OK;
2273 }
2274 ++termp;
2275 }
2276 }
2277 }
2278#ifdef HAVE_TGETENT
2279 else
2280 /*
2281 * Search in external termcap
2282 */
2283 {
2284 error_msg = tgetent_error(tbuf, term);
2285 if (error_msg == NULL)
2286 {
2287 string = TGETSTR((char *)name, &tp);
2288 if (string != NULL && *string != NUL)
2289 {
2290 add_termcode(name, string, FALSE);
2291 return OK;
2292 }
2293 }
2294 }
2295 }
2296#endif
2297
2298 if (sourcing_name == NULL)
2299 {
2300#ifdef HAVE_TGETENT
2301 if (error_msg != NULL)
2302 EMSG(error_msg);
2303 else
2304#endif
2305 EMSG2(_("E436: No \"%s\" entry in termcap"), name);
2306 }
2307 return FAIL;
2308}
2309
2310 static int
2311term_is_builtin(name)
2312 char_u *name;
2313{
2314 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
2315}
2316
2317/*
2318 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2319 * Assume that the terminal is using 8-bit controls when the name contains
2320 * "8bit", like in "xterm-8bit".
2321 */
2322 int
2323term_is_8bit(name)
2324 char_u *name;
2325{
2326 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
2327}
2328
2329/*
2330 * Translate terminal control chars from 7-bit to 8-bit:
2331 * <Esc>[ -> CSI
2332 * <Esc>] -> <M-C-]>
2333 * <Esc>O -> <M-C-O>
2334 */
2335 static int
2336term_7to8bit(p)
2337 char_u *p;
2338{
2339 if (*p == ESC)
2340 {
2341 if (p[1] == '[')
2342 return CSI;
2343 if (p[1] == ']')
2344 return 0x9d;
2345 if (p[1] == 'O')
2346 return 0x8f;
2347 }
2348 return 0;
2349}
2350
2351#ifdef FEAT_GUI
2352 int
2353term_is_gui(name)
2354 char_u *name;
2355{
2356 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
2357}
2358#endif
2359
2360#if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2361
2362 char_u *
2363tltoa(i)
2364 unsigned long i;
2365{
2366 static char_u buf[16];
2367 char_u *p;
2368
2369 p = buf + 15;
2370 *p = '\0';
2371 do
2372 {
2373 --p;
2374 *p = (char_u) (i % 10 + '0');
2375 i /= 10;
2376 }
2377 while (i > 0 && p > buf);
2378 return p;
2379}
2380#endif
2381
2382#ifndef HAVE_TGETENT
2383
2384/*
2385 * minimal tgoto() implementation.
2386 * no padding and we only parse for %i %d and %+char
2387 */
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002388static char *tgoto __ARGS((char *, int, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002390 static char *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391tgoto(cm, x, y)
2392 char *cm;
2393 int x, y;
2394{
2395 static char buf[30];
2396 char *p, *s, *e;
2397
2398 if (!cm)
2399 return "OOPS";
2400 e = buf + 29;
2401 for (s = buf; s < e && *cm; cm++)
2402 {
2403 if (*cm != '%')
2404 {
2405 *s++ = *cm;
2406 continue;
2407 }
2408 switch (*++cm)
2409 {
2410 case 'd':
2411 p = (char *)tltoa((unsigned long)y);
2412 y = x;
2413 while (*p)
2414 *s++ = *p++;
2415 break;
2416 case 'i':
2417 x++;
2418 y++;
2419 break;
2420 case '+':
2421 *s++ = (char)(*++cm + y);
2422 y = x;
2423 break;
2424 case '%':
2425 *s++ = *cm;
2426 break;
2427 default:
2428 return "OOPS";
2429 }
2430 }
2431 *s = '\0';
2432 return buf;
2433}
2434
2435#endif /* HAVE_TGETENT */
2436
2437/*
2438 * Set the terminal name and initialize the terminal options.
2439 * If "name" is NULL or empty, get the terminal name from the environment.
2440 * If that fails, use the default terminal name.
2441 */
2442 void
2443termcapinit(name)
2444 char_u *name;
2445{
2446 char_u *term;
2447
2448 if (name != NULL && *name == NUL)
2449 name = NULL; /* empty name is equal to no name */
2450 term = name;
2451
2452#ifdef __BEOS__
2453 /*
2454 * TERM environment variable is normally set to 'ansi' on the Bebox;
2455 * Since the BeBox doesn't quite support full ANSI yet, we use our
2456 * own custom 'ansi-beos' termcap instead, unless the -T option has
2457 * been given on the command line.
2458 */
2459 if (term == NULL
2460 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
2461 term = DEFAULT_TERM;
2462#endif
2463#ifndef MSWIN
2464 if (term == NULL)
2465 term = mch_getenv((char_u *)"TERM");
2466#endif
2467 if (term == NULL || *term == NUL)
2468 term = DEFAULT_TERM;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002469 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470
2471 /* Set the default terminal name. */
2472 set_string_default("term", term);
2473 set_string_default("ttytype", term);
2474
2475 /*
2476 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2477 */
2478 set_termname(T_NAME != NULL ? T_NAME : term);
2479}
2480
2481/*
2482 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2483 */
2484#ifdef DOS16
2485# define OUT_SIZE 255 /* only have 640K total... */
2486#else
2487# ifdef FEAT_GUI_W16
2488# define OUT_SIZE 1023 /* Save precious 1K near data */
2489# else
2490# define OUT_SIZE 2047
2491# endif
2492#endif
2493 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2494static char_u out_buf[OUT_SIZE + 1];
2495static int out_pos = 0; /* number of chars in out_buf */
2496
2497/*
2498 * out_flush(): flush the output buffer
2499 */
2500 void
2501out_flush()
2502{
2503 int len;
2504
2505 if (out_pos != 0)
2506 {
2507 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2508 len = out_pos;
2509 out_pos = 0;
2510 ui_write(out_buf, len);
2511 }
2512}
2513
2514#if defined(FEAT_MBYTE) || defined(PROTO)
2515/*
2516 * Sometimes a byte out of a multi-byte character is written with out_char().
2517 * To avoid flushing half of the character, call this function first.
2518 */
2519 void
2520out_flush_check()
2521{
2522 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
2523 out_flush();
2524}
2525#endif
2526
2527#ifdef FEAT_GUI
2528/*
2529 * out_trash(): Throw away the contents of the output buffer
2530 */
2531 void
2532out_trash()
2533{
2534 out_pos = 0;
2535}
2536#endif
2537
2538/*
2539 * out_char(c): put a byte into the output buffer.
2540 * Flush it if it becomes full.
2541 * This should not be used for outputting text on the screen (use functions
2542 * like msg_puts() and screen_putchar() for that).
2543 */
2544 void
2545out_char(c)
2546 unsigned c;
2547{
2548#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2549 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2550 out_char('\r');
2551#endif
2552
2553 out_buf[out_pos++] = c;
2554
2555 /* For testing we flush each time. */
2556 if (out_pos >= OUT_SIZE || p_wd)
2557 out_flush();
2558}
2559
2560static void out_char_nf __ARGS((unsigned));
2561
2562/*
2563 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2564 */
2565 static void
2566out_char_nf(c)
2567 unsigned c;
2568{
2569#if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2570 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2571 out_char_nf('\r');
2572#endif
2573
2574 out_buf[out_pos++] = c;
2575
2576 if (out_pos >= OUT_SIZE)
2577 out_flush();
2578}
2579
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002580#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
2581 || defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582/*
2583 * A never-padding out_str.
2584 * use this whenever you don't want to run the string through tputs.
2585 * tputs above is harmless, but tputs from the termcap library
2586 * is likely to strip off leading digits, that it mistakes for padding
2587 * information, and "%i", "%d", etc.
2588 * This should only be used for writing terminal codes, not for outputting
2589 * normal text (use functions like msg_puts() and screen_putchar() for that).
2590 */
2591 void
2592out_str_nf(s)
2593 char_u *s;
2594{
2595 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */
2596 out_flush();
2597 while (*s)
2598 out_char_nf(*s++);
2599
2600 /* For testing we write one string at a time. */
2601 if (p_wd)
2602 out_flush();
2603}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02002604#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
2606/*
2607 * out_str(s): Put a character string a byte at a time into the output buffer.
2608 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2609 * This should only be used for writing terminal codes, not for outputting
2610 * normal text (use functions like msg_puts() and screen_putchar() for that).
2611 */
2612 void
2613out_str(s)
2614 char_u *s;
2615{
2616 if (s != NULL && *s)
2617 {
2618#ifdef FEAT_GUI
2619 /* Don't use tputs() when GUI is used, ncurses crashes. */
2620 if (gui.in_use)
2621 {
2622 out_str_nf(s);
2623 return;
2624 }
2625#endif
2626 /* avoid terminal strings being split up */
2627 if (out_pos > OUT_SIZE - 20)
2628 out_flush();
2629#ifdef HAVE_TGETENT
2630 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
2631#else
2632 while (*s)
2633 out_char_nf(*s++);
2634#endif
2635
2636 /* For testing we write one string at a time. */
2637 if (p_wd)
2638 out_flush();
2639 }
2640}
2641
2642/*
2643 * cursor positioning using termcap parser. (jw)
2644 */
2645 void
2646term_windgoto(row, col)
2647 int row;
2648 int col;
2649{
2650 OUT_STR(tgoto((char *)T_CM, col, row));
2651}
2652
2653 void
2654term_cursor_right(i)
2655 int i;
2656{
2657 OUT_STR(tgoto((char *)T_CRI, 0, i));
2658}
2659
2660 void
2661term_append_lines(line_count)
2662 int line_count;
2663{
2664 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
2665}
2666
2667 void
2668term_delete_lines(line_count)
2669 int line_count;
2670{
2671 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
2672}
2673
2674#if defined(HAVE_TGETENT) || defined(PROTO)
2675 void
2676term_set_winpos(x, y)
2677 int x;
2678 int y;
2679{
2680 /* Can't handle a negative value here */
2681 if (x < 0)
2682 x = 0;
2683 if (y < 0)
2684 y = 0;
2685 OUT_STR(tgoto((char *)T_CWP, y, x));
2686}
2687
2688 void
2689term_set_winsize(width, height)
2690 int width;
2691 int height;
2692{
2693 OUT_STR(tgoto((char *)T_CWS, height, width));
2694}
2695#endif
2696
2697 void
2698term_fg_color(n)
2699 int n;
2700{
2701 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2702 if (*T_CAF)
2703 term_color(T_CAF, n);
2704 else if (*T_CSF)
2705 term_color(T_CSF, n);
2706}
2707
2708 void
2709term_bg_color(n)
2710 int n;
2711{
2712 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2713 if (*T_CAB)
2714 term_color(T_CAB, n);
2715 else if (*T_CSB)
2716 term_color(T_CSB, n);
2717}
2718
2719 static void
2720term_color(s, n)
2721 char_u *s;
2722 int n;
2723{
2724 char buf[20];
2725 int i = 2; /* index in s[] just after <Esc>[ or CSI */
2726
2727 /* Special handling of 16 colors, because termcap can't handle it */
2728 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2729 /* Also accept CSI instead of <Esc>[ */
2730 if (n >= 8 && t_colors >= 16
2731 && ((s[0] == ESC && s[1] == '[') || (s[0] == CSI && (i = 1) == 1))
2732 && s[i] != NUL
2733 && (STRCMP(s + i + 1, "%p1%dm") == 0
2734 || STRCMP(s + i + 1, "%dm") == 0)
2735 && (s[i] == '3' || s[i] == '4'))
2736 {
2737 sprintf(buf,
2738#ifdef TERMINFO
2739 "%s%s%%p1%%dm",
2740#else
2741 "%s%s%%dm",
2742#endif
2743 i == 2 ? IF_EB("\033[", ESC_STR "[") : "\233",
2744 s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
2745 : (n >= 16 ? "48;5;" : "10"));
2746 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
2747 }
2748 else
2749 OUT_STR(tgoto((char *)s, 0, n));
2750}
2751
2752#if (defined(FEAT_TITLE) && (defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X))) || defined(PROTO)
2753/*
2754 * Generic function to set window title, using t_ts and t_fs.
2755 */
2756 void
2757term_settitle(title)
2758 char_u *title;
2759{
2760 /* t_ts takes one argument: column in status line */
2761 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */
2762 out_str_nf(title);
2763 out_str(T_FS); /* set title end */
2764 out_flush();
2765}
2766#endif
2767
2768/*
2769 * Make sure we have a valid set or terminal options.
2770 * Replace all entries that are NULL by empty_option
2771 */
2772 void
2773ttest(pairs)
2774 int pairs;
2775{
2776 check_options(); /* make sure no options are NULL */
2777
2778 /*
2779 * MUST have "cm": cursor motion.
2780 */
2781 if (*T_CM == NUL)
2782 EMSG(_("E437: terminal capability \"cm\" required"));
2783
2784 /*
2785 * if "cs" defined, use a scroll region, it's faster.
2786 */
2787 if (*T_CS != NUL)
2788 scroll_region = TRUE;
2789 else
2790 scroll_region = FALSE;
2791
2792 if (pairs)
2793 {
2794 /*
2795 * optional pairs
2796 */
2797 /* TP goes to normal mode for TI (invert) and TB (bold) */
2798 if (*T_ME == NUL)
2799 T_ME = T_MR = T_MD = T_MB = empty_option;
2800 if (*T_SO == NUL || *T_SE == NUL)
2801 T_SO = T_SE = empty_option;
2802 if (*T_US == NUL || *T_UE == NUL)
2803 T_US = T_UE = empty_option;
2804 if (*T_CZH == NUL || *T_CZR == NUL)
2805 T_CZH = T_CZR = empty_option;
2806
2807 /* T_VE is needed even though T_VI is not defined */
2808 if (*T_VE == NUL)
2809 T_VI = empty_option;
2810
2811 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2812 if (*T_ME == NUL)
2813 {
2814 T_ME = T_SE;
2815 T_MR = T_SO;
2816 T_MD = T_SO;
2817 }
2818
2819 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2820 if (*T_SO == NUL)
2821 {
2822 T_SE = T_ME;
2823 if (*T_MR == NUL)
2824 T_SO = T_MD;
2825 else
2826 T_SO = T_MR;
2827 }
2828
2829 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2830 if (*T_CZH == NUL)
2831 {
2832 T_CZR = T_ME;
2833 if (*T_MR == NUL)
2834 T_CZH = T_MD;
2835 else
2836 T_CZH = T_MR;
2837 }
2838
2839 /* "Sb" and "Sf" come in pairs */
2840 if (*T_CSB == NUL || *T_CSF == NUL)
2841 {
2842 T_CSB = empty_option;
2843 T_CSF = empty_option;
2844 }
2845
2846 /* "AB" and "AF" come in pairs */
2847 if (*T_CAB == NUL || *T_CAF == NUL)
2848 {
2849 T_CAB = empty_option;
2850 T_CAF = empty_option;
2851 }
2852
2853 /* if 'Sb' and 'AB' are not defined, reset "Co" */
2854 if (*T_CSB == NUL && *T_CAB == NUL)
Bram Moolenaar363cb672009-07-22 12:28:17 +00002855 free_one_termoption(T_CCO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856
2857 /* Set 'weirdinvert' according to value of 't_xs' */
2858 p_wiv = (*T_XS != NUL);
2859 }
2860 need_gather = TRUE;
2861
2862 /* Set t_colors to the value of t_Co. */
2863 t_colors = atoi((char *)T_CCO);
2864}
2865
2866#if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
2867 || defined(PROTO)
2868/*
2869 * Represent the given long_u as individual bytes, with the most significant
2870 * byte first, and store them in dst.
2871 */
2872 void
2873add_long_to_buf(val, dst)
2874 long_u val;
2875 char_u *dst;
2876{
2877 int i;
2878 int shift;
2879
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002880 for (i = 1; i <= (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 {
2882 shift = 8 * (sizeof(long_u) - i);
2883 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
2884 }
2885}
2886
2887static int get_long_from_buf __ARGS((char_u *buf, long_u *val));
2888
2889/*
2890 * Interpret the next string of bytes in buf as a long integer, with the most
2891 * significant byte first. Note that it is assumed that buf has been through
2892 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
2893 * Puts result in val, and returns the number of bytes read from buf
2894 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
2895 * were present.
2896 */
2897 static int
2898get_long_from_buf(buf, val)
2899 char_u *buf;
2900 long_u *val;
2901{
2902 int len;
2903 char_u bytes[sizeof(long_u)];
2904 int i;
2905 int shift;
2906
2907 *val = 0;
2908 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
2909 if (len != -1)
2910 {
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002911 for (i = 0; i < (int)sizeof(long_u); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 {
2913 shift = 8 * (sizeof(long_u) - 1 - i);
2914 *val += (long_u)bytes[i] << shift;
2915 }
2916 }
2917 return len;
2918}
2919#endif
2920
2921#if defined(FEAT_GUI) \
Bram Moolenaar864207d2008-06-24 22:14:38 +00002922 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
2923 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924/*
2925 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
2926 * that buf has been through inchar(). Returns the actual number of bytes used
2927 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
2928 * available.
2929 */
2930 static int
2931get_bytes_from_buf(buf, bytes, num_bytes)
2932 char_u *buf;
2933 char_u *bytes;
2934 int num_bytes;
2935{
2936 int len = 0;
2937 int i;
2938 char_u c;
2939
2940 for (i = 0; i < num_bytes; i++)
2941 {
2942 if ((c = buf[len++]) == NUL)
2943 return -1;
2944 if (c == K_SPECIAL)
2945 {
2946 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */
2947 return -1;
2948 if (buf[len++] == (int)KS_ZERO)
2949 c = NUL;
2950 ++len; /* skip KE_FILLER */
2951 /* else it should be KS_SPECIAL, and c already equals K_SPECIAL */
2952 }
Bram Moolenaar8d1ab512007-05-06 13:49:21 +00002953 else if (c == CSI && buf[len] == KS_EXTRA
2954 && buf[len + 1] == (int)KE_CSI)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002955 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
2956 * the start of a special key, see add_to_input_buf_csi(). */
2957 len += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 bytes[i] = c;
2959 }
2960 return len;
2961}
2962#endif
2963
2964/*
2965 * Check if the new shell size is valid, correct it if it's too small.
2966 */
2967 void
2968check_shellsize()
2969{
2970 if (Columns < MIN_COLUMNS)
2971 Columns = MIN_COLUMNS;
2972 if (Rows < min_rows()) /* need room for one window and command line */
2973 Rows = min_rows();
2974}
2975
Bram Moolenaar86b68352004-12-27 21:59:20 +00002976/*
2977 * Invoked just before the screen structures are going to be (re)allocated.
2978 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 void
2980win_new_shellsize()
2981{
2982 static int old_Rows = 0;
2983 static int old_Columns = 0;
2984
2985 if (old_Rows != Rows || old_Columns != Columns)
2986 ui_new_shellsize();
2987 if (old_Rows != Rows)
2988 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002989 /* if 'window' uses the whole screen, keep it using that */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002990 if (p_window == old_Rows - 1 || old_Rows == 0)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002991 p_window = Rows - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 old_Rows = Rows;
2993 shell_new_rows(); /* update window sizes */
2994 }
2995 if (old_Columns != Columns)
2996 {
2997 old_Columns = Columns;
2998#ifdef FEAT_VERTSPLIT
2999 shell_new_columns(); /* update window sizes */
3000#endif
3001 }
3002}
3003
3004/*
3005 * Call this function when the Vim shell has been resized in any way.
3006 * Will obtain the current size and redraw (also when size didn't change).
3007 */
3008 void
3009shell_resized()
3010{
3011 set_shellsize(0, 0, FALSE);
3012}
3013
3014/*
3015 * Check if the shell size changed. Handle a resize.
3016 * When the size didn't change, nothing happens.
3017 */
3018 void
3019shell_resized_check()
3020{
3021 int old_Rows = Rows;
3022 int old_Columns = Columns;
3023
Bram Moolenaar3633dc02012-08-29 16:26:04 +02003024 if (!exiting
3025#ifdef FEAT_GUI
3026 /* Do not get the size when executing a shell command during
3027 * startup. */
3028 && !gui.starting
3029#endif
3030 )
Bram Moolenaar99808352010-12-30 14:47:36 +01003031 {
3032 (void)ui_get_shellsize();
3033 check_shellsize();
3034 if (old_Rows != Rows || old_Columns != Columns)
3035 shell_resized();
3036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037}
3038
3039/*
3040 * Set size of the Vim shell.
3041 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3042 * window size (this is used for the :win command).
3043 * If 'mustset' is FALSE, we may try to get the real window size and if
3044 * it fails use 'width' and 'height'.
3045 */
3046 void
3047set_shellsize(width, height, mustset)
3048 int width, height;
3049 int mustset;
3050{
3051 static int busy = FALSE;
3052
3053 /*
3054 * Avoid recursiveness, can happen when setting the window size causes
3055 * another window-changed signal.
3056 */
3057 if (busy)
3058 return;
3059
3060 if (width < 0 || height < 0) /* just checking... */
3061 return;
3062
Bram Moolenaara971b822011-09-14 14:43:25 +02003063 if (State == HITRETURN || State == SETWSIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 {
Bram Moolenaara971b822011-09-14 14:43:25 +02003065 /* postpone the resizing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 State = SETWSIZE;
3067 return;
3068 }
3069
Bram Moolenaara971b822011-09-14 14:43:25 +02003070 /* curwin->w_buffer can be NULL when we are closing a window and the
3071 * buffer has already been closed and removing a scrollbar causes a resize
3072 * event. Don't resize then, it will happen after entering another buffer.
3073 */
3074 if (curwin->w_buffer == NULL)
3075 return;
3076
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 ++busy;
3078
3079#ifdef AMIGA
3080 out_flush(); /* must do this before mch_get_shellsize() for
3081 some obscure reason */
3082#endif
3083
3084 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3085 {
3086 Rows = height;
3087 Columns = width;
3088 check_shellsize();
3089 ui_set_shellsize(mustset);
3090 }
3091 else
3092 check_shellsize();
3093
3094 /* The window layout used to be adjusted here, but it now happens in
3095 * screenalloc() (also invoked from screenclear()). That is because the
3096 * "busy" check above may skip this, but not screenalloc(). */
3097
3098 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3099 screenclear();
3100 else
3101 screen_start(); /* don't know where cursor is now */
3102
3103 if (starting != NO_SCREEN)
3104 {
3105#ifdef FEAT_TITLE
3106 maketitle();
3107#endif
3108 changed_line_abv_curs();
3109 invalidate_botline();
3110
3111 /*
3112 * We only redraw when it's needed:
3113 * - While at the more prompt or executing an external command, don't
3114 * redraw, but position the cursor.
3115 * - While editing the command line, only redraw that.
3116 * - in Ex mode, don't redraw anything.
3117 * - Otherwise, redraw right now, and position the cursor.
3118 * Always need to call update_screen() or screenalloc(), to make
3119 * sure Rows/Columns and the size of ScreenLines[] is correct!
3120 */
3121 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3122 || exmode_active)
3123 {
3124 screenalloc(FALSE);
3125 repeat_message();
3126 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 else
3128 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003129#ifdef FEAT_SCROLLBIND
3130 if (curwin->w_p_scb)
3131 do_check_scrollbind(TRUE);
3132#endif
3133 if (State & CMDLINE)
Bram Moolenaar280f1262006-01-30 00:14:18 +00003134 {
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003135 update_screen(NOT_VALID);
3136 redrawcmdline();
Bram Moolenaar280f1262006-01-30 00:14:18 +00003137 }
3138 else
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003139 {
3140 update_topline();
3141#if defined(FEAT_INS_EXPAND)
3142 if (pum_visible())
3143 {
3144 redraw_later(NOT_VALID);
3145 ins_compl_show_pum(); /* This includes the redraw. */
3146 }
3147 else
Bram Moolenaar280f1262006-01-30 00:14:18 +00003148#endif
Bram Moolenaar09ef47a2006-10-24 19:36:02 +00003149 update_screen(NOT_VALID);
3150 if (redrawing())
3151 setcursor();
3152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 }
3154 cursor_on(); /* redrawing may have switched it off */
3155 }
3156 out_flush();
3157 --busy;
3158}
3159
3160/*
3161 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3162 * commands and Ex mode).
3163 */
3164 void
3165settmode(tmode)
3166 int tmode;
3167{
3168#ifdef FEAT_GUI
3169 /* don't set the term where gvim was started to any mode */
3170 if (gui.in_use)
3171 return;
3172#endif
3173
3174 if (full_screen)
3175 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 /*
3177 * When returning after calling a shell we want to really set the
3178 * terminal to raw mode, even though we think it already is, because
3179 * the shell program may have reset the terminal mode.
3180 * When we think the terminal is normal, don't try to set it to
3181 * normal again, because that causes problems (logout!) on some
3182 * machines.
3183 */
3184 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3185 {
3186#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003187# ifdef FEAT_GUI
3188 if (!gui.in_use && !gui.starting)
3189# endif
3190 {
3191 /* May need to check for T_CRV response and termcodes, it
3192 * doesn't work in Cooked mode, an external program may get
3193 * them. */
Bram Moolenaar9584b312013-03-13 19:29:28 +01003194 if (tmode != TMODE_RAW && (crv_status == CRV_SENT
3195 || u7_status == U7_SENT))
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003196 (void)vpeekc_nomap();
3197 check_for_codes_from_term();
3198 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199#endif
3200#ifdef FEAT_MOUSE_TTY
3201 if (tmode != TMODE_RAW)
3202 mch_setmouse(FALSE); /* switch mouse off */
3203#endif
3204 out_flush();
3205 mch_settmode(tmode); /* machine specific function */
3206 cur_tmode = tmode;
3207#ifdef FEAT_MOUSE
3208 if (tmode == TMODE_RAW)
3209 setmouse(); /* may switch mouse on */
3210#endif
3211 out_flush();
3212 }
3213#ifdef FEAT_TERMRESPONSE
3214 may_req_termresponse();
3215#endif
3216 }
3217}
3218
3219 void
3220starttermcap()
3221{
3222 if (full_screen && !termcap_active)
3223 {
3224 out_str(T_TI); /* start termcap mode */
3225 out_str(T_KS); /* start "keypad transmit" mode */
3226 out_flush();
3227 termcap_active = TRUE;
3228 screen_start(); /* don't know where cursor is now */
3229#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003230# ifdef FEAT_GUI
3231 if (!gui.in_use && !gui.starting)
3232# endif
3233 {
3234 may_req_termresponse();
3235 /* Immediately check for a response. If t_Co changes, we don't
3236 * want to redraw with wrong colors first. */
3237 if (crv_status != CRV_GET)
3238 check_for_codes_from_term();
3239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240#endif
3241 }
3242}
3243
3244 void
3245stoptermcap()
3246{
3247 screen_stop_highlight();
3248 reset_cterm_colors();
3249 if (termcap_active)
3250 {
3251#ifdef FEAT_TERMRESPONSE
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003252# ifdef FEAT_GUI
3253 if (!gui.in_use && !gui.starting)
3254# endif
3255 {
3256 /* May need to check for T_CRV response. */
Bram Moolenaar9584b312013-03-13 19:29:28 +01003257 if (crv_status == CRV_SENT || u7_status == U7_SENT)
Bram Moolenaar2bf6a2d2008-07-29 10:22:12 +00003258 (void)vpeekc_nomap();
3259 /* Check for termcodes first, otherwise an external program may
3260 * get them. */
3261 check_for_codes_from_term();
3262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263#endif
3264 out_str(T_KE); /* stop "keypad transmit" mode */
3265 out_flush();
3266 termcap_active = FALSE;
3267 cursor_on(); /* just in case it is still off */
3268 out_str(T_TE); /* stop termcap mode */
3269 screen_start(); /* don't know where cursor is now */
3270 out_flush();
3271 }
3272}
3273
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003274#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275/*
3276 * Request version string (for xterm) when needed.
3277 * Only do this after switching to raw mode, otherwise the result will be
3278 * echoed.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003279 * Only do this after startup has finished, to avoid that the response comes
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00003280 * while executing "-c !cmd" or even after "-c quit".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 * Only do this after termcap mode has been started, otherwise the codes for
3282 * the cursor keys may be wrong.
Bram Moolenaarebefac62005-12-28 22:39:57 +00003283 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3284 * Insert mode.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003285 * On Unix only do it when both output and input are a tty (avoid writing
3286 * request to terminal while reading from a file).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 * The result is caught in check_termcode().
3288 */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003289 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290may_req_termresponse()
3291{
3292 if (crv_status == CRV_GET
3293 && cur_tmode == TMODE_RAW
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003294 && starting == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 && termcap_active
Bram Moolenaarebefac62005-12-28 22:39:57 +00003296 && p_ek
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003297# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 && isatty(1)
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003299 && isatty(read_cmd_fd)
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003300# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 && *T_CRV != NUL)
3302 {
3303 out_str(T_CRV);
3304 crv_status = CRV_SENT;
3305 /* check for the characters now, otherwise they might be eaten by
3306 * get_keystroke() */
3307 out_flush();
3308 (void)vpeekc_nomap();
3309 }
3310}
Bram Moolenaar9584b312013-03-13 19:29:28 +01003311
3312# if defined(FEAT_MBYTE) || defined(PROTO)
3313/*
3314 * Check how the terminal treats ambiguous character width (UAX #11).
3315 * First, we move the cursor to (0, 0) and print a test ambiguous character
3316 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position.
3317 * If the terminal treats \u25bd as single width, the position is (0, 1),
3318 * or if it is treated as double width, that will be (0, 2).
3319 * This function has the side effect that changes cursor position, so
3320 * it must be called immediately after entering termcap mode.
3321 */
3322 void
3323may_req_ambiguous_character_width()
3324{
3325 if (u7_status == U7_GET
3326 && cur_tmode == TMODE_RAW
3327 && termcap_active
3328 && p_ek
3329# ifdef UNIX
3330 && isatty(1)
3331 && isatty(read_cmd_fd)
3332# endif
3333 && *T_U7 != NUL
3334 && !option_was_set((char_u *)"ambiwidth"))
3335 {
3336 char_u buf[16];
3337
3338 term_windgoto(0, 0);
3339 buf[mb_char2bytes(0x25bd, buf)] = 0;
3340 out_str(buf);
3341 out_str(T_U7);
3342 u7_status = U7_SENT;
3343 term_windgoto(0, 0);
3344 out_str((char_u *)" ");
3345 term_windgoto(0, 0);
3346 /* check for the characters now, otherwise they might be eaten by
3347 * get_keystroke() */
3348 out_flush();
3349 (void)vpeekc_nomap();
3350 }
3351}
3352# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353#endif
3354
3355/*
3356 * Return TRUE when saving and restoring the screen.
3357 */
3358 int
3359swapping_screen()
3360{
3361 return (full_screen && *T_TI != NUL);
3362}
3363
3364#ifdef FEAT_MOUSE
3365/*
3366 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3367 */
3368 void
3369setmouse()
3370{
3371# ifdef FEAT_MOUSE_TTY
3372 int checkfor;
3373# endif
3374
3375# ifdef FEAT_MOUSESHAPE
3376 update_mouseshape(-1);
3377# endif
3378
3379# ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3380# ifdef FEAT_GUI
3381 /* In the GUI the mouse is always enabled. */
3382 if (gui.in_use)
3383 return;
3384# endif
3385 /* be quick when mouse is off */
3386 if (*p_mouse == NUL || has_mouse_termcode == 0)
3387 return;
3388
3389 /* don't switch mouse on when not in raw mode (Ex mode) */
3390 if (cur_tmode != TMODE_RAW)
3391 {
3392 mch_setmouse(FALSE);
3393 return;
3394 }
3395
3396# ifdef FEAT_VISUAL
3397 if (VIsual_active)
3398 checkfor = MOUSE_VISUAL;
3399 else
3400# endif
3401 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
3402 checkfor = MOUSE_RETURN;
3403 else if (State & INSERT)
3404 checkfor = MOUSE_INSERT;
3405 else if (State & CMDLINE)
3406 checkfor = MOUSE_COMMAND;
3407 else if (State == CONFIRM || State == EXTERNCMD)
3408 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3409 else
3410 checkfor = MOUSE_NORMAL; /* assume normal mode */
3411
3412 if (mouse_has(checkfor))
3413 mch_setmouse(TRUE);
3414 else
3415 mch_setmouse(FALSE);
3416# endif
3417}
3418
3419/*
3420 * Return TRUE if
3421 * - "c" is in 'mouse', or
3422 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3423 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3424 * normal editing mode (not at hit-return message).
3425 */
3426 int
3427mouse_has(c)
3428 int c;
3429{
3430 char_u *p;
3431
3432 for (p = p_mouse; *p; ++p)
3433 switch (*p)
3434 {
3435 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
3436 return TRUE;
3437 break;
3438 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
3439 return TRUE;
3440 break;
3441 default: if (c == *p) return TRUE; break;
3442 }
3443 return FALSE;
3444}
3445
3446/*
3447 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3448 */
3449 int
3450mouse_model_popup()
3451{
3452 return (p_mousem[0] == 'p');
3453}
3454#endif
3455
3456/*
3457 * By outputting the 'cursor very visible' termcap code, for some windowed
3458 * terminals this makes the screen scrolled to the correct position.
3459 * Used when starting Vim or returning from a shell.
3460 */
3461 void
3462scroll_start()
3463{
3464 if (*T_VS != NUL)
3465 {
3466 out_str(T_VS);
3467 out_str(T_VE);
3468 screen_start(); /* don't know where cursor is now */
3469 }
3470}
3471
3472static int cursor_is_off = FALSE;
3473
3474/*
3475 * Enable the cursor.
3476 */
3477 void
3478cursor_on()
3479{
3480 if (cursor_is_off)
3481 {
3482 out_str(T_VE);
3483 cursor_is_off = FALSE;
3484 }
3485}
3486
3487/*
3488 * Disable the cursor.
3489 */
3490 void
3491cursor_off()
3492{
3493 if (full_screen)
3494 {
3495 if (!cursor_is_off)
3496 out_str(T_VI); /* disable cursor */
3497 cursor_is_off = TRUE;
3498 }
3499}
3500
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003501#if defined(CURSOR_SHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502/*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003503 * Set cursor shape to match Insert mode.
3504 */
3505 void
3506term_cursor_shape()
3507{
3508 static int showing_insert_mode = MAYBE;
3509
3510 if (!full_screen || *T_CSI == NUL || *T_CEI == NUL)
3511 return;
3512
3513 if (State & INSERT)
3514 {
3515 if (showing_insert_mode != TRUE)
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003516 out_str(T_CSI); /* Insert mode cursor */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003517 showing_insert_mode = TRUE;
3518 }
3519 else
3520 {
3521 if (showing_insert_mode != FALSE)
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003522 out_str(T_CEI); /* non-Insert mode cursor */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003523 showing_insert_mode = FALSE;
3524 }
3525}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003526#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003527
3528/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 * Set scrolling region for window 'wp'.
3530 * The region starts 'off' lines from the start of the window.
3531 * Also set the vertical scroll region for a vertically split window. Always
3532 * the full width of the window, excluding the vertical separator.
3533 */
3534 void
3535scroll_region_set(wp, off)
3536 win_T *wp;
3537 int off;
3538{
3539 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3540 W_WINROW(wp) + off));
3541#ifdef FEAT_VERTSPLIT
3542 if (*T_CSV != NUL && wp->w_width != Columns)
3543 OUT_STR(tgoto((char *)T_CSV, W_WINCOL(wp) + wp->w_width - 1,
3544 W_WINCOL(wp)));
3545#endif
3546 screen_start(); /* don't know where cursor is now */
3547}
3548
3549/*
3550 * Reset scrolling region to the whole screen.
3551 */
3552 void
3553scroll_region_reset()
3554{
3555 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
3556#ifdef FEAT_VERTSPLIT
3557 if (*T_CSV != NUL)
3558 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
3559#endif
3560 screen_start(); /* don't know where cursor is now */
3561}
3562
3563
3564/*
3565 * List of terminal codes that are currently recognized.
3566 */
3567
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003568static struct termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569{
3570 char_u name[2]; /* termcap name of entry */
3571 char_u *code; /* terminal code (in allocated memory) */
3572 int len; /* STRLEN(code) */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003573 int modlen; /* length of part before ";*~". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574} *termcodes = NULL;
3575
3576static int tc_max_len = 0; /* number of entries that termcodes[] can hold */
3577static int tc_len = 0; /* current number of entries in termcodes[] */
3578
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003579static int termcode_star __ARGS((char_u *code, int len));
3580
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 void
3582clear_termcodes()
3583{
3584 while (tc_len > 0)
3585 vim_free(termcodes[--tc_len].code);
3586 vim_free(termcodes);
3587 termcodes = NULL;
3588 tc_max_len = 0;
3589
3590#ifdef HAVE_TGETENT
3591 BC = (char *)empty_option;
3592 UP = (char *)empty_option;
3593 PC = NUL; /* set pad character to NUL */
3594 ospeed = 0;
3595#endif
3596
3597 need_gather = TRUE; /* need to fill termleader[] */
3598}
3599
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003600#define ATC_FROM_TERM 55
3601
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602/*
3603 * Add a new entry to the list of terminal codes.
3604 * The list is kept alphabetical for ":set termcap"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003605 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3606 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 */
3608 void
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003609add_termcode(name, string, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 char_u *name;
3611 char_u *string;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003612 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613{
3614 struct termcode *new_tc;
3615 int i, j;
3616 char_u *s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003617 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618
3619 if (string == NULL || *string == NUL)
3620 {
3621 del_termcode(name);
3622 return;
3623 }
3624
3625 s = vim_strsave(string);
3626 if (s == NULL)
3627 return;
3628
3629 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003630 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003632 STRMOVE(s, s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 s[0] = term_7to8bit(string);
3634 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003635 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636
3637 need_gather = TRUE; /* need to fill termleader[] */
3638
3639 /*
3640 * need to make space for more entries
3641 */
3642 if (tc_len == tc_max_len)
3643 {
3644 tc_max_len += 20;
3645 new_tc = (struct termcode *)alloc(
3646 (unsigned)(tc_max_len * sizeof(struct termcode)));
3647 if (new_tc == NULL)
3648 {
3649 tc_max_len -= 20;
3650 return;
3651 }
3652 for (i = 0; i < tc_len; ++i)
3653 new_tc[i] = termcodes[i];
3654 vim_free(termcodes);
3655 termcodes = new_tc;
3656 }
3657
3658 /*
3659 * Look for existing entry with the same name, it is replaced.
3660 * Look for an existing entry that is alphabetical higher, the new entry
3661 * is inserted in front of it.
3662 */
3663 for (i = 0; i < tc_len; ++i)
3664 {
3665 if (termcodes[i].name[0] < name[0])
3666 continue;
3667 if (termcodes[i].name[0] == name[0])
3668 {
3669 if (termcodes[i].name[1] < name[1])
3670 continue;
3671 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003672 * Exact match: May replace old code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 */
3674 if (termcodes[i].name[1] == name[1])
3675 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003676 if (flags == ATC_FROM_TERM && (j = termcode_star(
3677 termcodes[i].code, termcodes[i].len)) > 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003678 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003679 /* Don't replace ESC[123;*X or ESC O*X with another when
3680 * invoked from got_code_from_term(). */
3681 if (len == termcodes[i].len - j
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003682 && STRNCMP(s, termcodes[i].code, len - 1) == 0
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003683 && s[len - 1]
3684 == termcodes[i].code[termcodes[i].len - 1])
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003685 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003686 /* They are equal but for the ";*": don't add it. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003687 vim_free(s);
3688 return;
3689 }
3690 }
3691 else
3692 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003693 /* Replace old code. */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003694 vim_free(termcodes[i].code);
3695 --tc_len;
3696 break;
3697 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 }
3699 }
3700 /*
3701 * Found alphabetical larger entry, move rest to insert new entry
3702 */
3703 for (j = tc_len; j > i; --j)
3704 termcodes[j] = termcodes[j - 1];
3705 break;
3706 }
3707
3708 termcodes[i].name[0] = name[0];
3709 termcodes[i].name[1] = name[1];
3710 termcodes[i].code = s;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003711 termcodes[i].len = len;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003712
3713 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
3714 * accept modifiers. */
3715 termcodes[i].modlen = 0;
3716 j = termcode_star(s, len);
3717 if (j > 0)
3718 termcodes[i].modlen = len - 1 - j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 ++tc_len;
3720}
3721
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003722/*
3723 * Check termcode "code[len]" for ending in ;*X, <Esc>O*X or <M-O>*X.
3724 * The "X" can be any character.
3725 * Return 0 if not found, 2 for ;*X and 1 for O*X and <M-O>*X.
3726 */
3727 static int
3728termcode_star(code, len)
3729 char_u *code;
3730 int len;
3731{
3732 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
3733 if (len >= 3 && code[len - 2] == '*')
3734 {
3735 if (len >= 5 && code[len - 3] == ';')
3736 return 2;
3737 if ((len >= 4 && code[len - 3] == 'O') || code[len - 3] == 'O' + 128)
3738 return 1;
3739 }
3740 return 0;
3741}
3742
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 char_u *
3744find_termcode(name)
3745 char_u *name;
3746{
3747 int i;
3748
3749 for (i = 0; i < tc_len; ++i)
3750 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3751 return termcodes[i].code;
3752 return NULL;
3753}
3754
3755#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3756 char_u *
3757get_termcode(i)
3758 int i;
3759{
3760 if (i >= tc_len)
3761 return NULL;
3762 return &termcodes[i].name[0];
3763}
3764#endif
3765
3766 void
3767del_termcode(name)
3768 char_u *name;
3769{
3770 int i;
3771
3772 if (termcodes == NULL) /* nothing there yet */
3773 return;
3774
3775 need_gather = TRUE; /* need to fill termleader[] */
3776
3777 for (i = 0; i < tc_len; ++i)
3778 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3779 {
3780 del_termcode_idx(i);
3781 return;
3782 }
3783 /* not found. Give error message? */
3784}
3785
3786 static void
3787del_termcode_idx(idx)
3788 int idx;
3789{
3790 int i;
3791
3792 vim_free(termcodes[idx].code);
3793 --tc_len;
3794 for (i = idx; i < tc_len; ++i)
3795 termcodes[i] = termcodes[i + 1];
3796}
3797
3798#ifdef FEAT_TERMRESPONSE
3799/*
3800 * Called when detected that the terminal sends 8-bit codes.
3801 * Convert all 7-bit codes to their 8-bit equivalent.
3802 */
3803 static void
3804switch_to_8bit()
3805{
3806 int i;
3807 int c;
3808
3809 /* Only need to do something when not already using 8-bit codes. */
3810 if (!term_is_8bit(T_NAME))
3811 {
3812 for (i = 0; i < tc_len; ++i)
3813 {
3814 c = term_7to8bit(termcodes[i].code);
3815 if (c != 0)
3816 {
Bram Moolenaar864207d2008-06-24 22:14:38 +00003817 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 termcodes[i].code[0] = c;
3819 }
3820 }
3821 need_gather = TRUE; /* need to fill termleader[] */
3822 }
3823 detected_8bit = TRUE;
3824}
3825#endif
3826
3827#ifdef CHECK_DOUBLE_CLICK
3828static linenr_T orig_topline = 0;
3829# ifdef FEAT_DIFF
3830static int orig_topfill = 0;
3831# endif
3832#endif
3833#if (defined(FEAT_WINDOWS) && defined(CHECK_DOUBLE_CLICK)) || defined(PROTO)
3834/*
3835 * Checking for double clicks ourselves.
3836 * "orig_topline" is used to avoid detecting a double-click when the window
3837 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3838 */
3839/*
3840 * Set orig_topline. Used when jumping to another window, so that a double
3841 * click still works.
3842 */
3843 void
3844set_mouse_topline(wp)
3845 win_T *wp;
3846{
3847 orig_topline = wp->w_topline;
3848# ifdef FEAT_DIFF
3849 orig_topfill = wp->w_topfill;
3850# endif
3851}
3852#endif
3853
3854/*
3855 * Check if typebuf.tb_buf[] contains a terminal key code.
3856 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
3857 * + max_offset].
3858 * Return 0 for no match, -1 for partial match, > 0 for full match.
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003859 * Return KEYLEN_REMOVED when a key code was deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 * With a match, the match is removed, the replacement code is inserted in
3861 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
3862 * returned.
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003863 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
3864 * "buflen" is then the length of the string in buf[] and is updated for
3865 * inserts and deletes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 */
3867 int
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003868check_termcode(max_offset, buf, bufsize, buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 int max_offset;
3870 char_u *buf;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003871 int bufsize;
3872 int *buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873{
3874 char_u *tp;
3875 char_u *p;
3876 int slen = 0; /* init for GCC */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003877 int modslen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 int len;
Bram Moolenaar946ffd42010-12-30 12:30:31 +01003879 int retval = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 int offset;
3881 char_u key_name[2];
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003882 int modifiers;
3883 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 int new_slen;
3885 int extra;
3886 char_u string[MAX_KEY_CODE_LEN + 1];
3887 int i, j;
3888 int idx = 0;
3889#ifdef FEAT_MOUSE
Bram Moolenaar864207d2008-06-24 22:14:38 +00003890# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
3891 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 char_u bytes[6];
3893 int num_bytes;
3894# endif
3895 int mouse_code = 0; /* init for GCC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 int is_click, is_drag;
3897 int wheel_code = 0;
3898 int current_button;
3899 static int held_button = MOUSE_RELEASE;
3900 static int orig_num_clicks = 1;
3901 static int orig_mouse_code = 0x0;
3902# ifdef CHECK_DOUBLE_CLICK
3903 static int orig_mouse_col = 0;
3904 static int orig_mouse_row = 0;
3905 static struct timeval orig_mouse_time = {0, 0};
3906 /* time of previous mouse click */
3907 struct timeval mouse_time; /* time of current mouse click */
3908 long timediff; /* elapsed time in msec */
3909# endif
3910#endif
3911 int cpo_koffset;
3912#ifdef FEAT_MOUSE_GPM
3913 extern int gpm_flag; /* gpm library variable */
3914#endif
3915
3916 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
3917
3918 /*
3919 * Speed up the checks for terminal codes by gathering all first bytes
3920 * used in termleader[]. Often this is just a single <Esc>.
3921 */
3922 if (need_gather)
3923 gather_termleader();
3924
3925 /*
3926 * Check at several positions in typebuf.tb_buf[], to catch something like
3927 * "x<Up>" that can be mapped. Stop at max_offset, because characters
3928 * after that cannot be used for mapping, and with @r commands
3929 * typebuf.tb_buf[]
3930 * can become very long.
3931 * This is used often, KEEP IT FAST!
3932 */
3933 for (offset = 0; offset < max_offset; ++offset)
3934 {
3935 if (buf == NULL)
3936 {
3937 if (offset >= typebuf.tb_len)
3938 break;
3939 tp = typebuf.tb_buf + typebuf.tb_off + offset;
3940 len = typebuf.tb_len - offset; /* length of the input */
3941 }
3942 else
3943 {
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003944 if (offset >= *buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 break;
3946 tp = buf + offset;
Bram Moolenaara8c8a682012-02-05 22:05:48 +01003947 len = *buflen - offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 }
3949
3950 /*
3951 * Don't check characters after K_SPECIAL, those are already
3952 * translated terminal chars (avoid translating ~@^Hx).
3953 */
3954 if (*tp == K_SPECIAL)
3955 {
3956 offset += 2; /* there are always 2 extra characters */
3957 continue;
3958 }
3959
3960 /*
3961 * Skip this position if the character does not appear as the first
3962 * character in term_strings. This speeds up a lot, since most
3963 * termcodes start with the same character (ESC or CSI).
3964 */
3965 i = *tp;
3966 for (p = termleader; *p && *p != i; ++p)
3967 ;
3968 if (*p == NUL)
3969 continue;
3970
3971 /*
3972 * Skip this position if p_ek is not set and tp[0] is an ESC and we
3973 * are in Insert mode.
3974 */
3975 if (*tp == ESC && !p_ek && (State & INSERT))
3976 continue;
3977
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 key_name[0] = NUL; /* no key name found yet */
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003979 key_name[1] = NUL; /* no key name found yet */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003980 modifiers = 0; /* no modifiers yet */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981
3982#ifdef FEAT_GUI
3983 if (gui.in_use)
3984 {
3985 /*
3986 * GUI special key codes are all of the form [CSI xx].
3987 */
3988 if (*tp == CSI) /* Special key from GUI */
3989 {
3990 if (len < 3)
3991 return -1; /* Shouldn't happen */
3992 slen = 3;
3993 key_name[0] = tp[1];
3994 key_name[1] = tp[2];
3995 }
3996 }
3997 else
3998#endif /* FEAT_GUI */
3999 {
4000 for (idx = 0; idx < tc_len; ++idx)
4001 {
4002 /*
4003 * Ignore the entry if we are not at the start of
4004 * typebuf.tb_buf[]
4005 * and there are not enough characters to make a match.
4006 * But only when the 'K' flag is in 'cpoptions'.
4007 */
4008 slen = termcodes[idx].len;
4009 if (cpo_koffset && offset && len < slen)
4010 continue;
4011 if (STRNCMP(termcodes[idx].code, tp,
4012 (size_t)(slen > len ? len : slen)) == 0)
4013 {
4014 if (len < slen) /* got a partial sequence */
4015 return -1; /* need to get more chars */
4016
4017 /*
4018 * When found a keypad key, check if there is another key
4019 * that matches and use that one. This makes <Home> to be
4020 * found instead of <kHome> when they produce the same
4021 * key code.
4022 */
4023 if (termcodes[idx].name[0] == 'K'
4024 && VIM_ISDIGIT(termcodes[idx].name[1]))
4025 {
4026 for (j = idx + 1; j < tc_len; ++j)
4027 if (termcodes[j].len == slen &&
4028 STRNCMP(termcodes[idx].code,
4029 termcodes[j].code, slen) == 0)
4030 {
4031 idx = j;
4032 break;
4033 }
4034 }
4035
4036 key_name[0] = termcodes[idx].name[0];
4037 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 break;
4039 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004040
4041 /*
4042 * Check for code with modifier, like xterm uses:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004043 * <Esc>[123;*X (modslen == slen - 3)
4044 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4045 * When there is a modifier the * matches a number.
4046 * When there is no modifier the ;* or * is omitted.
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004047 */
4048 if (termcodes[idx].modlen > 0)
4049 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004050 modslen = termcodes[idx].modlen;
4051 if (cpo_koffset && offset && len < modslen)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004052 continue;
4053 if (STRNCMP(termcodes[idx].code, tp,
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004054 (size_t)(modslen > len ? len : modslen)) == 0)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004055 {
4056 int n;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004057
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004058 if (len <= modslen) /* got a partial sequence */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004059 return -1; /* need to get more chars */
4060
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004061 if (tp[modslen] == termcodes[idx].code[slen - 1])
4062 slen = modslen + 1; /* no modifiers */
4063 else if (tp[modslen] != ';' && modslen == slen - 3)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004064 continue; /* no match */
4065 else
4066 {
4067 /* Skip over the digits, the final char must
4068 * follow. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004069 for (j = slen - 2; j < len && isdigit(tp[j]); ++j)
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004070 ;
4071 ++j;
4072 if (len < j) /* got a partial sequence */
4073 return -1; /* need to get more chars */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004074 if (tp[j - 1] != termcodes[idx].code[slen - 1])
4075 continue; /* no match */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004076
4077 /* Match! Convert modifier bits. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004078 n = atoi((char *)tp + slen - 2) - 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004079 if (n & 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004080 modifiers |= MOD_MASK_SHIFT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004081 if (n & 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004082 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004083 if (n & 4)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004084 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004085 if (n & 8)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004086 modifiers |= MOD_MASK_META;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004087
4088 slen = j;
4089 }
4090 key_name[0] = termcodes[idx].name[0];
4091 key_name[1] = termcodes[idx].name[1];
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004092 break;
4093 }
4094 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 }
4096 }
4097
4098#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004099 if (key_name[0] == NUL
4100 /* URXVT mouse uses <ESC>[#;#;#M, but we are matching <ESC>[ */
Bram Moolenaarbe9c6272013-02-13 15:53:19 +01004101 || key_name[0] == KS_URXVT_MOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 {
Bram Moolenaar9584b312013-03-13 19:29:28 +01004103 /* Check for some responses from terminal start with "<Esc>[" or
4104 * CSI.
4105 *
4106 * - xterm version string: <Esc>[>{x};{vers};{y}c
4107 * Also eat other possible responses to t_RV, rxvt returns
4108 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4109 * mrxvt has been reported to have "+" in the version. Assume
4110 * the escape sequence ends with a letter or one of "{|}~".
4111 *
4112 * - cursor position report: <Esc>[{row};{col}R
4113 * The final byte is 'R'. now it is only used for checking for
4114 * ambiguous-width character state.
4115 */
4116 if ((*T_CRV != NUL || *T_U7 != NUL)
4117 && ((tp[0] == ESC && tp[1] == '[' && len >= 3)
4118 || (tp[0] == CSI && len >= 2)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 {
4120 j = 0;
4121 extra = 0;
Bram Moolenaarc9dd5bc2008-02-27 15:14:04 +00004122 for (i = 2 + (tp[0] != CSI); i < len
4123 && !(tp[i] >= '{' && tp[i] <= '~')
4124 && !ASCII_ISALPHA(tp[i]); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 if (tp[i] == ';' && ++j == 1)
4126 extra = atoi((char *)tp + i + 1);
4127 if (i == len)
4128 return -1; /* not enough characters */
4129
Bram Moolenaar9584b312013-03-13 19:29:28 +01004130#ifdef FEAT_MBYTE
4131 /* eat it when it has 2 arguments and ends in 'R' */
4132 if (u7_status == U7_SENT && j == 1 && tp[i] == 'R')
4133 {
4134 char *p = NULL;
4135
4136 u7_status = U7_GOT;
4137 if (extra == 2)
4138 p = "single";
4139 else if (extra == 3)
4140 p = "double";
4141 if (p != NULL)
4142 set_option_value((char_u *)"ambw", 0L, (char_u *)p, 0);
4143 key_name[0] = (int)KS_EXTRA;
4144 key_name[1] = (int)KE_IGNORE;
4145 slen = i + 1;
4146 }
4147 else
4148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 /* eat it when at least one digit and ending in 'c' */
Bram Moolenaar9584b312013-03-13 19:29:28 +01004150 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 {
4152 crv_status = CRV_GOT;
4153
4154 /* If this code starts with CSI, you can bet that the
4155 * terminal uses 8-bit codes. */
4156 if (tp[0] == CSI)
4157 switch_to_8bit();
4158
4159 /* rxvt sends its version number: "20703" is 2.7.3.
4160 * Ignore it for when the user has set 'term' to xterm,
4161 * even though it's an rxvt. */
4162 if (extra > 20000)
4163 extra = 0;
4164
4165 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2)
4166 {
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004167 /* Only set 'ttymouse' automatically if it was not set
4168 * by the user already. */
4169 if (!option_was_set((char_u *)"ttym"))
4170 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004171# ifdef TTYM_SGR
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004172 if (extra >= 277)
4173 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004174 (char_u *)"sgr", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004175 else
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004176# endif
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004177 /* if xterm version >= 95 use mouse dragging */
4178 if (extra >= 95)
4179 set_option_value((char_u *)"ttym", 0L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 (char_u *)"xterm2", 0);
Bram Moolenaarbffa06d2012-10-21 02:10:24 +02004181 }
4182
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 /* if xterm version >= 141 try to get termcap codes */
4184 if (extra >= 141)
4185 {
4186 check_for_codes = TRUE;
4187 need_gather = TRUE;
4188 req_codes_from_term();
4189 }
4190 }
4191# ifdef FEAT_EVAL
4192 set_vim_var_string(VV_TERMRESPONSE, tp, i + 1);
4193# endif
4194# ifdef FEAT_AUTOCMD
4195 apply_autocmds(EVENT_TERMRESPONSE,
4196 NULL, NULL, FALSE, curbuf);
4197# endif
4198 key_name[0] = (int)KS_EXTRA;
4199 key_name[1] = (int)KE_IGNORE;
4200 slen = i + 1;
4201 }
4202 }
4203
4204 /* Check for '<Esc>P1+r<hex bytes><Esc>\'. A "0" instead of the
4205 * "1" means an invalid request. */
4206 else if (check_for_codes
4207 && ((tp[0] == ESC && tp[1] == 'P' && len >= 2)
4208 || tp[0] == DCS))
4209 {
4210 j = 1 + (tp[0] != DCS);
4211 for (i = j; i < len; ++i)
4212 if ((tp[i] == ESC && tp[i + 1] == '\\' && i + 1 < len)
4213 || tp[i] == STERM)
4214 {
4215 if (i - j >= 3 && tp[j + 1] == '+' && tp[j + 2] == 'r')
4216 got_code_from_term(tp + j, i);
4217 key_name[0] = (int)KS_EXTRA;
4218 key_name[1] = (int)KE_IGNORE;
4219 slen = i + 1 + (tp[i] == ESC);
4220 break;
4221 }
4222
4223 if (i == len)
4224 return -1; /* not enough characters */
4225 }
4226 }
4227#endif
4228
4229 if (key_name[0] == NUL)
4230 continue; /* No match at this position, try next one */
4231
4232 /* We only get here when we have a complete termcode match */
4233
4234#ifdef FEAT_MOUSE
4235# ifdef FEAT_GUI
4236 /*
4237 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4238 * so that we know which window to scroll later.
4239 */
4240 if (gui.in_use
4241 && key_name[0] == (int)KS_EXTRA
4242 && (key_name[1] == (int)KE_X1MOUSE
4243 || key_name[1] == (int)KE_X2MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004244 || key_name[1] == (int)KE_MOUSELEFT
4245 || key_name[1] == (int)KE_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 || key_name[1] == (int)KE_MOUSEDOWN
4247 || key_name[1] == (int)KE_MOUSEUP))
4248 {
4249 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
4250 if (num_bytes == -1) /* not enough coordinates */
4251 return -1;
4252 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
4253 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
4254 slen += num_bytes;
4255 }
4256 else
4257# endif
4258 /*
4259 * If it is a mouse click, get the coordinates.
4260 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004261 if (key_name[0] == KS_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262# ifdef FEAT_MOUSE_JSB
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004263 || key_name[0] == KS_JSBTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264# endif
4265# ifdef FEAT_MOUSE_NET
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004266 || key_name[0] == KS_NETTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267# endif
4268# ifdef FEAT_MOUSE_DEC
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004269 || key_name[0] == KS_DEC_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270# endif
4271# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004272 || key_name[0] == KS_PTERM_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273# endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004274# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004275 || key_name[0] == KS_URXVT_MOUSE
4276# endif
4277# ifdef FEAT_MOUSE_SGR
4278 || key_name[0] == KS_SGR_MOUSE
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004279# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 )
4281 {
4282 is_click = is_drag = FALSE;
4283
Bram Moolenaar864207d2008-06-24 22:14:38 +00004284# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4285 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 if (key_name[0] == (int)KS_MOUSE)
4287 {
4288 /*
4289 * For xterm and MSDOS we get "<t_mouse>scr", where
4290 * s == encoded button state:
4291 * 0x20 = left button down
4292 * 0x21 = middle button down
4293 * 0x22 = right button down
4294 * 0x23 = any button release
4295 * 0x60 = button 4 down (scroll wheel down)
4296 * 0x61 = button 5 down (scroll wheel up)
4297 * add 0x04 for SHIFT
4298 * add 0x08 for ALT
4299 * add 0x10 for CTRL
4300 * add 0x20 for mouse drag (0x40 is drag with left button)
4301 * c == column + ' ' + 1 == column + 33
4302 * r == row + ' ' + 1 == row + 33
4303 *
4304 * The coordinates are passed on through global variables.
4305 * Ugly, but this avoids trouble with mouse clicks at an
4306 * unexpected moment and allows for mapping them.
4307 */
4308 for (;;)
4309 {
4310#ifdef FEAT_GUI
4311 if (gui.in_use)
4312 {
4313 /* GUI uses more bits for columns > 223 */
4314 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5);
4315 if (num_bytes == -1) /* not enough coordinates */
4316 return -1;
4317 mouse_code = bytes[0];
4318 mouse_col = 128 * (bytes[1] - ' ' - 1)
4319 + bytes[2] - ' ' - 1;
4320 mouse_row = 128 * (bytes[3] - ' ' - 1)
4321 + bytes[4] - ' ' - 1;
4322 }
4323 else
4324#endif
4325 {
4326 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3);
4327 if (num_bytes == -1) /* not enough coordinates */
4328 return -1;
4329 mouse_code = bytes[0];
4330 mouse_col = bytes[1] - ' ' - 1;
4331 mouse_row = bytes[2] - ' ' - 1;
4332 }
4333 slen += num_bytes;
4334
4335 /* If the following bytes is also a mouse code and it has
4336 * the same code, dump this one and get the next. This
4337 * makes dragging a whole lot faster. */
4338#ifdef FEAT_GUI
4339 if (gui.in_use)
4340 j = 3;
4341 else
4342#endif
4343 j = termcodes[idx].len;
4344 if (STRNCMP(tp, tp + slen, (size_t)j) == 0
4345 && tp[slen + j] == mouse_code
4346 && tp[slen + j + 1] != NUL
4347 && tp[slen + j + 2] != NUL
4348#ifdef FEAT_GUI
4349 && (!gui.in_use
4350 || (tp[slen + j + 3] != NUL
4351 && tp[slen + j + 4] != NUL))
4352#endif
4353 )
4354 slen += j;
4355 else
4356 break;
4357 }
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004360# if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR)
4361 if (key_name[0] == KS_URXVT_MOUSE
4362 || key_name[0] == KS_SGR_MOUSE)
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004363 {
4364 for (;;)
4365 {
4366 /* URXVT 1015 mouse reporting mode:
4367 * Almost identical to xterm mouse mode, except the values
4368 * are decimal instead of bytes.
4369 *
4370 * \033[%d;%d;%dM
4371 * ^-- row
4372 * ^----- column
4373 * ^-------- code
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004374 *
4375 * SGR 1006 mouse reporting mode:
4376 * Almost identical to xterm mouse mode, except the values
4377 * are decimal instead of bytes.
4378 *
4379 * \033[<%d;%d;%dM
4380 * ^-- row
4381 * ^----- column
4382 * ^-------- code
4383 *
4384 * \033[<%d;%d;%dm : mouse release event
4385 * ^-- row
4386 * ^----- column
4387 * ^-------- code
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004388 */
4389 p = tp + slen;
4390
4391 mouse_code = getdigits(&p);
4392 if (*p++ != ';')
4393 return -1;
4394
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004395 /* when mouse reporting is SGR, add 32 to mouse code */
4396 if (key_name[0] == KS_SGR_MOUSE)
4397 mouse_code += 32;
4398
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004399 mouse_col = getdigits(&p) - 1;
4400 if (*p++ != ';')
4401 return -1;
4402
4403 mouse_row = getdigits(&p) - 1;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004404 if (key_name[0] == KS_SGR_MOUSE && *p == 'm')
4405 mouse_code |= MOUSE_RELEASE;
4406 else if (*p != 'M')
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004407 return -1;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004408 p++;
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004409
4410 slen += (int)(p - (tp + slen));
4411
4412 /* skip this one if next one has same code (like xterm
4413 * case) */
4414 j = termcodes[idx].len;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004415 if (STRNCMP(tp, tp + slen, (size_t)j) == 0)
4416 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004417 int slen2;
4418 int cmd_complete = 0;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004419
4420 /* check if the command is complete by looking for the
4421 * 'M' */
4422 for (slen2 = slen; slen2 < len; slen2++)
4423 {
4424 if (tp[slen2] == 'M'
4425 || (key_name[0] == KS_SGR_MOUSE
4426 && tp[slen2] == 'm'))
4427 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004428 cmd_complete = 1;
4429 break;
4430 }
4431 }
4432 p += j;
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004433 if (cmd_complete && getdigits(&p) == mouse_code)
4434 {
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004435 slen += j; /* skip the \033[ */
4436 continue;
4437 }
4438 }
4439 break;
4440 }
4441 }
4442# endif
4443
4444 if (key_name[0] == (int)KS_MOUSE
4445#ifdef FEAT_MOUSE_URXVT
4446 || key_name[0] == (int)KS_URXVT_MOUSE
4447#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02004448#ifdef FEAT_MOUSE_SGR
4449 || key_name[0] == KS_SGR_MOUSE
4450#endif
Bram Moolenaar1dff76b2011-10-26 23:48:20 +02004451 )
4452 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453# if !defined(MSWIN) && !defined(MSDOS)
4454 /*
4455 * Handle mouse events.
4456 * Recognize the xterm mouse wheel, but not in the GUI, the
4457 * Linux console with GPM and the MS-DOS or Win32 console
4458 * (multi-clicks use >= 0x60).
4459 */
4460 if (mouse_code >= MOUSEWHEEL_LOW
4461# ifdef FEAT_GUI
4462 && !gui.in_use
4463# endif
4464# ifdef FEAT_MOUSE_GPM
4465 && gpm_flag == 0
4466# endif
4467 )
4468 {
4469 /* Keep the mouse_code before it's changed, so that we
4470 * remember that it was a mouse wheel click. */
4471 wheel_code = mouse_code;
4472 }
4473# ifdef FEAT_MOUSE_XTERM
4474 else if (held_button == MOUSE_RELEASE
4475# ifdef FEAT_GUI
4476 && !gui.in_use
4477# endif
4478 && (mouse_code == 0x23 || mouse_code == 0x24))
4479 {
4480 /* Apparently used by rxvt scroll wheel. */
4481 wheel_code = mouse_code - 0x23 + MOUSEWHEEL_LOW;
4482 }
4483# endif
4484
4485# if defined(UNIX) && defined(FEAT_MOUSE_TTY)
4486 else if (use_xterm_mouse() > 1)
4487 {
4488 if (mouse_code & MOUSE_DRAG_XTERM)
4489 mouse_code |= MOUSE_DRAG;
4490 }
4491# endif
4492# ifdef FEAT_XCLIPBOARD
4493 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
4494 {
4495 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
4496 stop_xterm_trace();
4497 else
4498 start_xterm_trace(mouse_code);
4499 }
4500# endif
4501# endif
4502 }
4503# endif /* !UNIX || FEAT_MOUSE_XTERM */
4504# ifdef FEAT_MOUSE_NET
4505 if (key_name[0] == (int)KS_NETTERM_MOUSE)
4506 {
4507 int mc, mr;
4508
4509 /* expect a rather limited sequence like: balancing {
4510 * \033}6,45\r
4511 * '6' is the row, 45 is the column
4512 */
4513 p = tp + slen;
4514 mr = getdigits(&p);
4515 if (*p++ != ',')
4516 return -1;
4517 mc = getdigits(&p);
4518 if (*p++ != '\r')
4519 return -1;
4520
4521 mouse_col = mc - 1;
4522 mouse_row = mr - 1;
4523 mouse_code = MOUSE_LEFT;
4524 slen += (int)(p - (tp + slen));
4525 }
4526# endif /* FEAT_MOUSE_NET */
4527# ifdef FEAT_MOUSE_JSB
4528 if (key_name[0] == (int)KS_JSBTERM_MOUSE)
4529 {
4530 int mult, val, iter, button, status;
4531
4532 /* JSBTERM Input Model
4533 * \033[0~zw uniq escape sequence
4534 * (L-x) Left button pressed - not pressed x not reporting
4535 * (M-x) Middle button pressed - not pressed x not reporting
4536 * (R-x) Right button pressed - not pressed x not reporting
4537 * (SDmdu) Single , Double click, m mouse move d button down
4538 * u button up
4539 * ### X cursor position padded to 3 digits
4540 * ### Y cursor position padded to 3 digits
4541 * (s-x) SHIFT key pressed - not pressed x not reporting
4542 * (c-x) CTRL key pressed - not pressed x not reporting
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004543 * \033\\ terminating sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 */
4545
4546 p = tp + slen;
4547 button = mouse_code = 0;
4548 switch (*p++)
4549 {
4550 case 'L': button = 1; break;
4551 case '-': break;
4552 case 'x': break; /* ignore sequence */
4553 default: return -1; /* Unknown Result */
4554 }
4555 switch (*p++)
4556 {
4557 case 'M': button |= 2; break;
4558 case '-': break;
4559 case 'x': break; /* ignore sequence */
4560 default: return -1; /* Unknown Result */
4561 }
4562 switch (*p++)
4563 {
4564 case 'R': button |= 4; break;
4565 case '-': break;
4566 case 'x': break; /* ignore sequence */
4567 default: return -1; /* Unknown Result */
4568 }
4569 status = *p++;
4570 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4571 mult /= 10, p++)
4572 if (*p >= '0' && *p <= '9')
4573 val += (*p - '0') * mult;
4574 else
4575 return -1;
4576 mouse_col = val;
4577 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
4578 mult /= 10, p++)
4579 if (*p >= '0' && *p <= '9')
4580 val += (*p - '0') * mult;
4581 else
4582 return -1;
4583 mouse_row = val;
4584 switch (*p++)
4585 {
4586 case 's': button |= 8; break; /* SHIFT key Pressed */
4587 case '-': break; /* Not Pressed */
4588 case 'x': break; /* Not Reporting */
4589 default: return -1; /* Unknown Result */
4590 }
4591 switch (*p++)
4592 {
4593 case 'c': button |= 16; break; /* CTRL key Pressed */
4594 case '-': break; /* Not Pressed */
4595 case 'x': break; /* Not Reporting */
4596 default: return -1; /* Unknown Result */
4597 }
4598 if (*p++ != '\033')
4599 return -1;
4600 if (*p++ != '\\')
4601 return -1;
4602 switch (status)
4603 {
4604 case 'D': /* Double Click */
4605 case 'S': /* Single Click */
4606 if (button & 1) mouse_code |= MOUSE_LEFT;
4607 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4608 if (button & 4) mouse_code |= MOUSE_RIGHT;
4609 if (button & 8) mouse_code |= MOUSE_SHIFT;
4610 if (button & 16) mouse_code |= MOUSE_CTRL;
4611 break;
4612 case 'm': /* Mouse move */
4613 if (button & 1) mouse_code |= MOUSE_LEFT;
4614 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4615 if (button & 4) mouse_code |= MOUSE_RIGHT;
4616 if (button & 8) mouse_code |= MOUSE_SHIFT;
4617 if (button & 16) mouse_code |= MOUSE_CTRL;
4618 if ((button & 7) != 0)
4619 {
4620 held_button = mouse_code;
4621 mouse_code |= MOUSE_DRAG;
4622 }
4623 is_drag = TRUE;
4624 showmode();
4625 break;
4626 case 'd': /* Button Down */
4627 if (button & 1) mouse_code |= MOUSE_LEFT;
4628 if (button & 2) mouse_code |= MOUSE_MIDDLE;
4629 if (button & 4) mouse_code |= MOUSE_RIGHT;
4630 if (button & 8) mouse_code |= MOUSE_SHIFT;
4631 if (button & 16) mouse_code |= MOUSE_CTRL;
4632 break;
4633 case 'u': /* Button Up */
4634 if (button & 1)
4635 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE;
4636 if (button & 2)
4637 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE;
4638 if (button & 4)
4639 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE;
4640 if (button & 8)
4641 mouse_code |= MOUSE_SHIFT;
4642 if (button & 16)
4643 mouse_code |= MOUSE_CTRL;
4644 break;
4645 default: return -1; /* Unknown Result */
4646 }
4647
4648 slen += (p - (tp + slen));
4649 }
4650# endif /* FEAT_MOUSE_JSB */
4651# ifdef FEAT_MOUSE_DEC
4652 if (key_name[0] == (int)KS_DEC_MOUSE)
4653 {
4654 /* The DEC Locator Input Model
4655 * Netterm delivers the code sequence:
4656 * \033[2;4;24;80&w (left button down)
4657 * \033[3;0;24;80&w (left button up)
4658 * \033[6;1;24;80&w (right button down)
4659 * \033[7;0;24;80&w (right button up)
4660 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
4661 * Pe is the event code
4662 * Pb is the button code
4663 * Pr is the row coordinate
4664 * Pc is the column coordinate
4665 * Pp is the third coordinate (page number)
4666 * Pe, the event code indicates what event caused this report
4667 * The following event codes are defined:
4668 * 0 - request, the terminal received an explicit request
4669 * for a locator report, but the locator is unavailable
4670 * 1 - request, the terminal received an explicit request
4671 * for a locator report
4672 * 2 - left button down
4673 * 3 - left button up
4674 * 4 - middle button down
4675 * 5 - middle button up
4676 * 6 - right button down
4677 * 7 - right button up
4678 * 8 - fourth button down
4679 * 9 - fourth button up
4680 * 10 - locator outside filter rectangle
4681 * Pb, the button code, ASCII decimal 0-15 indicating which
4682 * buttons are down if any. The state of the four buttons
4683 * on the locator correspond to the low four bits of the
4684 * decimal value,
4685 * "1" means button depressed
4686 * 0 - no buttons down,
4687 * 1 - right,
4688 * 2 - middle,
4689 * 4 - left,
4690 * 8 - fourth
4691 * Pr is the row coordinate of the locator position in the page,
4692 * encoded as an ASCII decimal value.
4693 * If Pr is omitted, the locator position is undefined
4694 * (outside the terminal window for example).
4695 * Pc is the column coordinate of the locator position in the
4696 * page, encoded as an ASCII decimal value.
4697 * If Pc is omitted, the locator position is undefined
4698 * (outside the terminal window for example).
4699 * Pp is the page coordinate of the locator position
4700 * encoded as an ASCII decimal value.
4701 * The page coordinate may be omitted if the locator is on
4702 * page one (the default). We ignore it anyway.
4703 */
4704 int Pe, Pb, Pr, Pc;
4705
4706 p = tp + slen;
4707
4708 /* get event status */
4709 Pe = getdigits(&p);
4710 if (*p++ != ';')
4711 return -1;
4712
4713 /* get button status */
4714 Pb = getdigits(&p);
4715 if (*p++ != ';')
4716 return -1;
4717
4718 /* get row status */
4719 Pr = getdigits(&p);
4720 if (*p++ != ';')
4721 return -1;
4722
4723 /* get column status */
4724 Pc = getdigits(&p);
4725
4726 /* the page parameter is optional */
4727 if (*p == ';')
4728 {
4729 p++;
4730 (void)getdigits(&p);
4731 }
4732 if (*p++ != '&')
4733 return -1;
4734 if (*p++ != 'w')
4735 return -1;
4736
4737 mouse_code = 0;
4738 switch (Pe)
4739 {
4740 case 0: return -1; /* position request while unavailable */
4741 case 1: /* a response to a locator position request includes
4742 the status of all buttons */
4743 Pb &= 7; /* mask off and ignore fourth button */
4744 if (Pb & 4)
4745 mouse_code = MOUSE_LEFT;
4746 if (Pb & 2)
4747 mouse_code = MOUSE_MIDDLE;
4748 if (Pb & 1)
4749 mouse_code = MOUSE_RIGHT;
4750 if (Pb)
4751 {
4752 held_button = mouse_code;
4753 mouse_code |= MOUSE_DRAG;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004754 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 }
4756 is_drag = TRUE;
4757 showmode();
4758 break;
4759 case 2: mouse_code = MOUSE_LEFT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004760 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 break;
4762 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT;
4763 break;
4764 case 4: mouse_code = MOUSE_MIDDLE;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004765 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 break;
4767 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE;
4768 break;
4769 case 6: mouse_code = MOUSE_RIGHT;
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004770 WantQueryMouse = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 break;
4772 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT;
4773 break;
4774 case 8: return -1; /* fourth button down */
4775 case 9: return -1; /* fourth button up */
4776 case 10: return -1; /* mouse outside of filter rectangle */
4777 default: return -1; /* should never occur */
4778 }
4779
4780 mouse_col = Pc - 1;
4781 mouse_row = Pr - 1;
4782
4783 slen += (int)(p - (tp + slen));
4784 }
4785# endif /* FEAT_MOUSE_DEC */
4786# ifdef FEAT_MOUSE_PTERM
4787 if (key_name[0] == (int)KS_PTERM_MOUSE)
4788 {
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004789 int button, num_clicks, action;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790
4791 p = tp + slen;
4792
4793 action = getdigits(&p);
4794 if (*p++ != ';')
4795 return -1;
4796
4797 mouse_row = getdigits(&p);
4798 if (*p++ != ';')
4799 return -1;
4800 mouse_col = getdigits(&p);
4801 if (*p++ != ';')
4802 return -1;
4803
4804 button = getdigits(&p);
4805 mouse_code = 0;
4806
4807 switch( button )
4808 {
4809 case 4: mouse_code = MOUSE_LEFT; break;
4810 case 1: mouse_code = MOUSE_RIGHT; break;
4811 case 2: mouse_code = MOUSE_MIDDLE; break;
4812 default: return -1;
4813 }
4814
4815 switch( action )
4816 {
4817 case 31: /* Initial press */
4818 if (*p++ != ';')
4819 return -1;
4820
4821 num_clicks = getdigits(&p); /* Not used */
4822 break;
4823
4824 case 32: /* Release */
4825 mouse_code |= MOUSE_RELEASE;
4826 break;
4827
4828 case 33: /* Drag */
4829 held_button = mouse_code;
4830 mouse_code |= MOUSE_DRAG;
4831 break;
4832
4833 default:
4834 return -1;
4835 }
4836
4837 if (*p++ != 't')
4838 return -1;
4839
4840 slen += (p - (tp + slen));
4841 }
4842# endif /* FEAT_MOUSE_PTERM */
4843
4844 /* Interpret the mouse code */
4845 current_button = (mouse_code & MOUSE_CLICK_MASK);
4846 if (current_button == MOUSE_RELEASE
4847# ifdef FEAT_MOUSE_XTERM
4848 && wheel_code == 0
4849# endif
4850 )
4851 {
4852 /*
4853 * If we get a mouse drag or release event when
4854 * there is no mouse button held down (held_button ==
4855 * MOUSE_RELEASE), produce a K_IGNORE below.
4856 * (can happen when you hold down two buttons
4857 * and then let them go, or click in the menu bar, but not
4858 * on a menu, and drag into the text).
4859 */
4860 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
4861 is_drag = TRUE;
4862 current_button = held_button;
4863 }
4864 else if (wheel_code == 0)
4865 {
4866# ifdef CHECK_DOUBLE_CLICK
4867# ifdef FEAT_MOUSE_GPM
4868# ifdef FEAT_GUI
4869 /*
4870 * Only for Unix, when GUI or gpm is not active, we handle
4871 * multi-clicks here.
4872 */
4873 if (gpm_flag == 0 && !gui.in_use)
4874# else
4875 if (gpm_flag == 0)
4876# endif
4877# else
4878# ifdef FEAT_GUI
4879 if (!gui.in_use)
4880# endif
4881# endif
4882 {
4883 /*
4884 * Compute the time elapsed since the previous mouse click.
4885 */
4886 gettimeofday(&mouse_time, NULL);
4887 timediff = (mouse_time.tv_usec
4888 - orig_mouse_time.tv_usec) / 1000;
4889 if (timediff < 0)
4890 --orig_mouse_time.tv_sec;
4891 timediff += (mouse_time.tv_sec
4892 - orig_mouse_time.tv_sec) * 1000;
4893 orig_mouse_time = mouse_time;
4894 if (mouse_code == orig_mouse_code
4895 && timediff < p_mouset
4896 && orig_num_clicks != 4
4897 && orig_mouse_col == mouse_col
4898 && orig_mouse_row == mouse_row
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004899 && ((orig_topline == curwin->w_topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900#ifdef FEAT_DIFF
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004901 && orig_topfill == curwin->w_topfill
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902#endif
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004903 )
4904#ifdef FEAT_WINDOWS
4905 /* Double click in tab pages line also works
4906 * when window contents changes. */
4907 || (mouse_row == 0 && firstwin->w_winrow > 0)
4908#endif
4909 )
4910 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 ++orig_num_clicks;
4912 else
4913 orig_num_clicks = 1;
4914 orig_mouse_col = mouse_col;
4915 orig_mouse_row = mouse_row;
4916 orig_topline = curwin->w_topline;
4917#ifdef FEAT_DIFF
4918 orig_topfill = curwin->w_topfill;
4919#endif
4920 }
4921# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
4922 else
4923 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
4924# endif
4925# else
4926 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
4927# endif
4928 is_click = TRUE;
4929 orig_mouse_code = mouse_code;
4930 }
4931 if (!is_drag)
4932 held_button = mouse_code & MOUSE_CLICK_MASK;
4933
4934 /*
4935 * Translate the actual mouse event into a pseudo mouse event.
4936 * First work out what modifiers are to be used.
4937 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 if (orig_mouse_code & MOUSE_SHIFT)
4939 modifiers |= MOD_MASK_SHIFT;
4940 if (orig_mouse_code & MOUSE_CTRL)
4941 modifiers |= MOD_MASK_CTRL;
4942 if (orig_mouse_code & MOUSE_ALT)
4943 modifiers |= MOD_MASK_ALT;
4944 if (orig_num_clicks == 2)
4945 modifiers |= MOD_MASK_2CLICK;
4946 else if (orig_num_clicks == 3)
4947 modifiers |= MOD_MASK_3CLICK;
4948 else if (orig_num_clicks == 4)
4949 modifiers |= MOD_MASK_4CLICK;
4950
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 /* Work out our pseudo mouse event */
4952 key_name[0] = (int)KS_EXTRA;
4953 if (wheel_code != 0)
Bram Moolenaar5074e302010-07-18 14:26:11 +02004954 {
4955 if (wheel_code & MOUSE_CTRL)
4956 modifiers |= MOD_MASK_CTRL;
Bram Moolenaar01a8f382010-07-18 23:32:13 +02004957 if (wheel_code & MOUSE_ALT)
4958 modifiers |= MOD_MASK_ALT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 key_name[1] = (wheel_code & 1)
4960 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN;
Bram Moolenaar5074e302010-07-18 14:26:11 +02004961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 else
4963 key_name[1] = get_pseudo_mouse_code(current_button,
4964 is_click, is_drag);
4965 }
4966#endif /* FEAT_MOUSE */
4967
4968#ifdef FEAT_GUI
4969 /*
4970 * If using the GUI, then we get menu and scrollbar events.
4971 *
4972 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
4973 * four bytes which are to be taken as a pointer to the vimmenu_T
4974 * structure.
4975 *
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +00004976 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004977 * is one byte with the tab index.
4978 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
4980 * by one byte representing the scrollbar number, and then four bytes
4981 * representing a long_u which is the new value of the scrollbar.
4982 *
4983 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
4984 * KE_FILLER followed by four bytes representing a long_u which is the
4985 * new value of the scrollbar.
4986 */
4987# ifdef FEAT_MENU
4988 else if (key_name[0] == (int)KS_MENU)
4989 {
4990 long_u val;
4991
4992 num_bytes = get_long_from_buf(tp + slen, &val);
4993 if (num_bytes == -1)
4994 return -1;
4995 current_menu = (vimmenu_T *)val;
4996 slen += num_bytes;
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00004997
4998 /* The menu may have been deleted right after it was used, check
4999 * for that. */
5000 if (check_menu_pointer(root_menu, current_menu) == FAIL)
5001 {
5002 key_name[0] = KS_EXTRA;
5003 key_name[1] = (int)KE_IGNORE;
5004 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 }
5006# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005007# ifdef FEAT_GUI_TABLINE
5008 else if (key_name[0] == (int)KS_TABLINE)
5009 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005010 /* Selecting tabline tab or using its menu. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005011 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
5012 if (num_bytes == -1)
5013 return -1;
5014 current_tab = (int)bytes[0];
Bram Moolenaar07354542007-09-15 12:07:46 +00005015 if (current_tab == 255) /* -1 in a byte gives 255 */
5016 current_tab = -1;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005017 slen += num_bytes;
5018 }
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005019 else if (key_name[0] == (int)KS_TABMENU)
5020 {
5021 /* Selecting tabline tab or using its menu. */
5022 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
5023 if (num_bytes == -1)
5024 return -1;
5025 current_tab = (int)bytes[0];
5026 current_tabmenu = (int)bytes[1];
5027 slen += num_bytes;
5028 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005029# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030# ifndef USE_ON_FLY_SCROLL
5031 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
5032 {
5033 long_u val;
5034
5035 /* Get the last scrollbar event in the queue of the same type */
5036 j = 0;
5037 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
5038 && tp[j + 2] != NUL; ++i)
5039 {
5040 j += 3;
5041 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
5042 if (num_bytes == -1)
5043 break;
5044 if (i == 0)
5045 current_scrollbar = (int)bytes[0];
5046 else if (current_scrollbar != (int)bytes[0])
5047 break;
5048 j += num_bytes;
5049 num_bytes = get_long_from_buf(tp + j, &val);
5050 if (num_bytes == -1)
5051 break;
5052 scrollbar_value = val;
5053 j += num_bytes;
5054 slen = j;
5055 }
5056 if (i == 0) /* not enough characters to make one */
5057 return -1;
5058 }
5059 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
5060 {
5061 long_u val;
5062
5063 /* Get the last horiz. scrollbar event in the queue */
5064 j = 0;
5065 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
5066 && tp[j + 2] != NUL; ++i)
5067 {
5068 j += 3;
5069 num_bytes = get_long_from_buf(tp + j, &val);
5070 if (num_bytes == -1)
5071 break;
5072 scrollbar_value = val;
5073 j += num_bytes;
5074 slen = j;
5075 }
5076 if (i == 0) /* not enough characters to make one */
5077 return -1;
5078 }
5079# endif /* !USE_ON_FLY_SCROLL */
5080#endif /* FEAT_GUI */
5081
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005082 /*
5083 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
5084 */
5085 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
5086
5087 /*
5088 * Add any modifier codes to our string.
5089 */
5090 new_slen = 0; /* Length of what will replace the termcode */
5091 if (modifiers != 0)
5092 {
5093 /* Some keys have the modifier included. Need to handle that here
5094 * to make mappings work. */
5095 key = simplify_key(key, &modifiers);
5096 if (modifiers != 0)
5097 {
5098 string[new_slen++] = K_SPECIAL;
5099 string[new_slen++] = (int)KS_MODIFIER;
5100 string[new_slen++] = modifiers;
5101 }
5102 }
5103
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 /* Finally, add the special key code to our string */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005105 key_name[0] = KEY2TERMCAP0(key);
5106 key_name[1] = KEY2TERMCAP1(key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 if (key_name[0] == KS_KEY)
Bram Moolenaar6768a332009-01-22 17:33:49 +00005108 {
5109 /* from ":set <M-b>=xx" */
5110#ifdef FEAT_MBYTE
5111 if (has_mbyte)
5112 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
5113 else
5114#endif
5115 string[new_slen++] = key_name[1];
5116 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005117 else if (new_slen == 0 && key_name[0] == KS_EXTRA
5118 && key_name[1] == KE_IGNORE)
5119 {
5120 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
5121 * to indicate what happened. */
5122 retval = KEYLEN_REMOVED;
5123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 else
5125 {
5126 string[new_slen++] = K_SPECIAL;
5127 string[new_slen++] = key_name[0];
5128 string[new_slen++] = key_name[1];
5129 }
5130 string[new_slen] = NUL;
5131 extra = new_slen - slen;
5132 if (buf == NULL)
5133 {
5134 if (extra < 0)
5135 /* remove matched chars, taking care of noremap */
5136 del_typebuf(-extra, offset);
5137 else if (extra > 0)
5138 /* insert the extra space we need */
5139 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
5140
5141 /*
5142 * Careful: del_typebuf() and ins_typebuf() may have reallocated
5143 * typebuf.tb_buf[]!
5144 */
5145 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
5146 (size_t)new_slen);
5147 }
5148 else
5149 {
5150 if (extra < 0)
5151 /* remove matched characters */
5152 mch_memmove(buf + offset, buf + offset - extra,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005153 (size_t)(*buflen + offset + extra));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 else if (extra > 0)
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005155 {
5156 /* Insert the extra space we need. If there is insufficient
5157 * space return -1. */
5158 if (*buflen + extra + new_slen >= bufsize)
5159 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 mch_memmove(buf + offset + extra, buf + offset,
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005161 (size_t)(*buflen - offset));
5162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 mch_memmove(buf + offset, string, (size_t)new_slen);
Bram Moolenaara8c8a682012-02-05 22:05:48 +01005164 *buflen = *buflen + extra + new_slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 }
Bram Moolenaar946ffd42010-12-30 12:30:31 +01005166 return retval == 0 ? (len + extra + offset) : retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 }
5168
5169 return 0; /* no match found */
5170}
5171
5172/*
5173 * Replace any terminal code strings in from[] with the equivalent internal
5174 * vim representation. This is used for the "from" and "to" part of a
5175 * mapping, and the "to" part of a menu command.
5176 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
5177 * '<'.
5178 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
5179 *
5180 * The replacement is done in result[] and finally copied into allocated
5181 * memory. If this all works well *bufp is set to the allocated memory and a
5182 * pointer to it is returned. If something fails *bufp is set to NULL and from
5183 * is returned.
5184 *
5185 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
5186 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
5187 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
5188 * instead of a CTRL-V.
5189 */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005190 char_u *
5191replace_termcodes(from, bufp, from_part, do_lt, special)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 char_u *from;
5193 char_u **bufp;
5194 int from_part;
5195 int do_lt; /* also translate <lt> */
Bram Moolenaar9c102382006-05-03 21:26:49 +00005196 int special; /* always accept <key> notation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197{
5198 int i;
5199 int slen;
5200 int key;
5201 int dlen = 0;
5202 char_u *src;
5203 int do_backslash; /* backslash is a special character */
5204 int do_special; /* recognize <> key codes */
5205 int do_key_code; /* recognize raw key codes */
5206 char_u *result; /* buffer for resulting string */
5207
5208 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00005209 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5211
5212 /*
5213 * Allocate space for the translation. Worst case a single character is
5214 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5215 */
5216 result = alloc((unsigned)STRLEN(from) * 6 + 1);
5217 if (result == NULL) /* out of memory */
5218 {
5219 *bufp = NULL;
5220 return from;
5221 }
5222
5223 src = from;
5224
5225 /*
5226 * Check for #n at start only: function key n
5227 */
5228 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */
5229 {
5230 result[dlen++] = K_SPECIAL;
5231 result[dlen++] = 'k';
5232 if (src[1] == '0')
5233 result[dlen++] = ';'; /* #0 is F10 is "k;" */
5234 else
5235 result[dlen++] = src[1]; /* #3 is F3 is "k3" */
5236 src += 2;
5237 }
5238
5239 /*
5240 * Copy each byte from *from to result[dlen]
5241 */
5242 while (*src != NUL)
5243 {
5244 /*
5245 * If 'cpoptions' does not contain '<', check for special key codes,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005246 * like "<C-S-LeftMouse>"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 */
5248 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0))
5249 {
5250#ifdef FEAT_EVAL
5251 /*
5252 * Replace <SID> by K_SNR <script-nr> _.
5253 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5254 */
5255 if (STRNICMP(src, "<SID>", 5) == 0)
5256 {
5257 if (current_SID <= 0)
5258 EMSG(_(e_usingsid));
5259 else
5260 {
5261 src += 5;
5262 result[dlen++] = K_SPECIAL;
5263 result[dlen++] = (int)KS_EXTRA;
5264 result[dlen++] = (int)KE_SNR;
5265 sprintf((char *)result + dlen, "%ld", (long)current_SID);
5266 dlen += (int)STRLEN(result + dlen);
5267 result[dlen++] = '_';
5268 continue;
5269 }
5270 }
5271#endif
5272
5273 slen = trans_special(&src, result + dlen, TRUE);
5274 if (slen)
5275 {
5276 dlen += slen;
5277 continue;
5278 }
5279 }
5280
5281 /*
5282 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5283 * Note that this is also checked after replacing the <> form.
5284 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5285 * it could be a character in the file.
5286 */
5287 if (do_key_code)
5288 {
5289 i = find_term_bykeys(src);
5290 if (i >= 0)
5291 {
5292 result[dlen++] = K_SPECIAL;
5293 result[dlen++] = termcodes[i].name[0];
5294 result[dlen++] = termcodes[i].name[1];
5295 src += termcodes[i].len;
5296 /* If terminal code matched, continue after it. */
5297 continue;
5298 }
5299 }
5300
5301#ifdef FEAT_EVAL
5302 if (do_special)
5303 {
5304 char_u *p, *s, len;
5305
5306 /*
5307 * Replace <Leader> by the value of "mapleader".
5308 * Replace <LocalLeader> by the value of "maplocalleader".
5309 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5310 */
5311 if (STRNICMP(src, "<Leader>", 8) == 0)
5312 {
5313 len = 8;
5314 p = get_var_value((char_u *)"g:mapleader");
5315 }
5316 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
5317 {
5318 len = 13;
5319 p = get_var_value((char_u *)"g:maplocalleader");
5320 }
5321 else
5322 {
5323 len = 0;
5324 p = NULL;
5325 }
5326 if (len != 0)
5327 {
5328 /* Allow up to 8 * 6 characters for "mapleader". */
5329 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
5330 s = (char_u *)"\\";
5331 else
5332 s = p;
5333 while (*s != NUL)
5334 result[dlen++] = *s++;
5335 src += len;
5336 continue;
5337 }
5338 }
5339#endif
5340
5341 /*
5342 * Remove CTRL-V and ignore the next character.
5343 * For "from" side the CTRL-V at the end is included, for the "to"
5344 * part it is removed.
5345 * If 'cpoptions' does not contain 'B', also accept a backslash.
5346 */
5347 key = *src;
5348 if (key == Ctrl_V || (do_backslash && key == '\\'))
5349 {
5350 ++src; /* skip CTRL-V or backslash */
5351 if (*src == NUL)
5352 {
5353 if (from_part)
5354 result[dlen++] = key;
5355 break;
5356 }
5357 }
5358
5359#ifdef FEAT_MBYTE
5360 /* skip multibyte char correctly */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005361 for (i = (*mb_ptr2len)(src); i > 0; --i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362#endif
5363 {
5364 /*
5365 * If the character is K_SPECIAL, replace it with K_SPECIAL
5366 * KS_SPECIAL KE_FILLER.
5367 * If compiled with the GUI replace CSI with K_CSI.
5368 */
5369 if (*src == K_SPECIAL)
5370 {
5371 result[dlen++] = K_SPECIAL;
5372 result[dlen++] = KS_SPECIAL;
5373 result[dlen++] = KE_FILLER;
5374 }
5375# ifdef FEAT_GUI
5376 else if (*src == CSI)
5377 {
5378 result[dlen++] = K_SPECIAL;
5379 result[dlen++] = KS_EXTRA;
5380 result[dlen++] = (int)KE_CSI;
5381 }
5382# endif
5383 else
5384 result[dlen++] = *src;
5385 ++src;
5386 }
5387 }
5388 result[dlen] = NUL;
5389
5390 /*
5391 * Copy the new string to allocated memory.
5392 * If this fails, just return from.
5393 */
5394 if ((*bufp = vim_strsave(result)) != NULL)
5395 from = *bufp;
5396 vim_free(result);
5397 return from;
5398}
5399
5400/*
5401 * Find a termcode with keys 'src' (must be NUL terminated).
5402 * Return the index in termcodes[], or -1 if not found.
5403 */
5404 int
5405find_term_bykeys(src)
5406 char_u *src;
5407{
5408 int i;
Bram Moolenaar38f5f952012-01-26 13:01:59 +01005409 int slen = (int)STRLEN(src);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410
5411 for (i = 0; i < tc_len; ++i)
5412 {
Bram Moolenaar5af7d712012-01-20 17:15:51 +01005413 if (slen == termcodes[i].len
5414 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 return i;
5416 }
5417 return -1;
5418}
5419
5420/*
5421 * Gather the first characters in the terminal key codes into a string.
5422 * Used to speed up check_termcode().
5423 */
5424 static void
5425gather_termleader()
5426{
5427 int i;
5428 int len = 0;
5429
5430#ifdef FEAT_GUI
5431 if (gui.in_use)
5432 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */
5433#endif
5434#ifdef FEAT_TERMRESPONSE
5435 if (check_for_codes)
5436 termleader[len++] = DCS; /* the termcode response starts with DCS
5437 in 8-bit mode */
5438#endif
5439 termleader[len] = NUL;
5440
5441 for (i = 0; i < tc_len; ++i)
5442 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
5443 {
5444 termleader[len++] = termcodes[i].code[0];
5445 termleader[len] = NUL;
5446 }
5447
5448 need_gather = FALSE;
5449}
5450
5451/*
5452 * Show all termcodes (for ":set termcap")
5453 * This code looks a lot like showoptions(), but is different.
5454 */
5455 void
5456show_termcodes()
5457{
5458 int col;
5459 int *items;
5460 int item_count;
5461 int run;
5462 int row, rows;
5463 int cols;
5464 int i;
5465 int len;
5466
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005467#define INC3 27 /* try to make three columns */
5468#define INC2 40 /* try to make two columns */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469#define GAP 2 /* spaces between columns */
5470
5471 if (tc_len == 0) /* no terminal codes (must be GUI) */
5472 return;
5473 items = (int *)alloc((unsigned)(sizeof(int) * tc_len));
5474 if (items == NULL)
5475 return;
5476
5477 /* Highlight title */
5478 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
5479
5480 /*
5481 * do the loop two times:
5482 * 1. display the short items (non-strings and short strings)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005483 * 2. display the medium items (medium length strings)
5484 * 3. display the long items (remaining strings)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005486 for (run = 1; run <= 3 && !got_int; ++run)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 {
5488 /*
5489 * collect the items in items[]
5490 */
5491 item_count = 0;
5492 for (i = 0; i < tc_len; i++)
5493 {
5494 len = show_one_termcode(termcodes[i].name,
5495 termcodes[i].code, FALSE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005496 if (len <= INC3 - GAP ? run == 1
5497 : len <= INC2 - GAP ? run == 2
5498 : run == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 items[item_count++] = i;
5500 }
5501
5502 /*
5503 * display the items
5504 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005505 if (run <= 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005507 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 if (cols == 0)
5509 cols = 1;
5510 rows = (item_count + cols - 1) / cols;
5511 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005512 else /* run == 3 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 rows = item_count;
5514 for (row = 0; row < rows && !got_int; ++row)
5515 {
5516 msg_putchar('\n'); /* go to next line */
5517 if (got_int) /* 'q' typed in more */
5518 break;
5519 col = 0;
5520 for (i = row; i < item_count; i += rows)
5521 {
5522 msg_col = col; /* make columns */
5523 show_one_termcode(termcodes[items[i]].name,
5524 termcodes[items[i]].code, TRUE);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005525 if (run == 2)
5526 col += INC2;
5527 else
5528 col += INC3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 }
5530 out_flush();
5531 ui_breakcheck();
5532 }
5533 }
5534 vim_free(items);
5535}
5536
5537/*
5538 * Show one termcode entry.
5539 * Output goes into IObuff[]
5540 */
5541 int
5542show_one_termcode(name, code, printit)
5543 char_u *name;
5544 char_u *code;
5545 int printit;
5546{
5547 char_u *p;
5548 int len;
5549
5550 if (name[0] > '~')
5551 {
5552 IObuff[0] = ' ';
5553 IObuff[1] = ' ';
5554 IObuff[2] = ' ';
5555 IObuff[3] = ' ';
5556 }
5557 else
5558 {
5559 IObuff[0] = 't';
5560 IObuff[1] = '_';
5561 IObuff[2] = name[0];
5562 IObuff[3] = name[1];
5563 }
5564 IObuff[4] = ' ';
5565
5566 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
5567 if (p[1] != 't')
5568 STRCPY(IObuff + 5, p);
5569 else
5570 IObuff[5] = NUL;
5571 len = (int)STRLEN(IObuff);
5572 do
5573 IObuff[len++] = ' ';
5574 while (len < 17);
5575 IObuff[len] = NUL;
5576 if (code == NULL)
5577 len += 4;
5578 else
5579 len += vim_strsize(code);
5580
5581 if (printit)
5582 {
5583 msg_puts(IObuff);
5584 if (code == NULL)
5585 msg_puts((char_u *)"NULL");
5586 else
5587 msg_outtrans(code);
5588 }
5589 return len;
5590}
5591
5592#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
5593/*
5594 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
5595 * termcap codes from the terminal itself.
5596 * We get them one by one to avoid a very long response string.
5597 */
5598static int xt_index_in = 0;
5599static int xt_index_out = 0;
5600
5601 static void
5602req_codes_from_term()
5603{
5604 xt_index_out = 0;
5605 xt_index_in = 0;
5606 req_more_codes_from_term();
5607}
5608
5609 static void
5610req_more_codes_from_term()
5611{
5612 char buf[11];
5613 int old_idx = xt_index_out;
5614
5615 /* Don't do anything when going to exit. */
5616 if (exiting)
5617 return;
5618
5619 /* Send up to 10 more requests out than we received. Avoid sending too
5620 * many, there can be a buffer overflow somewhere. */
5621 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
5622 {
5623 sprintf(buf, "\033P+q%02x%02x\033\\",
5624 key_names[xt_index_out][0], key_names[xt_index_out][1]);
5625 out_str_nf((char_u *)buf);
5626 ++xt_index_out;
5627 }
5628
5629 /* Send the codes out right away. */
5630 if (xt_index_out != old_idx)
5631 out_flush();
5632}
5633
5634/*
5635 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
5636 * A "0" instead of the "1" indicates a code that isn't supported.
5637 * Both <name> and <string> are encoded in hex.
5638 * "code" points to the "0" or "1".
5639 */
5640 static void
5641got_code_from_term(code, len)
5642 char_u *code;
5643 int len;
5644{
5645#define XT_LEN 100
5646 char_u name[3];
5647 char_u str[XT_LEN];
5648 int i;
5649 int j = 0;
5650 int c;
5651
5652 /* A '1' means the code is supported, a '0' means it isn't.
5653 * When half the length is > XT_LEN we can't use it.
5654 * Our names are currently all 2 characters. */
5655 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
5656 {
5657 /* Get the name from the response and find it in the table. */
5658 name[0] = hexhex2nr(code + 3);
5659 name[1] = hexhex2nr(code + 5);
5660 name[2] = NUL;
5661 for (i = 0; key_names[i] != NULL; ++i)
5662 {
5663 if (STRCMP(key_names[i], name) == 0)
5664 {
5665 xt_index_in = i;
5666 break;
5667 }
5668 }
5669 if (key_names[i] != NULL)
5670 {
5671 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
5672 str[j++] = c;
5673 str[j] = NUL;
5674 if (name[0] == 'C' && name[1] == 'o')
5675 {
5676 /* Color count is not a key code. */
5677 i = atoi((char *)str);
5678 if (i != t_colors)
5679 {
5680 /* Nr of colors changed, initialize highlighting and
Bram Moolenaar238a5642006-02-21 22:12:05 +00005681 * redraw everything. This causes a redraw, which usually
5682 * clears the message. Try keeping the message if it
5683 * might work. */
5684 set_keep_msg_from_hist();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 set_color_count(i);
5686 init_highlight(TRUE, FALSE);
5687 redraw_later(CLEAR);
5688 }
5689 }
5690 else
5691 {
5692 /* First delete any existing entry with the same code. */
5693 i = find_term_bykeys(str);
5694 if (i >= 0)
5695 del_termcode_idx(i);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005696 add_termcode(name, str, ATC_FROM_TERM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 }
5698 }
5699 }
5700
5701 /* May request more codes now that we received one. */
5702 ++xt_index_in;
5703 req_more_codes_from_term();
5704}
5705
5706/*
5707 * Check if there are any unanswered requests and deal with them.
5708 * This is called before starting an external program or getting direct
5709 * keyboard input. We don't want responses to be send to that program or
5710 * handled as typed text.
5711 */
5712 static void
5713check_for_codes_from_term()
5714{
5715 int c;
5716
5717 /* If no codes requested or all are answered, no need to wait. */
5718 if (xt_index_out == 0 || xt_index_out == xt_index_in)
5719 return;
5720
5721 /* Vgetc() will check for and handle any response.
5722 * Keep calling vpeekc() until we don't get any responses. */
5723 ++no_mapping;
5724 ++allow_keys;
5725 for (;;)
5726 {
5727 c = vpeekc();
5728 if (c == NUL) /* nothing available */
5729 break;
5730
5731 /* If a response is recognized it's replaced with K_IGNORE, must read
5732 * it from the input stream. If there is no K_IGNORE we can't do
5733 * anything, break here (there might be some responses further on, but
5734 * we don't want to throw away any typed chars). */
5735 if (c != K_SPECIAL && c != K_IGNORE)
5736 break;
5737 c = vgetc();
5738 if (c != K_IGNORE)
5739 {
5740 vungetc(c);
5741 break;
5742 }
5743 }
5744 --no_mapping;
5745 --allow_keys;
5746}
5747#endif
5748
5749#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5750/*
5751 * Translate an internal mapping/abbreviation representation into the
5752 * corresponding external one recognized by :map/:abbrev commands;
5753 * respects the current B/k/< settings of 'cpoption'.
5754 *
5755 * This function is called when expanding mappings/abbreviations on the
Bram Moolenaarbfa28242009-06-16 12:31:33 +00005756 * command-line, and for building the "Ambiguous mapping..." error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 *
5758 * It uses a growarray to build the translation string since the
5759 * latter can be wider than the original description. The caller has to
5760 * free the string afterwards.
5761 *
5762 * Returns NULL when there is a problem.
5763 */
5764 char_u *
5765translate_mapping(str, expmap)
5766 char_u *str;
5767 int expmap; /* TRUE when expanding mappings on command-line */
5768{
5769 garray_T ga;
5770 int c;
5771 int modifiers;
5772 int cpo_bslash;
5773 int cpo_special;
5774 int cpo_keycode;
5775
5776 ga_init(&ga);
5777 ga.ga_itemsize = 1;
5778 ga.ga_growsize = 40;
5779
5780 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL);
5781 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL);
5782 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
5783
5784 for (; *str; ++str)
5785 {
5786 c = *str;
5787 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
5788 {
5789 modifiers = 0;
5790 if (str[1] == KS_MODIFIER)
5791 {
5792 str++;
5793 modifiers = *++str;
5794 c = *++str;
5795 }
5796 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers)
5797 {
5798 int i;
5799
5800 /* try to find special key in termcodes */
5801 for (i = 0; i < tc_len; ++i)
5802 if (termcodes[i].name[0] == str[1]
5803 && termcodes[i].name[1] == str[2])
5804 break;
5805 if (i < tc_len)
5806 {
5807 ga_concat(&ga, termcodes[i].code);
5808 str += 2;
5809 continue; /* for (str) */
5810 }
5811 }
5812 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
5813 {
5814 if (expmap && cpo_special)
5815 {
5816 ga_clear(&ga);
5817 return NULL;
5818 }
5819 c = TO_SPECIAL(str[1], str[2]);
5820 if (c == K_ZERO) /* display <Nul> as ^@ */
5821 c = NUL;
5822 str += 2;
5823 }
5824 if (IS_SPECIAL(c) || modifiers) /* special key */
5825 {
5826 if (expmap && cpo_special)
5827 {
5828 ga_clear(&ga);
5829 return NULL;
5830 }
5831 ga_concat(&ga, get_special_key_name(c, modifiers));
5832 continue; /* for (str) */
5833 }
5834 }
5835 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V
5836 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash))
5837 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\');
5838 if (c)
5839 ga_append(&ga, c);
5840 }
5841 ga_append(&ga, NUL);
5842 return (char_u *)(ga.ga_data);
5843}
5844#endif
5845
5846#if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
5847static char ksme_str[20];
5848static char ksmr_str[20];
5849static char ksmd_str[20];
5850
5851/*
5852 * For Win32 console: update termcap codes for existing console attributes.
5853 */
5854 void
5855update_tcap(attr)
5856 int attr;
5857{
5858 struct builtin_term *p;
5859
5860 p = find_builtin_term(DEFAULT_TERM);
5861 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
5862 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
5863 attr | 0x08); /* FOREGROUND_INTENSITY */
5864 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
5865 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
5866
5867 while (p->bt_string != NULL)
5868 {
5869 if (p->bt_entry == (int)KS_ME)
5870 p->bt_string = &ksme_str[0];
5871 else if (p->bt_entry == (int)KS_MR)
5872 p->bt_string = &ksmr_str[0];
5873 else if (p->bt_entry == (int)KS_MD)
5874 p->bt_string = &ksmd_str[0];
5875 ++p;
5876 }
5877}
5878#endif