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