1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
11 * term.c: functions for controlling the terminal
13 * primitive termcap support for Amiga, MSDOS, and Win32 included
15 * NOTE: padding and variable substitution is not performed,
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies.
20 * Some systems have a prototype for tgetstr() with (char *) instead of
21 * (char **). This define removes that prototype. We include our own prototype
25 #define tgetstr tgetstr_defined_wrong
29 # ifdef HAVE_TERMIOS_H
30 # include <termios.h> /* seems to be required for some Linux */
32 # ifdef HAVE_TERMCAP_H
37 * A few linux systems define outfuntype in termcap.h to be used as the third
38 * argument for tputs().
43 # ifdef HAVE_OUTFUNTYPE
44 # define TPUTSFUNCAST (outfuntype)
46 # define TPUTSFUNCAST (int (*)())
54 * Here are the builtin termcap entries. They are not stored as complete
55 * Tcarr structures, as such a structure is too big.
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.
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
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code.
66 * Entries marked with "guessed" may be wrong.
74 /* start of keys that are not directly used by Vim but can be mapped */
75 #define BT_EXTRA_KEYS 0x101
77 static struct builtin_term
*find_builtin_term
__ARGS((char_u
*name
));
78 static void parse_builtin_tcap
__ARGS((char_u
*s
));
79 static void term_color
__ARGS((char_u
*s
, int n
));
80 static void gather_termleader
__ARGS((void));
81 #ifdef FEAT_TERMRESPONSE
82 static void req_codes_from_term
__ARGS((void));
83 static void req_more_codes_from_term
__ARGS((void));
84 static void got_code_from_term
__ARGS((char_u
*code
, int len
));
85 static void check_for_codes_from_term
__ARGS((void));
87 #if defined(FEAT_GUI) \
88 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
89 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
90 static int get_bytes_from_buf
__ARGS((char_u
*, char_u
*, int));
92 static void del_termcode_idx
__ARGS((int idx
));
93 static int term_is_builtin
__ARGS((char_u
*name
));
94 static int term_7to8bit
__ARGS((char_u
*p
));
95 #ifdef FEAT_TERMRESPONSE
96 static void switch_to_8bit
__ARGS((void));
100 static char_u
*tgetent_error
__ARGS((char_u
*, char_u
*));
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.
106 char *tgetstr
__ARGS((char *, char **));
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 */
113 static int crv_status
= CRV_GET
;
117 * Don't declare these variables if termcap.h contains them.
118 * Autoconf checks if these variables should be declared extern (not all
119 * systems have them).
120 * Some versions define ospeed to be speed_t, but that is incompatible with
121 * BSD, where ospeed is short and speed_t is long.
124 # ifdef OSPEED_EXTERN
130 # ifndef HAVE_UP_BC_PC
131 # ifdef UP_BC_PC_EXTERN
132 extern char *UP
, *BC
, PC
;
138 # define TGETSTR(s, p) vim_tgetstr((s), (p))
139 # define TGETENT(b, t) tgetent((char *)(b), (char *)(t))
140 static char_u
*vim_tgetstr
__ARGS((char *s
, char_u
**pp
));
141 #endif /* HAVE_TGETENT */
143 static int detected_8bit
= FALSE
; /* detected 8-bit terminal */
145 static struct builtin_term builtin_termcaps
[] =
148 #if defined(FEAT_GUI)
150 * GUI pseudo term-cap.
152 {(int)KS_NAME
, "gui"},
153 {(int)KS_CE
, IF_EB("\033|$", ESC_STR
"|$")},
154 {(int)KS_AL
, IF_EB("\033|i", ESC_STR
"|i")},
156 {(int)KS_CAL
, IF_EB("\033|%p1%dI", ESC_STR
"|%p1%dI")},
158 {(int)KS_CAL
, IF_EB("\033|%dI", ESC_STR
"|%dI")},
160 {(int)KS_DL
, IF_EB("\033|d", ESC_STR
"|d")},
162 {(int)KS_CDL
, IF_EB("\033|%p1%dD", ESC_STR
"|%p1%dD")},
163 {(int)KS_CS
, IF_EB("\033|%p1%d;%p2%dR", ESC_STR
"|%p1%d;%p2%dR")},
164 # ifdef FEAT_VERTSPLIT
165 {(int)KS_CSV
, IF_EB("\033|%p1%d;%p2%dV", ESC_STR
"|%p1%d;%p2%dV")},
168 {(int)KS_CDL
, IF_EB("\033|%dD", ESC_STR
"|%dD")},
169 {(int)KS_CS
, IF_EB("\033|%d;%dR", ESC_STR
"|%d;%dR")},
170 # ifdef FEAT_VERTSPLIT
171 {(int)KS_CSV
, IF_EB("\033|%d;%dV", ESC_STR
"|%d;%dV")},
174 {(int)KS_CL
, IF_EB("\033|C", ESC_STR
"|C")},
175 /* attributes switched on with 'h', off with * 'H' */
176 {(int)KS_ME
, IF_EB("\033|31H", ESC_STR
"|31H")}, /* HL_ALL */
177 {(int)KS_MR
, IF_EB("\033|1h", ESC_STR
"|1h")}, /* HL_INVERSE */
178 {(int)KS_MD
, IF_EB("\033|2h", ESC_STR
"|2h")}, /* HL_BOLD */
179 {(int)KS_SE
, IF_EB("\033|16H", ESC_STR
"|16H")}, /* HL_STANDOUT */
180 {(int)KS_SO
, IF_EB("\033|16h", ESC_STR
"|16h")}, /* HL_STANDOUT */
181 {(int)KS_UE
, IF_EB("\033|8H", ESC_STR
"|8H")}, /* HL_UNDERLINE */
182 {(int)KS_US
, IF_EB("\033|8h", ESC_STR
"|8h")}, /* HL_UNDERLINE */
183 {(int)KS_UCE
, IF_EB("\033|8C", ESC_STR
"|8C")}, /* HL_UNDERCURL */
184 {(int)KS_UCS
, IF_EB("\033|8c", ESC_STR
"|8c")}, /* HL_UNDERCURL */
185 {(int)KS_CZR
, IF_EB("\033|4H", ESC_STR
"|4H")}, /* HL_ITALIC */
186 {(int)KS_CZH
, IF_EB("\033|4h", ESC_STR
"|4h")}, /* HL_ITALIC */
187 {(int)KS_VB
, IF_EB("\033|f", ESC_STR
"|f")},
190 {(int)KS_LE
, "\b"}, /* cursor-left = BS */
191 {(int)KS_ND
, "\014"}, /* cursor-right = CTRL-L */
193 {(int)KS_CM
, IF_EB("\033|%p1%d;%p2%dM", ESC_STR
"|%p1%d;%p2%dM")},
195 {(int)KS_CM
, IF_EB("\033|%d;%dM", ESC_STR
"|%d;%dM")},
197 /* there are no key sequences here, the GUI sequences are recognized
198 * in check_termcode() */
201 #ifndef NO_BUILTIN_TCAPS
202 # if defined(RISCOS) || defined(ALL_BUILTIN_TCAPS)
204 * Default for the Acorn.
206 {(int)KS_NAME
, "riscos"},
207 {(int)KS_CL
, "\014"}, /* Cls and Home Cursor */
208 {(int)KS_CM
, "\001%d\001%d\002"}, /* Position cursor */
210 {(int)KS_CCO
, "16"}, /* Allow 16 colors */
212 {(int)KS_CAF
, "\001%d\021"}, /* Set foreground colour */
213 {(int)KS_CAB
, "\001%d\022"}, /* Set background colour */
216 {(int)KS_ME
, "\004"}, /* Normal mode */
217 {(int)KS_MR
, "\005"}, /* Reverse */
219 {(int)KS_VI
, "\016"}, /* Cursor invisible */
220 {(int)KS_VE
, "\017"}, /* Cursor visible */
221 {(int)KS_VS
, "\020"}, /* Cursor very visible */
223 {(int)KS_CS
, "\001%d\001%d\003"}, /* Set scroll region */
224 {(int)KS_SR
, "\023"}, /* Scroll text down */
264 {K_PAGEDOWN
, "\236"},
265 # endif /* Acorn terminal */
268 # if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
270 * Amiga console window, default for Amiga
272 {(int)KS_NAME
, "amiga"},
273 {(int)KS_CE
, "\033[K"},
274 {(int)KS_CD
, "\033[J"},
275 {(int)KS_AL
, "\033[L"},
277 {(int)KS_CAL
, "\033[%p1%dL"},
279 {(int)KS_CAL
, "\033[%dL"},
281 {(int)KS_DL
, "\033[M"},
283 {(int)KS_CDL
, "\033[%p1%dM"},
285 {(int)KS_CDL
, "\033[%dM"},
287 {(int)KS_CL
, "\014"},
288 {(int)KS_VI
, "\033[0 p"},
289 {(int)KS_VE
, "\033[1 p"},
290 {(int)KS_ME
, "\033[0m"},
291 {(int)KS_MR
, "\033[7m"},
292 {(int)KS_MD
, "\033[1m"},
293 {(int)KS_SE
, "\033[0m"},
294 {(int)KS_SO
, "\033[33m"},
295 {(int)KS_US
, "\033[4m"},
296 {(int)KS_UE
, "\033[0m"},
297 {(int)KS_CZH
, "\033[3m"},
298 {(int)KS_CZR
, "\033[0m"},
299 #if defined(__MORPHOS__) || defined(__AROS__)
300 {(int)KS_CCO
, "8"}, /* allow 8 colors */
302 {(int)KS_CAB
, "\033[4%p1%dm"},/* set background color */
303 {(int)KS_CAF
, "\033[3%p1%dm"},/* set foreground color */
305 {(int)KS_CAB
, "\033[4%dm"}, /* set background color */
306 {(int)KS_CAF
, "\033[3%dm"}, /* set foreground color */
308 {(int)KS_OP
, "\033[m"}, /* reset colors */
311 {(int)KS_UT
, "y"}, /* guessed */
314 {(int)KS_CM
, "\033[%i%p1%d;%p2%dH"},
316 {(int)KS_CM
, "\033[%i%d;%dH"},
318 #if defined(__MORPHOS__)
319 {(int)KS_SR
, "\033M"},
322 {(int)KS_CRI
, "\033[%p1%dC"},
324 {(int)KS_CRI
, "\033[%dC"},
332 {K_S_LEFT
, "\233 A"},
333 {K_S_RIGHT
, "\233 @"},
335 {K_F1
, "\233\060~"},/* some compilers don't dig "\2330" */
344 {K_F10
, "\233\071~"},
345 {K_S_F1
, "\233\061\060~"},
346 {K_S_F2
, "\233\061\061~"},
347 {K_S_F3
, "\233\061\062~"},
348 {K_S_F4
, "\233\061\063~"},
349 {K_S_F5
, "\233\061\064~"},
350 {K_S_F6
, "\233\061\065~"},
351 {K_S_F7
, "\233\061\066~"},
352 {K_S_F8
, "\233\061\067~"},
353 {K_S_F9
, "\233\061\070~"},
354 {K_S_F10
, "\233\061\071~"},
356 {K_INS
, "\233\064\060~"}, /* 101 key keyboard */
357 {K_PAGEUP
, "\233\064\061~"}, /* 101 key keyboard */
358 {K_PAGEDOWN
, "\233\064\062~"}, /* 101 key keyboard */
359 {K_HOME
, "\233\064\064~"}, /* 101 key keyboard */
360 {K_END
, "\233\064\065~"}, /* 101 key keyboard */
363 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */
364 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */
365 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */
368 # if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
370 * almost standard ANSI terminal, default for bebox
372 {(int)KS_NAME
, "beos-ansi"},
373 {(int)KS_CE
, "\033[K"},
374 {(int)KS_CD
, "\033[J"},
375 {(int)KS_AL
, "\033[L"},
377 {(int)KS_CAL
, "\033[%p1%dL"},
379 {(int)KS_CAL
, "\033[%dL"},
381 {(int)KS_DL
, "\033[M"},
383 {(int)KS_CDL
, "\033[%p1%dM"},
385 {(int)KS_CDL
, "\033[%dM"},
387 #ifdef BEOS_PR_OR_BETTER
389 {(int)KS_CS
, "\033[%i%p1%d;%p2%dr"},
391 {(int)KS_CS
, "\033[%i%d;%dr"}, /* scroll region */
394 {(int)KS_CL
, "\033[H\033[2J"},
396 {(int)KS_VI
, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */
397 {(int)KS_VE
, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */
399 {(int)KS_ME
, "\033[m"}, /* normal mode */
400 {(int)KS_MR
, "\033[7m"}, /* reverse */
401 {(int)KS_MD
, "\033[1m"}, /* bold */
402 {(int)KS_SO
, "\033[31m"}, /* standout mode: red */
403 {(int)KS_SE
, "\033[m"}, /* standout end */
404 {(int)KS_CZH
, "\033[35m"}, /* italic: purple */
405 {(int)KS_CZR
, "\033[m"}, /* italic end */
406 {(int)KS_US
, "\033[4m"}, /* underscore mode */
407 {(int)KS_UE
, "\033[m"}, /* underscore end */
408 {(int)KS_CCO
, "8"}, /* allow 8 colors */
410 {(int)KS_CAB
, "\033[4%p1%dm"},/* set background color */
411 {(int)KS_CAF
, "\033[3%p1%dm"},/* set foreground color */
413 {(int)KS_CAB
, "\033[4%dm"}, /* set background color */
414 {(int)KS_CAF
, "\033[3%dm"}, /* set foreground color */
416 {(int)KS_OP
, "\033[m"}, /* reset colors */
417 {(int)KS_MS
, "y"}, /* safe to move cur in reverse mode */
418 {(int)KS_UT
, "y"}, /* guessed */
421 {(int)KS_CM
, "\033[%i%p1%d;%p2%dH"},
423 {(int)KS_CM
, "\033[%i%d;%dH"},
425 {(int)KS_SR
, "\033M"},
427 {(int)KS_CRI
, "\033[%p1%dC"},
429 {(int)KS_CRI
, "\033[%dC"},
431 #if defined(BEOS_DR8)
432 {(int)KS_DB
, ""}, /* hack! see screen.c */
441 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__)
443 * standard ANSI terminal, default for unix
445 {(int)KS_NAME
, "ansi"},
446 {(int)KS_CE
, IF_EB("\033[K", ESC_STR
"[K")},
447 {(int)KS_AL
, IF_EB("\033[L", ESC_STR
"[L")},
449 {(int)KS_CAL
, IF_EB("\033[%p1%dL", ESC_STR
"[%p1%dL")},
451 {(int)KS_CAL
, IF_EB("\033[%dL", ESC_STR
"[%dL")},
453 {(int)KS_DL
, IF_EB("\033[M", ESC_STR
"[M")},
455 {(int)KS_CDL
, IF_EB("\033[%p1%dM", ESC_STR
"[%p1%dM")},
457 {(int)KS_CDL
, IF_EB("\033[%dM", ESC_STR
"[%dM")},
459 {(int)KS_CL
, IF_EB("\033[H\033[2J", ESC_STR
"[H" ESC_STR_nc
"[2J")},
460 {(int)KS_ME
, IF_EB("\033[0m", ESC_STR
"[0m")},
461 {(int)KS_MR
, IF_EB("\033[7m", ESC_STR
"[7m")},
463 {(int)KS_UT
, "y"}, /* guessed */
466 {(int)KS_CM
, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR
"[%i%p1%d;%p2%dH")},
468 {(int)KS_CM
, IF_EB("\033[%i%d;%dH", ESC_STR
"[%i%d;%dH")},
471 {(int)KS_CRI
, IF_EB("\033[%p1%dC", ESC_STR
"[%p1%dC")},
473 {(int)KS_CRI
, IF_EB("\033[%dC", ESC_STR
"[%dC")},
477 # if defined(MSDOS) || defined(ALL_BUILTIN_TCAPS) || defined(__EMX__)
479 * These codes are valid when nansi.sys or equivalent has been installed.
480 * Function keys on a PC are preceded with a NUL. These are converted into
481 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
482 * CTRL-arrow is used instead of SHIFT-arrow.
485 {(int)KS_NAME
, "os2ansi"},
487 {(int)KS_NAME
, "pcansi"},
488 {(int)KS_DL
, "\033[M"},
489 {(int)KS_AL
, "\033[L"},
491 {(int)KS_CE
, "\033[K"},
492 {(int)KS_CL
, "\033[2J"},
493 {(int)KS_ME
, "\033[0m"},
494 {(int)KS_MR
, "\033[5m"}, /* reverse: black on lightgrey */
495 {(int)KS_MD
, "\033[1m"}, /* bold: white text */
496 {(int)KS_SE
, "\033[0m"}, /* standout end */
497 {(int)KS_SO
, "\033[31m"}, /* standout: white on blue */
498 {(int)KS_CZH
, "\033[34;43m"}, /* italic mode: blue text on yellow */
499 {(int)KS_CZR
, "\033[0m"}, /* italic mode end */
500 {(int)KS_US
, "\033[36;41m"}, /* underscore mode: cyan text on red */
501 {(int)KS_UE
, "\033[0m"}, /* underscore mode end */
502 {(int)KS_CCO
, "8"}, /* allow 8 colors */
504 {(int)KS_CAB
, "\033[4%p1%dm"},/* set background color */
505 {(int)KS_CAF
, "\033[3%p1%dm"},/* set foreground color */
507 {(int)KS_CAB
, "\033[4%dm"}, /* set background color */
508 {(int)KS_CAF
, "\033[3%dm"}, /* set foreground color */
510 {(int)KS_OP
, "\033[0m"}, /* reset colors */
512 {(int)KS_UT
, "y"}, /* guessed */
515 {(int)KS_CM
, "\033[%i%p1%d;%p2%dH"},
517 {(int)KS_CM
, "\033[%i%d;%dH"},
520 {(int)KS_CRI
, "\033[%p1%dC"},
522 {(int)KS_CRI
, "\033[%dC"},
529 {K_S_RIGHT
, "\316t"},
540 {K_F11
, "\316\205"}, /* guessed */
541 {K_F12
, "\316\206"}, /* guessed */
552 {K_S_F11
, "\316\207"}, /* guessed */
553 {K_S_F12
, "\316\210"}, /* guessed */
558 {K_PAGEDOWN
, "\316Q"},
564 * These codes are valid for the pc video. The entries that start with ESC |
565 * are translated into conio calls in os_msdos.c. Default for MSDOS.
567 {(int)KS_NAME
, "pcterm"},
568 {(int)KS_CE
, "\033|K"},
569 {(int)KS_AL
, "\033|L"},
570 {(int)KS_DL
, "\033|M"},
572 {(int)KS_CS
, "\033|%i%p1%d;%p2%dr"},
573 # ifdef FEAT_VERTSPLIT
574 {(int)KS_CSV
, "\033|%i%p1%d;%p2%dV"},
577 {(int)KS_CS
, "\033|%i%d;%dr"},
578 # ifdef FEAT_VERTSPLIT
579 {(int)KS_CSV
, "\033|%i%d;%dV"},
582 {(int)KS_CL
, "\033|J"},
583 {(int)KS_ME
, "\033|0m"}, /* normal */
584 {(int)KS_MR
, "\033|112m"}, /* reverse: black on lightgrey */
585 {(int)KS_MD
, "\033|15m"}, /* bold: white text */
586 {(int)KS_SE
, "\033|0m"}, /* standout end */
587 {(int)KS_SO
, "\033|31m"}, /* standout: white on blue */
588 {(int)KS_CZH
, "\033|225m"}, /* italic mode: blue text on yellow */
589 {(int)KS_CZR
, "\033|0m"}, /* italic mode end */
590 {(int)KS_US
, "\033|67m"}, /* underscore mode: cyan text on red */
591 {(int)KS_UE
, "\033|0m"}, /* underscore mode end */
592 {(int)KS_CCO
, "16"}, /* allow 16 colors */
594 {(int)KS_CAB
, "\033|%p1%db"}, /* set background color */
595 {(int)KS_CAF
, "\033|%p1%df"}, /* set foreground color */
597 {(int)KS_CAB
, "\033|%db"}, /* set background color */
598 {(int)KS_CAF
, "\033|%df"}, /* set foreground color */
604 {(int)KS_CM
, "\033|%i%p1%d;%p2%dH"},
606 {(int)KS_CM
, "\033|%i%d;%dH"},
609 {(int)KS_VB
, "\033|B"}, /* visual bell */
616 {K_S_RIGHT
, "\316t"},
617 {K_S_TAB
, "\316\017"},
640 {K_S_F11
, "\316\207"},
641 {K_S_F12
, "\316\210"},
646 {K_PAGEDOWN
, "\316Q"},
650 {K_KMULTIPLY
, "\3167"},
663 # if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS) || defined(__EMX__)
665 * These codes are valid for the Win32 Console . The entries that start with
666 * ESC | are translated into console calls in os_win32.c. The function keys
667 * are also translated in os_win32.c.
669 {(int)KS_NAME
, "win32"},
670 {(int)KS_CE
, "\033|K"}, /* clear to end of line */
671 {(int)KS_AL
, "\033|L"}, /* add new blank line */
673 {(int)KS_CAL
, "\033|%p1%dL"}, /* add number of new blank lines */
675 {(int)KS_CAL
, "\033|%dL"}, /* add number of new blank lines */
677 {(int)KS_DL
, "\033|M"}, /* delete line */
679 {(int)KS_CDL
, "\033|%p1%dM"}, /* delete number of lines */
681 {(int)KS_CDL
, "\033|%dM"}, /* delete number of lines */
683 {(int)KS_CL
, "\033|J"}, /* clear screen */
684 {(int)KS_CD
, "\033|j"}, /* clear to end of display */
685 {(int)KS_VI
, "\033|v"}, /* cursor invisible */
686 {(int)KS_VE
, "\033|V"}, /* cursor visible */
688 {(int)KS_ME
, "\033|0m"}, /* normal */
689 {(int)KS_MR
, "\033|112m"}, /* reverse: black on lightgray */
690 {(int)KS_MD
, "\033|15m"}, /* bold: white on black */
692 {(int)KS_SO
, "\033|31m"}, /* standout: white on blue */
693 {(int)KS_SE
, "\033|0m"}, /* standout end */
695 {(int)KS_SO
, "\033|F"}, /* standout: high intensity */
696 {(int)KS_SE
, "\033|f"}, /* standout end */
698 {(int)KS_CZH
, "\033|225m"}, /* italic: blue text on yellow */
699 {(int)KS_CZR
, "\033|0m"}, /* italic end */
700 {(int)KS_US
, "\033|67m"}, /* underscore: cyan text on red */
701 {(int)KS_UE
, "\033|0m"}, /* underscore end */
702 {(int)KS_CCO
, "16"}, /* allow 16 colors */
704 {(int)KS_CAB
, "\033|%p1%db"}, /* set background color */
705 {(int)KS_CAF
, "\033|%p1%df"}, /* set foreground color */
707 {(int)KS_CAB
, "\033|%db"}, /* set background color */
708 {(int)KS_CAF
, "\033|%df"}, /* set foreground color */
711 {(int)KS_MS
, "y"}, /* save to move cur in reverse mode */
715 {(int)KS_CM
, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
717 {(int)KS_CM
, "\033|%i%d;%dH"},/* cursor motion */
719 {(int)KS_VB
, "\033|B"}, /* visual bell */
720 {(int)KS_TI
, "\033|S"}, /* put terminal in termcap mode */
721 {(int)KS_TE
, "\033|E"}, /* out of termcap mode */
723 {(int)KS_CS
, "\033|%i%p1%d;%p2%dr"},/* scroll region */
725 {(int)KS_CS
, "\033|%i%d;%dr"},/* scroll region */
732 {K_S_UP
, "\316\304"},
733 {K_S_DOWN
, "\316\317"},
734 {K_S_LEFT
, "\316\311"},
736 {K_S_RIGHT
, "\316\313"},
737 {K_C_RIGHT
, "\316t"},
738 {K_S_TAB
, "\316\017"},
761 {K_S_F11
, "\316\207"},
762 {K_S_F12
, "\316\210"},
766 {K_S_HOME
, "\316\302"},
769 {K_S_END
, "\316\315"},
771 {K_PAGEDOWN
, "\316Q"},
775 {K_KMULTIPLY
, "\316\067"},
788 # if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
790 * VT320 is working as an ANSI terminal compatible DEC terminal.
791 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
792 * Note: K_F1...K_F5 are for internal use, should not be defined.
793 * TODO:- rewrite ESC[ codes to CSI
794 * - keyboard languages (CSI ? 26 n)
796 {(int)KS_NAME
, "vt320"},
797 {(int)KS_CE
, IF_EB("\033[K", ESC_STR
"[K")},
798 {(int)KS_AL
, IF_EB("\033[L", ESC_STR
"[L")},
800 {(int)KS_CAL
, IF_EB("\033[%p1%dL", ESC_STR
"[%p1%dL")},
802 {(int)KS_CAL
, IF_EB("\033[%dL", ESC_STR
"[%dL")},
804 {(int)KS_DL
, IF_EB("\033[M", ESC_STR
"[M")},
806 {(int)KS_CDL
, IF_EB("\033[%p1%dM", ESC_STR
"[%p1%dM")},
808 {(int)KS_CDL
, IF_EB("\033[%dM", ESC_STR
"[%dM")},
810 {(int)KS_CL
, IF_EB("\033[H\033[2J", ESC_STR
"[H" ESC_STR_nc
"[2J")},
811 {(int)KS_CD
, IF_EB("\033[J", ESC_STR
"[J")},
812 {(int)KS_CCO
, "8"}, /* allow 8 colors */
813 {(int)KS_ME
, IF_EB("\033[0m", ESC_STR
"[0m")},
814 {(int)KS_MR
, IF_EB("\033[7m", ESC_STR
"[7m")},
815 {(int)KS_MD
, IF_EB("\033[1m", ESC_STR
"[1m")}, /* bold mode */
816 {(int)KS_SE
, IF_EB("\033[22m", ESC_STR
"[22m")},/* normal mode */
817 {(int)KS_UE
, IF_EB("\033[24m", ESC_STR
"[24m")},/* exit underscore mode */
818 {(int)KS_US
, IF_EB("\033[4m", ESC_STR
"[4m")}, /* underscore mode */
819 {(int)KS_CZH
, IF_EB("\033[34;43m", ESC_STR
"[34;43m")}, /* italic mode: blue text on yellow */
820 {(int)KS_CZR
, IF_EB("\033[0m", ESC_STR
"[0m")}, /* italic mode end */
821 {(int)KS_CAB
, IF_EB("\033[4%dm", ESC_STR
"[4%dm")}, /* set background color (ANSI) */
822 {(int)KS_CAF
, IF_EB("\033[3%dm", ESC_STR
"[3%dm")}, /* set foreground color (ANSI) */
823 {(int)KS_CSB
, IF_EB("\033[102;%dm", ESC_STR
"[102;%dm")}, /* set screen background color */
824 {(int)KS_CSF
, IF_EB("\033[101;%dm", ESC_STR
"[101;%dm")}, /* set screen foreground color */
829 {(int)KS_CM
, IF_EB("\033[%i%p1%d;%p2%dH",
830 ESC_STR
"[%i%p1%d;%p2%dH")},
832 {(int)KS_CM
, IF_EB("\033[%i%d;%dH", ESC_STR
"[%i%d;%dH")},
835 {(int)KS_CRI
, IF_EB("\033[%p1%dC", ESC_STR
"[%p1%dC")},
837 {(int)KS_CRI
, IF_EB("\033[%dC", ESC_STR
"[%dC")},
839 {K_UP
, IF_EB("\033[A", ESC_STR
"[A")},
840 {K_DOWN
, IF_EB("\033[B", ESC_STR
"[B")},
841 {K_RIGHT
, IF_EB("\033[C", ESC_STR
"[C")},
842 {K_LEFT
, IF_EB("\033[D", ESC_STR
"[D")},
843 {K_F1
, IF_EB("\033[11~", ESC_STR
"[11~")},
844 {K_F2
, IF_EB("\033[12~", ESC_STR
"[12~")},
845 {K_F3
, IF_EB("\033[13~", ESC_STR
"[13~")},
846 {K_F4
, IF_EB("\033[14~", ESC_STR
"[14~")},
847 {K_F5
, IF_EB("\033[15~", ESC_STR
"[15~")},
848 {K_F6
, IF_EB("\033[17~", ESC_STR
"[17~")},
849 {K_F7
, IF_EB("\033[18~", ESC_STR
"[18~")},
850 {K_F8
, IF_EB("\033[19~", ESC_STR
"[19~")},
851 {K_F9
, IF_EB("\033[20~", ESC_STR
"[20~")},
852 {K_F10
, IF_EB("\033[21~", ESC_STR
"[21~")},
853 {K_F11
, IF_EB("\033[23~", ESC_STR
"[23~")},
854 {K_F12
, IF_EB("\033[24~", ESC_STR
"[24~")},
855 {K_F13
, IF_EB("\033[25~", ESC_STR
"[25~")},
856 {K_F14
, IF_EB("\033[26~", ESC_STR
"[26~")},
857 {K_F15
, IF_EB("\033[28~", ESC_STR
"[28~")}, /* Help */
858 {K_F16
, IF_EB("\033[29~", ESC_STR
"[29~")}, /* Select */
859 {K_F17
, IF_EB("\033[31~", ESC_STR
"[31~")},
860 {K_F18
, IF_EB("\033[32~", ESC_STR
"[32~")},
861 {K_F19
, IF_EB("\033[33~", ESC_STR
"[33~")},
862 {K_F20
, IF_EB("\033[34~", ESC_STR
"[34~")},
863 {K_INS
, IF_EB("\033[2~", ESC_STR
"[2~")},
864 {K_DEL
, IF_EB("\033[3~", ESC_STR
"[3~")},
865 {K_HOME
, IF_EB("\033[1~", ESC_STR
"[1~")},
866 {K_END
, IF_EB("\033[4~", ESC_STR
"[4~")},
867 {K_PAGEUP
, IF_EB("\033[5~", ESC_STR
"[5~")},
868 {K_PAGEDOWN
, IF_EB("\033[6~", ESC_STR
"[6~")},
869 {K_KPLUS
, IF_EB("\033Ok", ESC_STR
"Ok")}, /* keypad plus */
870 {K_KMINUS
, IF_EB("\033Om", ESC_STR
"Om")}, /* keypad minus */
871 {K_KDIVIDE
, IF_EB("\033Oo", ESC_STR
"Oo")}, /* keypad / */
872 {K_KMULTIPLY
, IF_EB("\033Oj", ESC_STR
"Oj")}, /* keypad * */
873 {K_KENTER
, IF_EB("\033OM", ESC_STR
"OM")}, /* keypad Enter */
874 {K_BS
, "\x7f"}, /* for some reason 0177 doesn't work */
877 # if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
881 {(int)KS_NAME
, "vt52"},
882 {(int)KS_CE
, IF_EB("\033K", ESC_STR
"K")},
883 {(int)KS_CD
, IF_EB("\033J", ESC_STR
"J")},
884 {(int)KS_CM
, IF_EB("\033Y%+ %+ ", ESC_STR
"Y%+ %+ ")},
887 {(int)KS_AL
, IF_EB("\033L", ESC_STR
"L")},
888 {(int)KS_DL
, IF_EB("\033M", ESC_STR
"M")},
889 {(int)KS_CL
, IF_EB("\033E", ESC_STR
"E")},
890 {(int)KS_SR
, IF_EB("\033I", ESC_STR
"I")},
891 {(int)KS_VE
, IF_EB("\033e", ESC_STR
"e")},
892 {(int)KS_VI
, IF_EB("\033f", ESC_STR
"f")},
893 {(int)KS_SO
, IF_EB("\033p", ESC_STR
"p")},
894 {(int)KS_SE
, IF_EB("\033q", ESC_STR
"q")},
895 {K_UP
, IF_EB("\033A", ESC_STR
"A")},
896 {K_DOWN
, IF_EB("\033B", ESC_STR
"B")},
897 {K_LEFT
, IF_EB("\033D", ESC_STR
"D")},
898 {K_RIGHT
, IF_EB("\033C", ESC_STR
"C")},
899 {K_S_UP
, IF_EB("\033a", ESC_STR
"a")},
900 {K_S_DOWN
, IF_EB("\033b", ESC_STR
"b")},
901 {K_S_LEFT
, IF_EB("\033d", ESC_STR
"d")},
902 {K_S_RIGHT
, IF_EB("\033c", ESC_STR
"c")},
903 {K_F1
, IF_EB("\033P", ESC_STR
"P")},
904 {K_F2
, IF_EB("\033Q", ESC_STR
"Q")},
905 {K_F3
, IF_EB("\033R", ESC_STR
"R")},
906 {K_F4
, IF_EB("\033S", ESC_STR
"S")},
907 {K_F5
, IF_EB("\033T", ESC_STR
"T")},
908 {K_F6
, IF_EB("\033U", ESC_STR
"U")},
909 {K_F7
, IF_EB("\033V", ESC_STR
"V")},
910 {K_F8
, IF_EB("\033W", ESC_STR
"W")},
911 {K_F9
, IF_EB("\033X", ESC_STR
"X")},
912 {K_F10
, IF_EB("\033Y", ESC_STR
"Y")},
913 {K_S_F1
, IF_EB("\033p", ESC_STR
"p")},
914 {K_S_F2
, IF_EB("\033q", ESC_STR
"q")},
915 {K_S_F3
, IF_EB("\033r", ESC_STR
"r")},
916 {K_S_F4
, IF_EB("\033s", ESC_STR
"s")},
917 {K_S_F5
, IF_EB("\033t", ESC_STR
"t")},
918 {K_S_F6
, IF_EB("\033u", ESC_STR
"u")},
919 {K_S_F7
, IF_EB("\033v", ESC_STR
"v")},
920 {K_S_F8
, IF_EB("\033w", ESC_STR
"w")},
921 {K_S_F9
, IF_EB("\033x", ESC_STR
"x")},
922 {K_S_F10
, IF_EB("\033y", ESC_STR
"y")},
923 {K_INS
, IF_EB("\033I", ESC_STR
"I")},
924 {K_HOME
, IF_EB("\033E", ESC_STR
"E")},
925 {K_PAGEDOWN
, IF_EB("\033b", ESC_STR
"b")},
926 {K_PAGEUP
, IF_EB("\033a", ESC_STR
"a")},
928 {(int)KS_AL
, IF_EB("\033T", ESC_STR
"T")},
929 {(int)KS_DL
, IF_EB("\033U", ESC_STR
"U")},
930 {(int)KS_CL
, IF_EB("\033H\033J", ESC_STR
"H" ESC_STR_nc
"J")},
931 {(int)KS_ME
, IF_EB("\033SO", ESC_STR
"SO")},
932 {(int)KS_MR
, IF_EB("\033S2", ESC_STR
"S2")},
937 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) || defined(__EMX__)
938 {(int)KS_NAME
, "xterm"},
939 {(int)KS_CE
, IF_EB("\033[K", ESC_STR
"[K")},
940 {(int)KS_AL
, IF_EB("\033[L", ESC_STR
"[L")},
942 {(int)KS_CAL
, IF_EB("\033[%p1%dL", ESC_STR
"[%p1%dL")},
944 {(int)KS_CAL
, IF_EB("\033[%dL", ESC_STR
"[%dL")},
946 {(int)KS_DL
, IF_EB("\033[M", ESC_STR
"[M")},
948 {(int)KS_CDL
, IF_EB("\033[%p1%dM", ESC_STR
"[%p1%dM")},
950 {(int)KS_CDL
, IF_EB("\033[%dM", ESC_STR
"[%dM")},
953 {(int)KS_CS
, IF_EB("\033[%i%p1%d;%p2%dr",
954 ESC_STR
"[%i%p1%d;%p2%dr")},
956 {(int)KS_CS
, IF_EB("\033[%i%d;%dr", ESC_STR
"[%i%d;%dr")},
958 {(int)KS_CL
, IF_EB("\033[H\033[2J", ESC_STR
"[H" ESC_STR_nc
"[2J")},
959 {(int)KS_CD
, IF_EB("\033[J", ESC_STR
"[J")},
960 {(int)KS_ME
, IF_EB("\033[m", ESC_STR
"[m")},
961 {(int)KS_MR
, IF_EB("\033[7m", ESC_STR
"[7m")},
962 {(int)KS_MD
, IF_EB("\033[1m", ESC_STR
"[1m")},
963 {(int)KS_UE
, IF_EB("\033[m", ESC_STR
"[m")},
964 {(int)KS_US
, IF_EB("\033[4m", ESC_STR
"[4m")},
969 {(int)KS_CM
, IF_EB("\033[%i%p1%d;%p2%dH",
970 ESC_STR
"[%i%p1%d;%p2%dH")},
972 {(int)KS_CM
, IF_EB("\033[%i%d;%dH", ESC_STR
"[%i%d;%dH")},
974 {(int)KS_SR
, IF_EB("\033M", ESC_STR
"M")},
976 {(int)KS_CRI
, IF_EB("\033[%p1%dC", ESC_STR
"[%p1%dC")},
978 {(int)KS_CRI
, IF_EB("\033[%dC", ESC_STR
"[%dC")},
980 {(int)KS_KS
, IF_EB("\033[?1h\033=", ESC_STR
"[?1h" ESC_STR_nc
"=")},
981 {(int)KS_KE
, IF_EB("\033[?1l\033>", ESC_STR
"[?1l" ESC_STR_nc
">")},
982 # ifdef FEAT_XTERM_SAVE
983 {(int)KS_TI
, IF_EB("\0337\033[?47h", ESC_STR
"7" ESC_STR_nc
"[?47h")},
984 {(int)KS_TE
, IF_EB("\033[2J\033[?47l\0338",
985 ESC_STR
"[2J" ESC_STR_nc
"[?47l" ESC_STR_nc
"8")},
987 {(int)KS_CIS
, IF_EB("\033]1;", ESC_STR
"]1;")},
988 {(int)KS_CIE
, "\007"},
989 {(int)KS_TS
, IF_EB("\033]2;", ESC_STR
"]2;")},
990 {(int)KS_FS
, "\007"},
992 {(int)KS_CWS
, IF_EB("\033[8;%p1%d;%p2%dt",
993 ESC_STR
"[8;%p1%d;%p2%dt")},
994 {(int)KS_CWP
, IF_EB("\033[3;%p1%d;%p2%dt",
995 ESC_STR
"[3;%p1%d;%p2%dt")},
997 {(int)KS_CWS
, IF_EB("\033[8;%d;%dt", ESC_STR
"[8;%d;%dt")},
998 {(int)KS_CWP
, IF_EB("\033[3;%d;%dt", ESC_STR
"[3;%d;%dt")},
1000 {(int)KS_CRV
, IF_EB("\033[>c", ESC_STR
"[>c")},
1002 {K_UP
, IF_EB("\033O*A", ESC_STR
"O*A")},
1003 {K_DOWN
, IF_EB("\033O*B", ESC_STR
"O*B")},
1004 {K_RIGHT
, IF_EB("\033O*C", ESC_STR
"O*C")},
1005 {K_LEFT
, IF_EB("\033O*D", ESC_STR
"O*D")},
1006 /* An extra set of cursor keys for vt100 mode */
1007 {K_XUP
, IF_EB("\033[1;*A", ESC_STR
"[1;*A")},
1008 {K_XDOWN
, IF_EB("\033[1;*B", ESC_STR
"[1;*B")},
1009 {K_XRIGHT
, IF_EB("\033[1;*C", ESC_STR
"[1;*C")},
1010 {K_XLEFT
, IF_EB("\033[1;*D", ESC_STR
"[1;*D")},
1011 /* An extra set of function keys for vt100 mode */
1012 {K_XF1
, IF_EB("\033O*P", ESC_STR
"O*P")},
1013 {K_XF2
, IF_EB("\033O*Q", ESC_STR
"O*Q")},
1014 {K_XF3
, IF_EB("\033O*R", ESC_STR
"O*R")},
1015 {K_XF4
, IF_EB("\033O*S", ESC_STR
"O*S")},
1016 {K_F1
, IF_EB("\033[11;*~", ESC_STR
"[11;*~")},
1017 {K_F2
, IF_EB("\033[12;*~", ESC_STR
"[12;*~")},
1018 {K_F3
, IF_EB("\033[13;*~", ESC_STR
"[13;*~")},
1019 {K_F4
, IF_EB("\033[14;*~", ESC_STR
"[14;*~")},
1020 {K_F5
, IF_EB("\033[15;*~", ESC_STR
"[15;*~")},
1021 {K_F6
, IF_EB("\033[17;*~", ESC_STR
"[17;*~")},
1022 {K_F7
, IF_EB("\033[18;*~", ESC_STR
"[18;*~")},
1023 {K_F8
, IF_EB("\033[19;*~", ESC_STR
"[19;*~")},
1024 {K_F9
, IF_EB("\033[20;*~", ESC_STR
"[20;*~")},
1025 {K_F10
, IF_EB("\033[21;*~", ESC_STR
"[21;*~")},
1026 {K_F11
, IF_EB("\033[23;*~", ESC_STR
"[23;*~")},
1027 {K_F12
, IF_EB("\033[24;*~", ESC_STR
"[24;*~")},
1028 {K_S_TAB
, IF_EB("\033[Z", ESC_STR
"[Z")},
1029 {K_HELP
, IF_EB("\033[28;*~", ESC_STR
"[28;*~")},
1030 {K_UNDO
, IF_EB("\033[26;*~", ESC_STR
"[26;*~")},
1031 {K_INS
, IF_EB("\033[2;*~", ESC_STR
"[2;*~")},
1032 {K_HOME
, IF_EB("\033[1;*H", ESC_STR
"[1;*H")},
1033 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */
1034 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */
1035 {K_KHOME
, IF_EB("\033[1;*~", ESC_STR
"[1;*~")},
1036 {K_XHOME
, IF_EB("\033O*H", ESC_STR
"O*H")}, /* other Home */
1037 {K_ZHOME
, IF_EB("\033[7;*~", ESC_STR
"[7;*~")}, /* other Home */
1038 {K_END
, IF_EB("\033[1;*F", ESC_STR
"[1;*F")},
1039 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */
1040 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */
1041 {K_KEND
, IF_EB("\033[4;*~", ESC_STR
"[4;*~")},
1042 {K_XEND
, IF_EB("\033O*F", ESC_STR
"O*F")}, /* other End */
1043 {K_ZEND
, IF_EB("\033[8;*~", ESC_STR
"[8;*~")},
1044 {K_PAGEUP
, IF_EB("\033[5;*~", ESC_STR
"[5;*~")},
1045 {K_PAGEDOWN
, IF_EB("\033[6;*~", ESC_STR
"[6;*~")},
1046 {K_KPLUS
, IF_EB("\033O*k", ESC_STR
"O*k")}, /* keypad plus */
1047 {K_KMINUS
, IF_EB("\033O*m", ESC_STR
"O*m")}, /* keypad minus */
1048 {K_KDIVIDE
, IF_EB("\033O*o", ESC_STR
"O*o")}, /* keypad / */
1049 {K_KMULTIPLY
, IF_EB("\033O*j", ESC_STR
"O*j")}, /* keypad * */
1050 {K_KENTER
, IF_EB("\033O*M", ESC_STR
"O*M")}, /* keypad Enter */
1051 {K_KPOINT
, IF_EB("\033O*n", ESC_STR
"O*n")}, /* keypad . */
1052 {K_KDEL
, IF_EB("\033[3;*~", ESC_STR
"[3;*~")}, /* keypad Del */
1054 {BT_EXTRA_KEYS
, ""},
1055 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR
"[10;*~")}, /* F0 */
1056 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR
"[25;*~")}, /* F13 */
1057 /* F14 and F15 are missing, because they send the same codes as the undo
1058 * and help key, although they don't work on all keyboards. */
1059 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR
"[29;*~")}, /* F16 */
1060 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR
"[31;*~")}, /* F17 */
1061 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR
"[32;*~")}, /* F18 */
1062 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR
"[33;*~")}, /* F19 */
1063 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR
"[34;*~")}, /* F20 */
1065 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR
"[42;*~")}, /* F21 */
1066 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR
"[43;*~")}, /* F22 */
1067 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR
"[44;*~")}, /* F23 */
1068 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR
"[45;*~")}, /* F24 */
1069 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR
"[46;*~")}, /* F25 */
1070 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR
"[47;*~")}, /* F26 */
1071 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR
"[48;*~")}, /* F27 */
1072 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR
"[49;*~")}, /* F28 */
1073 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR
"[50;*~")}, /* F29 */
1074 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR
"[51;*~")}, /* F30 */
1076 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR
"[52;*~")}, /* F31 */
1077 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR
"[53;*~")}, /* F32 */
1078 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR
"[54;*~")}, /* F33 */
1079 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR
"[55;*~")}, /* F34 */
1080 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR
"[56;*~")}, /* F35 */
1081 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR
"[57;*~")}, /* F36 */
1082 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR
"[58;*~")}, /* F37 */
1085 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
1087 * iris-ansi for Silicon Graphics machines.
1089 {(int)KS_NAME
, "iris-ansi"},
1090 {(int)KS_CE
, "\033[K"},
1091 {(int)KS_CD
, "\033[J"},
1092 {(int)KS_AL
, "\033[L"},
1094 {(int)KS_CAL
, "\033[%p1%dL"},
1096 {(int)KS_CAL
, "\033[%dL"},
1098 {(int)KS_DL
, "\033[M"},
1100 {(int)KS_CDL
, "\033[%p1%dM"},
1102 {(int)KS_CDL
, "\033[%dM"},
1104 #if 0 /* The scroll region is not working as Vim expects. */
1106 {(int)KS_CS
, "\033[%i%p1%d;%p2%dr"},
1108 {(int)KS_CS
, "\033[%i%d;%dr"},
1111 {(int)KS_CL
, "\033[H\033[2J"},
1112 {(int)KS_VE
, "\033[9/y\033[12/y"}, /* These aren't documented */
1113 {(int)KS_VS
, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */
1114 {(int)KS_TI
, "\033[=6h"},
1115 {(int)KS_TE
, "\033[=6l"},
1116 {(int)KS_SE
, "\033[21;27m"},
1117 {(int)KS_SO
, "\033[1;7m"},
1118 {(int)KS_ME
, "\033[m"},
1119 {(int)KS_MR
, "\033[7m"},
1120 {(int)KS_MD
, "\033[1m"},
1121 {(int)KS_CCO
, "8"}, /* allow 8 colors */
1122 {(int)KS_CZH
, "\033[3m"}, /* italic mode on */
1123 {(int)KS_CZR
, "\033[23m"}, /* italic mode off */
1124 {(int)KS_US
, "\033[4m"}, /* underline on */
1125 {(int)KS_UE
, "\033[24m"}, /* underline off */
1127 {(int)KS_CAB
, "\033[4%p1%dm"}, /* set background color (ANSI) */
1128 {(int)KS_CAF
, "\033[3%p1%dm"}, /* set foreground color (ANSI) */
1129 {(int)KS_CSB
, "\033[102;%p1%dm"}, /* set screen background color */
1130 {(int)KS_CSF
, "\033[101;%p1%dm"}, /* set screen foreground color */
1132 {(int)KS_CAB
, "\033[4%dm"}, /* set background color (ANSI) */
1133 {(int)KS_CAF
, "\033[3%dm"}, /* set foreground color (ANSI) */
1134 {(int)KS_CSB
, "\033[102;%dm"}, /* set screen background color */
1135 {(int)KS_CSF
, "\033[101;%dm"}, /* set screen foreground color */
1137 {(int)KS_MS
, "y"}, /* guessed */
1138 {(int)KS_UT
, "y"}, /* guessed */
1141 {(int)KS_CM
, "\033[%i%p1%d;%p2%dH"},
1143 {(int)KS_CM
, "\033[%i%d;%dH"},
1145 {(int)KS_SR
, "\033M"},
1147 {(int)KS_CRI
, "\033[%p1%dC"},
1149 {(int)KS_CRI
, "\033[%dC"},
1151 {(int)KS_CIS
, "\033P3.y"},
1152 {(int)KS_CIE
, "\234"}, /* ST "String Terminator" */
1153 {(int)KS_TS
, "\033P1.y"},
1154 {(int)KS_FS
, "\234"}, /* ST "String Terminator" */
1156 {(int)KS_CWS
, "\033[203;%p1%d;%p2%d/y"},
1157 {(int)KS_CWP
, "\033[205;%p1%d;%p2%d/y"},
1159 {(int)KS_CWS
, "\033[203;%d;%d/y"},
1160 {(int)KS_CWP
, "\033[205;%d;%d/y"},
1165 {K_RIGHT
, "\033[C"},
1166 {K_S_UP
, "\033[161q"},
1167 {K_S_DOWN
, "\033[164q"},
1168 {K_S_LEFT
, "\033[158q"},
1169 {K_S_RIGHT
, "\033[167q"},
1170 {K_F1
, "\033[001q"},
1171 {K_F2
, "\033[002q"},
1172 {K_F3
, "\033[003q"},
1173 {K_F4
, "\033[004q"},
1174 {K_F5
, "\033[005q"},
1175 {K_F6
, "\033[006q"},
1176 {K_F7
, "\033[007q"},
1177 {K_F8
, "\033[008q"},
1178 {K_F9
, "\033[009q"},
1179 {K_F10
, "\033[010q"},
1180 {K_F11
, "\033[011q"},
1181 {K_F12
, "\033[012q"},
1182 {K_S_F1
, "\033[013q"},
1183 {K_S_F2
, "\033[014q"},
1184 {K_S_F3
, "\033[015q"},
1185 {K_S_F4
, "\033[016q"},
1186 {K_S_F5
, "\033[017q"},
1187 {K_S_F6
, "\033[018q"},
1188 {K_S_F7
, "\033[019q"},
1189 {K_S_F8
, "\033[020q"},
1190 {K_S_F9
, "\033[021q"},
1191 {K_S_F10
, "\033[022q"},
1192 {K_S_F11
, "\033[023q"},
1193 {K_S_F12
, "\033[024q"},
1194 {K_INS
, "\033[139q"},
1196 {K_END
, "\033[146q"},
1197 {K_PAGEUP
, "\033[150q"},
1198 {K_PAGEDOWN
, "\033[154q"},
1201 # if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
1205 {(int)KS_NAME
, "debug"},
1206 {(int)KS_CE
, "[CE]"},
1207 {(int)KS_CD
, "[CD]"},
1208 {(int)KS_AL
, "[AL]"},
1210 {(int)KS_CAL
, "[CAL%p1%d]"},
1212 {(int)KS_CAL
, "[CAL%d]"},
1214 {(int)KS_DL
, "[DL]"},
1216 {(int)KS_CDL
, "[CDL%p1%d]"},
1218 {(int)KS_CDL
, "[CDL%d]"},
1221 {(int)KS_CS
, "[%p1%dCS%p2%d]"},
1223 {(int)KS_CS
, "[%dCS%d]"},
1225 # ifdef FEAT_VERTSPLIT
1227 {(int)KS_CSV
, "[%p1%dCSV%p2%d]"},
1229 {(int)KS_CSV
, "[%dCSV%d]"},
1233 {(int)KS_CAB
, "[CAB%p1%d]"},
1234 {(int)KS_CAF
, "[CAF%p1%d]"},
1235 {(int)KS_CSB
, "[CSB%p1%d]"},
1236 {(int)KS_CSF
, "[CSF%p1%d]"},
1238 {(int)KS_CAB
, "[CAB%d]"},
1239 {(int)KS_CAF
, "[CAF%d]"},
1240 {(int)KS_CSB
, "[CSB%d]"},
1241 {(int)KS_CSF
, "[CSF%d]"},
1243 {(int)KS_OP
, "[OP]"},
1244 {(int)KS_LE
, "[LE]"},
1245 {(int)KS_CL
, "[CL]"},
1246 {(int)KS_VI
, "[VI]"},
1247 {(int)KS_VE
, "[VE]"},
1248 {(int)KS_VS
, "[VS]"},
1249 {(int)KS_ME
, "[ME]"},
1250 {(int)KS_MR
, "[MR]"},
1251 {(int)KS_MB
, "[MB]"},
1252 {(int)KS_MD
, "[MD]"},
1253 {(int)KS_SE
, "[SE]"},
1254 {(int)KS_SO
, "[SO]"},
1255 {(int)KS_UE
, "[UE]"},
1256 {(int)KS_US
, "[US]"},
1257 {(int)KS_UCE
, "[UCE]"},
1258 {(int)KS_UCS
, "[UCS]"},
1259 {(int)KS_MS
, "[MS]"},
1260 {(int)KS_UT
, "[UT]"},
1262 {(int)KS_CM
, "[%p1%dCM%p2%d]"},
1264 {(int)KS_CM
, "[%dCM%d]"},
1266 {(int)KS_SR
, "[SR]"},
1268 {(int)KS_CRI
, "[CRI%p1%d]"},
1270 {(int)KS_CRI
, "[CRI%d]"},
1272 {(int)KS_VB
, "[VB]"},
1273 {(int)KS_KS
, "[KS]"},
1274 {(int)KS_KE
, "[KE]"},
1275 {(int)KS_TI
, "[TI]"},
1276 {(int)KS_TE
, "[TE]"},
1277 {(int)KS_CIS
, "[CIS]"},
1278 {(int)KS_CIE
, "[CIE]"},
1279 {(int)KS_TS
, "[TS]"},
1280 {(int)KS_FS
, "[FS]"},
1282 {(int)KS_CWS
, "[%p1%dCWS%p2%d]"},
1283 {(int)KS_CWP
, "[%p1%dCWP%p2%d]"},
1285 {(int)KS_CWS
, "[%dCWS%d]"},
1286 {(int)KS_CWP
, "[%dCWP%d]"},
1288 {(int)KS_CRV
, "[CRV]"},
1296 {K_XRIGHT
, "[xKR]"},
1298 {K_S_DOWN
, "[S-KD]"},
1299 {K_S_LEFT
, "[S-KL]"},
1300 {K_C_LEFT
, "[C-KL]"},
1301 {K_S_RIGHT
, "[S-KR]"},
1302 {K_C_RIGHT
, "[C-KR]"},
1320 {K_S_XF1
, "[S-xF1]"},
1322 {K_S_XF2
, "[S-xF2]"},
1324 {K_S_XF3
, "[S-xF3]"},
1326 {K_S_XF4
, "[S-xF4]"},
1332 {K_S_F10
, "[S-F10]"},
1333 {K_S_F11
, "[S-F11]"},
1334 {K_S_F12
, "[S-F12]"},
1343 {K_S_HOME
, "[C-HOME]"},
1344 {K_C_HOME
, "[C-HOME]"},
1345 {K_KHOME
, "[KHOME]"},
1346 {K_XHOME
, "[XHOME]"},
1347 {K_ZHOME
, "[ZHOME]"},
1349 {K_S_END
, "[C-END]"},
1350 {K_C_END
, "[C-END]"},
1354 {K_PAGEUP
, "[PAGEUP]"},
1355 {K_PAGEDOWN
, "[PAGEDOWN]"},
1356 {K_KPAGEUP
, "[KPAGEUP]"},
1357 {K_KPAGEDOWN
, "[KPAGEDOWN]"},
1358 {K_MOUSE
, "[MOUSE]"},
1359 {K_KPLUS
, "[KPLUS]"},
1360 {K_KMINUS
, "[KMINUS]"},
1361 {K_KDIVIDE
, "[KDIVIDE]"},
1362 {K_KMULTIPLY
, "[KMULTIPLY]"},
1363 {K_KENTER
, "[KENTER]"},
1364 {K_KPOINT
, "[KPOINT]"},
1377 #endif /* NO_BUILTIN_TCAPS */
1380 * The most minimal terminal: only clear screen and cursor positioning
1383 {(int)KS_NAME
, "dumb"},
1384 {(int)KS_CL
, "\014"},
1386 {(int)KS_CM
, IF_EB("\033[%i%p1%d;%p2%dH",
1387 ESC_STR
"[%i%p1%d;%p2%dH")},
1389 {(int)KS_CM
, IF_EB("\033[%i%d;%dH", ESC_STR
"[%i%d;%dH")},
1395 {(int)KS_NAME
, NULL
}
1397 }; /* end of builtin_termcaps */
1400 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
1403 # define DEFAULT_TERM (char_u *)"riscos"
1407 # define DEFAULT_TERM (char_u *)"amiga"
1411 # define DEFAULT_TERM (char_u *)"win32"
1415 # define DEFAULT_TERM (char_u *)"pcterm"
1418 #if defined(UNIX) && !defined(__MINT__)
1419 # define DEFAULT_TERM (char_u *)"ansi"
1423 # define DEFAULT_TERM (char_u *)"vt52"
1427 # define DEFAULT_TERM (char_u *)"os2ansi"
1431 # define DEFAULT_TERM (char_u *)"vt320"
1435 # undef DEFAULT_TERM
1436 # define DEFAULT_TERM (char_u *)"beos-ansi"
1439 #ifndef DEFAULT_TERM
1440 # define DEFAULT_TERM (char_u *)"dumb"
1444 * Term_strings contains currently used terminal output strings.
1445 * It is initialized with the default values by parse_builtin_tcap().
1446 * The values can be changed by setting the option with the same name.
1448 char_u
*(term_strings
[(int)KS_LAST
+ 1]);
1450 static int need_gather
= FALSE
; /* need to fill termleader[] */
1451 static char_u termleader
[256 + 1]; /* for check_termcode() */
1452 #ifdef FEAT_TERMRESPONSE
1453 static int check_for_codes
= FALSE
; /* check for key code response */
1456 static struct builtin_term
*
1457 find_builtin_term(term
)
1460 struct builtin_term
*p
;
1462 p
= builtin_termcaps
;
1463 while (p
->bt_string
!= NULL
)
1465 if (p
->bt_entry
== (int)KS_NAME
)
1468 if (STRCMP(p
->bt_string
, "iris-ansi") == 0 && vim_is_iris(term
))
1470 else if (STRCMP(p
->bt_string
, "xterm") == 0 && vim_is_xterm(term
))
1475 if (STRCMP(p
->bt_string
, "vt320") == 0 && vim_is_vt300(term
))
1479 if (STRCMP(term
, p
->bt_string
) == 0)
1488 * Parsing of the builtin termcap entries.
1489 * Caller should check if 'name' is a valid builtin term.
1490 * The terminal's name is not set, as this is already done in termcapinit().
1493 parse_builtin_tcap(term
)
1496 struct builtin_term
*p
;
1500 p
= find_builtin_term(term
);
1501 term_8bit
= term_is_8bit(term
);
1503 /* Do not parse if builtin term not found */
1504 if (p
->bt_string
== NULL
)
1507 for (++p
; p
->bt_entry
!= (int)KS_NAME
&& p
->bt_entry
!= BT_EXTRA_KEYS
; ++p
)
1509 if ((int)p
->bt_entry
>= 0) /* KS_xx entry */
1511 /* Only set the value if it wasn't set yet. */
1512 if (term_strings
[p
->bt_entry
] == NULL
1513 || term_strings
[p
->bt_entry
] == empty_option
)
1515 /* 8bit terminal: use CSI instead of <Esc>[ */
1516 if (term_8bit
&& term_7to8bit((char_u
*)p
->bt_string
) != 0)
1520 s
= vim_strsave((char_u
*)p
->bt_string
);
1523 for (t
= s
; *t
; ++t
)
1524 if (term_7to8bit(t
))
1526 *t
= term_7to8bit(t
);
1527 STRCPY(t
+ 1, t
+ 2);
1529 term_strings
[p
->bt_entry
] = s
;
1530 set_term_option_alloced(&term_strings
[p
->bt_entry
]);
1534 term_strings
[p
->bt_entry
] = (char_u
*)p
->bt_string
;
1539 name
[0] = KEY2TERMCAP0((int)p
->bt_entry
);
1540 name
[1] = KEY2TERMCAP1((int)p
->bt_entry
);
1541 if (find_termcode(name
) == NULL
)
1542 add_termcode(name
, (char_u
*)p
->bt_string
, term_8bit
);
1546 #if defined(HAVE_TGETENT) || defined(FEAT_TERMRESPONSE)
1547 static void set_color_count
__ARGS((int nr
));
1550 * Set number of colors.
1551 * Store it as a number in t_colors.
1552 * Store it as a string in T_CCO (using nr_colors[]).
1558 char_u nr_colors
[20]; /* string for number of colors */
1562 sprintf((char *)nr_colors
, "%d", t_colors
);
1565 set_string_option_direct((char_u
*)"t_Co", -1, nr_colors
, OPT_FREE
, 0);
1570 static char *(key_names
[]) =
1572 #ifdef FEAT_TERMRESPONSE
1573 /* Do this one first, it may cause a screen redraw. */
1576 "ku", "kd", "kr", "kl",
1578 "su", "sd", /* Termcap code made up! */
1580 "#2", "#4", "%i", "*7",
1581 "k1", "k2", "k3", "k4", "k5", "k6",
1582 "k7", "k8", "k9", "k;", "F1", "F2",
1583 "%1", "&8", "kb", "kI", "kD", "kh",
1584 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
1590 * Set terminal options for terminal "term".
1591 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
1593 * While doing this, until ttest(), some options may be NULL, be careful.
1599 struct builtin_term
*termp
;
1601 int builtin_first
= p_tbi
;
1603 int termcap_cleared
= FALSE
;
1605 int width
= 0, height
= 0;
1606 char_u
*error_msg
= NULL
;
1607 char_u
*bs_p
, *del_p
;
1609 /* In silect mode (ex -s) we don't use the 'term' option. */
1613 detected_8bit
= FALSE
; /* reset 8-bit detection */
1615 if (term_is_builtin(term
))
1624 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
1625 * If builtin_first is TRUE:
1626 * 0. try builtin termcap
1627 * 1. try external termcap
1628 * 2. if both fail default to a builtin terminal
1629 * If builtin_first is FALSE:
1630 * 1. try external termcap
1631 * 2. try builtin termcap, if both fail default to a builtin terminal
1634 for (try = builtin_first
? 0 : 1; try < 3; ++try)
1637 * Use external termcap
1642 static char_u tstrbuf
[TBUFSZ
];
1644 char_u tbuf
[TBUFSZ
];
1647 enum SpecialKey dest
; /* index in term_strings[] */
1648 char *name
; /* termcap name for string */
1650 { {KS_CE
, "ce"}, {KS_AL
, "al"}, {KS_CAL
,"AL"},
1651 {KS_DL
, "dl"}, {KS_CDL
,"DL"}, {KS_CS
, "cs"},
1652 {KS_CL
, "cl"}, {KS_CD
, "cd"},
1653 {KS_VI
, "vi"}, {KS_VE
, "ve"}, {KS_MB
, "mb"},
1654 {KS_VS
, "vs"}, {KS_ME
, "me"}, {KS_MR
, "mr"},
1655 {KS_MD
, "md"}, {KS_SE
, "se"}, {KS_SO
, "so"},
1656 {KS_CZH
,"ZH"}, {KS_CZR
,"ZR"}, {KS_UE
, "ue"},
1657 {KS_US
, "us"}, {KS_UCE
, "Ce"}, {KS_UCS
, "Cs"},
1658 {KS_CM
, "cm"}, {KS_SR
, "sr"},
1659 {KS_CRI
,"RI"}, {KS_VB
, "vb"}, {KS_KS
, "ks"},
1660 {KS_KE
, "ke"}, {KS_TI
, "ti"}, {KS_TE
, "te"},
1661 {KS_BC
, "bc"}, {KS_CSB
,"Sb"}, {KS_CSF
,"Sf"},
1662 {KS_CAB
,"AB"}, {KS_CAF
,"AF"}, {KS_LE
, "le"},
1663 {KS_ND
, "nd"}, {KS_OP
, "op"}, {KS_CRV
, "RV"},
1664 {KS_CIS
, "IS"}, {KS_CIE
, "IE"},
1665 {KS_TS
, "ts"}, {KS_FS
, "fs"},
1666 {KS_CWP
, "WP"}, {KS_CWS
, "WS"},
1667 {KS_CSI
, "SI"}, {KS_CEI
, "EI"},
1668 {(enum SpecialKey
)0, NULL
}
1672 * If the external termcap does not have a matching entry, try the
1675 if ((error_msg
= tgetent_error(tbuf
, term
)) == NULL
)
1678 if (!termcap_cleared
)
1680 clear_termoptions(); /* clear old options */
1681 termcap_cleared
= TRUE
;
1684 /* get output strings */
1685 for (i
= 0; string_names
[i
].name
!= NULL
; ++i
)
1687 if (term_str(string_names
[i
].dest
) == NULL
1688 || term_str(string_names
[i
].dest
) == empty_option
)
1689 term_str(string_names
[i
].dest
) =
1690 TGETSTR(string_names
[i
].name
, &tp
);
1693 /* tgetflag() returns 1 if the flag is present, 0 if not and
1694 * possibly -1 if the flag doesn't exist. */
1695 if ((T_MS
== NULL
|| T_MS
== empty_option
)
1696 && tgetflag("ms") > 0)
1697 T_MS
= (char_u
*)"y";
1698 if ((T_XS
== NULL
|| T_XS
== empty_option
)
1699 && tgetflag("xs") > 0)
1700 T_XS
= (char_u
*)"y";
1701 if ((T_DB
== NULL
|| T_DB
== empty_option
)
1702 && tgetflag("db") > 0)
1703 T_DB
= (char_u
*)"y";
1704 if ((T_DA
== NULL
|| T_DA
== empty_option
)
1705 && tgetflag("da") > 0)
1706 T_DA
= (char_u
*)"y";
1707 if ((T_UT
== NULL
|| T_UT
== empty_option
)
1708 && tgetflag("ut") > 0)
1709 T_UT
= (char_u
*)"y";
1715 for (i
= 0; key_names
[i
] != NULL
; ++i
)
1717 if (find_termcode((char_u
*)key_names
[i
]) == NULL
)
1719 p
= TGETSTR(key_names
[i
], &tp
);
1720 /* if cursor-left == backspace, ignore it (televideo
1724 || key_names
[i
][0] != 'k'
1725 || key_names
[i
][1] != 'l'))
1726 add_termcode((char_u
*)key_names
[i
], p
, FALSE
);
1731 height
= tgetnum("li");
1733 width
= tgetnum("co");
1736 * Get number of colors (if not done already).
1738 if (term_str(KS_CCO
) == NULL
1739 || term_str(KS_CCO
) == empty_option
)
1740 set_color_count(tgetnum("Co"));
1743 BC
= (char *)TGETSTR("bc", &tp
);
1744 UP
= (char *)TGETSTR("up", &tp
);
1745 p
= TGETSTR("pc", &tp
);
1751 else /* try == 0 || try == 2 */
1752 #endif /* HAVE_TGETENT */
1754 * Use builtin termcap
1759 * If builtin termcap was already used, there is no need to search
1760 * for the builtin termcap again, quit now.
1762 if (try == 2 && builtin_first
&& termcap_cleared
)
1766 * search for 'term' in builtin_termcaps[]
1768 termp
= find_builtin_term(term
);
1769 if (termp
->bt_string
== NULL
) /* did not find it */
1773 * If try == 0, first try the external termcap. If that is not
1774 * found we'll get back here with try == 2.
1775 * If termcap_cleared is set we used the external termcap,
1776 * don't complain about not finding the term in the builtin
1779 if (try == 0) /* try external one */
1781 if (termcap_cleared
) /* found in external termcap */
1786 if (error_msg
!= NULL
)
1788 mch_errmsg((char *)error_msg
);
1792 mch_errmsg((char *)term
);
1793 mch_errmsg(_("' not known. Available builtin terminals are:"));
1795 for (termp
= &(builtin_termcaps
[0]); termp
->bt_string
!= NULL
;
1798 if (termp
->bt_entry
== (int)KS_NAME
)
1801 mch_errmsg(" builtin_");
1805 mch_errmsg(termp
->bt_string
);
1809 /* when user typed :set term=xxx, quit here */
1810 if (starting
!= NO_SCREEN
)
1812 screen_start(); /* don't know where cursor is now */
1816 term
= DEFAULT_TERM
;
1817 mch_errmsg(_("defaulting to '"));
1818 mch_errmsg((char *)term
);
1819 mch_errmsg("'\r\n");
1820 if (emsg_silent
== 0)
1822 screen_start(); /* don't know where cursor is now */
1824 ui_delay(2000L, TRUE
);
1826 set_string_option_direct((char_u
*)"term", -1, term
,
1832 if (!termcap_cleared
)
1835 clear_termoptions(); /* clear old options */
1837 termcap_cleared
= TRUE
;
1840 parse_builtin_tcap(term
);
1842 if (term_is_gui(term
))
1846 /* If starting the GUI failed, don't do any of the other
1847 * things for this terminal */
1851 break; /* don't try using external termcap */
1854 #endif /* FEAT_GUI */
1861 * special: There is no info in the termcap about whether the cursor
1862 * positioning is relative to the start of the screen or to the start of the
1863 * scrolling region. We just guess here. Only msdos pcterm is known to do it
1866 if (STRCMP(term
, "pcterm") == 0)
1867 T_CCS
= (char_u
*)"yes";
1869 T_CCS
= empty_option
;
1873 * Any "stty" settings override the default for t_kb from the termcap.
1874 * This is in os_unix.c, because it depends a lot on the version of unix that
1876 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
1885 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
1886 * didn't work, use the default CTRL-H
1887 * The default for t_kD is DEL, unless t_kb is DEL.
1888 * The vim_strsave'd strings are probably lost forever, well it's only two
1889 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
1896 bs_p
= find_termcode((char_u
*)"kb");
1897 del_p
= find_termcode((char_u
*)"kD");
1898 if (bs_p
== NULL
|| *bs_p
== NUL
)
1899 add_termcode((char_u
*)"kb", (bs_p
= (char_u
*)CTRL_H_STR
), FALSE
);
1900 if ((del_p
== NULL
|| *del_p
== NUL
) &&
1901 (bs_p
== NULL
|| *bs_p
!= DEL
))
1902 add_termcode((char_u
*)"kD", (char_u
*)DEL_STR
, FALSE
);
1905 #if defined(UNIX) || defined(VMS)
1906 term_is_xterm
= vim_is_xterm(term
);
1910 # if defined(UNIX) || defined(VMS)
1911 # ifdef FEAT_MOUSE_TTY
1913 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
1914 * The termcode for the mouse is added as a side effect in option.c.
1920 # ifdef FEAT_MOUSE_XTERM
1921 # ifdef FEAT_CLIPBOARD
1927 if (use_xterm_like_mouse(term
))
1929 if (use_xterm_mouse())
1930 p
= NULL
; /* keep existing value, might be "xterm2" */
1932 p
= (char_u
*)"xterm";
1936 set_option_value((char_u
*)"ttym", 0L, p
, 0);
1942 check_mouse_termcode(); /* set mouse termcode anyway */
1946 set_mouse_termcode(KS_MOUSE
, (char_u
*)"\233M");
1948 #endif /* FEAT_MOUSE */
1954 name
[0] = (int)KS_EXTRA
;
1955 name
[1] = (int)KE_SNIFF
;
1956 add_termcode(name
, (char_u
*)"\233sniff", FALSE
);
1960 #ifdef USE_TERM_CONSOLE
1961 /* DEFAULT_TERM indicates that it is the machine console. */
1962 if (STRCMP(term
, DEFAULT_TERM
) != 0)
1963 term_console
= FALSE
;
1966 term_console
= TRUE
;
1968 win_resize_on(); /* enable window resizing reports */
1973 #if defined(UNIX) || defined(VMS)
1975 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
1977 if (vim_is_fastterm(term
))
1980 #ifdef USE_TERM_CONSOLE
1982 * 'ttyfast' is default on consoles
1988 ttest(TRUE
); /* make sure we have a valid set of terminal codes */
1990 full_screen
= TRUE
; /* we can use termcap codes from now on */
1991 set_term_defaults(); /* use current values as defaults */
1992 #ifdef FEAT_TERMRESPONSE
1993 crv_status
= CRV_GET
; /* Get terminal version later */
1997 * Initialize the terminal with the appropriate termcap codes.
1998 * Set the mouse and window title if possible.
1999 * Don't do this when starting, need to parse the .vimrc first, because it
2000 * may redefine t_TI etc.
2002 if (starting
!= NO_SCREEN
)
2004 starttermcap(); /* may change terminal mode */
2006 setmouse(); /* may start using the mouse */
2009 maketitle(); /* may display window title */
2013 /* display initial screen after ttest() checking. jw. */
2014 if (width
<= 0 || height
<= 0)
2016 /* termcap failed to report size */
2017 /* set defaults, in case ui_get_shellsize() also fails */
2019 #if defined(MSDOS) || defined(WIN3264)
2020 height
= 25; /* console is often 25 lines */
2022 height
= 24; /* most terminals are 24 lines */
2025 set_shellsize(width
, height
, FALSE
); /* may change Rows */
2026 if (starting
!= NO_SCREEN
)
2029 scroll_region_reset(); /* In case Rows changed */
2030 check_map_keycodes(); /* check mappings for terminal codes used */
2037 * Execute the TermChanged autocommands for each buffer that is
2040 old_curbuf
= curbuf
;
2041 for (curbuf
= firstbuf
; curbuf
!= NULL
; curbuf
= curbuf
->b_next
)
2043 if (curbuf
->b_ml
.ml_mfp
!= NULL
)
2044 apply_autocmds(EVENT_TERMCHANGED
, NULL
, NULL
, FALSE
,
2047 if (buf_valid(old_curbuf
))
2048 curbuf
= old_curbuf
;
2053 #ifdef FEAT_TERMRESPONSE
2054 may_req_termresponse();
2060 #if defined(FEAT_MOUSE) || defined(PROTO)
2062 # ifdef FEAT_MOUSE_TTY
2063 # define HMT_NORMAL 1
2064 # define HMT_NETTERM 2
2066 # define HMT_JSBTERM 8
2067 # define HMT_PTERM 16
2068 static int has_mouse_termcode
= 0;
2071 # if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO)
2073 set_mouse_termcode(n
, s
)
2074 int n
; /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2080 name
[1] = KE_FILLER
;
2081 add_termcode(name
, s
, FALSE
);
2082 # ifdef FEAT_MOUSE_TTY
2083 # ifdef FEAT_MOUSE_JSB
2084 if (n
== KS_JSBTERM_MOUSE
)
2085 has_mouse_termcode
|= HMT_JSBTERM
;
2088 # ifdef FEAT_MOUSE_NET
2089 if (n
== KS_NETTERM_MOUSE
)
2090 has_mouse_termcode
|= HMT_NETTERM
;
2093 # ifdef FEAT_MOUSE_DEC
2094 if (n
== KS_DEC_MOUSE
)
2095 has_mouse_termcode
|= HMT_DEC
;
2098 # ifdef FEAT_MOUSE_PTERM
2099 if (n
== KS_PTERM_MOUSE
)
2100 has_mouse_termcode
|= HMT_PTERM
;
2103 has_mouse_termcode
|= HMT_NORMAL
;
2108 # if ((defined(UNIX) || defined(VMS) || defined(OS2)) \
2109 && defined(FEAT_MOUSE_TTY)) || defined(PROTO)
2111 del_mouse_termcode(n
)
2112 int n
; /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */
2117 name
[1] = KE_FILLER
;
2119 # ifdef FEAT_MOUSE_TTY
2120 # ifdef FEAT_MOUSE_JSB
2121 if (n
== KS_JSBTERM_MOUSE
)
2122 has_mouse_termcode
&= ~HMT_JSBTERM
;
2125 # ifdef FEAT_MOUSE_NET
2126 if (n
== KS_NETTERM_MOUSE
)
2127 has_mouse_termcode
&= ~HMT_NETTERM
;
2130 # ifdef FEAT_MOUSE_DEC
2131 if (n
== KS_DEC_MOUSE
)
2132 has_mouse_termcode
&= ~HMT_DEC
;
2135 # ifdef FEAT_MOUSE_PTERM
2136 if (n
== KS_PTERM_MOUSE
)
2137 has_mouse_termcode
&= ~HMT_PTERM
;
2140 has_mouse_termcode
&= ~HMT_NORMAL
;
2149 * Return error message if it fails, NULL if it's OK.
2152 tgetent_error(tbuf
, term
)
2158 i
= TGETENT(tbuf
, term
);
2159 if (i
< 0 /* -1 is always an error */
2160 # ifdef TGETENT_ZERO_ERR
2161 || i
== 0 /* sometimes zero is also an error */
2165 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
2166 * tgetent() with the always existing "dumb" entry to avoid a crash or
2168 (void)TGETENT(tbuf
, "dumb");
2171 # ifdef TGETENT_ZERO_ERR
2172 return (char_u
*)_("E557: Cannot open termcap file");
2176 return (char_u
*)_("E558: Terminal entry not found in terminfo");
2178 return (char_u
*)_("E559: Terminal entry not found in termcap");
2185 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
2195 p
= tgetstr(s
, (char **)pp
);
2196 if (p
== (char *)-1)
2200 #endif /* HAVE_TGETENT */
2202 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(__EMX__) || defined(VMS) || defined(MACOS_X))
2204 * Get Columns and Rows from the termcap. Used after a window signal if the
2205 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
2206 * and "li" entries never change. But on some systems this works.
2207 * Errors while getting the entries are ignored.
2211 long *cp
; /* pointer to columns */
2212 long *rp
; /* pointer to rows */
2214 char_u tbuf
[TBUFSZ
];
2216 if (T_NAME
!= NULL
&& *T_NAME
!= NUL
&& tgetent_error(tbuf
, T_NAME
) == NULL
)
2219 *cp
= tgetnum("co");
2221 *rp
= tgetnum("li");
2224 #endif /* defined(HAVE_TGETENT) && defined(UNIX) */
2227 * Get a string entry from the termcap and add it to the list of termcodes.
2228 * Used for <t_xx> special keys.
2229 * Give an error message for failure when not sourcing.
2230 * If force given, replace an existing entry.
2231 * Return FAIL if the entry was not found, OK if the entry was added.
2234 add_termcap_entry(name
, force
)
2240 struct builtin_term
*termp
;
2245 char_u tbuf
[TBUFSZ
];
2246 char_u tstrbuf
[TBUFSZ
];
2247 char_u
*tp
= tstrbuf
;
2248 char_u
*error_msg
= NULL
;
2252 * If the GUI is running or will start in a moment, we only support the keys
2253 * that the GUI can produce.
2256 if (gui
.in_use
|| gui
.starting
)
2257 return gui_mch_haskey(name
);
2260 if (!force
&& find_termcode(name
) != NULL
) /* it's already there */
2264 if (term
== NULL
|| *term
== NUL
) /* 'term' not defined yet */
2267 if (term_is_builtin(term
)) /* name starts with "builtin_" */
2271 builtin_first
= TRUE
;
2276 builtin_first
= p_tbi
;
2281 * We can get the entry from the builtin termcap and from the external one.
2282 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
2283 * builtin termcap first.
2284 * If 'ttybuiltin' is off, try external termcap first.
2286 for (i
= 0; i
< 2; ++i
)
2288 if (!builtin_first
== i
)
2291 * Search in builtin termcap
2294 termp
= find_builtin_term(term
);
2295 if (termp
->bt_string
!= NULL
) /* found it */
2297 key
= TERMCAP2KEY(name
[0], name
[1]);
2298 while (termp
->bt_entry
!= (int)KS_NAME
)
2300 if ((int)termp
->bt_entry
== key
)
2302 add_termcode(name
, (char_u
*)termp
->bt_string
,
2303 term_is_8bit(term
));
2313 * Search in external termcap
2316 error_msg
= tgetent_error(tbuf
, term
);
2317 if (error_msg
== NULL
)
2319 string
= TGETSTR((char *)name
, &tp
);
2320 if (string
!= NULL
&& *string
!= NUL
)
2322 add_termcode(name
, string
, FALSE
);
2330 if (sourcing_name
== NULL
)
2333 if (error_msg
!= NULL
)
2337 EMSG2(_("E436: No \"%s\" entry in termcap"), name
);
2343 term_is_builtin(name
)
2346 return (STRNCMP(name
, "builtin_", (size_t)8) == 0);
2350 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
2351 * Assume that the terminal is using 8-bit controls when the name contains
2352 * "8bit", like in "xterm-8bit".
2358 return (detected_8bit
|| strstr((char *)name
, "8bit") != NULL
);
2362 * Translate terminal control chars from 7-bit to 8-bit:
2388 return (STRCMP(name
, "builtin_gui") == 0 || STRCMP(name
, "gui") == 0);
2392 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
2398 static char_u buf
[16];
2406 *p
= (char_u
) (i
% 10 + '0');
2409 while (i
> 0 && p
> buf
);
2414 #ifndef HAVE_TGETENT
2417 * minimal tgoto() implementation.
2418 * no padding and we only parse for %i %d and %+char
2420 static char *tgoto
__ARGS((char *, int, int));
2427 static char buf
[30];
2433 for (s
= buf
; s
< e
&& *cm
; cm
++)
2443 p
= (char *)tltoa((unsigned long)y
);
2453 *s
++ = (char)(*++cm
+ y
);
2467 #endif /* HAVE_TGETENT */
2470 * Set the terminal name and initialize the terminal options.
2471 * If "name" is NULL or empty, get the terminal name from the environment.
2472 * If that fails, use the default terminal name.
2480 if (name
!= NULL
&& *name
== NUL
)
2481 name
= NULL
; /* empty name is equal to no name */
2486 * TERM environment variable is normally set to 'ansi' on the Bebox;
2487 * Since the BeBox doesn't quite support full ANSI yet, we use our
2488 * own custom 'ansi-beos' termcap instead, unless the -T option has
2489 * been given on the command line.
2492 && strcmp((char *)mch_getenv((char_u
*)"TERM"), "ansi") == 0)
2493 term
= DEFAULT_TERM
;
2497 term
= mch_getenv((char_u
*)"TERM");
2499 if (term
== NULL
|| *term
== NUL
)
2500 term
= DEFAULT_TERM
;
2501 set_string_option_direct((char_u
*)"term", -1, term
, OPT_FREE
, 0);
2503 /* Set the default terminal name. */
2504 set_string_default("term", term
);
2505 set_string_default("ttytype", term
);
2508 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
2510 set_termname(T_NAME
!= NULL
? T_NAME
: term
);
2514 * the number of calls to ui_write is reduced by using the buffer "out_buf"
2517 # define OUT_SIZE 255 /* only have 640K total... */
2519 # ifdef FEAT_GUI_W16
2520 # define OUT_SIZE 1023 /* Save precious 1K near data */
2522 # define OUT_SIZE 2047
2525 /* Add one to allow mch_write() in os_win32.c to append a NUL */
2526 static char_u out_buf
[OUT_SIZE
+ 1];
2527 static int out_pos
= 0; /* number of chars in out_buf */
2530 * out_flush(): flush the output buffer
2539 /* set out_pos to 0 before ui_write, to avoid recursiveness */
2542 ui_write(out_buf
, len
);
2546 #if defined(FEAT_MBYTE) || defined(PROTO)
2548 * Sometimes a byte out of a multi-byte character is written with out_char().
2549 * To avoid flushing half of the character, call this function first.
2554 if (enc_dbcs
!= 0 && out_pos
>= OUT_SIZE
- MB_MAXBYTES
)
2561 * out_trash(): Throw away the contents of the output buffer
2571 * out_char(c): put a byte into the output buffer.
2572 * Flush it if it becomes full.
2573 * This should not be used for outputting text on the screen (use functions
2574 * like msg_puts() and screen_putchar() for that).
2580 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2581 if (c
== '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2585 out_buf
[out_pos
++] = c
;
2587 /* For testing we flush each time. */
2588 if (out_pos
>= OUT_SIZE
|| p_wd
)
2592 static void out_char_nf
__ARGS((unsigned));
2595 * out_char_nf(c): like out_char(), but don't flush when p_wd is set
2601 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X_UNIX)
2602 if (c
== '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */
2606 out_buf
[out_pos
++] = c
;
2608 if (out_pos
>= OUT_SIZE
)
2613 * A never-padding out_str.
2614 * use this whenever you don't want to run the string through tputs.
2615 * tputs above is harmless, but tputs from the termcap library
2616 * is likely to strip off leading digits, that it mistakes for padding
2617 * information, and "%i", "%d", etc.
2618 * This should only be used for writing terminal codes, not for outputting
2619 * normal text (use functions like msg_puts() and screen_putchar() for that).
2625 if (out_pos
> OUT_SIZE
- 20) /* avoid terminal strings being split up */
2630 /* For testing we write one string at a time. */
2636 * out_str(s): Put a character string a byte at a time into the output buffer.
2637 * If HAVE_TGETENT is defined use the termcap parser. (jw)
2638 * This should only be used for writing terminal codes, not for outputting
2639 * normal text (use functions like msg_puts() and screen_putchar() for that).
2645 if (s
!= NULL
&& *s
)
2648 /* Don't use tputs() when GUI is used, ncurses crashes. */
2655 /* avoid terminal strings being split up */
2656 if (out_pos
> OUT_SIZE
- 20)
2659 tputs((char *)s
, 1, TPUTSFUNCAST out_char_nf
);
2665 /* For testing we write one string at a time. */
2672 * cursor positioning using termcap parser. (jw)
2675 term_windgoto(row
, col
)
2679 OUT_STR(tgoto((char *)T_CM
, col
, row
));
2683 term_cursor_right(i
)
2686 OUT_STR(tgoto((char *)T_CRI
, 0, i
));
2690 term_append_lines(line_count
)
2693 OUT_STR(tgoto((char *)T_CAL
, 0, line_count
));
2697 term_delete_lines(line_count
)
2700 OUT_STR(tgoto((char *)T_CDL
, 0, line_count
));
2703 #if defined(HAVE_TGETENT) || defined(PROTO)
2705 term_set_winpos(x
, y
)
2709 /* Can't handle a negative value here */
2714 OUT_STR(tgoto((char *)T_CWP
, y
, x
));
2718 term_set_winsize(width
, height
)
2722 OUT_STR(tgoto((char *)T_CWS
, height
, width
));
2730 /* Use "AF" termcap entry if present, "Sf" entry otherwise */
2732 term_color(T_CAF
, n
);
2734 term_color(T_CSF
, n
);
2741 /* Use "AB" termcap entry if present, "Sb" entry otherwise */
2743 term_color(T_CAB
, n
);
2745 term_color(T_CSB
, n
);
2754 int i
= 2; /* index in s[] just after <Esc>[ or CSI */
2756 /* Special handling of 16 colors, because termcap can't handle it */
2757 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */
2758 /* Also accept CSI instead of <Esc>[ */
2759 if (n
>= 8 && t_colors
>= 16
2760 && ((s
[0] == ESC
&& s
[1] == '[') || (s
[0] == CSI
&& (i
= 1) == 1))
2762 && (STRCMP(s
+ i
+ 1, "%p1%dm") == 0
2763 || STRCMP(s
+ i
+ 1, "%dm") == 0)
2764 && (s
[i
] == '3' || s
[i
] == '4'))
2772 i
== 2 ? IF_EB("\033[", ESC_STR
"[") : "\233",
2773 s
[i
] == '3' ? (n
>= 16 ? "38;5;" : "9")
2774 : (n
>= 16 ? "48;5;" : "10"));
2775 OUT_STR(tgoto(buf
, 0, n
>= 16 ? n
: n
- 8));
2778 OUT_STR(tgoto((char *)s
, 0, n
));
2781 #if (defined(FEAT_TITLE) && (defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X))) || defined(PROTO)
2783 * Generic function to set window title, using t_ts and t_fs.
2786 term_settitle(title
)
2789 /* t_ts takes one argument: column in status line */
2790 OUT_STR(tgoto((char *)T_TS
, 0, 0)); /* set title start */
2792 out_str(T_FS
); /* set title end */
2798 * Make sure we have a valid set or terminal options.
2799 * Replace all entries that are NULL by empty_option
2805 check_options(); /* make sure no options are NULL */
2808 * MUST have "cm": cursor motion.
2811 EMSG(_("E437: terminal capability \"cm\" required"));
2814 * if "cs" defined, use a scroll region, it's faster.
2817 scroll_region
= TRUE
;
2819 scroll_region
= FALSE
;
2826 /* TP goes to normal mode for TI (invert) and TB (bold) */
2828 T_ME
= T_MR
= T_MD
= T_MB
= empty_option
;
2829 if (*T_SO
== NUL
|| *T_SE
== NUL
)
2830 T_SO
= T_SE
= empty_option
;
2831 if (*T_US
== NUL
|| *T_UE
== NUL
)
2832 T_US
= T_UE
= empty_option
;
2833 if (*T_CZH
== NUL
|| *T_CZR
== NUL
)
2834 T_CZH
= T_CZR
= empty_option
;
2836 /* T_VE is needed even though T_VI is not defined */
2838 T_VI
= empty_option
;
2840 /* if 'mr' or 'me' is not defined use 'so' and 'se' */
2848 /* if 'so' or 'se' is not defined use 'mr' and 'me' */
2858 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */
2868 /* "Sb" and "Sf" come in pairs */
2869 if (*T_CSB
== NUL
|| *T_CSF
== NUL
)
2871 T_CSB
= empty_option
;
2872 T_CSF
= empty_option
;
2875 /* "AB" and "AF" come in pairs */
2876 if (*T_CAB
== NUL
|| *T_CAF
== NUL
)
2878 T_CAB
= empty_option
;
2879 T_CAF
= empty_option
;
2882 /* if 'Sb' and 'AB' are not defined, reset "Co" */
2883 if (*T_CSB
== NUL
&& *T_CAB
== NUL
)
2884 T_CCO
= empty_option
;
2886 /* Set 'weirdinvert' according to value of 't_xs' */
2887 p_wiv
= (*T_XS
!= NUL
);
2891 /* Set t_colors to the value of t_Co. */
2892 t_colors
= atoi((char *)T_CCO
);
2895 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
2898 * Represent the given long_u as individual bytes, with the most significant
2899 * byte first, and store them in dst.
2902 add_long_to_buf(val
, dst
)
2909 for (i
= 1; i
<= sizeof(long_u
); i
++)
2911 shift
= 8 * (sizeof(long_u
) - i
);
2912 dst
[i
- 1] = (char_u
) ((val
>> shift
) & 0xff);
2916 static int get_long_from_buf
__ARGS((char_u
*buf
, long_u
*val
));
2919 * Interpret the next string of bytes in buf as a long integer, with the most
2920 * significant byte first. Note that it is assumed that buf has been through
2921 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
2922 * Puts result in val, and returns the number of bytes read from buf
2923 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
2927 get_long_from_buf(buf
, val
)
2932 char_u bytes
[sizeof(long_u
)];
2937 len
= get_bytes_from_buf(buf
, bytes
, (int)sizeof(long_u
));
2940 for (i
= 0; i
< sizeof(long_u
); i
++)
2942 shift
= 8 * (sizeof(long_u
) - 1 - i
);
2943 *val
+= (long_u
)bytes
[i
] << shift
;
2950 #if defined(FEAT_GUI) \
2951 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \
2952 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)))
2954 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
2955 * that buf has been through inchar(). Returns the actual number of bytes used
2956 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
2960 get_bytes_from_buf(buf
, bytes
, num_bytes
)
2969 for (i
= 0; i
< num_bytes
; i
++)
2971 if ((c
= buf
[len
++]) == NUL
)
2975 if (buf
[len
] == NUL
|| buf
[len
+ 1] == NUL
) /* cannot happen? */
2977 if (buf
[len
++] == (int)KS_ZERO
)
2979 ++len
; /* skip KE_FILLER */
2980 /* else it should be KS_SPECIAL, and c already equals K_SPECIAL */
2982 else if (c
== CSI
&& buf
[len
] == KS_EXTRA
2983 && buf
[len
+ 1] == (int)KE_CSI
)
2984 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
2985 * the start of a special key, see add_to_input_buf_csi(). */
2994 * Check if the new shell size is valid, correct it if it's too small.
2999 if (Columns
< MIN_COLUMNS
)
3000 Columns
= MIN_COLUMNS
;
3001 if (Rows
< min_rows()) /* need room for one window and command line */
3006 * Invoked just before the screen structures are going to be (re)allocated.
3011 static int old_Rows
= 0;
3012 static int old_Columns
= 0;
3014 if (old_Rows
!= Rows
|| old_Columns
!= Columns
)
3016 if (old_Rows
!= Rows
)
3018 /* if 'window' uses the whole screen, keep it using that */
3019 if (p_window
== old_Rows
- 1 || old_Rows
== 0)
3020 p_window
= Rows
- 1;
3022 shell_new_rows(); /* update window sizes */
3024 if (old_Columns
!= Columns
)
3026 old_Columns
= Columns
;
3027 #ifdef FEAT_VERTSPLIT
3028 shell_new_columns(); /* update window sizes */
3034 * Call this function when the Vim shell has been resized in any way.
3035 * Will obtain the current size and redraw (also when size didn't change).
3040 set_shellsize(0, 0, FALSE
);
3044 * Check if the shell size changed. Handle a resize.
3045 * When the size didn't change, nothing happens.
3048 shell_resized_check()
3050 int old_Rows
= Rows
;
3051 int old_Columns
= Columns
;
3053 (void)ui_get_shellsize();
3055 if (old_Rows
!= Rows
|| old_Columns
!= Columns
)
3060 * Set size of the Vim shell.
3061 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3062 * window size (this is used for the :win command).
3063 * If 'mustset' is FALSE, we may try to get the real window size and if
3064 * it fails use 'width' and 'height'.
3067 set_shellsize(width
, height
, mustset
)
3071 static int busy
= FALSE
;
3074 * Avoid recursiveness, can happen when setting the window size causes
3075 * another window-changed signal.
3080 if (width
< 0 || height
< 0) /* just checking... */
3083 if (State
== HITRETURN
|| State
== SETWSIZE
) /* postpone the resizing */
3092 out_flush(); /* must do this before mch_get_shellsize() for
3093 some obscure reason */
3096 if (mustset
|| (ui_get_shellsize() == FAIL
&& height
!= 0))
3101 ui_set_shellsize(mustset
);
3106 /* The window layout used to be adjusted here, but it now happens in
3107 * screenalloc() (also invoked from screenclear()). That is because the
3108 * "busy" check above may skip this, but not screenalloc(). */
3110 if (State
!= ASKMORE
&& State
!= EXTERNCMD
&& State
!= CONFIRM
)
3113 screen_start(); /* don't know where cursor is now */
3115 if (starting
!= NO_SCREEN
)
3120 changed_line_abv_curs();
3121 invalidate_botline();
3124 * We only redraw when it's needed:
3125 * - While at the more prompt or executing an external command, don't
3126 * redraw, but position the cursor.
3127 * - While editing the command line, only redraw that.
3128 * - in Ex mode, don't redraw anything.
3129 * - Otherwise, redraw right now, and position the cursor.
3130 * Always need to call update_screen() or screenalloc(), to make
3131 * sure Rows/Columns and the size of ScreenLines[] is correct!
3133 if (State
== ASKMORE
|| State
== EXTERNCMD
|| State
== CONFIRM
3141 #ifdef FEAT_SCROLLBIND
3142 if (curwin
->w_p_scb
)
3143 do_check_scrollbind(TRUE
);
3145 if (State
& CMDLINE
)
3147 update_screen(NOT_VALID
);
3153 #if defined(FEAT_INS_EXPAND)
3156 redraw_later(NOT_VALID
);
3157 ins_compl_show_pum(); /* This includes the redraw. */
3161 update_screen(NOT_VALID
);
3166 cursor_on(); /* redrawing may have switched it off */
3173 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3174 * commands and Ex mode).
3181 /* don't set the term where gvim was started to any mode */
3189 * When returning after calling a shell we want to really set the
3190 * terminal to raw mode, even though we think it already is, because
3191 * the shell program may have reset the terminal mode.
3192 * When we think the terminal is normal, don't try to set it to
3193 * normal again, because that causes problems (logout!) on some
3196 if (tmode
!= TMODE_COOK
|| cur_tmode
!= TMODE_COOK
)
3198 #ifdef FEAT_TERMRESPONSE
3200 if (!gui
.in_use
&& !gui
.starting
)
3203 /* May need to check for T_CRV response and termcodes, it
3204 * doesn't work in Cooked mode, an external program may get
3206 if (tmode
!= TMODE_RAW
&& crv_status
== CRV_SENT
)
3207 (void)vpeekc_nomap();
3208 check_for_codes_from_term();
3211 #ifdef FEAT_MOUSE_TTY
3212 if (tmode
!= TMODE_RAW
)
3213 mch_setmouse(FALSE
); /* switch mouse off */
3216 mch_settmode(tmode
); /* machine specific function */
3219 if (tmode
== TMODE_RAW
)
3220 setmouse(); /* may switch mouse on */
3224 #ifdef FEAT_TERMRESPONSE
3225 may_req_termresponse();
3233 if (full_screen
&& !termcap_active
)
3235 out_str(T_TI
); /* start termcap mode */
3236 out_str(T_KS
); /* start "keypad transmit" mode */
3238 termcap_active
= TRUE
;
3239 screen_start(); /* don't know where cursor is now */
3240 #ifdef FEAT_TERMRESPONSE
3242 if (!gui
.in_use
&& !gui
.starting
)
3245 may_req_termresponse();
3246 /* Immediately check for a response. If t_Co changes, we don't
3247 * want to redraw with wrong colors first. */
3248 if (crv_status
!= CRV_GET
)
3249 check_for_codes_from_term();
3258 screen_stop_highlight();
3259 reset_cterm_colors();
3262 #ifdef FEAT_TERMRESPONSE
3264 if (!gui
.in_use
&& !gui
.starting
)
3267 /* May need to check for T_CRV response. */
3268 if (crv_status
== CRV_SENT
)
3269 (void)vpeekc_nomap();
3270 /* Check for termcodes first, otherwise an external program may
3272 check_for_codes_from_term();
3275 out_str(T_KE
); /* stop "keypad transmit" mode */
3277 termcap_active
= FALSE
;
3278 cursor_on(); /* just in case it is still off */
3279 out_str(T_TE
); /* stop termcap mode */
3280 screen_start(); /* don't know where cursor is now */
3285 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
3287 * Request version string (for xterm) when needed.
3288 * Only do this after switching to raw mode, otherwise the result will be
3290 * Only do this after startup has finished, to avoid that the response comes
3291 * while executing "-c !cmd" or even after "-c quit".
3292 * Only do this after termcap mode has been started, otherwise the codes for
3293 * the cursor keys may be wrong.
3294 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
3296 * On Unix only do it when both output and input are a tty (avoid writing
3297 * request to terminal while reading from a file).
3298 * The result is caught in check_termcode().
3301 may_req_termresponse()
3303 if (crv_status
== CRV_GET
3304 && cur_tmode
== TMODE_RAW
3310 && isatty(read_cmd_fd
)
3315 crv_status
= CRV_SENT
;
3316 /* check for the characters now, otherwise they might be eaten by
3317 * get_keystroke() */
3319 (void)vpeekc_nomap();
3325 * Return TRUE when saving and restoring the screen.
3330 return (full_screen
&& *T_TI
!= NUL
);
3335 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
3340 # ifdef FEAT_MOUSE_TTY
3344 # ifdef FEAT_MOUSESHAPE
3345 update_mouseshape(-1);
3348 # ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */
3350 /* In the GUI the mouse is always enabled. */
3354 /* be quick when mouse is off */
3355 if (*p_mouse
== NUL
|| has_mouse_termcode
== 0)
3358 /* don't switch mouse on when not in raw mode (Ex mode) */
3359 if (cur_tmode
!= TMODE_RAW
)
3361 mch_setmouse(FALSE
);
3367 checkfor
= MOUSE_VISUAL
;
3370 if (State
== HITRETURN
|| State
== ASKMORE
|| State
== SETWSIZE
)
3371 checkfor
= MOUSE_RETURN
;
3372 else if (State
& INSERT
)
3373 checkfor
= MOUSE_INSERT
;
3374 else if (State
& CMDLINE
)
3375 checkfor
= MOUSE_COMMAND
;
3376 else if (State
== CONFIRM
|| State
== EXTERNCMD
)
3377 checkfor
= ' '; /* don't use mouse for ":confirm" or ":!cmd" */
3379 checkfor
= MOUSE_NORMAL
; /* assume normal mode */
3381 if (mouse_has(checkfor
))
3384 mch_setmouse(FALSE
);
3390 * - "c" is in 'mouse', or
3391 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
3392 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
3393 * normal editing mode (not at hit-return message).
3401 for (p
= p_mouse
; *p
; ++p
)
3404 case 'a': if (vim_strchr((char_u
*)MOUSE_A
, c
) != NULL
)
3407 case MOUSE_HELP
: if (c
!= MOUSE_RETURN
&& curbuf
->b_help
)
3410 default: if (c
== *p
) return TRUE
; break;
3416 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
3421 return (p_mousem
[0] == 'p');
3426 * By outputting the 'cursor very visible' termcap code, for some windowed
3427 * terminals this makes the screen scrolled to the correct position.
3428 * Used when starting Vim or returning from a shell.
3437 screen_start(); /* don't know where cursor is now */
3441 static int cursor_is_off
= FALSE
;
3444 * Enable the cursor.
3452 cursor_is_off
= FALSE
;
3457 * Disable the cursor.
3465 out_str(T_VI
); /* disable cursor */
3466 cursor_is_off
= TRUE
;
3470 #if defined(CURSOR_SHAPE) || defined(PROTO)
3472 * Set cursor shape to match Insert mode.
3477 static int showing_insert_mode
= MAYBE
;
3479 if (!full_screen
|| *T_CSI
== NUL
|| *T_CEI
== NUL
)
3484 if (showing_insert_mode
!= TRUE
)
3485 out_str(T_CSI
); /* Insert mode cursor */
3486 showing_insert_mode
= TRUE
;
3490 if (showing_insert_mode
!= FALSE
)
3491 out_str(T_CEI
); /* non-Insert mode cursor */
3492 showing_insert_mode
= FALSE
;
3498 * Set scrolling region for window 'wp'.
3499 * The region starts 'off' lines from the start of the window.
3500 * Also set the vertical scroll region for a vertically split window. Always
3501 * the full width of the window, excluding the vertical separator.
3504 scroll_region_set(wp
, off
)
3508 OUT_STR(tgoto((char *)T_CS
, W_WINROW(wp
) + wp
->w_height
- 1,
3509 W_WINROW(wp
) + off
));
3510 #ifdef FEAT_VERTSPLIT
3511 if (*T_CSV
!= NUL
&& wp
->w_width
!= Columns
)
3512 OUT_STR(tgoto((char *)T_CSV
, W_WINCOL(wp
) + wp
->w_width
- 1,
3515 screen_start(); /* don't know where cursor is now */
3519 * Reset scrolling region to the whole screen.
3522 scroll_region_reset()
3524 OUT_STR(tgoto((char *)T_CS
, (int)Rows
- 1, 0));
3525 #ifdef FEAT_VERTSPLIT
3527 OUT_STR(tgoto((char *)T_CSV
, (int)Columns
- 1, 0));
3529 screen_start(); /* don't know where cursor is now */
3534 * List of terminal codes that are currently recognized.
3537 static struct termcode
3539 char_u name
[2]; /* termcap name of entry */
3540 char_u
*code
; /* terminal code (in allocated memory) */
3541 int len
; /* STRLEN(code) */
3542 int modlen
; /* length of part before ";*~". */
3543 } *termcodes
= NULL
;
3545 static int tc_max_len
= 0; /* number of entries that termcodes[] can hold */
3546 static int tc_len
= 0; /* current number of entries in termcodes[] */
3548 static int termcode_star
__ARGS((char_u
*code
, int len
));
3554 vim_free(termcodes
[--tc_len
].code
);
3555 vim_free(termcodes
);
3560 BC
= (char *)empty_option
;
3561 UP
= (char *)empty_option
;
3562 PC
= NUL
; /* set pad character to NUL */
3566 need_gather
= TRUE
; /* need to fill termleader[] */
3569 #define ATC_FROM_TERM 55
3572 * Add a new entry to the list of terminal codes.
3573 * The list is kept alphabetical for ":set termcap"
3574 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
3575 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
3578 add_termcode(name
, string
, flags
)
3583 struct termcode
*new_tc
;
3588 if (string
== NULL
|| *string
== NUL
)
3594 s
= vim_strsave(string
);
3598 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */
3599 if (flags
!= 0 && flags
!= ATC_FROM_TERM
&& term_7to8bit(string
) != 0)
3602 s
[0] = term_7to8bit(string
);
3604 len
= (int)STRLEN(s
);
3606 need_gather
= TRUE
; /* need to fill termleader[] */
3609 * need to make space for more entries
3611 if (tc_len
== tc_max_len
)
3614 new_tc
= (struct termcode
*)alloc(
3615 (unsigned)(tc_max_len
* sizeof(struct termcode
)));
3621 for (i
= 0; i
< tc_len
; ++i
)
3622 new_tc
[i
] = termcodes
[i
];
3623 vim_free(termcodes
);
3628 * Look for existing entry with the same name, it is replaced.
3629 * Look for an existing entry that is alphabetical higher, the new entry
3630 * is inserted in front of it.
3632 for (i
= 0; i
< tc_len
; ++i
)
3634 if (termcodes
[i
].name
[0] < name
[0])
3636 if (termcodes
[i
].name
[0] == name
[0])
3638 if (termcodes
[i
].name
[1] < name
[1])
3641 * Exact match: May replace old code.
3643 if (termcodes
[i
].name
[1] == name
[1])
3645 if (flags
== ATC_FROM_TERM
&& (j
= termcode_star(
3646 termcodes
[i
].code
, termcodes
[i
].len
)) > 0)
3648 /* Don't replace ESC[123;*X or ESC O*X with another when
3649 * invoked from got_code_from_term(). */
3650 if (len
== termcodes
[i
].len
- j
3651 && STRNCMP(s
, termcodes
[i
].code
, len
- 1) == 0
3653 == termcodes
[i
].code
[termcodes
[i
].len
- 1])
3655 /* They are equal but for the ";*": don't add it. */
3662 /* Replace old code. */
3663 vim_free(termcodes
[i
].code
);
3670 * Found alphabetical larger entry, move rest to insert new entry
3672 for (j
= tc_len
; j
> i
; --j
)
3673 termcodes
[j
] = termcodes
[j
- 1];
3677 termcodes
[i
].name
[0] = name
[0];
3678 termcodes
[i
].name
[1] = name
[1];
3679 termcodes
[i
].code
= s
;
3680 termcodes
[i
].len
= len
;
3682 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
3683 * accept modifiers. */
3684 termcodes
[i
].modlen
= 0;
3685 j
= termcode_star(s
, len
);
3687 termcodes
[i
].modlen
= len
- 1 - j
;
3692 * Check termcode "code[len]" for ending in ;*X, <Esc>O*X or <M-O>*X.
3693 * The "X" can be any character.
3694 * Return 0 if not found, 2 for ;*X and 1 for O*X and <M-O>*X.
3697 termcode_star(code
, len
)
3701 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */
3702 if (len
>= 3 && code
[len
- 2] == '*')
3704 if (len
>= 5 && code
[len
- 3] == ';')
3706 if ((len
>= 4 && code
[len
- 3] == 'O') || code
[len
- 3] == 'O' + 128)
3718 for (i
= 0; i
< tc_len
; ++i
)
3719 if (termcodes
[i
].name
[0] == name
[0] && termcodes
[i
].name
[1] == name
[1])
3720 return termcodes
[i
].code
;
3724 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3731 return &termcodes
[i
].name
[0];
3741 if (termcodes
== NULL
) /* nothing there yet */
3744 need_gather
= TRUE
; /* need to fill termleader[] */
3746 for (i
= 0; i
< tc_len
; ++i
)
3747 if (termcodes
[i
].name
[0] == name
[0] && termcodes
[i
].name
[1] == name
[1])
3749 del_termcode_idx(i
);
3752 /* not found. Give error message? */
3756 del_termcode_idx(idx
)
3761 vim_free(termcodes
[idx
].code
);
3763 for (i
= idx
; i
< tc_len
; ++i
)
3764 termcodes
[i
] = termcodes
[i
+ 1];
3767 #ifdef FEAT_TERMRESPONSE
3769 * Called when detected that the terminal sends 8-bit codes.
3770 * Convert all 7-bit codes to their 8-bit equivalent.
3778 /* Only need to do something when not already using 8-bit codes. */
3779 if (!term_is_8bit(T_NAME
))
3781 for (i
= 0; i
< tc_len
; ++i
)
3783 c
= term_7to8bit(termcodes
[i
].code
);
3786 STRMOVE(termcodes
[i
].code
+ 1, termcodes
[i
].code
+ 2);
3787 termcodes
[i
].code
[0] = c
;
3790 need_gather
= TRUE
; /* need to fill termleader[] */
3792 detected_8bit
= TRUE
;
3796 #ifdef CHECK_DOUBLE_CLICK
3797 static linenr_T orig_topline
= 0;
3799 static int orig_topfill
= 0;
3802 #if (defined(FEAT_WINDOWS) && defined(CHECK_DOUBLE_CLICK)) || defined(PROTO)
3804 * Checking for double clicks ourselves.
3805 * "orig_topline" is used to avoid detecting a double-click when the window
3806 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3809 * Set orig_topline. Used when jumping to another window, so that a double
3810 * click still works.
3813 set_mouse_topline(wp
)
3816 orig_topline
= wp
->w_topline
;
3818 orig_topfill
= wp
->w_topfill
;
3824 * Check if typebuf.tb_buf[] contains a terminal key code.
3825 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
3827 * Return 0 for no match, -1 for partial match, > 0 for full match.
3828 * With a match, the match is removed, the replacement code is inserted in
3829 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
3831 * When "buf" is not NULL, it is used instead of typebuf.tb_buf[]. "buflen" is
3832 * then the length of the string in buf[].
3835 check_termcode(max_offset
, buf
, buflen
)
3842 int slen
= 0; /* init for GCC */
3851 char_u string
[MAX_KEY_CODE_LEN
+ 1];
3855 # if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
3856 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
3860 int mouse_code
= 0; /* init for GCC */
3861 int is_click
, is_drag
;
3864 static int held_button
= MOUSE_RELEASE
;
3865 static int orig_num_clicks
= 1;
3866 static int orig_mouse_code
= 0x0;
3867 # ifdef CHECK_DOUBLE_CLICK
3868 static int orig_mouse_col
= 0;
3869 static int orig_mouse_row
= 0;
3870 static struct timeval orig_mouse_time
= {0, 0};
3871 /* time of previous mouse click */
3872 struct timeval mouse_time
; /* time of current mouse click */
3873 long timediff
; /* elapsed time in msec */
3877 #ifdef FEAT_MOUSE_GPM
3878 extern int gpm_flag
; /* gpm library variable */
3881 cpo_koffset
= (vim_strchr(p_cpo
, CPO_KOFFSET
) != NULL
);
3884 * Speed up the checks for terminal codes by gathering all first bytes
3885 * used in termleader[]. Often this is just a single <Esc>.
3888 gather_termleader();
3891 * Check at several positions in typebuf.tb_buf[], to catch something like
3892 * "x<Up>" that can be mapped. Stop at max_offset, because characters
3893 * after that cannot be used for mapping, and with @r commands
3895 * can become very long.
3896 * This is used often, KEEP IT FAST!
3898 for (offset
= 0; offset
< max_offset
; ++offset
)
3902 if (offset
>= typebuf
.tb_len
)
3904 tp
= typebuf
.tb_buf
+ typebuf
.tb_off
+ offset
;
3905 len
= typebuf
.tb_len
- offset
; /* length of the input */
3909 if (offset
>= buflen
)
3912 len
= buflen
- offset
;
3916 * Don't check characters after K_SPECIAL, those are already
3917 * translated terminal chars (avoid translating ~@^Hx).
3919 if (*tp
== K_SPECIAL
)
3921 offset
+= 2; /* there are always 2 extra characters */
3926 * Skip this position if the character does not appear as the first
3927 * character in term_strings. This speeds up a lot, since most
3928 * termcodes start with the same character (ESC or CSI).
3931 for (p
= termleader
; *p
&& *p
!= i
; ++p
)
3937 * Skip this position if p_ek is not set and tp[0] is an ESC and we
3938 * are in Insert mode.
3940 if (*tp
== ESC
&& !p_ek
&& (State
& INSERT
))
3943 key_name
[0] = NUL
; /* no key name found yet */
3944 key_name
[1] = NUL
; /* no key name found yet */
3945 modifiers
= 0; /* no modifiers yet */
3951 * GUI special key codes are all of the form [CSI xx].
3953 if (*tp
== CSI
) /* Special key from GUI */
3956 return -1; /* Shouldn't happen */
3958 key_name
[0] = tp
[1];
3959 key_name
[1] = tp
[2];
3963 #endif /* FEAT_GUI */
3965 for (idx
= 0; idx
< tc_len
; ++idx
)
3968 * Ignore the entry if we are not at the start of
3970 * and there are not enough characters to make a match.
3971 * But only when the 'K' flag is in 'cpoptions'.
3973 slen
= termcodes
[idx
].len
;
3974 if (cpo_koffset
&& offset
&& len
< slen
)
3976 if (STRNCMP(termcodes
[idx
].code
, tp
,
3977 (size_t)(slen
> len
? len
: slen
)) == 0)
3979 if (len
< slen
) /* got a partial sequence */
3980 return -1; /* need to get more chars */
3983 * When found a keypad key, check if there is another key
3984 * that matches and use that one. This makes <Home> to be
3985 * found instead of <kHome> when they produce the same
3988 if (termcodes
[idx
].name
[0] == 'K'
3989 && VIM_ISDIGIT(termcodes
[idx
].name
[1]))
3991 for (j
= idx
+ 1; j
< tc_len
; ++j
)
3992 if (termcodes
[j
].len
== slen
&&
3993 STRNCMP(termcodes
[idx
].code
,
3994 termcodes
[j
].code
, slen
) == 0)
4001 key_name
[0] = termcodes
[idx
].name
[0];
4002 key_name
[1] = termcodes
[idx
].name
[1];
4007 * Check for code with modifier, like xterm uses:
4008 * <Esc>[123;*X (modslen == slen - 3)
4009 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
4010 * When there is a modifier the * matches a number.
4011 * When there is no modifier the ;* or * is omitted.
4013 if (termcodes
[idx
].modlen
> 0)
4015 modslen
= termcodes
[idx
].modlen
;
4016 if (cpo_koffset
&& offset
&& len
< modslen
)
4018 if (STRNCMP(termcodes
[idx
].code
, tp
,
4019 (size_t)(modslen
> len
? len
: modslen
)) == 0)
4023 if (len
<= modslen
) /* got a partial sequence */
4024 return -1; /* need to get more chars */
4026 if (tp
[modslen
] == termcodes
[idx
].code
[slen
- 1])
4027 slen
= modslen
+ 1; /* no modifiers */
4028 else if (tp
[modslen
] != ';' && modslen
== slen
- 3)
4029 continue; /* no match */
4032 /* Skip over the digits, the final char must
4034 for (j
= slen
- 2; j
< len
&& isdigit(tp
[j
]); ++j
)
4037 if (len
< j
) /* got a partial sequence */
4038 return -1; /* need to get more chars */
4039 if (tp
[j
- 1] != termcodes
[idx
].code
[slen
- 1])
4040 continue; /* no match */
4042 /* Match! Convert modifier bits. */
4043 n
= atoi((char *)tp
+ slen
- 2) - 1;
4045 modifiers
|= MOD_MASK_SHIFT
;
4047 modifiers
|= MOD_MASK_ALT
;
4049 modifiers
|= MOD_MASK_CTRL
;
4051 modifiers
|= MOD_MASK_META
;
4055 key_name
[0] = termcodes
[idx
].name
[0];
4056 key_name
[1] = termcodes
[idx
].name
[1];
4063 #ifdef FEAT_TERMRESPONSE
4064 if (key_name
[0] == NUL
)
4066 /* Check for xterm version string: "<Esc>[>{x};{vers};{y}c". Also
4067 * eat other possible responses to t_RV, rxvt returns
4068 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[.
4069 * mrxvt has been reported to have "+" in the version. Assume
4070 * the escape sequence ends with a letter or one of "{|}~". */
4071 if (*T_CRV
!= NUL
&& ((tp
[0] == ESC
&& tp
[1] == '[' && len
>= 3)
4072 || (tp
[0] == CSI
&& len
>= 2)))
4076 for (i
= 2 + (tp
[0] != CSI
); i
< len
4077 && !(tp
[i
] >= '{' && tp
[i
] <= '~')
4078 && !ASCII_ISALPHA(tp
[i
]); ++i
)
4079 if (tp
[i
] == ';' && ++j
== 1)
4080 extra
= atoi((char *)tp
+ i
+ 1);
4082 return -1; /* not enough characters */
4084 /* eat it when at least one digit and ending in 'c' */
4085 if (i
> 2 + (tp
[0] != CSI
) && tp
[i
] == 'c')
4087 crv_status
= CRV_GOT
;
4089 /* If this code starts with CSI, you can bet that the
4090 * terminal uses 8-bit codes. */
4094 /* rxvt sends its version number: "20703" is 2.7.3.
4095 * Ignore it for when the user has set 'term' to xterm,
4096 * even though it's an rxvt. */
4100 if (tp
[1 + (tp
[0] != CSI
)] == '>' && j
== 2)
4102 /* if xterm version >= 95 use mouse dragging */
4104 set_option_value((char_u
*)"ttym", 0L,
4105 (char_u
*)"xterm2", 0);
4106 /* if xterm version >= 141 try to get termcap codes */
4109 check_for_codes
= TRUE
;
4111 req_codes_from_term();
4115 set_vim_var_string(VV_TERMRESPONSE
, tp
, i
+ 1);
4117 # ifdef FEAT_AUTOCMD
4118 apply_autocmds(EVENT_TERMRESPONSE
,
4119 NULL
, NULL
, FALSE
, curbuf
);
4121 key_name
[0] = (int)KS_EXTRA
;
4122 key_name
[1] = (int)KE_IGNORE
;
4127 /* Check for '<Esc>P1+r<hex bytes><Esc>\'. A "0" instead of the
4128 * "1" means an invalid request. */
4129 else if (check_for_codes
4130 && ((tp
[0] == ESC
&& tp
[1] == 'P' && len
>= 2)
4133 j
= 1 + (tp
[0] != DCS
);
4134 for (i
= j
; i
< len
; ++i
)
4135 if ((tp
[i
] == ESC
&& tp
[i
+ 1] == '\\' && i
+ 1 < len
)
4138 if (i
- j
>= 3 && tp
[j
+ 1] == '+' && tp
[j
+ 2] == 'r')
4139 got_code_from_term(tp
+ j
, i
);
4140 key_name
[0] = (int)KS_EXTRA
;
4141 key_name
[1] = (int)KE_IGNORE
;
4142 slen
= i
+ 1 + (tp
[i
] == ESC
);
4147 return -1; /* not enough characters */
4152 if (key_name
[0] == NUL
)
4153 continue; /* No match at this position, try next one */
4155 /* We only get here when we have a complete termcode match */
4160 * Only in the GUI: Fetch the pointer coordinates of the scroll event
4161 * so that we know which window to scroll later.
4164 && key_name
[0] == (int)KS_EXTRA
4165 && (key_name
[1] == (int)KE_X1MOUSE
4166 || key_name
[1] == (int)KE_X2MOUSE
4167 || key_name
[1] == (int)KE_MOUSEDOWN
4168 || key_name
[1] == (int)KE_MOUSEUP
))
4170 num_bytes
= get_bytes_from_buf(tp
+ slen
, bytes
, 4);
4171 if (num_bytes
== -1) /* not enough coordinates */
4173 mouse_col
= 128 * (bytes
[0] - ' ' - 1) + bytes
[1] - ' ' - 1;
4174 mouse_row
= 128 * (bytes
[2] - ' ' - 1) + bytes
[3] - ' ' - 1;
4180 * If it is a mouse click, get the coordinates.
4182 if (key_name
[0] == (int)KS_MOUSE
4183 # ifdef FEAT_MOUSE_JSB
4184 || key_name
[0] == (int)KS_JSBTERM_MOUSE
4186 # ifdef FEAT_MOUSE_NET
4187 || key_name
[0] == (int)KS_NETTERM_MOUSE
4189 # ifdef FEAT_MOUSE_DEC
4190 || key_name
[0] == (int)KS_DEC_MOUSE
4192 # ifdef FEAT_MOUSE_PTERM
4193 || key_name
[0] == (int)KS_PTERM_MOUSE
4197 is_click
= is_drag
= FALSE
;
4199 # if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
4200 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
4201 if (key_name
[0] == (int)KS_MOUSE
)
4204 * For xterm and MSDOS we get "<t_mouse>scr", where
4205 * s == encoded button state:
4206 * 0x20 = left button down
4207 * 0x21 = middle button down
4208 * 0x22 = right button down
4209 * 0x23 = any button release
4210 * 0x60 = button 4 down (scroll wheel down)
4211 * 0x61 = button 5 down (scroll wheel up)
4212 * add 0x04 for SHIFT
4215 * add 0x20 for mouse drag (0x40 is drag with left button)
4216 * c == column + ' ' + 1 == column + 33
4217 * r == row + ' ' + 1 == row + 33
4219 * The coordinates are passed on through global variables.
4220 * Ugly, but this avoids trouble with mouse clicks at an
4221 * unexpected moment and allows for mapping them.
4228 /* GUI uses more bits for columns > 223 */
4229 num_bytes
= get_bytes_from_buf(tp
+ slen
, bytes
, 5);
4230 if (num_bytes
== -1) /* not enough coordinates */
4232 mouse_code
= bytes
[0];
4233 mouse_col
= 128 * (bytes
[1] - ' ' - 1)
4234 + bytes
[2] - ' ' - 1;
4235 mouse_row
= 128 * (bytes
[3] - ' ' - 1)
4236 + bytes
[4] - ' ' - 1;
4241 num_bytes
= get_bytes_from_buf(tp
+ slen
, bytes
, 3);
4242 if (num_bytes
== -1) /* not enough coordinates */
4244 mouse_code
= bytes
[0];
4245 mouse_col
= bytes
[1] - ' ' - 1;
4246 mouse_row
= bytes
[2] - ' ' - 1;
4250 /* If the following bytes is also a mouse code and it has
4251 * the same code, dump this one and get the next. This
4252 * makes dragging a whole lot faster. */
4258 j
= termcodes
[idx
].len
;
4259 if (STRNCMP(tp
, tp
+ slen
, (size_t)j
) == 0
4260 && tp
[slen
+ j
] == mouse_code
4261 && tp
[slen
+ j
+ 1] != NUL
4262 && tp
[slen
+ j
+ 2] != NUL
4265 || (tp
[slen
+ j
+ 3] != NUL
4266 && tp
[slen
+ j
+ 4] != NUL
))
4274 # if !defined(MSWIN) && !defined(MSDOS)
4276 * Handle mouse events.
4277 * Recognize the xterm mouse wheel, but not in the GUI, the
4278 * Linux console with GPM and the MS-DOS or Win32 console
4279 * (multi-clicks use >= 0x60).
4281 if (mouse_code
>= MOUSEWHEEL_LOW
4285 # ifdef FEAT_MOUSE_GPM
4290 /* Keep the mouse_code before it's changed, so that we
4291 * remember that it was a mouse wheel click. */
4292 wheel_code
= mouse_code
;
4294 # ifdef FEAT_MOUSE_XTERM
4295 else if (held_button
== MOUSE_RELEASE
4299 && (mouse_code
== 0x23 || mouse_code
== 0x24))
4301 /* Apparently used by rxvt scroll wheel. */
4302 wheel_code
= mouse_code
- 0x23 + MOUSEWHEEL_LOW
;
4306 # if defined(UNIX) && defined(FEAT_MOUSE_TTY)
4307 else if (use_xterm_mouse() > 1)
4309 if (mouse_code
& MOUSE_DRAG_XTERM
)
4310 mouse_code
|= MOUSE_DRAG
;
4313 # ifdef FEAT_XCLIPBOARD
4314 else if (!(mouse_code
& MOUSE_DRAG
& ~MOUSE_CLICK_MASK
))
4316 if ((mouse_code
& MOUSE_RELEASE
) == MOUSE_RELEASE
)
4319 start_xterm_trace(mouse_code
);
4324 # endif /* !UNIX || FEAT_MOUSE_XTERM */
4325 # ifdef FEAT_MOUSE_NET
4326 if (key_name
[0] == (int)KS_NETTERM_MOUSE
)
4330 /* expect a rather limited sequence like: balancing {
4332 * '6' is the row, 45 is the column
4344 mouse_code
= MOUSE_LEFT
;
4345 slen
+= (int)(p
- (tp
+ slen
));
4347 # endif /* FEAT_MOUSE_NET */
4348 # ifdef FEAT_MOUSE_JSB
4349 if (key_name
[0] == (int)KS_JSBTERM_MOUSE
)
4351 int mult
, val
, iter
, button
, status
;
4353 /* JSBTERM Input Model
4354 * \033[0~zw uniq escape sequence
4355 * (L-x) Left button pressed - not pressed x not reporting
4356 * (M-x) Middle button pressed - not pressed x not reporting
4357 * (R-x) Right button pressed - not pressed x not reporting
4358 * (SDmdu) Single , Double click, m mouse move d button down
4360 * ### X cursor position padded to 3 digits
4361 * ### Y cursor position padded to 3 digits
4362 * (s-x) SHIFT key pressed - not pressed x not reporting
4363 * (c-x) CTRL key pressed - not pressed x not reporting
4364 * \033\\ terminateing sequence
4368 button
= mouse_code
= 0;
4371 case 'L': button
= 1; break;
4373 case 'x': break; /* ignore sequence */
4374 default: return -1; /* Unknown Result */
4378 case 'M': button
|= 2; break;
4380 case 'x': break; /* ignore sequence */
4381 default: return -1; /* Unknown Result */
4385 case 'R': button
|= 4; break;
4387 case 'x': break; /* ignore sequence */
4388 default: return -1; /* Unknown Result */
4391 for (val
= 0, mult
= 100, iter
= 0; iter
< 3; iter
++,
4393 if (*p
>= '0' && *p
<= '9')
4394 val
+= (*p
- '0') * mult
;
4398 for (val
= 0, mult
= 100, iter
= 0; iter
< 3; iter
++,
4400 if (*p
>= '0' && *p
<= '9')
4401 val
+= (*p
- '0') * mult
;
4407 case 's': button
|= 8; break; /* SHIFT key Pressed */
4408 case '-': break; /* Not Pressed */
4409 case 'x': break; /* Not Reporting */
4410 default: return -1; /* Unknown Result */
4414 case 'c': button
|= 16; break; /* CTRL key Pressed */
4415 case '-': break; /* Not Pressed */
4416 case 'x': break; /* Not Reporting */
4417 default: return -1; /* Unknown Result */
4425 case 'D': /* Double Click */
4426 case 'S': /* Single Click */
4427 if (button
& 1) mouse_code
|= MOUSE_LEFT
;
4428 if (button
& 2) mouse_code
|= MOUSE_MIDDLE
;
4429 if (button
& 4) mouse_code
|= MOUSE_RIGHT
;
4430 if (button
& 8) mouse_code
|= MOUSE_SHIFT
;
4431 if (button
& 16) mouse_code
|= MOUSE_CTRL
;
4433 case 'm': /* Mouse move */
4434 if (button
& 1) mouse_code
|= MOUSE_LEFT
;
4435 if (button
& 2) mouse_code
|= MOUSE_MIDDLE
;
4436 if (button
& 4) mouse_code
|= MOUSE_RIGHT
;
4437 if (button
& 8) mouse_code
|= MOUSE_SHIFT
;
4438 if (button
& 16) mouse_code
|= MOUSE_CTRL
;
4439 if ((button
& 7) != 0)
4441 held_button
= mouse_code
;
4442 mouse_code
|= MOUSE_DRAG
;
4447 case 'd': /* Button Down */
4448 if (button
& 1) mouse_code
|= MOUSE_LEFT
;
4449 if (button
& 2) mouse_code
|= MOUSE_MIDDLE
;
4450 if (button
& 4) mouse_code
|= MOUSE_RIGHT
;
4451 if (button
& 8) mouse_code
|= MOUSE_SHIFT
;
4452 if (button
& 16) mouse_code
|= MOUSE_CTRL
;
4454 case 'u': /* Button Up */
4456 mouse_code
|= MOUSE_LEFT
| MOUSE_RELEASE
;
4458 mouse_code
|= MOUSE_MIDDLE
| MOUSE_RELEASE
;
4460 mouse_code
|= MOUSE_RIGHT
| MOUSE_RELEASE
;
4462 mouse_code
|= MOUSE_SHIFT
;
4464 mouse_code
|= MOUSE_CTRL
;
4466 default: return -1; /* Unknown Result */
4469 slen
+= (p
- (tp
+ slen
));
4471 # endif /* FEAT_MOUSE_JSB */
4472 # ifdef FEAT_MOUSE_DEC
4473 if (key_name
[0] == (int)KS_DEC_MOUSE
)
4475 /* The DEC Locator Input Model
4476 * Netterm delivers the code sequence:
4477 * \033[2;4;24;80&w (left button down)
4478 * \033[3;0;24;80&w (left button up)
4479 * \033[6;1;24;80&w (right button down)
4480 * \033[7;0;24;80&w (right button up)
4481 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
4482 * Pe is the event code
4483 * Pb is the button code
4484 * Pr is the row coordinate
4485 * Pc is the column coordinate
4486 * Pp is the third coordinate (page number)
4487 * Pe, the event code indicates what event caused this report
4488 * The following event codes are defined:
4489 * 0 - request, the terminal received an explicit request
4490 * for a locator report, but the locator is unavailable
4491 * 1 - request, the terminal received an explicit request
4492 * for a locator report
4493 * 2 - left button down
4494 * 3 - left button up
4495 * 4 - middle button down
4496 * 5 - middle button up
4497 * 6 - right button down
4498 * 7 - right button up
4499 * 8 - fourth button down
4500 * 9 - fourth button up
4501 * 10 - locator outside filter rectangle
4502 * Pb, the button code, ASCII decimal 0-15 indicating which
4503 * buttons are down if any. The state of the four buttons
4504 * on the locator correspond to the low four bits of the
4506 * "1" means button depressed
4507 * 0 - no buttons down,
4512 * Pr is the row coordinate of the locator position in the page,
4513 * encoded as an ASCII decimal value.
4514 * If Pr is omitted, the locator position is undefined
4515 * (outside the terminal window for example).
4516 * Pc is the column coordinate of the locator position in the
4517 * page, encoded as an ASCII decimal value.
4518 * If Pc is omitted, the locator position is undefined
4519 * (outside the terminal window for example).
4520 * Pp is the page coordinate of the locator position
4521 * encoded as an ASCII decimal value.
4522 * The page coordinate may be omitted if the locator is on
4523 * page one (the default). We ignore it anyway.
4529 /* get event status */
4534 /* get button status */
4539 /* get row status */
4544 /* get column status */
4547 /* the page parameter is optional */
4551 (void)getdigits(&p
);
4561 case 0: return -1; /* position request while unavailable */
4562 case 1: /* a response to a locator position request includes
4563 the status of all buttons */
4564 Pb
&= 7; /* mask off and ignore fourth button */
4566 mouse_code
= MOUSE_LEFT
;
4568 mouse_code
= MOUSE_MIDDLE
;
4570 mouse_code
= MOUSE_RIGHT
;
4573 held_button
= mouse_code
;
4574 mouse_code
|= MOUSE_DRAG
;
4575 WantQueryMouse
= TRUE
;
4580 case 2: mouse_code
= MOUSE_LEFT
;
4581 WantQueryMouse
= TRUE
;
4583 case 3: mouse_code
= MOUSE_RELEASE
| MOUSE_LEFT
;
4585 case 4: mouse_code
= MOUSE_MIDDLE
;
4586 WantQueryMouse
= TRUE
;
4588 case 5: mouse_code
= MOUSE_RELEASE
| MOUSE_MIDDLE
;
4590 case 6: mouse_code
= MOUSE_RIGHT
;
4591 WantQueryMouse
= TRUE
;
4593 case 7: mouse_code
= MOUSE_RELEASE
| MOUSE_RIGHT
;
4595 case 8: return -1; /* fourth button down */
4596 case 9: return -1; /* fourth button up */
4597 case 10: return -1; /* mouse outside of filter rectangle */
4598 default: return -1; /* should never occur */
4604 slen
+= (int)(p
- (tp
+ slen
));
4606 # endif /* FEAT_MOUSE_DEC */
4607 # ifdef FEAT_MOUSE_PTERM
4608 if (key_name
[0] == (int)KS_PTERM_MOUSE
)
4610 int button
, num_clicks
, action
, mc
, mr
;
4614 action
= getdigits(&p
);
4618 mouse_row
= getdigits(&p
);
4621 mouse_col
= getdigits(&p
);
4625 button
= getdigits(&p
);
4630 case 4: mouse_code
= MOUSE_LEFT
; break;
4631 case 1: mouse_code
= MOUSE_RIGHT
; break;
4632 case 2: mouse_code
= MOUSE_MIDDLE
; break;
4638 case 31: /* Initial press */
4642 num_clicks
= getdigits(&p
); /* Not used */
4645 case 32: /* Release */
4646 mouse_code
|= MOUSE_RELEASE
;
4650 held_button
= mouse_code
;
4651 mouse_code
|= MOUSE_DRAG
;
4661 slen
+= (p
- (tp
+ slen
));
4663 # endif /* FEAT_MOUSE_PTERM */
4665 /* Interpret the mouse code */
4666 current_button
= (mouse_code
& MOUSE_CLICK_MASK
);
4667 if (current_button
== MOUSE_RELEASE
4668 # ifdef FEAT_MOUSE_XTERM
4674 * If we get a mouse drag or release event when
4675 * there is no mouse button held down (held_button ==
4676 * MOUSE_RELEASE), produce a K_IGNORE below.
4677 * (can happen when you hold down two buttons
4678 * and then let them go, or click in the menu bar, but not
4679 * on a menu, and drag into the text).
4681 if ((mouse_code
& MOUSE_DRAG
) == MOUSE_DRAG
)
4683 current_button
= held_button
;
4685 else if (wheel_code
== 0)
4687 # ifdef CHECK_DOUBLE_CLICK
4688 # ifdef FEAT_MOUSE_GPM
4691 * Only for Unix, when GUI or gpm is not active, we handle
4692 * multi-clicks here.
4694 if (gpm_flag
== 0 && !gui
.in_use
)
4705 * Compute the time elapsed since the previous mouse click.
4707 gettimeofday(&mouse_time
, NULL
);
4708 timediff
= (mouse_time
.tv_usec
4709 - orig_mouse_time
.tv_usec
) / 1000;
4711 --orig_mouse_time
.tv_sec
;
4712 timediff
+= (mouse_time
.tv_sec
4713 - orig_mouse_time
.tv_sec
) * 1000;
4714 orig_mouse_time
= mouse_time
;
4715 if (mouse_code
== orig_mouse_code
4716 && timediff
< p_mouset
4717 && orig_num_clicks
!= 4
4718 && orig_mouse_col
== mouse_col
4719 && orig_mouse_row
== mouse_row
4720 && ((orig_topline
== curwin
->w_topline
4722 && orig_topfill
== curwin
->w_topfill
4726 /* Double click in tab pages line also works
4727 * when window contents changes. */
4728 || (mouse_row
== 0 && firstwin
->w_winrow
> 0)
4734 orig_num_clicks
= 1;
4735 orig_mouse_col
= mouse_col
;
4736 orig_mouse_row
= mouse_row
;
4737 orig_topline
= curwin
->w_topline
;
4739 orig_topfill
= curwin
->w_topfill
;
4742 # if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
4744 orig_num_clicks
= NUM_MOUSE_CLICKS(mouse_code
);
4747 orig_num_clicks
= NUM_MOUSE_CLICKS(mouse_code
);
4750 orig_mouse_code
= mouse_code
;
4753 held_button
= mouse_code
& MOUSE_CLICK_MASK
;
4756 * Translate the actual mouse event into a pseudo mouse event.
4757 * First work out what modifiers are to be used.
4759 if (orig_mouse_code
& MOUSE_SHIFT
)
4760 modifiers
|= MOD_MASK_SHIFT
;
4761 if (orig_mouse_code
& MOUSE_CTRL
)
4762 modifiers
|= MOD_MASK_CTRL
;
4763 if (orig_mouse_code
& MOUSE_ALT
)
4764 modifiers
|= MOD_MASK_ALT
;
4765 if (orig_num_clicks
== 2)
4766 modifiers
|= MOD_MASK_2CLICK
;
4767 else if (orig_num_clicks
== 3)
4768 modifiers
|= MOD_MASK_3CLICK
;
4769 else if (orig_num_clicks
== 4)
4770 modifiers
|= MOD_MASK_4CLICK
;
4772 /* Work out our pseudo mouse event */
4773 key_name
[0] = (int)KS_EXTRA
;
4774 if (wheel_code
!= 0)
4775 key_name
[1] = (wheel_code
& 1)
4776 ? (int)KE_MOUSEUP
: (int)KE_MOUSEDOWN
;
4778 key_name
[1] = get_pseudo_mouse_code(current_button
,
4781 #endif /* FEAT_MOUSE */
4785 * If using the GUI, then we get menu and scrollbar events.
4787 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
4788 * four bytes which are to be taken as a pointer to the vimmenu_T
4791 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
4792 * is one byte with the tab index.
4794 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
4795 * by one byte representing the scrollbar number, and then four bytes
4796 * representing a long_u which is the new value of the scrollbar.
4798 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
4799 * KE_FILLER followed by four bytes representing a long_u which is the
4800 * new value of the scrollbar.
4803 else if (key_name
[0] == (int)KS_MENU
)
4807 num_bytes
= get_long_from_buf(tp
+ slen
, &val
);
4808 if (num_bytes
== -1)
4810 current_menu
= (vimmenu_T
*)val
;
4813 /* The menu may have been deleted right after it was used, check
4815 if (check_menu_pointer(root_menu
, current_menu
) == FAIL
)
4817 key_name
[0] = KS_EXTRA
;
4818 key_name
[1] = (int)KE_IGNORE
;
4822 # ifdef FEAT_GUI_TABLINE
4823 else if (key_name
[0] == (int)KS_TABLINE
)
4825 /* Selecting tabline tab or using its menu. */
4826 num_bytes
= get_bytes_from_buf(tp
+ slen
, bytes
, 1);
4827 if (num_bytes
== -1)
4829 current_tab
= (int)bytes
[0];
4830 if (current_tab
== 255) /* -1 in a byte gives 255 */
4834 else if (key_name
[0] == (int)KS_TABMENU
)
4836 /* Selecting tabline tab or using its menu. */
4837 num_bytes
= get_bytes_from_buf(tp
+ slen
, bytes
, 2);
4838 if (num_bytes
== -1)
4840 current_tab
= (int)bytes
[0];
4841 current_tabmenu
= (int)bytes
[1];
4845 # ifndef USE_ON_FLY_SCROLL
4846 else if (key_name
[0] == (int)KS_VER_SCROLLBAR
)
4850 /* Get the last scrollbar event in the queue of the same type */
4852 for (i
= 0; tp
[j
] == CSI
&& tp
[j
+ 1] == KS_VER_SCROLLBAR
4853 && tp
[j
+ 2] != NUL
; ++i
)
4856 num_bytes
= get_bytes_from_buf(tp
+ j
, bytes
, 1);
4857 if (num_bytes
== -1)
4860 current_scrollbar
= (int)bytes
[0];
4861 else if (current_scrollbar
!= (int)bytes
[0])
4864 num_bytes
= get_long_from_buf(tp
+ j
, &val
);
4865 if (num_bytes
== -1)
4867 scrollbar_value
= val
;
4871 if (i
== 0) /* not enough characters to make one */
4874 else if (key_name
[0] == (int)KS_HOR_SCROLLBAR
)
4878 /* Get the last horiz. scrollbar event in the queue */
4880 for (i
= 0; tp
[j
] == CSI
&& tp
[j
+ 1] == KS_HOR_SCROLLBAR
4881 && tp
[j
+ 2] != NUL
; ++i
)
4884 num_bytes
= get_long_from_buf(tp
+ j
, &val
);
4885 if (num_bytes
== -1)
4887 scrollbar_value
= val
;
4891 if (i
== 0) /* not enough characters to make one */
4894 # endif /* !USE_ON_FLY_SCROLL */
4895 #endif /* FEAT_GUI */
4898 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
4900 key
= handle_x_keys(TERMCAP2KEY(key_name
[0], key_name
[1]));
4903 * Add any modifier codes to our string.
4905 new_slen
= 0; /* Length of what will replace the termcode */
4908 /* Some keys have the modifier included. Need to handle that here
4909 * to make mappings work. */
4910 key
= simplify_key(key
, &modifiers
);
4913 string
[new_slen
++] = K_SPECIAL
;
4914 string
[new_slen
++] = (int)KS_MODIFIER
;
4915 string
[new_slen
++] = modifiers
;
4919 /* Finally, add the special key code to our string */
4920 key_name
[0] = KEY2TERMCAP0(key
);
4921 key_name
[1] = KEY2TERMCAP1(key
);
4922 if (key_name
[0] == KS_KEY
)
4924 /* from ":set <M-b>=xx" */
4927 new_slen
+= (*mb_char2bytes
)(key_name
[1], string
+ new_slen
);
4930 string
[new_slen
++] = key_name
[1];
4934 string
[new_slen
++] = K_SPECIAL
;
4935 string
[new_slen
++] = key_name
[0];
4936 string
[new_slen
++] = key_name
[1];
4938 string
[new_slen
] = NUL
;
4939 extra
= new_slen
- slen
;
4943 /* remove matched chars, taking care of noremap */
4944 del_typebuf(-extra
, offset
);
4946 /* insert the extra space we need */
4947 ins_typebuf(string
+ slen
, REMAP_YES
, offset
, FALSE
, FALSE
);
4950 * Careful: del_typebuf() and ins_typebuf() may have reallocated
4953 mch_memmove(typebuf
.tb_buf
+ typebuf
.tb_off
+ offset
, string
,
4959 /* remove matched characters */
4960 mch_memmove(buf
+ offset
, buf
+ offset
- extra
,
4961 (size_t)(buflen
+ offset
+ extra
));
4963 /* insert the extra space we need */
4964 mch_memmove(buf
+ offset
+ extra
, buf
+ offset
,
4965 (size_t)(buflen
- offset
));
4966 mch_memmove(buf
+ offset
, string
, (size_t)new_slen
);
4968 return (len
+ extra
+ offset
);
4971 return 0; /* no match found */
4975 * Replace any terminal code strings in from[] with the equivalent internal
4976 * vim representation. This is used for the "from" and "to" part of a
4977 * mapping, and the "to" part of a menu command.
4978 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
4980 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
4982 * The replacement is done in result[] and finally copied into allocated
4983 * memory. If this all works well *bufp is set to the allocated memory and a
4984 * pointer to it is returned. If something fails *bufp is set to NULL and from
4987 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V
4988 * is included, otherwise it is removed (for ":map xx ^V", maps xx to
4989 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used
4990 * instead of a CTRL-V.
4993 replace_termcodes(from
, bufp
, from_part
, do_lt
, special
)
4997 int do_lt
; /* also translate <lt> */
4998 int special
; /* always accept <key> notation */
5005 int do_backslash
; /* backslash is a special character */
5006 int do_special
; /* recognize <> key codes */
5007 int do_key_code
; /* recognize raw key codes */
5008 char_u
*result
; /* buffer for resulting string */
5010 do_backslash
= (vim_strchr(p_cpo
, CPO_BSLASH
) == NULL
);
5011 do_special
= (vim_strchr(p_cpo
, CPO_SPECI
) == NULL
) || special
;
5012 do_key_code
= (vim_strchr(p_cpo
, CPO_KEYCODE
) == NULL
);
5015 * Allocate space for the translation. Worst case a single character is
5016 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
5018 result
= alloc((unsigned)STRLEN(from
) * 6 + 1);
5019 if (result
== NULL
) /* out of memory */
5028 * Check for #n at start only: function key n
5030 if (from_part
&& src
[0] == '#' && VIM_ISDIGIT(src
[1])) /* function key */
5032 result
[dlen
++] = K_SPECIAL
;
5033 result
[dlen
++] = 'k';
5035 result
[dlen
++] = ';'; /* #0 is F10 is "k;" */
5037 result
[dlen
++] = src
[1]; /* #3 is F3 is "k3" */
5042 * Copy each byte from *from to result[dlen]
5047 * If 'cpoptions' does not contain '<', check for special key codes,
5048 * like "<C-S-MouseLeft>"
5050 if (do_special
&& (do_lt
|| STRNCMP(src
, "<lt>", 4) != 0))
5054 * Replace <SID> by K_SNR <script-nr> _.
5055 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
5057 if (STRNICMP(src
, "<SID>", 5) == 0)
5059 if (current_SID
<= 0)
5060 EMSG(_(e_usingsid
));
5064 result
[dlen
++] = K_SPECIAL
;
5065 result
[dlen
++] = (int)KS_EXTRA
;
5066 result
[dlen
++] = (int)KE_SNR
;
5067 sprintf((char *)result
+ dlen
, "%ld", (long)current_SID
);
5068 dlen
+= (int)STRLEN(result
+ dlen
);
5069 result
[dlen
++] = '_';
5075 slen
= trans_special(&src
, result
+ dlen
, TRUE
);
5084 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
5085 * Note that this is also checked after replacing the <> form.
5086 * Single character codes are NOT replaced (e.g. ^H or DEL), because
5087 * it could be a character in the file.
5091 i
= find_term_bykeys(src
);
5094 result
[dlen
++] = K_SPECIAL
;
5095 result
[dlen
++] = termcodes
[i
].name
[0];
5096 result
[dlen
++] = termcodes
[i
].name
[1];
5097 src
+= termcodes
[i
].len
;
5098 /* If terminal code matched, continue after it. */
5109 * Replace <Leader> by the value of "mapleader".
5110 * Replace <LocalLeader> by the value of "maplocalleader".
5111 * If "mapleader" or "maplocalleader" isn't set use a backslash.
5113 if (STRNICMP(src
, "<Leader>", 8) == 0)
5116 p
= get_var_value((char_u
*)"g:mapleader");
5118 else if (STRNICMP(src
, "<LocalLeader>", 13) == 0)
5121 p
= get_var_value((char_u
*)"g:maplocalleader");
5130 /* Allow up to 8 * 6 characters for "mapleader". */
5131 if (p
== NULL
|| *p
== NUL
|| STRLEN(p
) > 8 * 6)
5136 result
[dlen
++] = *s
++;
5144 * Remove CTRL-V and ignore the next character.
5145 * For "from" side the CTRL-V at the end is included, for the "to"
5146 * part it is removed.
5147 * If 'cpoptions' does not contain 'B', also accept a backslash.
5150 if (key
== Ctrl_V
|| (do_backslash
&& key
== '\\'))
5152 ++src
; /* skip CTRL-V or backslash */
5156 result
[dlen
++] = key
;
5162 /* skip multibyte char correctly */
5163 for (i
= (*mb_ptr2len
)(src
); i
> 0; --i
)
5167 * If the character is K_SPECIAL, replace it with K_SPECIAL
5168 * KS_SPECIAL KE_FILLER.
5169 * If compiled with the GUI replace CSI with K_CSI.
5171 if (*src
== K_SPECIAL
)
5173 result
[dlen
++] = K_SPECIAL
;
5174 result
[dlen
++] = KS_SPECIAL
;
5175 result
[dlen
++] = KE_FILLER
;
5178 else if (*src
== CSI
)
5180 result
[dlen
++] = K_SPECIAL
;
5181 result
[dlen
++] = KS_EXTRA
;
5182 result
[dlen
++] = (int)KE_CSI
;
5186 result
[dlen
++] = *src
;
5193 * Copy the new string to allocated memory.
5194 * If this fails, just return from.
5196 if ((*bufp
= vim_strsave(result
)) != NULL
)
5203 * Find a termcode with keys 'src' (must be NUL terminated).
5204 * Return the index in termcodes[], or -1 if not found.
5207 find_term_bykeys(src
)
5213 for (i
= 0; i
< tc_len
; ++i
)
5215 slen
= termcodes
[i
].len
;
5216 if (slen
> 1 && STRNCMP(termcodes
[i
].code
, src
, (size_t)slen
) == 0)
5223 * Gather the first characters in the terminal key codes into a string.
5224 * Used to speed up check_termcode().
5234 termleader
[len
++] = CSI
; /* the GUI codes are not in termcodes[] */
5236 #ifdef FEAT_TERMRESPONSE
5237 if (check_for_codes
)
5238 termleader
[len
++] = DCS
; /* the termcode response starts with DCS
5241 termleader
[len
] = NUL
;
5243 for (i
= 0; i
< tc_len
; ++i
)
5244 if (vim_strchr(termleader
, termcodes
[i
].code
[0]) == NULL
)
5246 termleader
[len
++] = termcodes
[i
].code
[0];
5247 termleader
[len
] = NUL
;
5250 need_gather
= FALSE
;
5254 * Show all termcodes (for ":set termcap")
5255 * This code looks a lot like showoptions(), but is different.
5269 #define INC3 27 /* try to make three columns */
5270 #define INC2 40 /* try to make two columns */
5271 #define GAP 2 /* spaces between columns */
5273 if (tc_len
== 0) /* no terminal codes (must be GUI) */
5275 items
= (int *)alloc((unsigned)(sizeof(int) * tc_len
));
5279 /* Highlight title */
5280 MSG_PUTS_TITLE(_("\n--- Terminal keys ---"));
5283 * do the loop two times:
5284 * 1. display the short items (non-strings and short strings)
5285 * 2. display the medium items (medium length strings)
5286 * 3. display the long items (remaining strings)
5288 for (run
= 1; run
<= 3 && !got_int
; ++run
)
5291 * collect the items in items[]
5294 for (i
= 0; i
< tc_len
; i
++)
5296 len
= show_one_termcode(termcodes
[i
].name
,
5297 termcodes
[i
].code
, FALSE
);
5298 if (len
<= INC3
- GAP
? run
== 1
5299 : len
<= INC2
- GAP
? run
== 2
5301 items
[item_count
++] = i
;
5309 cols
= (Columns
+ GAP
) / (run
== 1 ? INC3
: INC2
);
5312 rows
= (item_count
+ cols
- 1) / cols
;
5316 for (row
= 0; row
< rows
&& !got_int
; ++row
)
5318 msg_putchar('\n'); /* go to next line */
5319 if (got_int
) /* 'q' typed in more */
5322 for (i
= row
; i
< item_count
; i
+= rows
)
5324 msg_col
= col
; /* make columns */
5325 show_one_termcode(termcodes
[items
[i
]].name
,
5326 termcodes
[items
[i
]].code
, TRUE
);
5340 * Show one termcode entry.
5341 * Output goes into IObuff[]
5344 show_one_termcode(name
, code
, printit
)
5363 IObuff
[2] = name
[0];
5364 IObuff
[3] = name
[1];
5368 p
= get_special_key_name(TERMCAP2KEY(name
[0], name
[1]), 0);
5370 STRCPY(IObuff
+ 5, p
);
5373 len
= (int)STRLEN(IObuff
);
5375 IObuff
[len
++] = ' ';
5381 len
+= vim_strsize(code
);
5387 msg_puts((char_u
*)"NULL");
5394 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
5396 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
5397 * termcap codes from the terminal itself.
5398 * We get them one by one to avoid a very long response string.
5400 static int xt_index_in
= 0;
5401 static int xt_index_out
= 0;
5404 req_codes_from_term()
5408 req_more_codes_from_term();
5412 req_more_codes_from_term()
5415 int old_idx
= xt_index_out
;
5417 /* Don't do anything when going to exit. */
5421 /* Send up to 10 more requests out than we received. Avoid sending too
5422 * many, there can be a buffer overflow somewhere. */
5423 while (xt_index_out
< xt_index_in
+ 10 && key_names
[xt_index_out
] != NULL
)
5425 sprintf(buf
, "\033P+q%02x%02x\033\\",
5426 key_names
[xt_index_out
][0], key_names
[xt_index_out
][1]);
5427 out_str_nf((char_u
*)buf
);
5431 /* Send the codes out right away. */
5432 if (xt_index_out
!= old_idx
)
5437 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
5438 * A "0" instead of the "1" indicates a code that isn't supported.
5439 * Both <name> and <string> are encoded in hex.
5440 * "code" points to the "0" or "1".
5443 got_code_from_term(code
, len
)
5454 /* A '1' means the code is supported, a '0' means it isn't.
5455 * When half the length is > XT_LEN we can't use it.
5456 * Our names are currently all 2 characters. */
5457 if (code
[0] == '1' && code
[7] == '=' && len
/ 2 < XT_LEN
)
5459 /* Get the name from the response and find it in the table. */
5460 name
[0] = hexhex2nr(code
+ 3);
5461 name
[1] = hexhex2nr(code
+ 5);
5463 for (i
= 0; key_names
[i
] != NULL
; ++i
)
5465 if (STRCMP(key_names
[i
], name
) == 0)
5471 if (key_names
[i
] != NULL
)
5473 for (i
= 8; (c
= hexhex2nr(code
+ i
)) >= 0; i
+= 2)
5476 if (name
[0] == 'C' && name
[1] == 'o')
5478 /* Color count is not a key code. */
5479 i
= atoi((char *)str
);
5482 /* Nr of colors changed, initialize highlighting and
5483 * redraw everything. This causes a redraw, which usually
5484 * clears the message. Try keeping the message if it
5486 set_keep_msg_from_hist();
5488 init_highlight(TRUE
, FALSE
);
5489 redraw_later(CLEAR
);
5494 /* First delete any existing entry with the same code. */
5495 i
= find_term_bykeys(str
);
5497 del_termcode_idx(i
);
5498 add_termcode(name
, str
, ATC_FROM_TERM
);
5503 /* May request more codes now that we received one. */
5505 req_more_codes_from_term();
5509 * Check if there are any unanswered requests and deal with them.
5510 * This is called before starting an external program or getting direct
5511 * keyboard input. We don't want responses to be send to that program or
5512 * handled as typed text.
5515 check_for_codes_from_term()
5519 /* If no codes requested or all are answered, no need to wait. */
5520 if (xt_index_out
== 0 || xt_index_out
== xt_index_in
)
5523 /* Vgetc() will check for and handle any response.
5524 * Keep calling vpeekc() until we don't get any responses. */
5530 if (c
== NUL
) /* nothing available */
5533 /* If a response is recognized it's replaced with K_IGNORE, must read
5534 * it from the input stream. If there is no K_IGNORE we can't do
5535 * anything, break here (there might be some responses further on, but
5536 * we don't want to throw away any typed chars). */
5537 if (c
!= K_SPECIAL
&& c
!= K_IGNORE
)
5551 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5553 * Translate an internal mapping/abbreviation representation into the
5554 * corresponding external one recognized by :map/:abbrev commands;
5555 * respects the current B/k/< settings of 'cpoption'.
5557 * This function is called when expanding mappings/abbreviations on the
5558 * command-line, and for building the "Ambiguous mapping..." error messæge.
5560 * It uses a growarray to build the translation string since the
5561 * latter can be wider than the original description. The caller has to
5562 * free the string afterwards.
5564 * Returns NULL when there is a problem.
5567 translate_mapping(str
, expmap
)
5569 int expmap
; /* TRUE when expanding mappings on command-line */
5580 ga
.ga_growsize
= 40;
5582 cpo_bslash
= (vim_strchr(p_cpo
, CPO_BSLASH
) != NULL
);
5583 cpo_special
= (vim_strchr(p_cpo
, CPO_SPECI
) != NULL
);
5584 cpo_keycode
= (vim_strchr(p_cpo
, CPO_KEYCODE
) == NULL
);
5589 if (c
== K_SPECIAL
&& str
[1] != NUL
&& str
[2] != NUL
)
5592 if (str
[1] == KS_MODIFIER
)
5598 if (cpo_special
&& cpo_keycode
&& c
== K_SPECIAL
&& !modifiers
)
5602 /* try to find special key in termcodes */
5603 for (i
= 0; i
< tc_len
; ++i
)
5604 if (termcodes
[i
].name
[0] == str
[1]
5605 && termcodes
[i
].name
[1] == str
[2])
5609 ga_concat(&ga
, termcodes
[i
].code
);
5611 continue; /* for (str) */
5614 if (c
== K_SPECIAL
&& str
[1] != NUL
&& str
[2] != NUL
)
5616 if (expmap
&& cpo_special
)
5621 c
= TO_SPECIAL(str
[1], str
[2]);
5622 if (c
== K_ZERO
) /* display <Nul> as ^@ */
5626 if (IS_SPECIAL(c
) || modifiers
) /* special key */
5628 if (expmap
&& cpo_special
)
5633 ga_concat(&ga
, get_special_key_name(c
, modifiers
));
5634 continue; /* for (str) */
5637 if (c
== ' ' || c
== '\t' || c
== Ctrl_J
|| c
== Ctrl_V
5638 || (c
== '<' && !cpo_special
) || (c
== '\\' && !cpo_bslash
))
5639 ga_append(&ga
, cpo_bslash
? Ctrl_V
: '\\');
5643 ga_append(&ga
, NUL
);
5644 return (char_u
*)(ga
.ga_data
);
5648 #if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO)
5649 static char ksme_str
[20];
5650 static char ksmr_str
[20];
5651 static char ksmd_str
[20];
5654 * For Win32 console: update termcap codes for existing console attributes.
5660 struct builtin_term
*p
;
5662 p
= find_builtin_term(DEFAULT_TERM
);
5663 sprintf(ksme_str
, IF_EB("\033|%dm", ESC_STR
"|%dm"), attr
);
5664 sprintf(ksmd_str
, IF_EB("\033|%dm", ESC_STR
"|%dm"),
5665 attr
| 0x08); /* FOREGROUND_INTENSITY */
5666 sprintf(ksmr_str
, IF_EB("\033|%dm", ESC_STR
"|%dm"),
5667 ((attr
& 0x0F) << 4) | ((attr
& 0xF0) >> 4));
5669 while (p
->bt_string
!= NULL
)
5671 if (p
->bt_entry
== (int)KS_ME
)
5672 p
->bt_string
= &ksme_str
[0];
5673 else if (p
->bt_entry
== (int)KS_MR
)
5674 p
->bt_string
= &ksmr_str
[0];
5675 else if (p
->bt_entry
== (int)KS_MD
)
5676 p
->bt_string
= &ksmd_str
[0];