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