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