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