Mercurial > vim
annotate src/term.c @ 32377:3efec53797f3 v9.0.1520
patch 9.0.1520: completion for option name includes all bool options
Commit: https://github.com/vim/vim/commit/048d9d25214049dfde04c468c14bd1708fb692b8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 6 22:21:11 2023 +0100
patch 9.0.1520: completion for option name includes all bool options
Problem: Completion for option name includes all bool options.
Solution: Do not recognize the "noinv" prefix. Prefix "no" or "inv" when
appropriate.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 06 May 2023 23:30:03 +0200 |
parents | 9085421fe397 |
children | b94e34534b57 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 * | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
13 * primitive termcap support for Amiga and Win32 included |
7 | 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 #define tgetstr tgetstr_defined_wrong | |
16378
3d6b282e2d6e
patch 8.1.1194: typos and small problems in source files
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
25 |
7 | 26 #include "vim.h" |
27 | |
28 #ifdef HAVE_TGETENT | |
29 # ifdef HAVE_TERMIOS_H | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
30 # include <termios.h> // seems to be required for some Linux |
7 | 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 */ | |
27684
1761cc771623
patch 8.2.4368: Amiga: a few compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
40 # if defined(VMS) || defined(AMIGA) |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
23406
diff
changeset
|
41 # define TPUTSFUNCAST (void (*)(unsigned int)) |
7 | 42 # else |
43 # ifdef HAVE_OUTFUNTYPE | |
44 # define TPUTSFUNCAST (outfuntype) | |
45 # else | |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
46 # define TPUTSFUNCAST (int (*)(int)) |
7 | 47 # endif |
48 # endif | |
49 #endif | |
50 | |
51 #undef tgetstr | |
52 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
53 // start of keys that are not directly used by Vim but can be mapped |
7 | 54 #define BT_EXTRA_KEYS 0x101 |
55 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
56 static void parse_builtin_tcap(char_u *s); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
57 static void gather_termleader(void); |
7 | 58 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
59 static void req_codes_from_term(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
60 static void req_more_codes_from_term(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
61 static void got_code_from_term(char_u *code, int len); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
62 static void check_for_codes_from_term(void); |
7 | 63 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
64 static void del_termcode_idx(int idx); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
65 static int find_term_bykeys(char_u *src); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
66 static int term_is_builtin(char_u *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
67 static int term_7to8bit(char_u *p); |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
68 static void accept_modifiers_for_function_keys(void); |
7 | 69 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
70 // Change this to "if 1" to debug what happens with termresponse. |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
71 # if 0 |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
72 # define DEBUG_TERMRESPONSE |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
73 static void log_tr(const char *fmt, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2); |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
74 # define LOG_TR(msg) log_tr msg |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
75 # else |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
76 # define LOG_TR(msg) do { /**/ } while (0) |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
77 # endif |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
78 |
7 | 79 #ifdef HAVE_TGETENT |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
80 static char *invoke_tgetent(char_u *, char_u *); |
7 | 81 |
82 /* | |
83 * Here is our own prototype for tgetstr(), any prototypes from the include | |
84 * files have been disabled by the define at the start of this file. | |
85 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
86 char *tgetstr(char *, char **); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
87 #endif |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
88 |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
89 typedef enum { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
90 STATUS_GET, // send request when switching to RAW mode |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
91 STATUS_SENT, // did send request, checking for response |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
92 STATUS_GOT, // received response |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
93 STATUS_FAIL // timed out |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
94 } request_progress_T; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
95 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
96 typedef struct { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
97 request_progress_T tr_progress; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
98 time_t tr_start; // when request was sent, -1 for never |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
99 } termrequest_T; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
100 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
101 # define TERMREQUEST_INIT {STATUS_GET, -1} |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
102 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
103 // Request Terminal Version status: |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
104 static termrequest_T crv_status = TERMREQUEST_INIT; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
105 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
106 // Request Cursor position report: |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
107 static termrequest_T u7_status = TERMREQUEST_INIT; |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
108 |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
109 // Request xterm compatibility check: |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
110 static termrequest_T xcc_status = TERMREQUEST_INIT; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
111 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
112 #ifdef FEAT_TERMRESPONSE |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
113 # ifdef FEAT_TERMINAL |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
114 // Request foreground color report: |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
115 static termrequest_T rfg_status = TERMREQUEST_INIT; |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
116 static int fg_r = 0; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
117 static int fg_g = 0; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
118 static int fg_b = 0; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
119 static int bg_r = 255; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
120 static int bg_g = 255; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
121 static int bg_b = 255; |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
122 # endif |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
123 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
124 // Request background color report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
125 static termrequest_T rbg_status = TERMREQUEST_INIT; |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
126 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
127 // Request cursor blinking mode report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
128 static termrequest_T rbm_status = TERMREQUEST_INIT; |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
129 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
130 // Request cursor style report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
131 static termrequest_T rcs_status = TERMREQUEST_INIT; |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
132 |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19178
diff
changeset
|
133 // Request window's position report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
134 static termrequest_T winpos_status = TERMREQUEST_INIT; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
135 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
136 static termrequest_T *all_termrequests[] = { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
137 &crv_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
138 &u7_status, |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
139 &xcc_status, |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
140 # ifdef FEAT_TERMINAL |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
141 &rfg_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
142 # endif |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
143 &rbg_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
144 &rbm_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
145 &rcs_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
146 &winpos_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
147 NULL |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
148 }; |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
149 |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
150 // The t_8u code may default to a value but get reset when the term response is |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
151 // received. To avoid redrawing too often, only redraw when t_8u is not reset |
30602
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
152 // and it was supposed to be written. Unless t_8u was set explicitly. |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
153 // FALSE -> don't output t_8u yet |
30986
360f286b5869
patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents:
30984
diff
changeset
|
154 // MAYBE -> tried outputting t_8u while FALSE |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
155 // OK -> can write t_8u |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
156 int write_t_8u_state = FALSE; |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
157 #endif |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
158 |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
159 #ifdef HAVE_TGETENT |
7 | 160 /* |
161 * Don't declare these variables if termcap.h contains them. | |
162 * Autoconf checks if these variables should be declared extern (not all | |
163 * systems have them). | |
164 * Some versions define ospeed to be speed_t, but that is incompatible with | |
165 * BSD, where ospeed is short and speed_t is long. | |
166 */ | |
167 # ifndef HAVE_OSPEED | |
168 # ifdef OSPEED_EXTERN | |
169 extern short ospeed; | |
170 # else | |
171 short ospeed; | |
172 # endif | |
173 # endif | |
174 # ifndef HAVE_UP_BC_PC | |
175 # ifdef UP_BC_PC_EXTERN | |
176 extern char *UP, *BC, PC; | |
177 # else | |
178 char *UP, *BC, PC; | |
179 # endif | |
180 # endif | |
181 | |
182 # define TGETSTR(s, p) vim_tgetstr((s), (p)) | |
183 # define TGETENT(b, t) tgetent((char *)(b), (char *)(t)) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
184 static char_u *vim_tgetstr(char *s, char_u **pp); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
185 #endif // HAVE_TGETENT |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
186 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
187 static int detected_8bit = FALSE; // detected 8-bit terminal |
7 | 188 |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
189 #if (defined(UNIX) || defined(VMS)) |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
190 static int focus_state = MAYBE; // TRUE if the Vim window has focus |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
191 #endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
192 |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
193 #ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
194 // When the cursor shape was detected these values are used: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
195 // 1: block, 2: underline, 3: vertical bar |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
196 static int initial_cursor_shape = 0; |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
197 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
198 // The blink flag from the style response may be inverted from the actual |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
199 // blinking state, xterm XORs the flags. |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
200 static int initial_cursor_shape_blink = FALSE; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
201 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
202 // The blink flag from the blinking-cursor mode response |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
203 static int initial_cursor_blink = FALSE; |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
204 #endif |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
205 |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
206 /* |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
207 * The builtin termcap entries. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
208 * |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
209 * The entries are also included when HAVE_TGETENT is defined, the system |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
210 * termcap may be incomplete and a few Vim-specific entries are added. |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
211 * |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
212 * When HAVE_TGETENT is defined, the builtin entries can be accessed with |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
213 * "builtin_amiga", "builtin_ansi", "builtin_debug", etc. |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
214 * |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
215 * Each termcap is a list of tcap_entry_T. See parse_builtin_tcap() for all |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
216 * details. |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
217 * |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
218 * Entries marked with "guessed" may be wrong. |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
219 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
220 typedef struct |
7 | 221 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
222 int bt_entry; // either a KS_xxx code (>= 0), or a K_xxx code. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
223 char *bt_string; // value |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
224 } tcap_entry_T; |
7 | 225 |
226 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
227 * Standard ANSI terminal, default for Unix. |
7 | 228 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
229 static tcap_entry_T builtin_ansi[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
230 {(int)KS_CE, "\033[K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
231 {(int)KS_AL, "\033[L"}, |
7 | 232 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
233 {(int)KS_CAL, "\033[%p1%dL"}, |
7 | 234 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
235 {(int)KS_CAL, "\033[%dL"}, |
7 | 236 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
237 {(int)KS_DL, "\033[M"}, |
7 | 238 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
239 {(int)KS_CDL, "\033[%p1%dM"}, |
7 | 240 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
241 {(int)KS_CDL, "\033[%dM"}, |
7 | 242 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
243 {(int)KS_CL, "\033[H\033[2J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
244 {(int)KS_ME, "\033[0m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
245 {(int)KS_MR, "\033[7m"}, |
7 | 246 {(int)KS_MS, "y"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
247 {(int)KS_UT, "y"}, // guessed |
7 | 248 {(int)KS_LE, "\b"}, |
249 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
250 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
7 | 251 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
252 {(int)KS_CM, "\033[%i%d;%dH"}, |
7 | 253 # endif |
254 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
255 {(int)KS_CRI, "\033[%p1%dC"}, |
7 | 256 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
257 {(int)KS_CRI, "\033[%dC"}, |
7 | 258 # endif |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
259 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
260 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
261 }; |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
262 |
7 | 263 /* |
264 * VT320 is working as an ANSI terminal compatible DEC terminal. | |
265 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well) | |
266 * TODO:- rewrite ESC[ codes to CSI | |
267 * - keyboard languages (CSI ? 26 n) | |
268 */ | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
269 static tcap_entry_T builtin_vt320[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
270 {(int)KS_CE, "\033[K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
271 {(int)KS_AL, "\033[L"}, |
7 | 272 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
273 {(int)KS_CAL, "\033[%p1%dL"}, |
7 | 274 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
275 {(int)KS_CAL, "\033[%dL"}, |
7 | 276 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
277 {(int)KS_DL, "\033[M"}, |
7 | 278 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
279 {(int)KS_CDL, "\033[%p1%dM"}, |
7 | 280 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
281 {(int)KS_CDL, "\033[%dM"}, |
7 | 282 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
283 {(int)KS_CL, "\033[H\033[2J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
284 {(int)KS_CD, "\033[J"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
285 {(int)KS_CCO, "8"}, // allow 8 colors |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
286 {(int)KS_ME, "\033[0m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
287 {(int)KS_MR, "\033[7m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
288 {(int)KS_MD, "\033[1m"}, // bold mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
289 {(int)KS_SE, "\033[22m"},// normal mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
290 {(int)KS_UE, "\033[24m"},// exit underscore mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
291 {(int)KS_US, "\033[4m"}, // underscore mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
292 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
293 {(int)KS_CZR, "\033[0m"}, // italic mode end |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
294 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI) |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
295 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI) |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
296 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
297 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color |
7 | 298 {(int)KS_MS, "y"}, |
299 {(int)KS_UT, "y"}, | |
6602 | 300 {(int)KS_XN, "y"}, |
7 | 301 {(int)KS_LE, "\b"}, |
302 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
303 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
7 | 304 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
305 {(int)KS_CM, "\033[%i%d;%dH"}, |
7 | 306 # endif |
307 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
308 {(int)KS_CRI, "\033[%p1%dC"}, |
7 | 309 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
310 {(int)KS_CRI, "\033[%dC"}, |
7 | 311 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
312 {K_UP, "\033[A"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
313 {K_DOWN, "\033[B"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
314 {K_RIGHT, "\033[C"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
315 {K_LEFT, "\033[D"}, |
14252
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
316 // Note: cursor key sequences for application cursor mode are omitted, |
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
317 // because they interfere with typed commands: <Esc>OA. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
318 {K_F1, "\033[11~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
319 {K_F2, "\033[12~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
320 {K_F3, "\033[13~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
321 {K_F4, "\033[14~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
322 {K_F5, "\033[15~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
323 {K_F6, "\033[17~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
324 {K_F7, "\033[18~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
325 {K_F8, "\033[19~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
326 {K_F9, "\033[20~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
327 {K_F10, "\033[21~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
328 {K_F11, "\033[23~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
329 {K_F12, "\033[24~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
330 {K_F13, "\033[25~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
331 {K_F14, "\033[26~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
332 {K_F15, "\033[28~"}, // Help |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
333 {K_F16, "\033[29~"}, // Select |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
334 {K_F17, "\033[31~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
335 {K_F18, "\033[32~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
336 {K_F19, "\033[33~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
337 {K_F20, "\033[34~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
338 {K_INS, "\033[2~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
339 {K_DEL, "\033[3~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
340 {K_HOME, "\033[1~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
341 {K_END, "\033[4~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
342 {K_PAGEUP, "\033[5~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
343 {K_PAGEDOWN, "\033[6~"}, |
14252
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
344 // These sequences starting with <Esc> O may interfere with what the user |
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
345 // is typing. Remove these if that bothers you. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
346 {K_KPLUS, "\033Ok"}, // keypad plus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
347 {K_KMINUS, "\033Om"}, // keypad minus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
348 {K_KDIVIDE, "\033Oo"}, // keypad / |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
349 {K_KMULTIPLY, "\033Oj"}, // keypad * |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
350 {K_KENTER, "\033OM"}, // keypad Enter |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
351 {K_K0, "\033Op"}, // keypad 0 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
352 {K_K1, "\033Oq"}, // keypad 1 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
353 {K_K2, "\033Or"}, // keypad 2 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
354 {K_K3, "\033Os"}, // keypad 3 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
355 {K_K4, "\033Ot"}, // keypad 4 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
356 {K_K5, "\033Ou"}, // keypad 5 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
357 {K_K6, "\033Ov"}, // keypad 6 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
358 {K_K7, "\033Ow"}, // keypad 7 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
359 {K_K8, "\033Ox"}, // keypad 8 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
360 {K_K9, "\033Oy"}, // keypad 9 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
361 {K_BS, "\x7f"}, // for some reason 0177 doesn't work |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
362 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
363 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
364 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
365 |
7 | 366 /* |
367 * Ordinary vt52 | |
368 */ | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
369 static tcap_entry_T builtin_vt52[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
370 {(int)KS_CE, "\033K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
371 {(int)KS_CD, "\033J"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
372 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
373 {(int)KS_CM, "\033Y%p1%' '%+%c%p2%' '%+%c"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
374 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
375 {(int)KS_CM, "\033Y%+ %+ "}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
376 # endif |
7 | 377 {(int)KS_LE, "\b"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
378 {(int)KS_SR, "\033I"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
379 {(int)KS_AL, "\033L"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
380 {(int)KS_DL, "\033M"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
381 {K_UP, "\033A"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
382 {K_DOWN, "\033B"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
383 {K_LEFT, "\033D"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
384 {K_RIGHT, "\033C"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
385 {K_F1, "\033P"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
386 {K_F2, "\033Q"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
387 {K_F3, "\033R"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
388 {(int)KS_CL, "\033H\033J"}, |
7 | 389 {(int)KS_MS, "y"}, |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
390 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
391 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
392 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
393 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
394 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
395 * Builtin xterm with Vim-specific entries. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
396 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
397 static tcap_entry_T builtin_xterm[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
398 {(int)KS_CE, "\033[K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
399 {(int)KS_AL, "\033[L"}, |
7 | 400 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
401 {(int)KS_CAL, "\033[%p1%dL"}, |
7 | 402 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
403 {(int)KS_CAL, "\033[%dL"}, |
7 | 404 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
405 {(int)KS_DL, "\033[M"}, |
7 | 406 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
407 {(int)KS_CDL, "\033[%p1%dM"}, |
7 | 408 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
409 {(int)KS_CDL, "\033[%dM"}, |
7 | 410 # endif |
411 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
412 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, |
7 | 413 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
414 {(int)KS_CS, "\033[%i%d;%dr"}, |
7 | 415 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
416 {(int)KS_CL, "\033[H\033[2J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
417 {(int)KS_CD, "\033[J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
418 {(int)KS_ME, "\033[m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
419 {(int)KS_MR, "\033[7m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
420 {(int)KS_MD, "\033[1m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
421 {(int)KS_UE, "\033[m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
422 {(int)KS_US, "\033[4m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
423 {(int)KS_STE, "\033[29m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
424 {(int)KS_STS, "\033[9m"}, |
7 | 425 {(int)KS_MS, "y"}, |
426 {(int)KS_UT, "y"}, | |
427 {(int)KS_LE, "\b"}, | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
428 {(int)KS_VI, "\033[?25l"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
429 {(int)KS_VE, "\033[?25h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
430 {(int)KS_VS, "\033[?12h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
431 {(int)KS_CVS, "\033[?12l"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
432 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
433 {(int)KS_CSH, "\033[%p1%d q"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
434 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
435 {(int)KS_CSH, "\033[%d q"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
436 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
437 {(int)KS_CRC, "\033[?12$p"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
438 {(int)KS_CRS, "\033P$q q\033\\"}, |
7 | 439 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
440 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
7 | 441 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
442 {(int)KS_CM, "\033[%i%d;%dH"}, |
7 | 443 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
444 {(int)KS_SR, "\033M"}, |
7 | 445 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
446 {(int)KS_CRI, "\033[%p1%dC"}, |
7 | 447 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
448 {(int)KS_CRI, "\033[%dC"}, |
7 | 449 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
450 {(int)KS_KS, "\033[?1h\033="}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
451 {(int)KS_KE, "\033[?1l\033>"}, |
7 | 452 # ifdef FEAT_XTERM_SAVE |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
453 {(int)KS_TI, "\0337\033[?47h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
454 {(int)KS_TE, "\033[?47l\0338"}, |
7 | 455 # endif |
31325
e352d200d096
patch 9.0.0996: if 'keyprotocol' is empty "xterm" still uses modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
31305
diff
changeset
|
456 // These are now under control of the 'keyprotocol' option, see |
e352d200d096
patch 9.0.0996: if 'keyprotocol' is empty "xterm" still uses modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
31305
diff
changeset
|
457 // "builtin_mok2". |
e352d200d096
patch 9.0.0996: if 'keyprotocol' is empty "xterm" still uses modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
31305
diff
changeset
|
458 // {(int)KS_CTI, "\033[>4;2m"}, |
e352d200d096
patch 9.0.0996: if 'keyprotocol' is empty "xterm" still uses modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
31305
diff
changeset
|
459 // {(int)KS_CRK, "\033[?4m"}, |
e352d200d096
patch 9.0.0996: if 'keyprotocol' is empty "xterm" still uses modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
31305
diff
changeset
|
460 // {(int)KS_CTE, "\033[>4;m"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
461 {(int)KS_CIS, "\033]1;"}, |
7 | 462 {(int)KS_CIE, "\007"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
463 {(int)KS_TS, "\033]2;"}, |
7 | 464 {(int)KS_FS, "\007"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
465 {(int)KS_CSC, "\033]12;"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
466 {(int)KS_CEC, "\007"}, |
7 | 467 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
468 {(int)KS_CWS, "\033[8;%p1%d;%p2%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
469 {(int)KS_CWP, "\033[3;%p1%d;%p2%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
470 {(int)KS_CGP, "\033[13t"}, |
7 | 471 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
472 {(int)KS_CWS, "\033[8;%d;%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
473 {(int)KS_CWP, "\033[3;%d;%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
474 {(int)KS_CGP, "\033[13t"}, |
7 | 475 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
476 {(int)KS_CRV, "\033[>c"}, |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
477 {(int)KS_CXM, "\033[?1006;1000%?%p1%{1}%=%th%el%;"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
478 {(int)KS_RFG, "\033]10;?\007"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
479 {(int)KS_RBG, "\033]11;?\007"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
480 {(int)KS_U7, "\033[6n"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
481 {(int)KS_CAU, "\033[58;5;%dm"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
482 {(int)KS_CBE, "\033[?2004h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
483 {(int)KS_CBD, "\033[?2004l"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
484 {(int)KS_CST, "\033[22;2t"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
485 {(int)KS_CRT, "\033[23;2t"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
486 {(int)KS_SSI, "\033[22;1t"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
487 {(int)KS_SRI, "\033[23;1t"}, |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
488 # if (defined(UNIX) || defined(VMS)) |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
489 {(int)KS_FD, "\033[?1004l"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
490 {(int)KS_FE, "\033[?1004h"}, |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
491 # endif |
180 | 492 |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
493 {K_UP, "\033O*A"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
494 {K_DOWN, "\033O*B"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
495 {K_RIGHT, "\033O*C"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
496 {K_LEFT, "\033O*D"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
497 // An extra set of cursor keys for vt100 mode |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
498 {K_XUP, "\033[@;*A"}, // Esc [ A or Esc [ 1 ; A |
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
499 {K_XDOWN, "\033[@;*B"}, // Esc [ B or Esc [ 1 ; B |
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
500 {K_XRIGHT, "\033[@;*C"}, // Esc [ C or Esc [ 1 ; C |
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
501 {K_XLEFT, "\033[@;*D"}, // Esc [ D or Esc [ 1 ; D |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
502 // An extra set of function keys for vt100 mode |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
503 {K_XF1, "\033O*P"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
504 {K_XF2, "\033O*Q"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
505 {K_XF3, "\033O*R"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
506 {K_XF4, "\033O*S"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
507 {K_F1, "\033[11;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
508 {K_F2, "\033[12;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
509 {K_F3, "\033[13;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
510 {K_F4, "\033[14;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
511 {K_F5, "\033[15;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
512 {K_F6, "\033[17;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
513 {K_F7, "\033[18;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
514 {K_F8, "\033[19;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
515 {K_F9, "\033[20;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
516 {K_F10, "\033[21;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
517 {K_F11, "\033[23;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
518 {K_F12, "\033[24;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
519 {K_S_TAB, "\033[Z"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
520 {K_HELP, "\033[28;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
521 {K_UNDO, "\033[26;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
522 {K_INS, "\033[2;*~"}, |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
523 {K_HOME, "\033[@;*H"}, // Esc [ H or Esc 1 ; H |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
524 // {K_S_HOME, "\033O2H"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
525 // {K_C_HOME, "\033O5H"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
526 {K_KHOME, "\033[1;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
527 {K_XHOME, "\033O*H"}, // other Home |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
528 {K_ZHOME, "\033[7;*~"}, // other Home |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
529 {K_END, "\033[@;*F"}, // Esc [ F or Esc 1 ; F |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
530 // {K_S_END, "\033O2F"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
531 // {K_C_END, "\033O5F"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
532 {K_KEND, "\033[4;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
533 {K_XEND, "\033O*F"}, // other End |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
534 {K_ZEND, "\033[8;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
535 {K_PAGEUP, "\033[5;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
536 {K_PAGEDOWN, "\033[6;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
537 {K_KPLUS, "\033O*k"}, // keypad plus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
538 {K_KMINUS, "\033O*m"}, // keypad minus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
539 {K_KDIVIDE, "\033O*o"}, // keypad / |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
540 {K_KMULTIPLY, "\033O*j"}, // keypad * |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
541 {K_KENTER, "\033O*M"}, // keypad Enter |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
542 {K_KPOINT, "\033O*n"}, // keypad . |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
543 {K_K0, "\033O*p"}, // keypad 0 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
544 {K_K1, "\033O*q"}, // keypad 1 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
545 {K_K2, "\033O*r"}, // keypad 2 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
546 {K_K3, "\033O*s"}, // keypad 3 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
547 {K_K4, "\033O*t"}, // keypad 4 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
548 {K_K5, "\033O*u"}, // keypad 5 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
549 {K_K6, "\033O*v"}, // keypad 6 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
550 {K_K7, "\033O*w"}, // keypad 7 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
551 {K_K8, "\033O*x"}, // keypad 8 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
552 {K_K9, "\033O*y"}, // keypad 9 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
553 {K_KDEL, "\033[3;*~"}, // keypad Del |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
554 {K_PS, "\033[200~"}, // paste start |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
555 {K_PE, "\033[201~"}, // paste end |
7 | 556 |
557 {BT_EXTRA_KEYS, ""}, | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
558 {TERMCAP2KEY('k', '0'), "\033[10;*~"}, // F0 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
559 {TERMCAP2KEY('F', '3'), "\033[25;*~"}, // F13 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
560 // F14 and F15 are missing, because they send the same codes as the undo |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
561 // and help key, although they don't work on all keyboards. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
562 {TERMCAP2KEY('F', '6'), "\033[29;*~"}, // F16 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
563 {TERMCAP2KEY('F', '7'), "\033[31;*~"}, // F17 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
564 {TERMCAP2KEY('F', '8'), "\033[32;*~"}, // F18 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
565 {TERMCAP2KEY('F', '9'), "\033[33;*~"}, // F19 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
566 {TERMCAP2KEY('F', 'A'), "\033[34;*~"}, // F20 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
567 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
568 {TERMCAP2KEY('F', 'B'), "\033[42;*~"}, // F21 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
569 {TERMCAP2KEY('F', 'C'), "\033[43;*~"}, // F22 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
570 {TERMCAP2KEY('F', 'D'), "\033[44;*~"}, // F23 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
571 {TERMCAP2KEY('F', 'E'), "\033[45;*~"}, // F24 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
572 {TERMCAP2KEY('F', 'F'), "\033[46;*~"}, // F25 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
573 {TERMCAP2KEY('F', 'G'), "\033[47;*~"}, // F26 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
574 {TERMCAP2KEY('F', 'H'), "\033[48;*~"}, // F27 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
575 {TERMCAP2KEY('F', 'I'), "\033[49;*~"}, // F28 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
576 {TERMCAP2KEY('F', 'J'), "\033[50;*~"}, // F29 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
577 {TERMCAP2KEY('F', 'K'), "\033[51;*~"}, // F30 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
578 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
579 {TERMCAP2KEY('F', 'L'), "\033[52;*~"}, // F31 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
580 {TERMCAP2KEY('F', 'M'), "\033[53;*~"}, // F32 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
581 {TERMCAP2KEY('F', 'N'), "\033[54;*~"}, // F33 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
582 {TERMCAP2KEY('F', 'O'), "\033[55;*~"}, // F34 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
583 {TERMCAP2KEY('F', 'P'), "\033[56;*~"}, // F35 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
584 {TERMCAP2KEY('F', 'Q'), "\033[57;*~"}, // F36 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
585 {TERMCAP2KEY('F', 'R'), "\033[58;*~"}, // F37 |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
586 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
587 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
588 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
589 |
7 | 590 /* |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
591 * Additions for using modifyOtherKeys level 2. Same as what is used for |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
592 * xterm. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
593 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
594 static tcap_entry_T builtin_mok2[] = { |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
595 // t_TI enables modifyOtherKeys level 2 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
596 {(int)KS_CTI, "\033[>4;2m"}, |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
597 |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
598 // XTQMODKEYS was added in xterm version 377: "CSI ? 4 m" which should |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
599 // return "{lead} > 4 ; Pv m". Before version 377 we expect it to have no |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
600 // effect. |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
601 {(int)KS_CRK, "\033[?4m"}, |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
602 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
603 // t_TE disables modifyOtherKeys |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
604 {(int)KS_CTE, "\033[>4;m"}, |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
605 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
606 {(int)KS_NAME, NULL} // end marker |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
607 }; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
608 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
609 /* |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
610 * Additions for using the Kitty keyboard protocol. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
611 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
612 static tcap_entry_T builtin_kitty[] = { |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
613 // t_TI enables the kitty keyboard protocol. |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
614 {(int)KS_CTI, "\033[=1;1u"}, |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
615 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
616 // t_RK requests the kitty keyboard protocol state |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
617 {(int)KS_CRK, "\033[?u"}, |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
618 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
619 // t_TE also disables modifyOtherKeys, because t_TI from xterm may already |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
620 // have been used. |
31285
76acee969543
patch 9.0.0976: enabling the kitty keyboard protocol uses push/pop
Bram Moolenaar <Bram@vim.org>
parents:
31281
diff
changeset
|
621 {(int)KS_CTE, "\033[>4;m\033[=0;1u"}, |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
622 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
623 {(int)KS_NAME, NULL} // end marker |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
624 }; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
625 |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
626 #ifdef FEAT_TERMGUICOLORS |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
627 /* |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
628 * Additions for using the RGB colors |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
629 */ |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
630 static tcap_entry_T builtin_rgb[] = { |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
631 // These are printf strings, not terminal codes. |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
632 {(int)KS_8F, "\033[38;2;%lu;%lu;%lum"}, |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
633 {(int)KS_8B, "\033[48;2;%lu;%lu;%lum"}, |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
634 {(int)KS_8U, "\033[58;2;%lu;%lu;%lum"}, |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
635 |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
636 {(int)KS_NAME, NULL} // end marker |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
637 }; |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
638 #endif |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
639 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
640 /* |
7 | 641 * iris-ansi for Silicon Graphics machines. |
642 */ | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
643 static tcap_entry_T builtin_iris_ansi[] = { |
7 | 644 {(int)KS_CE, "\033[K"}, |
645 {(int)KS_CD, "\033[J"}, | |
646 {(int)KS_AL, "\033[L"}, | |
647 # ifdef TERMINFO | |
648 {(int)KS_CAL, "\033[%p1%dL"}, | |
649 # else | |
650 {(int)KS_CAL, "\033[%dL"}, | |
651 # endif | |
652 {(int)KS_DL, "\033[M"}, | |
653 # ifdef TERMINFO | |
654 {(int)KS_CDL, "\033[%p1%dM"}, | |
655 # else | |
656 {(int)KS_CDL, "\033[%dM"}, | |
657 # endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
658 #if 0 // The scroll region is not working as Vim expects. |
7 | 659 # ifdef TERMINFO |
660 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
661 # else | |
662 {(int)KS_CS, "\033[%i%d;%dr"}, | |
663 # endif | |
664 #endif | |
665 {(int)KS_CL, "\033[H\033[2J"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
666 {(int)KS_VE, "\033[9/y\033[12/y"}, // These aren't documented |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
667 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, // These aren't documented |
7 | 668 {(int)KS_TI, "\033[=6h"}, |
669 {(int)KS_TE, "\033[=6l"}, | |
670 {(int)KS_SE, "\033[21;27m"}, | |
671 {(int)KS_SO, "\033[1;7m"}, | |
672 {(int)KS_ME, "\033[m"}, | |
673 {(int)KS_MR, "\033[7m"}, | |
674 {(int)KS_MD, "\033[1m"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
675 {(int)KS_CCO, "8"}, // allow 8 colors |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
676 {(int)KS_CZH, "\033[3m"}, // italic mode on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
677 {(int)KS_CZR, "\033[23m"}, // italic mode off |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
678 {(int)KS_US, "\033[4m"}, // underline on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
679 {(int)KS_UE, "\033[24m"}, // underline off |
7 | 680 # ifdef TERMINFO |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
681 {(int)KS_CAB, "\033[4%p1%dm"}, // set background color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
682 {(int)KS_CAF, "\033[3%p1%dm"}, // set foreground color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
683 {(int)KS_CSB, "\033[102;%p1%dm"}, // set screen background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
684 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color |
7 | 685 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
686 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
687 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
688 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
689 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color |
7 | 690 # endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
691 {(int)KS_MS, "y"}, // guessed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
692 {(int)KS_UT, "y"}, // guessed |
7 | 693 {(int)KS_LE, "\b"}, |
694 # ifdef TERMINFO | |
695 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
696 # else | |
697 {(int)KS_CM, "\033[%i%d;%dH"}, | |
698 # endif | |
699 {(int)KS_SR, "\033M"}, | |
700 # ifdef TERMINFO | |
701 {(int)KS_CRI, "\033[%p1%dC"}, | |
702 # else | |
703 {(int)KS_CRI, "\033[%dC"}, | |
704 # endif | |
705 {(int)KS_CIS, "\033P3.y"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
706 {(int)KS_CIE, "\234"}, // ST "String Terminator" |
7 | 707 {(int)KS_TS, "\033P1.y"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
708 {(int)KS_FS, "\234"}, // ST "String Terminator" |
7 | 709 # ifdef TERMINFO |
710 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"}, | |
711 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"}, | |
712 # else | |
713 {(int)KS_CWS, "\033[203;%d;%d/y"}, | |
714 {(int)KS_CWP, "\033[205;%d;%d/y"}, | |
715 # endif | |
716 {K_UP, "\033[A"}, | |
717 {K_DOWN, "\033[B"}, | |
718 {K_LEFT, "\033[D"}, | |
719 {K_RIGHT, "\033[C"}, | |
720 {K_S_UP, "\033[161q"}, | |
721 {K_S_DOWN, "\033[164q"}, | |
722 {K_S_LEFT, "\033[158q"}, | |
723 {K_S_RIGHT, "\033[167q"}, | |
724 {K_F1, "\033[001q"}, | |
725 {K_F2, "\033[002q"}, | |
726 {K_F3, "\033[003q"}, | |
727 {K_F4, "\033[004q"}, | |
728 {K_F5, "\033[005q"}, | |
729 {K_F6, "\033[006q"}, | |
730 {K_F7, "\033[007q"}, | |
731 {K_F8, "\033[008q"}, | |
732 {K_F9, "\033[009q"}, | |
733 {K_F10, "\033[010q"}, | |
734 {K_F11, "\033[011q"}, | |
735 {K_F12, "\033[012q"}, | |
736 {K_S_F1, "\033[013q"}, | |
737 {K_S_F2, "\033[014q"}, | |
738 {K_S_F3, "\033[015q"}, | |
739 {K_S_F4, "\033[016q"}, | |
740 {K_S_F5, "\033[017q"}, | |
741 {K_S_F6, "\033[018q"}, | |
742 {K_S_F7, "\033[019q"}, | |
743 {K_S_F8, "\033[020q"}, | |
744 {K_S_F9, "\033[021q"}, | |
745 {K_S_F10, "\033[022q"}, | |
746 {K_S_F11, "\033[023q"}, | |
747 {K_S_F12, "\033[024q"}, | |
748 {K_INS, "\033[139q"}, | |
749 {K_HOME, "\033[H"}, | |
750 {K_END, "\033[146q"}, | |
751 {K_PAGEUP, "\033[150q"}, | |
752 {K_PAGEDOWN, "\033[154q"}, | |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
753 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
754 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
755 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
756 |
7 | 757 /* |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
758 * These codes are valid when nansi.sys or equivalent has been installed. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
759 * Function keys on a PC are preceded with a NUL. These are converted into |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
760 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
761 * CTRL-arrow is used instead of SHIFT-arrow. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
762 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
763 static tcap_entry_T builtin_pcansi[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
764 {(int)KS_DL, "\033[M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
765 {(int)KS_AL, "\033[L"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
766 {(int)KS_CE, "\033[K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
767 {(int)KS_CL, "\033[2J"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
768 {(int)KS_ME, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
769 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
770 {(int)KS_MD, "\033[1m"}, // bold: white text |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
771 {(int)KS_SE, "\033[0m"}, // standout end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
772 {(int)KS_SO, "\033[31m"}, // standout: white on blue |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
773 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
774 {(int)KS_CZR, "\033[0m"}, // italic mode end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
775 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
776 {(int)KS_UE, "\033[0m"}, // underscore mode end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
777 {(int)KS_CCO, "8"}, // allow 8 colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
778 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
779 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
780 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
781 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
782 {(int)KS_CAB, "\033[4%dm"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
783 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
784 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
785 {(int)KS_OP, "\033[0m"}, // reset colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
786 {(int)KS_MS, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
787 {(int)KS_UT, "y"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
788 {(int)KS_LE, "\b"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
789 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
790 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
791 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
792 {(int)KS_CM, "\033[%i%d;%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
793 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
794 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
795 {(int)KS_CRI, "\033[%p1%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
796 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
797 {(int)KS_CRI, "\033[%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
798 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
799 {K_UP, "\316H"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
800 {K_DOWN, "\316P"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
801 {K_LEFT, "\316K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
802 {K_RIGHT, "\316M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
803 {K_S_LEFT, "\316s"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
804 {K_S_RIGHT, "\316t"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
805 {K_F1, "\316;"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
806 {K_F2, "\316<"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
807 {K_F3, "\316="}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
808 {K_F4, "\316>"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
809 {K_F5, "\316?"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
810 {K_F6, "\316@"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
811 {K_F7, "\316A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
812 {K_F8, "\316B"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
813 {K_F9, "\316C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
814 {K_F10, "\316D"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
815 {K_F11, "\316\205"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
816 {K_F12, "\316\206"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
817 {K_S_F1, "\316T"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
818 {K_S_F2, "\316U"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
819 {K_S_F3, "\316V"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
820 {K_S_F4, "\316W"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
821 {K_S_F5, "\316X"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
822 {K_S_F6, "\316Y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
823 {K_S_F7, "\316Z"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
824 {K_S_F8, "\316["}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
825 {K_S_F9, "\316\\"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
826 {K_S_F10, "\316]"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
827 {K_S_F11, "\316\207"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
828 {K_S_F12, "\316\210"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
829 {K_INS, "\316R"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
830 {K_DEL, "\316S"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
831 {K_HOME, "\316G"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
832 {K_END, "\316O"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
833 {K_PAGEDOWN, "\316Q"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
834 {K_PAGEUP, "\316I"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
835 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
836 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
837 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
838 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
839 /* |
31503
b9a4699d6a35
patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents:
31495
diff
changeset
|
840 * These codes are valid for the Win32 Console. The entries that start with |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
841 * ESC | are translated into console calls in os_win32.c. The function keys |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
842 * are also translated in os_win32.c. |
7 | 843 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
844 static tcap_entry_T builtin_win32[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
845 {(int)KS_CE, "\033|K"}, // clear to end of line |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
846 {(int)KS_AL, "\033|L"}, // add new blank line |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
847 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
848 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
849 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
850 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
851 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
852 {(int)KS_DL, "\033|M"}, // delete line |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
853 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
854 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
855 {(int)KS_CSV, "\033|%p1%d;%p2%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
856 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
857 {(int)KS_CDL, "\033|%dM"}, // delete number of lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
858 {(int)KS_CSV, "\033|%d;%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
859 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
860 {(int)KS_CL, "\033|J"}, // clear screen |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
861 {(int)KS_CD, "\033|j"}, // clear to end of display |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
862 {(int)KS_VI, "\033|v"}, // cursor invisible |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
863 {(int)KS_VE, "\033|V"}, // cursor visible |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
864 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
865 {(int)KS_ME, "\033|0m"}, // normal |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
866 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
867 {(int)KS_MD, "\033|15m"}, // bold: white on black |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
868 #if 1 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
869 {(int)KS_SO, "\033|31m"}, // standout: white on blue |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
870 {(int)KS_SE, "\033|0m"}, // standout end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
871 #else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
872 {(int)KS_SO, "\033|F"}, // standout: high intensity |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
873 {(int)KS_SE, "\033|f"}, // standout end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
874 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
875 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
876 {(int)KS_CZR, "\033|0m"}, // italic end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
877 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
878 {(int)KS_UE, "\033|0m"}, // underscore end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
879 {(int)KS_CCO, "16"}, // allow 16 colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
880 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
881 {(int)KS_CAB, "\033|%p1%db"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
882 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
883 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
884 {(int)KS_CAB, "\033|%db"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
885 {(int)KS_CAF, "\033|%df"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
886 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
887 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
888 {(int)KS_MS, "y"}, // save to move cur in reverse mode |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
889 {(int)KS_UT, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
890 {(int)KS_XN, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
891 {(int)KS_LE, "\b"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
892 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
893 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
894 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
895 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
896 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
897 {(int)KS_VB, "\033|B"}, // visual bell |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
898 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
899 {(int)KS_TE, "\033|E"}, // out of termcap mode |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
900 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
901 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
902 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
903 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
904 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
905 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
906 {K_UP, "\316H"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
907 {K_DOWN, "\316P"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
908 {K_LEFT, "\316K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
909 {K_RIGHT, "\316M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
910 {K_S_UP, "\316\304"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
911 {K_S_DOWN, "\316\317"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
912 {K_S_LEFT, "\316\311"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
913 {K_C_LEFT, "\316s"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
914 {K_S_RIGHT, "\316\313"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
915 {K_C_RIGHT, "\316t"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
916 {K_S_TAB, "\316\017"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
917 {K_F1, "\316;"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
918 {K_F2, "\316<"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
919 {K_F3, "\316="}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
920 {K_F4, "\316>"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
921 {K_F5, "\316?"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
922 {K_F6, "\316@"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
923 {K_F7, "\316A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
924 {K_F8, "\316B"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
925 {K_F9, "\316C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
926 {K_F10, "\316D"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
927 {K_F11, "\316\205"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
928 {K_F12, "\316\206"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
929 {K_S_F1, "\316T"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
930 {K_S_F2, "\316U"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
931 {K_S_F3, "\316V"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
932 {K_S_F4, "\316W"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
933 {K_S_F5, "\316X"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
934 {K_S_F6, "\316Y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
935 {K_S_F7, "\316Z"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
936 {K_S_F8, "\316["}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
937 {K_S_F9, "\316\\"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
938 {K_S_F10, "\316]"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
939 {K_S_F11, "\316\207"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
940 {K_S_F12, "\316\210"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
941 {K_INS, "\316R"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
942 {K_DEL, "\316S"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
943 {K_HOME, "\316G"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
944 {K_S_HOME, "\316\302"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
945 {K_C_HOME, "\316w"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
946 {K_END, "\316O"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
947 {K_S_END, "\316\315"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
948 {K_C_END, "\316u"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
949 {K_PAGEDOWN, "\316Q"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
950 {K_PAGEUP, "\316I"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
951 {K_KPLUS, "\316N"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
952 {K_KMINUS, "\316J"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
953 {K_KMULTIPLY, "\316\067"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
954 {K_K0, "\316\332"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
955 {K_K1, "\316\336"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
956 {K_K2, "\316\342"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
957 {K_K3, "\316\346"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
958 {K_K4, "\316\352"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
959 {K_K5, "\316\356"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
960 {K_K6, "\316\362"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
961 {K_K7, "\316\366"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
962 {K_K8, "\316\372"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
963 {K_K9, "\316\376"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
964 {K_BS, "\316x"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
965 {K_S_BS, "\316y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
966 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
967 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
968 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
969 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
970 #if defined(FEAT_GUI) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
971 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
972 * GUI uses made-up codes, only used inside Vim. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
973 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
974 static tcap_entry_T builtin_gui[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
975 {(int)KS_CE, "\033|$"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
976 {(int)KS_AL, "\033|i"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
977 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
978 {(int)KS_CAL, "\033|%p1%dI"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
979 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
980 {(int)KS_CAL, "\033|%dI"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
981 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
982 {(int)KS_DL, "\033|d"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
983 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
984 {(int)KS_CDL, "\033|%p1%dD"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
985 {(int)KS_CS, "\033|%p1%d;%p2%dR"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
986 {(int)KS_CSV, "\033|%p1%d;%p2%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
987 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
988 {(int)KS_CDL, "\033|%dD"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
989 {(int)KS_CS, "\033|%d;%dR"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
990 {(int)KS_CSV, "\033|%d;%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
991 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
992 {(int)KS_CL, "\033|C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
993 // attributes switched on with 'h', off with * 'H' |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
994 {(int)KS_ME, "\033|31H"}, // HL_ALL |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
995 {(int)KS_MR, "\033|1h"}, // HL_INVERSE |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
996 {(int)KS_MD, "\033|2h"}, // HL_BOLD |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
997 {(int)KS_SE, "\033|16H"}, // HL_STANDOUT |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
998 {(int)KS_SO, "\033|16h"}, // HL_STANDOUT |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
999 {(int)KS_UE, "\033|8H"}, // HL_UNDERLINE |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1000 {(int)KS_US, "\033|8h"}, // HL_UNDERLINE |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1001 {(int)KS_UCE, "\033|8C"}, // HL_UNDERCURL |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1002 {(int)KS_UCS, "\033|8c"}, // HL_UNDERCURL |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1003 {(int)KS_STE, "\033|4C"}, // HL_STRIKETHROUGH |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1004 {(int)KS_STS, "\033|4c"}, // HL_STRIKETHROUGH |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1005 {(int)KS_CZR, "\033|4H"}, // HL_ITALIC |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1006 {(int)KS_CZH, "\033|4h"}, // HL_ITALIC |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1007 {(int)KS_VB, "\033|f"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1008 {(int)KS_MS, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1009 {(int)KS_UT, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1010 {(int)KS_XN, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1011 {(int)KS_LE, "\b"}, // cursor-left = BS |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1012 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1013 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1014 {(int)KS_CM, "\033|%p1%d;%p2%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1015 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1016 {(int)KS_CM, "\033|%d;%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1017 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1018 // there are no key sequences here, the GUI sequences are recognized |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1019 // in check_termcode() |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1020 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1021 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1022 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1023 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1024 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1025 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1026 * Amiga console window, default for Amiga. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1027 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1028 static tcap_entry_T builtin_amiga[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1029 {(int)KS_CE, "\033[K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1030 {(int)KS_CD, "\033[J"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1031 {(int)KS_AL, "\033[L"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1032 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1033 {(int)KS_CAL, "\033[%p1%dL"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1034 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1035 {(int)KS_CAL, "\033[%dL"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1036 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1037 {(int)KS_DL, "\033[M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1038 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1039 {(int)KS_CDL, "\033[%p1%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1040 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1041 {(int)KS_CDL, "\033[%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1042 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1043 {(int)KS_CL, "\014"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1044 {(int)KS_VI, "\033[0 p"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1045 {(int)KS_VE, "\033[1 p"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1046 {(int)KS_ME, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1047 {(int)KS_MR, "\033[7m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1048 {(int)KS_MD, "\033[1m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1049 {(int)KS_SE, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1050 {(int)KS_SO, "\033[33m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1051 {(int)KS_US, "\033[4m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1052 {(int)KS_UE, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1053 {(int)KS_CZH, "\033[3m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1054 {(int)KS_CZR, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1055 #if defined(__amigaos4__) || defined(__MORPHOS__) || defined(__AROS__) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1056 {(int)KS_CCO, "8"}, // allow 8 colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1057 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1058 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1059 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1060 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1061 {(int)KS_CAB, "\033[4%dm"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1062 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1063 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1064 {(int)KS_OP, "\033[m"}, // reset colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1065 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1066 {(int)KS_MS, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1067 {(int)KS_UT, "y"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1068 {(int)KS_LE, "\b"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1069 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1070 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1071 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1072 {(int)KS_CM, "\033[%i%d;%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1073 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1074 #if defined(__MORPHOS__) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1075 {(int)KS_SR, "\033M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1076 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1077 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1078 {(int)KS_CRI, "\033[%p1%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1079 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1080 {(int)KS_CRI, "\033[%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1081 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1082 {K_UP, "\233A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1083 {K_DOWN, "\233B"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1084 {K_LEFT, "\233D"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1085 {K_RIGHT, "\233C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1086 {K_S_UP, "\233T"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1087 {K_S_DOWN, "\233S"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1088 {K_S_LEFT, "\233 A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1089 {K_S_RIGHT, "\233 @"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1090 {K_S_TAB, "\233Z"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1091 {K_F1, "\233\060~"},// some compilers don't dig "\2330" |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1092 {K_F2, "\233\061~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1093 {K_F3, "\233\062~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1094 {K_F4, "\233\063~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1095 {K_F5, "\233\064~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1096 {K_F6, "\233\065~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1097 {K_F7, "\233\066~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1098 {K_F8, "\233\067~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1099 {K_F9, "\233\070~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1100 {K_F10, "\233\071~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1101 {K_S_F1, "\233\061\060~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1102 {K_S_F2, "\233\061\061~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1103 {K_S_F3, "\233\061\062~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1104 {K_S_F4, "\233\061\063~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1105 {K_S_F5, "\233\061\064~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1106 {K_S_F6, "\233\061\065~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1107 {K_S_F7, "\233\061\066~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1108 {K_S_F8, "\233\061\067~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1109 {K_S_F9, "\233\061\070~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1110 {K_S_F10, "\233\061\071~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1111 {K_HELP, "\233?~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1112 {K_INS, "\233\064\060~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1113 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1114 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1115 {K_HOME, "\233\064\064~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1116 {K_END, "\233\064\065~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1117 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1118 {BT_EXTRA_KEYS, ""}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1119 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1120 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1121 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1122 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1123 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1124 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1125 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1126 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1127 * The most minimal terminal: only clear screen and cursor positioning. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1128 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1129 static tcap_entry_T builtin_dumb[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1130 {(int)KS_CL, "\014"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1131 #ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1132 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1133 #else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1134 {(int)KS_CM, "\033[%i%d;%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1135 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1136 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1137 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1138 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1139 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1140 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1141 * Terminal used for debugging. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1142 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1143 static tcap_entry_T builtin_debug[] = { |
7 | 1144 {(int)KS_CE, "[CE]"}, |
1145 {(int)KS_CD, "[CD]"}, | |
1146 {(int)KS_AL, "[AL]"}, | |
1147 # ifdef TERMINFO | |
1148 {(int)KS_CAL, "[CAL%p1%d]"}, | |
1149 # else | |
1150 {(int)KS_CAL, "[CAL%d]"}, | |
1151 # endif | |
1152 {(int)KS_DL, "[DL]"}, | |
1153 # ifdef TERMINFO | |
1154 {(int)KS_CDL, "[CDL%p1%d]"}, | |
1155 # else | |
1156 {(int)KS_CDL, "[CDL%d]"}, | |
1157 # endif | |
1158 # ifdef TERMINFO | |
1159 {(int)KS_CS, "[%p1%dCS%p2%d]"}, | |
1160 # else | |
1161 {(int)KS_CS, "[%dCS%d]"}, | |
1162 # endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
1163 # ifdef TERMINFO |
7 | 1164 {(int)KS_CSV, "[%p1%dCSV%p2%d]"}, |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
1165 # else |
7 | 1166 {(int)KS_CSV, "[%dCSV%d]"}, |
1167 # endif | |
1168 # ifdef TERMINFO | |
1169 {(int)KS_CAB, "[CAB%p1%d]"}, | |
1170 {(int)KS_CAF, "[CAF%p1%d]"}, | |
1171 {(int)KS_CSB, "[CSB%p1%d]"}, | |
1172 {(int)KS_CSF, "[CSF%p1%d]"}, | |
1173 # else | |
1174 {(int)KS_CAB, "[CAB%d]"}, | |
1175 {(int)KS_CAF, "[CAF%d]"}, | |
1176 {(int)KS_CSB, "[CSB%d]"}, | |
1177 {(int)KS_CSF, "[CSF%d]"}, | |
1178 # endif | |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1179 {(int)KS_CAU, "[CAU%d]"}, |
7 | 1180 {(int)KS_OP, "[OP]"}, |
1181 {(int)KS_LE, "[LE]"}, | |
1182 {(int)KS_CL, "[CL]"}, | |
1183 {(int)KS_VI, "[VI]"}, | |
1184 {(int)KS_VE, "[VE]"}, | |
1185 {(int)KS_VS, "[VS]"}, | |
1186 {(int)KS_ME, "[ME]"}, | |
1187 {(int)KS_MR, "[MR]"}, | |
1188 {(int)KS_MB, "[MB]"}, | |
1189 {(int)KS_MD, "[MD]"}, | |
1190 {(int)KS_SE, "[SE]"}, | |
1191 {(int)KS_SO, "[SO]"}, | |
1192 {(int)KS_UE, "[UE]"}, | |
1193 {(int)KS_US, "[US]"}, | |
205 | 1194 {(int)KS_UCE, "[UCE]"}, |
1195 {(int)KS_UCS, "[UCS]"}, | |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1196 {(int)KS_USS, "[USS]"}, |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1197 {(int)KS_DS, "[DS]"}, |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1198 {(int)KS_CDS, "[CDS]"}, |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1199 {(int)KS_STE, "[STE]"}, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1200 {(int)KS_STS, "[STS]"}, |
7 | 1201 {(int)KS_MS, "[MS]"}, |
1202 {(int)KS_UT, "[UT]"}, | |
6602 | 1203 {(int)KS_XN, "[XN]"}, |
7 | 1204 # ifdef TERMINFO |
1205 {(int)KS_CM, "[%p1%dCM%p2%d]"}, | |
1206 # else | |
1207 {(int)KS_CM, "[%dCM%d]"}, | |
1208 # endif | |
1209 {(int)KS_SR, "[SR]"}, | |
1210 # ifdef TERMINFO | |
1211 {(int)KS_CRI, "[CRI%p1%d]"}, | |
1212 # else | |
1213 {(int)KS_CRI, "[CRI%d]"}, | |
1214 # endif | |
1215 {(int)KS_VB, "[VB]"}, | |
1216 {(int)KS_KS, "[KS]"}, | |
1217 {(int)KS_KE, "[KE]"}, | |
1218 {(int)KS_TI, "[TI]"}, | |
1219 {(int)KS_TE, "[TE]"}, | |
1220 {(int)KS_CIS, "[CIS]"}, | |
1221 {(int)KS_CIE, "[CIE]"}, | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
1222 {(int)KS_CSC, "[CSC]"}, |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
1223 {(int)KS_CEC, "[CEC]"}, |
7 | 1224 {(int)KS_TS, "[TS]"}, |
1225 {(int)KS_FS, "[FS]"}, | |
1226 # ifdef TERMINFO | |
1227 {(int)KS_CWS, "[%p1%dCWS%p2%d]"}, | |
1228 {(int)KS_CWP, "[%p1%dCWP%p2%d]"}, | |
1229 # else | |
1230 {(int)KS_CWS, "[%dCWS%d]"}, | |
1231 {(int)KS_CWP, "[%dCWP%d]"}, | |
1232 # endif | |
1233 {(int)KS_CRV, "[CRV]"}, | |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
1234 {(int)KS_CXM, "[CXM]"}, |
4215 | 1235 {(int)KS_U7, "[U7]"}, |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
1236 {(int)KS_RFG, "[RFG]"}, |
6874 | 1237 {(int)KS_RBG, "[RBG]"}, |
7 | 1238 {K_UP, "[KU]"}, |
1239 {K_DOWN, "[KD]"}, | |
1240 {K_LEFT, "[KL]"}, | |
1241 {K_RIGHT, "[KR]"}, | |
180 | 1242 {K_XUP, "[xKU]"}, |
1243 {K_XDOWN, "[xKD]"}, | |
1244 {K_XLEFT, "[xKL]"}, | |
1245 {K_XRIGHT, "[xKR]"}, | |
7 | 1246 {K_S_UP, "[S-KU]"}, |
1247 {K_S_DOWN, "[S-KD]"}, | |
1248 {K_S_LEFT, "[S-KL]"}, | |
1249 {K_C_LEFT, "[C-KL]"}, | |
1250 {K_S_RIGHT, "[S-KR]"}, | |
1251 {K_C_RIGHT, "[C-KR]"}, | |
1252 {K_F1, "[F1]"}, | |
1253 {K_XF1, "[xF1]"}, | |
1254 {K_F2, "[F2]"}, | |
1255 {K_XF2, "[xF2]"}, | |
1256 {K_F3, "[F3]"}, | |
1257 {K_XF3, "[xF3]"}, | |
1258 {K_F4, "[F4]"}, | |
1259 {K_XF4, "[xF4]"}, | |
1260 {K_F5, "[F5]"}, | |
1261 {K_F6, "[F6]"}, | |
1262 {K_F7, "[F7]"}, | |
1263 {K_F8, "[F8]"}, | |
1264 {K_F9, "[F9]"}, | |
1265 {K_F10, "[F10]"}, | |
1266 {K_F11, "[F11]"}, | |
1267 {K_F12, "[F12]"}, | |
1268 {K_S_F1, "[S-F1]"}, | |
1269 {K_S_XF1, "[S-xF1]"}, | |
1270 {K_S_F2, "[S-F2]"}, | |
1271 {K_S_XF2, "[S-xF2]"}, | |
1272 {K_S_F3, "[S-F3]"}, | |
1273 {K_S_XF3, "[S-xF3]"}, | |
1274 {K_S_F4, "[S-F4]"}, | |
1275 {K_S_XF4, "[S-xF4]"}, | |
1276 {K_S_F5, "[S-F5]"}, | |
1277 {K_S_F6, "[S-F6]"}, | |
1278 {K_S_F7, "[S-F7]"}, | |
1279 {K_S_F8, "[S-F8]"}, | |
1280 {K_S_F9, "[S-F9]"}, | |
1281 {K_S_F10, "[S-F10]"}, | |
1282 {K_S_F11, "[S-F11]"}, | |
1283 {K_S_F12, "[S-F12]"}, | |
1284 {K_HELP, "[HELP]"}, | |
1285 {K_UNDO, "[UNDO]"}, | |
1286 {K_BS, "[BS]"}, | |
1287 {K_INS, "[INS]"}, | |
1288 {K_KINS, "[KINS]"}, | |
1289 {K_DEL, "[DEL]"}, | |
1290 {K_KDEL, "[KDEL]"}, | |
1291 {K_HOME, "[HOME]"}, | |
1292 {K_S_HOME, "[C-HOME]"}, | |
1293 {K_C_HOME, "[C-HOME]"}, | |
1294 {K_KHOME, "[KHOME]"}, | |
1295 {K_XHOME, "[XHOME]"}, | |
230 | 1296 {K_ZHOME, "[ZHOME]"}, |
7 | 1297 {K_END, "[END]"}, |
1298 {K_S_END, "[C-END]"}, | |
1299 {K_C_END, "[C-END]"}, | |
1300 {K_KEND, "[KEND]"}, | |
1301 {K_XEND, "[XEND]"}, | |
230 | 1302 {K_ZEND, "[ZEND]"}, |
7 | 1303 {K_PAGEUP, "[PAGEUP]"}, |
1304 {K_PAGEDOWN, "[PAGEDOWN]"}, | |
1305 {K_KPAGEUP, "[KPAGEUP]"}, | |
1306 {K_KPAGEDOWN, "[KPAGEDOWN]"}, | |
1307 {K_MOUSE, "[MOUSE]"}, | |
1308 {K_KPLUS, "[KPLUS]"}, | |
1309 {K_KMINUS, "[KMINUS]"}, | |
1310 {K_KDIVIDE, "[KDIVIDE]"}, | |
1311 {K_KMULTIPLY, "[KMULTIPLY]"}, | |
1312 {K_KENTER, "[KENTER]"}, | |
1313 {K_KPOINT, "[KPOINT]"}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1314 {K_PS, "[PASTE-START]"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1315 {K_PE, "[PASTE-END]"}, |
7 | 1316 {K_K0, "[K0]"}, |
1317 {K_K1, "[K1]"}, | |
1318 {K_K2, "[K2]"}, | |
1319 {K_K3, "[K3]"}, | |
1320 {K_K4, "[K4]"}, | |
1321 {K_K5, "[K5]"}, | |
1322 {K_K6, "[K6]"}, | |
1323 {K_K7, "[K7]"}, | |
1324 {K_K8, "[K8]"}, | |
1325 {K_K9, "[K9]"}, | |
1326 | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1327 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1328 }; |
7 | 1329 |
1330 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1331 * List of builtin terminals. |
7 | 1332 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1333 typedef struct { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1334 char *bitc_name; // name, such as "xterm" |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1335 tcap_entry_T *bitc_table; // table with entries for bitc_name |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1336 } builtin_tcap_T; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1337 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1338 builtin_tcap_T builtin_terminals[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1339 // Unix and Generic |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1340 {"ansi", builtin_ansi}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1341 {"vt320", builtin_vt320}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1342 {"vt52", builtin_vt52}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1343 {"xterm", builtin_xterm}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1344 {"iris-ansi", builtin_iris_ansi}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1345 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1346 // MS-Windows |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1347 {"pcansi", builtin_pcansi}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1348 {"win32", builtin_win32}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1349 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1350 // Other systems |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1351 #if defined(FEAT_GUI) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1352 {"gui", builtin_gui}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1353 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1354 {"amiga", builtin_amiga}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1355 {"dumb", builtin_dumb}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1356 {"debug", builtin_debug}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1357 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1358 {NULL, NULL}, // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1359 }; |
7 | 1360 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1361 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
1362 static guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1363 termgui_mch_get_color(char_u *name) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1364 { |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
1365 return gui_get_color_cmn(name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1366 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1367 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1368 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1369 termgui_get_color(char_u *name) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1370 { |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1371 guicolor_T t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1372 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1373 if (*name == NUL) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1374 return INVALCOLOR; |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1375 t = termgui_mch_get_color(name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1376 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1377 if (t == INVALCOLOR) |
26057
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1378 semsg(_(e_cannot_allocate_color_str), name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1379 return t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1380 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1381 |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1382 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1383 termgui_mch_get_rgb(guicolor_T color) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1384 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1385 return color; |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1386 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1387 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1388 |
7 | 1389 /* |
1390 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM. | |
1391 */ | |
1392 #ifdef AMIGA | |
1393 # define DEFAULT_TERM (char_u *)"amiga" | |
1394 #endif | |
1395 | |
1396 #ifdef MSWIN | |
1397 # define DEFAULT_TERM (char_u *)"win32" | |
1398 #endif | |
1399 | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
21226
diff
changeset
|
1400 #if defined(UNIX) |
7 | 1401 # define DEFAULT_TERM (char_u *)"ansi" |
1402 #endif | |
1403 | |
1404 #ifdef VMS | |
1405 # define DEFAULT_TERM (char_u *)"vt320" | |
1406 #endif | |
1407 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1408 #ifdef __HAIKU__ |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1409 # undef DEFAULT_TERM |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1410 # define DEFAULT_TERM (char_u *)"xterm" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1411 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1412 |
7 | 1413 #ifndef DEFAULT_TERM |
1414 # define DEFAULT_TERM (char_u *)"dumb" | |
1415 #endif | |
1416 | |
1417 /* | |
1418 * Term_strings contains currently used terminal output strings. | |
1419 * It is initialized with the default values by parse_builtin_tcap(). | |
1420 * The values can be changed by setting the option with the same name. | |
1421 */ | |
1422 char_u *(term_strings[(int)KS_LAST + 1]); | |
1423 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1424 static int need_gather = FALSE; // need to fill termleader[] |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1425 static char_u termleader[256 + 1]; // for check_termcode() |
7 | 1426 #ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1427 static int check_for_codes = FALSE; // check for key code response |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
1428 #endif |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1429 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1430 /* |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1431 * Structure and table to store terminal features that can be detected by |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1432 * querying the terminal. Either by inspecting the termresponse or a more |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1433 * specific request. Besides this there are: |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1434 * t_colors - number of colors supported |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1435 */ |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1436 typedef struct { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1437 char *tpr_name; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1438 int tpr_set_by_termresponse; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1439 int tpr_status; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1440 } termprop_T; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1441 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1442 // Values for tpr_status. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1443 #define TPR_UNKNOWN 'u' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1444 #define TPR_YES 'y' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1445 #define TPR_NO 'n' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1446 #define TPR_MOUSE_XTERM 'x' // use "xterm" for 'ttymouse' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1447 #define TPR_MOUSE_XTERM2 '2' // use "xterm2" for 'ttymouse' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1448 #define TPR_MOUSE_SGR 's' // use "sgr" for 'ttymouse' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1449 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1450 // can request the cursor style without messing up the display |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1451 #define TPR_CURSOR_STYLE 0 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1452 // can request the cursor blink mode without messing up the display |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1453 #define TPR_CURSOR_BLINK 1 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1454 // can set the underline color with t_8u without resetting other colors |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1455 #define TPR_UNDERLINE_RGB 2 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1456 // mouse support - TPR_MOUSE_XTERM, TPR_MOUSE_XTERM2 or TPR_MOUSE_SGR |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1457 #define TPR_MOUSE 3 |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1458 // term response indicates kitty |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1459 #define TPR_KITTY 4 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1460 // table size |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1461 #define TPR_COUNT 5 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1462 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1463 static termprop_T term_props[TPR_COUNT]; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1464 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1465 /* |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1466 * Initialize the term_props table. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1467 * When "all" is FALSE only set those that are detected from the version |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1468 * response. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1469 */ |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1470 void |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1471 init_term_props(int all) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1472 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1473 int i; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1474 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1475 term_props[TPR_CURSOR_STYLE].tpr_name = "cursor_style"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1476 term_props[TPR_CURSOR_STYLE].tpr_set_by_termresponse = FALSE; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1477 term_props[TPR_CURSOR_BLINK].tpr_name = "cursor_blink_mode"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1478 term_props[TPR_CURSOR_BLINK].tpr_set_by_termresponse = FALSE; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1479 term_props[TPR_UNDERLINE_RGB].tpr_name = "underline_rgb"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1480 term_props[TPR_UNDERLINE_RGB].tpr_set_by_termresponse = TRUE; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1481 term_props[TPR_MOUSE].tpr_name = "mouse"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1482 term_props[TPR_MOUSE].tpr_set_by_termresponse = TRUE; |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1483 term_props[TPR_KITTY].tpr_name = "kitty"; |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1484 term_props[TPR_KITTY].tpr_set_by_termresponse = FALSE; |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1485 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1486 for (i = 0; i < TPR_COUNT; ++i) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1487 if (all || term_props[i].tpr_set_by_termresponse) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1488 term_props[i].tpr_status = TPR_UNKNOWN; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1489 } |
7 | 1490 |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1491 #if defined(FEAT_EVAL) || defined(PROTO) |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1492 void |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1493 f_terminalprops(typval_T *argvars UNUSED, typval_T *rettv) |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1494 { |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1495 # ifdef FEAT_TERMRESPONSE |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1496 int i; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1497 # endif |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1498 |
29175
755ab148288b
patch 8.2.5107: some callers of rettv_list_alloc() check for not OK
Bram Moolenaar <Bram@vim.org>
parents:
29105
diff
changeset
|
1499 if (rettv_dict_alloc(rettv) == FAIL) |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1500 return; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1501 # ifdef FEAT_TERMRESPONSE |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1502 for (i = 0; i < TPR_COUNT; ++i) |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1503 { |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1504 char_u value[2]; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1505 |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1506 value[0] = term_props[i].tpr_status; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1507 value[1] = NUL; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1508 dict_add_string(rettv->vval.v_dict, term_props[i].tpr_name, value); |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1509 } |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1510 # endif |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1511 } |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1512 #endif |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1513 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1514 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1515 * Find the builtin termcap entries for "term". |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1516 * This also recognizes similar names. E.g. "xterm-256color" finds the "xterm" |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1517 * entry. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1518 * Returns NULL when "term" is not found. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1519 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1520 static tcap_entry_T * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1521 find_builtin_term(char_u *term) |
7 | 1522 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1523 for (int i = 0; ; ++i) |
7 | 1524 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1525 char_u *name = (char_u *)builtin_terminals[i].bitc_name; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1526 if (name == NULL) // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1527 break; |
7 | 1528 #ifdef UNIX |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1529 if (STRCMP(name, "iris-ansi") == 0 && vim_is_iris(term)) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1530 return builtin_terminals[i].bitc_table; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1531 if (STRCMP(name, "xterm") == 0 && vim_is_xterm(term)) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1532 return builtin_terminals[i].bitc_table; |
7 | 1533 #endif |
1534 #ifdef VMS | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1535 if (STRCMP(name, "vt320") == 0 && vim_is_vt300(term)) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1536 return builtin_terminals[i].bitc_table; |
7 | 1537 #endif |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1538 if (STRCMP(term, name) == 0) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1539 return builtin_terminals[i].bitc_table; |
7 | 1540 } |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1541 return NULL; |
7 | 1542 } |
1543 | |
1544 /* | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1545 * Apply entries from a builtin termcap. |
7 | 1546 */ |
1547 static void | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1548 apply_builtin_tcap(char_u *term, tcap_entry_T *entries, int overwrite) |
7 | 1549 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1550 int term_8bit = term_is_8bit(term); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1551 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1552 for (tcap_entry_T *p = entries; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1553 p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p) |
7 | 1554 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1555 if ((int)p->bt_entry >= 0) // KS_xx entry |
7 | 1556 { |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1557 // Only set the value if it wasn't set yet or "overwrite" is TRUE. |
7 | 1558 if (term_strings[p->bt_entry] == NULL |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1559 || term_strings[p->bt_entry] == empty_option |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1560 || overwrite) |
7 | 1561 { |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1562 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1563 int opt_idx = -1; |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1564 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1565 // 8bit terminal: use CSI instead of <Esc>[ |
7 | 1566 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0) |
1567 { | |
1568 char_u *s, *t; | |
1569 | |
1570 s = vim_strsave((char_u *)p->bt_string); | |
1571 if (s != NULL) | |
1572 { | |
1573 for (t = s; *t; ++t) | |
1574 if (term_7to8bit(t)) | |
1575 { | |
1576 *t = term_7to8bit(t); | |
14321
6bcac243b9de
patch 8.1.0176: overlapping string argument for strcpy()
Christian Brabandt <cb@256bit.org>
parents:
14282
diff
changeset
|
1577 STRMOVE(t + 1, t + 2); |
7 | 1578 } |
1579 term_strings[p->bt_entry] = s; | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1580 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1581 opt_idx = |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1582 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1583 set_term_option_alloced( |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1584 &term_strings[p->bt_entry]); |
7 | 1585 } |
1586 } | |
1587 else | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1588 { |
7 | 1589 term_strings[p->bt_entry] = (char_u *)p->bt_string; |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1590 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1591 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1592 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1593 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1594 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1595 set_term_option_sctx_idx(NULL, opt_idx); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1596 #endif |
7 | 1597 } |
1598 } | |
1599 else | |
1600 { | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1601 char_u name[2]; |
7 | 1602 name[0] = KEY2TERMCAP0((int)p->bt_entry); |
1603 name[1] = KEY2TERMCAP1((int)p->bt_entry); | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1604 if (find_termcode(name) == NULL || overwrite) |
7 | 1605 add_termcode(name, (char_u *)p->bt_string, term_8bit); |
1606 } | |
1607 } | |
1608 } | |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1609 |
7 | 1610 /* |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1611 * Parsing of the builtin termcap entries. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1612 * Caller should check if "term" is a valid builtin terminal name. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1613 * The terminal's name is not set, as this is already done in termcapinit(). |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1614 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1615 static void |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1616 parse_builtin_tcap(char_u *term) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1617 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1618 tcap_entry_T *entries = find_builtin_term(term); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1619 if (entries != NULL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1620 apply_builtin_tcap(term, entries, FALSE); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1621 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1622 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1623 /* |
7 | 1624 * Set number of colors. |
1625 * Store it as a number in t_colors. | |
1626 * Store it as a string in T_CCO (using nr_colors[]). | |
1627 */ | |
19997
3d1de9093c01
patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
1628 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1629 set_color_count(int nr) |
7 | 1630 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1631 char_u nr_colors[20]; // string for number of colors |
7 | 1632 |
1633 t_colors = nr; | |
1634 if (t_colors > 1) | |
1635 sprintf((char *)nr_colors, "%d", t_colors); | |
1636 else | |
1637 *nr_colors = NUL; | |
694 | 1638 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0); |
7 | 1639 } |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1640 |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1641 /* |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1642 * Set the color count to "val" and redraw if it changed. |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1643 */ |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1644 static void |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1645 may_adjust_color_count(int val) |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1646 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1647 if (val == t_colors) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1648 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1649 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1650 // Nr of colors changed, initialize highlighting and redraw everything. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1651 // This causes a redraw, which usually clears the message. Try keeping |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1652 // the message if it might work. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1653 set_keep_msg_from_hist(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1654 set_color_count(val); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1655 init_highlight(TRUE, FALSE); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
1656 #ifdef DEBUG_TERMRESPONSE |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1657 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1658 int r = redraw_asap(UPD_CLEAR); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1659 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1660 log_tr("Received t_Co, redraw_asap(): %d", r); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1661 } |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
1662 #else |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1663 redraw_asap(UPD_CLEAR); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
1664 #endif |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1665 } |
7 | 1666 |
1667 #ifdef HAVE_TGETENT | |
1668 static char *(key_names[]) = | |
1669 { | |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1670 # ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1671 // Do this one first, it may cause a screen redraw. |
7 | 1672 "Co", |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1673 # endif |
7 | 1674 "ku", "kd", "kr", "kl", |
1675 "#2", "#4", "%i", "*7", | |
1676 "k1", "k2", "k3", "k4", "k5", "k6", | |
1677 "k7", "k8", "k9", "k;", "F1", "F2", | |
1678 "%1", "&8", "kb", "kI", "kD", "kh", | |
1679 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB", | |
31569
6f09a88989f8
patch 9.0.1117: terminfo entries for bracketed paste are not used
Bram Moolenaar <Bram@vim.org>
parents:
31567
diff
changeset
|
1680 "PS", "PE", |
7 | 1681 NULL |
1682 }; | |
1683 #endif | |
1684 | |
31567
ef9591271746
patch 9.0.1116: compiler may complain about an unused function
Bram Moolenaar <Bram@vim.org>
parents:
31557
diff
changeset
|
1685 #if defined(HAVE_TGETENT) || defined(FEAT_TERMGUICOLORS) |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1686 /* |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1687 * Return TRUE if "term_strings[idx]" was not set. |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1688 */ |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1689 static int |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1690 term_strings_not_set(enum SpecialKey idx) |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1691 { |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1692 return TERM_STR(idx) == NULL || TERM_STR(idx) == empty_option; |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1693 } |
31567
ef9591271746
patch 9.0.1116: compiler may complain about an unused function
Bram Moolenaar <Bram@vim.org>
parents:
31557
diff
changeset
|
1694 #endif |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1695 |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1696 #ifdef HAVE_TGETENT |
31495
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
1697 /* |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
1698 * Get the termcap entries we need with tgetstr(), tgetflag() and tgetnum(). |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
1699 * "invoke_tgetent()" must have been called before. |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
1700 * If "*height" or "*width" are not zero then use the "li" and "col" entries to |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
1701 * get their value. |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
1702 */ |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1703 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1704 get_term_entries(int *height, int *width) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1705 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1706 static struct { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1707 enum SpecialKey dest; // index in term_strings[] |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1708 char *name; // termcap name for string |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1709 } string_names[] = |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1710 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1711 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1712 {KS_CL, "cl"}, {KS_CD, "cd"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1713 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1714 {KS_ME, "me"}, {KS_MR, "mr"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1715 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1716 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1717 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"}, |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1718 {KS_USS, "Us"}, {KS_DS, "ds"}, {KS_CDS, "Ds"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1719 {KS_STE,"Te"}, {KS_STS,"Ts"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1720 {KS_CM, "cm"}, {KS_SR, "sr"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1721 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1722 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"}, |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
1723 {KS_CTI, "TI"}, {KS_CRK, "RK"}, {KS_CTE, "TE"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1724 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"}, |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1725 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_CAU,"AU"}, |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1726 {KS_LE, "le"}, |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
1727 {KS_ND, "nd"}, {KS_OP, "op"}, |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
1728 {KS_CRV, "RV"}, {KS_CXM, "XM"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1729 {KS_VS, "vs"}, {KS_CVS, "VS"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1730 {KS_CIS, "IS"}, {KS_CIE, "IE"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1731 {KS_CSC, "SC"}, {KS_CEC, "EC"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1732 {KS_TS, "ts"}, {KS_FS, "fs"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1733 {KS_CWP, "WP"}, {KS_CWS, "WS"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1734 {KS_CSI, "SI"}, {KS_CEI, "EI"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1735 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"}, |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1736 {KS_8F, "8f"}, {KS_8B, "8b"}, {KS_8U, "8u"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1737 {KS_CBE, "BE"}, {KS_CBD, "BD"}, |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
1738 {KS_CST, "ST"}, {KS_CRT, "RT"}, |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
1739 {KS_SSI, "Si"}, {KS_SRI, "Ri"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1740 {(enum SpecialKey)0, NULL} |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1741 }; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1742 int i; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1743 static char_u tstrbuf[TBUFSZ]; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1744 char_u *tp = tstrbuf; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1745 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1746 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1747 * get output strings |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1748 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1749 for (i = 0; string_names[i].name != NULL; ++i) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1750 { |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1751 if (term_strings_not_set(string_names[i].dest)) |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1752 { |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1753 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp); |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1754 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1755 set_term_option_sctx_idx(string_names[i].name, -1); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1756 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1757 } |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1758 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1759 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1760 // tgetflag() returns 1 if the flag is present, 0 if not and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1761 // possibly -1 if the flag doesn't exist. |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1762 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1763 T_MS = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1764 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1765 T_XS = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1766 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1767 T_XN = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1768 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1769 T_DB = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1770 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1771 T_DA = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1772 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1773 T_UT = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1774 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1775 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1776 * get key codes |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1777 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1778 for (i = 0; key_names[i] != NULL; ++i) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1779 if (find_termcode((char_u *)key_names[i]) == NULL) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1780 { |
31569
6f09a88989f8
patch 9.0.1117: terminfo entries for bracketed paste are not used
Bram Moolenaar <Bram@vim.org>
parents:
31567
diff
changeset
|
1781 char_u *p = TGETSTR(key_names[i], &tp); |
6f09a88989f8
patch 9.0.1117: terminfo entries for bracketed paste are not used
Bram Moolenaar <Bram@vim.org>
parents:
31567
diff
changeset
|
1782 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1783 // if cursor-left == backspace, ignore it (televideo 925) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1784 if (p != NULL |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1785 && (*p != Ctrl_H |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1786 || key_names[i][0] != 'k' |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1787 || key_names[i][1] != 'l')) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1788 add_termcode((char_u *)key_names[i], p, FALSE); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1789 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1790 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1791 if (*height == 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1792 *height = tgetnum("li"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1793 if (*width == 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1794 *width = tgetnum("co"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1795 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1796 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1797 * Get number of colors (if not done already). |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1798 */ |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
1799 if (term_strings_not_set(KS_CCO)) |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1800 { |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1801 set_color_count(tgetnum("Co")); |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1802 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1803 set_term_option_sctx_idx("Co", -1); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1804 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1805 } |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1806 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1807 # ifndef hpux |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1808 BC = (char *)TGETSTR("bc", &tp); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1809 UP = (char *)TGETSTR("up", &tp); |
31569
6f09a88989f8
patch 9.0.1117: terminfo entries for bracketed paste are not used
Bram Moolenaar <Bram@vim.org>
parents:
31567
diff
changeset
|
1810 char_u *p = TGETSTR("pc", &tp); |
6f09a88989f8
patch 9.0.1117: terminfo entries for bracketed paste are not used
Bram Moolenaar <Bram@vim.org>
parents:
31567
diff
changeset
|
1811 if (p != NULL) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1812 PC = *p; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1813 # endif |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1814 } |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1815 #endif |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1816 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1817 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1818 * Report "term" is not found and list the ones we do know about. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1819 */ |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1820 static void |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1821 report_term_error(char *error_msg, char_u *term) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1822 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1823 mch_errmsg("\r\n"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1824 if (error_msg != NULL) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1825 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1826 mch_errmsg(error_msg); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1827 mch_errmsg("\r\n"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1828 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1829 mch_errmsg("'"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1830 mch_errmsg((char *)term); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1831 mch_errmsg(_("' not known. Available builtin terminals are:")); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1832 mch_errmsg("\r\n"); |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1833 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1834 for (int i = 0; ; ++i) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1835 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1836 char *name = builtin_terminals[i].bitc_name; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1837 if (name == NULL) // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1838 break; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1839 // Do not mention the "gui" entry, the user won't need to type it. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1840 if (STRCMP(name, "gui") != 0) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1841 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1842 #ifdef HAVE_TGETENT |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1843 mch_errmsg(" builtin_"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1844 #else |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1845 mch_errmsg(" "); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1846 #endif |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1847 mch_errmsg(name); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1848 mch_errmsg("\r\n"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1849 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1850 } |
21624
1d75baa22d9a
patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1851 // Output extra 'cmdheight' line breaks to avoid that the following error |
1d75baa22d9a
patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1852 // message overwrites the last terminal name. |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1853 for (int i = 1; i < p_ch; ++i) |
21624
1d75baa22d9a
patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1854 mch_errmsg("\r\n"); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1855 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1856 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1857 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1858 report_default_term(char_u *term) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1859 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1860 mch_errmsg(_("defaulting to '")); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1861 mch_errmsg((char *)term); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1862 mch_errmsg("'\r\n"); |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1863 if (emsg_silent == 0 && !in_assert_fails) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1864 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1865 screen_start(); // don't know where cursor is now |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1866 out_flush(); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1867 if (!is_not_a_term()) |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18430
diff
changeset
|
1868 ui_delay(2007L, TRUE); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1869 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1870 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1871 |
7 | 1872 /* |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1873 * Parse the 'keyprotocol' option, match against "term" and return the protocol |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1874 * for the first matching entry. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1875 * When "term" is NULL then compile all patterns to check for any errors. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1876 * Returns KEYPROTOCOL_FAIL if a pattern cannot be compiled. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1877 * Returns KEYPROTOCOL_NONE if there is no match. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1878 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1879 keyprot_T |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1880 match_keyprotocol(char_u *term) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1881 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1882 int len = (int)STRLEN(p_kpc) + 1; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1883 char_u *buf = alloc(len); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1884 if (buf == NULL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1885 return KEYPROTOCOL_FAIL; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1886 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1887 keyprot_T ret = KEYPROTOCOL_FAIL; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1888 char_u *p = p_kpc; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1889 while (*p != NUL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1890 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1891 // Isolate one comma separated item. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1892 (void)copy_option_part(&p, buf, len, ","); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1893 char_u *colon = vim_strchr(buf, ':'); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1894 if (colon == NULL || colon == buf || colon[1] == NUL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1895 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1896 *colon = NUL; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1897 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1898 keyprot_T prot; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1899 if (STRCMP(colon + 1, "none") == 0) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1900 prot = KEYPROTOCOL_NONE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1901 else if (STRCMP(colon + 1, "mok2") == 0) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1902 prot = KEYPROTOCOL_MOK2; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1903 else if (STRCMP(colon + 1, "kitty") == 0) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1904 prot = KEYPROTOCOL_KITTY; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1905 else |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1906 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1907 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1908 regmatch_T regmatch; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1909 CLEAR_FIELD(regmatch); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1910 regmatch.rm_ic = TRUE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1911 regmatch.regprog = vim_regcomp(buf, RE_MAGIC); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1912 if (regmatch.regprog == NULL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1913 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1914 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1915 int match = term != NULL && vim_regexec(®match, term, (colnr_T)0); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1916 vim_regfree(regmatch.regprog); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1917 if (match) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1918 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1919 ret = prot; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1920 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1921 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1922 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1923 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1924 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1925 // No match found, use "none". |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1926 ret = KEYPROTOCOL_NONE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1927 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1928 theend: |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1929 vim_free(buf); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1930 return ret; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1931 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1932 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1933 /* |
7 | 1934 * Set terminal options for terminal "term". |
1935 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise. | |
1936 * | |
1937 * While doing this, until ttest(), some options may be NULL, be careful. | |
1938 */ | |
1939 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1940 set_termname(char_u *term) |
7 | 1941 { |
1942 #ifdef HAVE_TGETENT | |
1943 int builtin_first = p_tbi; | |
1944 int try; | |
1945 int termcap_cleared = FALSE; | |
1946 #endif | |
1947 int width = 0, height = 0; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1948 char *error_msg = NULL; |
7 | 1949 char_u *bs_p, *del_p; |
1950 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1951 // In silect mode (ex -s) we don't use the 'term' option. |
168 | 1952 if (silent_mode) |
1953 return OK; | |
1954 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1955 detected_8bit = FALSE; // reset 8-bit detection |
7 | 1956 |
1957 if (term_is_builtin(term)) | |
1958 { | |
1959 term += 8; | |
1960 #ifdef HAVE_TGETENT | |
1961 builtin_first = 1; | |
1962 #endif | |
1963 } | |
1964 | |
1965 /* | |
1966 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise: | |
1967 * If builtin_first is TRUE: | |
1968 * 0. try builtin termcap | |
1969 * 1. try external termcap | |
1970 * 2. if both fail default to a builtin terminal | |
1971 * If builtin_first is FALSE: | |
1972 * 1. try external termcap | |
1973 * 2. try builtin termcap, if both fail default to a builtin terminal | |
1974 */ | |
1975 #ifdef HAVE_TGETENT | |
1976 for (try = builtin_first ? 0 : 1; try < 3; ++try) | |
1977 { | |
1978 /* | |
1979 * Use external termcap | |
1980 */ | |
1981 if (try == 1) | |
1982 { | |
1983 char_u tbuf[TBUFSZ]; | |
1984 | |
1985 /* | |
1986 * If the external termcap does not have a matching entry, try the | |
1987 * builtin ones. | |
1988 */ | |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
1989 if ((error_msg = invoke_tgetent(tbuf, term)) == NULL) |
7 | 1990 { |
1991 if (!termcap_cleared) | |
1992 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1993 clear_termoptions(); // clear old options |
7 | 1994 termcap_cleared = TRUE; |
1995 } | |
1996 | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1997 get_term_entries(&height, &width); |
7 | 1998 } |
1999 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2000 else // try == 0 || try == 2 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2001 #endif // HAVE_TGETENT |
7 | 2002 /* |
2003 * Use builtin termcap | |
2004 */ | |
2005 { | |
2006 #ifdef HAVE_TGETENT | |
2007 /* | |
2008 * If builtin termcap was already used, there is no need to search | |
2009 * for the builtin termcap again, quit now. | |
2010 */ | |
2011 if (try == 2 && builtin_first && termcap_cleared) | |
2012 break; | |
2013 #endif | |
2014 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2015 * Search for 'term' in builtin_terminals[]. |
7 | 2016 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2017 tcap_entry_T *termp = find_builtin_term(term); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2018 if (termp == NULL) // did not find it |
7 | 2019 { |
2020 #ifdef HAVE_TGETENT | |
2021 /* | |
2022 * If try == 0, first try the external termcap. If that is not | |
2023 * found we'll get back here with try == 2. | |
2024 * If termcap_cleared is set we used the external termcap, | |
2025 * don't complain about not finding the term in the builtin | |
2026 * termcap. | |
2027 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2028 if (try == 0) // try external one |
7 | 2029 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2030 if (termcap_cleared) // found in external termcap |
7 | 2031 break; |
2032 #endif | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
2033 report_term_error(error_msg, term); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
2034 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2035 // when user typed :set term=xxx, quit here |
7 | 2036 if (starting != NO_SCREEN) |
2037 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2038 screen_start(); // don't know where cursor is now |
7 | 2039 wait_return(TRUE); |
2040 return FAIL; | |
2041 } | |
2042 term = DEFAULT_TERM; | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
2043 report_default_term(term); |
694 | 2044 set_string_option_direct((char_u *)"term", -1, term, |
2045 OPT_FREE, 0); | |
7 | 2046 display_errors(); |
2047 } | |
2048 out_flush(); | |
2049 #ifdef HAVE_TGETENT | |
2050 if (!termcap_cleared) | |
2051 { | |
2052 #endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2053 clear_termoptions(); // clear old options |
7 | 2054 #ifdef HAVE_TGETENT |
2055 termcap_cleared = TRUE; | |
2056 } | |
2057 #endif | |
2058 parse_builtin_tcap(term); | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2059 |
7 | 2060 #ifdef FEAT_GUI |
2061 if (term_is_gui(term)) | |
2062 { | |
2063 out_flush(); | |
2064 gui_init(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2065 // If starting the GUI failed, don't do any of the other |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2066 // things for this terminal |
7 | 2067 if (!gui.in_use) |
2068 return FAIL; | |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
2069 # ifdef HAVE_TGETENT |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2070 break; // don't try using external termcap |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
2071 # endif |
7 | 2072 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2073 #endif // FEAT_GUI |
7 | 2074 } |
2075 #ifdef HAVE_TGETENT | |
2076 } | |
2077 #endif | |
2078 | |
31495
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2079 #ifdef FEAT_GUI |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2080 if (!gui.in_use) |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2081 #endif |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2082 { |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2083 // Use the 'keyprotocol' option to adjust the t_TE and t_TI |
32009
4545f58c8490
patch 9.0.1336: functions without arguments are not always declared properly
Bram Moolenaar <Bram@vim.org>
parents:
31910
diff
changeset
|
2084 // termcap entries if there is an entry matching "term". |
31495
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2085 keyprot_T kpc = match_keyprotocol(term); |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2086 if (kpc == KEYPROTOCOL_KITTY) |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2087 apply_builtin_tcap(term, builtin_kitty, TRUE); |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2088 else if (kpc == KEYPROTOCOL_MOK2) |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2089 apply_builtin_tcap(term, builtin_mok2, TRUE); |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2090 |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2091 #ifdef FEAT_TERMGUICOLORS |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2092 // There is no good way to detect that the terminal supports RGB |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2093 // colors. Since these termcap entries are non-standard anyway and |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2094 // only used when the user sets 'termguicolors' we might as well add |
32009
4545f58c8490
patch 9.0.1336: functions without arguments are not always declared properly
Bram Moolenaar <Bram@vim.org>
parents:
31910
diff
changeset
|
2095 // them. But not when one of them was already set. |
31557
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2096 if (term_strings_not_set(KS_8F) |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2097 && term_strings_not_set(KS_8B) |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2098 && term_strings_not_set(KS_8U)) |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2099 apply_builtin_tcap(term, builtin_rgb, TRUE); |
e487df006ae1
patch 9.0.1111: termcap entries for RGB colors are not set automatically
Bram Moolenaar <Bram@vim.org>
parents:
31503
diff
changeset
|
2100 #endif |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2101 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2102 if (kpc != KEYPROTOCOL_NONE) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2103 // Some function keys may accept modifiers even though the |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2104 // terminfo/termcap entry does not indicate this. |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2105 accept_modifiers_for_function_keys(); |
31495
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2106 } |
a2997ac0ca2c
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Bram Moolenaar <Bram@vim.org>
parents:
31481
diff
changeset
|
2107 |
7 | 2108 /* |
2109 * special: There is no info in the termcap about whether the cursor | |
2110 * positioning is relative to the start of the screen or to the start of the | |
2111 * scrolling region. We just guess here. Only msdos pcterm is known to do it | |
2112 * relative. | |
2113 */ | |
2114 if (STRCMP(term, "pcterm") == 0) | |
2115 T_CCS = (char_u *)"yes"; | |
2116 else | |
2117 T_CCS = empty_option; | |
2118 | |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2119 // Special case: "kitty" may not have a "RV" entry in terminfo, but we need |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2120 // to request the version for several other things to work. |
31481
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2121 if (strstr((char *)term, "kitty") != NULL |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2122 && (T_CRV == NULL || *T_CRV == NUL)) |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2123 T_CRV = (char_u *)"\033[>c"; |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2124 |
7 | 2125 #ifdef UNIX |
2126 /* | |
2127 * Any "stty" settings override the default for t_kb from the termcap. | |
2128 * This is in os_unix.c, because it depends a lot on the version of unix that | |
2129 * is being used. | |
2130 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly. | |
2131 */ | |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
2132 # ifdef FEAT_GUI |
7 | 2133 if (!gui.in_use) |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
2134 # endif |
7 | 2135 get_stty(); |
2136 #endif | |
2137 | |
2138 /* | |
2139 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also | |
2140 * didn't work, use the default CTRL-H | |
2141 * The default for t_kD is DEL, unless t_kb is DEL. | |
2142 * The vim_strsave'd strings are probably lost forever, well it's only two | |
2143 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD" | |
2144 * directly. | |
2145 */ | |
2146 #ifdef FEAT_GUI | |
2147 if (!gui.in_use) | |
2148 #endif | |
2149 { | |
2150 bs_p = find_termcode((char_u *)"kb"); | |
2151 del_p = find_termcode((char_u *)"kD"); | |
2152 if (bs_p == NULL || *bs_p == NUL) | |
2153 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE); | |
2154 if ((del_p == NULL || *del_p == NUL) && | |
2155 (bs_p == NULL || *bs_p != DEL)) | |
2156 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE); | |
2157 } | |
2158 | |
2159 #if defined(UNIX) || defined(VMS) | |
2160 term_is_xterm = vim_is_xterm(term); | |
2161 #endif | |
18352
94e1a49b879e
patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
18350
diff
changeset
|
2162 #ifdef FEAT_TERMRESPONSE |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
2163 // Reset terminal properties that are set based on the termresponse, which |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
2164 // will be sent out soon. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
2165 init_term_props(FALSE); |
18352
94e1a49b879e
patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
18350
diff
changeset
|
2166 #endif |
7 | 2167 |
31682
c55341fea626
patch 9.0.1173: compiler warning for unused variable on non-Unix systems
Bram Moolenaar <Bram@vim.org>
parents:
31672
diff
changeset
|
2168 #if defined(UNIX) || defined(VMS) |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2169 // If the first number in t_XM is 1006 then the terminal will support SGR |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2170 // mouse reporting. |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2171 int did_set_ttym = FALSE; |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2172 if (T_CXM != NULL && *T_CXM != NUL && !option_was_set((char_u *)"ttym")) |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2173 { |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2174 char_u *p = T_CXM; |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2175 |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2176 while (*p != NUL && !VIM_ISDIGIT(*p)) |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2177 ++p; |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2178 if (getdigits(&p) == 1006) |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2179 { |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2180 did_set_ttym = TRUE; |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2181 set_option_value_give_err((char_u *)"ttym", 0L, (char_u *)"sgr", 0); |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2182 } |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2183 } |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2184 |
7 | 2185 /* |
2186 * For Unix, set the 'ttymouse' option to the type of mouse to be used. | |
2187 * The termcode for the mouse is added as a side effect in option.c. | |
2188 */ | |
2189 { | |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2190 char_u *p = (char_u *)""; |
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2191 |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2192 # ifdef FEAT_MOUSE_XTERM |
1623 | 2193 if (use_xterm_like_mouse(term)) |
7 | 2194 { |
2195 if (use_xterm_mouse()) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2196 p = NULL; // keep existing value, might be "xterm2" |
7 | 2197 else |
2198 p = (char_u *)"xterm"; | |
2199 } | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2200 # endif |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2201 if (p != NULL && !did_set_ttym) |
3980 | 2202 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
2203 set_option_value_give_err((char_u *)"ttym", 0L, p, 0); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2204 // Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2205 // "xterm2" in check_termcode(). |
3980 | 2206 reset_option_was_set((char_u *)"ttym"); |
2207 } | |
7 | 2208 if (p == NULL |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2209 # ifdef FEAT_GUI |
7 | 2210 || gui.in_use |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2211 # endif |
7 | 2212 ) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2213 check_mouse_termcode(); // set mouse termcode anyway |
7 | 2214 } |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2215 #else |
7 | 2216 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M"); |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2217 #endif |
7 | 2218 |
23632
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2219 #ifdef FEAT_MOUSE_XTERM |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2220 // Focus reporting is supported by xterm compatible terminals and tmux. |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2221 // We hard-code the received escape sequences here. There are the terminfo |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2222 // entries kxIN and kxOUT, but they are rarely used and do hot have a |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
2223 // two-letter termcap name. |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2224 if (use_xterm_like_mouse(term)) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2225 { |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2226 char_u name[3]; |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2227 |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2228 // handle focus in event |
23632
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2229 name[0] = KS_EXTRA; |
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2230 name[1] = KE_FOCUSGAINED; |
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2231 name[2] = NUL; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2232 add_termcode(name, (char_u *)"\033[I", FALSE); |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2233 |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2234 // handle focus out event |
23632
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2235 name[1] = KE_FOCUSLOST; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2236 add_termcode(name, (char_u *)"\033[O", FALSE); |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2237 |
24045
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
2238 need_gather = TRUE; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2239 } |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2240 #endif |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2241 #if (defined(UNIX) || defined(VMS)) |
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2242 // First time after setting 'term' a focus event is always reported. |
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2243 focus_state = MAYBE; |
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2244 #endif |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2245 |
7 | 2246 #ifdef USE_TERM_CONSOLE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2247 // DEFAULT_TERM indicates that it is the machine console. |
7 | 2248 if (STRCMP(term, DEFAULT_TERM) != 0) |
2249 term_console = FALSE; | |
2250 else | |
2251 { | |
2252 term_console = TRUE; | |
2253 # ifdef AMIGA | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2254 win_resize_on(); // enable window resizing reports |
7 | 2255 # endif |
2256 } | |
2257 #endif | |
2258 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2259 ttest(TRUE); // make sure we have a valid set of terminal codes |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2260 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2261 full_screen = TRUE; // we can use termcap codes from now on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2262 set_term_defaults(); // use current values as defaults |
7 | 2263 #ifdef FEAT_TERMRESPONSE |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
2264 LOG_TR(("setting crv_status to STATUS_GET")); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2265 crv_status.tr_progress = STATUS_GET; // Get terminal version later |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
2266 write_t_8u_state = FALSE; |
7 | 2267 #endif |
2268 | |
2269 /* | |
2270 * Initialize the terminal with the appropriate termcap codes. | |
2271 * Set the mouse and window title if possible. | |
2272 * Don't do this when starting, need to parse the .vimrc first, because it | |
2273 * may redefine t_TI etc. | |
2274 */ | |
2275 if (starting != NO_SCREEN) | |
2276 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2277 starttermcap(); // may change terminal mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2278 setmouse(); // may start using the mouse |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2279 maketitle(); // may display window title |
7 | 2280 } |
2281 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2282 // display initial screen after ttest() checking. jw. |
7 | 2283 if (width <= 0 || height <= 0) |
2284 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2285 // termcap failed to report size |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2286 // set defaults, in case ui_get_shellsize() also fails |
7 | 2287 width = 80; |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
2288 #if defined(MSWIN) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2289 height = 25; // console is often 25 lines |
7 | 2290 #else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2291 height = 24; // most terminals are 24 lines |
7 | 2292 #endif |
2293 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2294 set_shellsize(width, height, FALSE); // may change Rows |
7 | 2295 if (starting != NO_SCREEN) |
2296 { | |
2297 if (scroll_region) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2298 scroll_region_reset(); // In case Rows changed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2299 check_map_keycodes(); // check mappings for terminal codes used |
7 | 2300 |
2301 { | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2302 buf_T *buf; |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2303 aco_save_T aco; |
7 | 2304 |
2305 /* | |
2306 * Execute the TermChanged autocommands for each buffer that is | |
2307 * loaded. | |
2308 */ | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2309 FOR_ALL_BUFFERS(buf) |
7 | 2310 { |
2311 if (curbuf->b_ml.ml_mfp != NULL) | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2312 { |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2313 aucmd_prepbuf(&aco, buf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31241
diff
changeset
|
2314 if (curbuf == buf) |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31241
diff
changeset
|
2315 { |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31241
diff
changeset
|
2316 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE, |
7 | 2317 curbuf); |
31263
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31241
diff
changeset
|
2318 // restore curwin/curbuf and a few other things |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31241
diff
changeset
|
2319 aucmd_restbuf(&aco); |
d8e7d725a666
patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
31241
diff
changeset
|
2320 } |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2321 } |
7 | 2322 } |
2323 } | |
2324 } | |
2325 | |
2326 #ifdef FEAT_TERMRESPONSE | |
2327 may_req_termresponse(); | |
2328 #endif | |
2329 | |
2330 return OK; | |
2331 } | |
2332 | |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2333 #if defined(EXITFREE) || defined(PROTO) |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2334 |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2335 # ifdef HAVE_DEL_CURTERM |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2336 # include <term.h> // declares cur_term |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2337 # endif |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2338 |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2339 /* |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2340 * If supported, delete "cur_term", which caches terminal related entries. |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2341 * Avoids that valgrind reports possibly lost memory. |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2342 */ |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2343 void |
32009
4545f58c8490
patch 9.0.1336: functions without arguments are not always declared properly
Bram Moolenaar <Bram@vim.org>
parents:
31910
diff
changeset
|
2344 free_cur_term(void) |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2345 { |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2346 # ifdef HAVE_DEL_CURTERM |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2347 if (cur_term) |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2348 del_curterm(cur_term); |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2349 # endif |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2350 } |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2351 |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2352 #endif |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2353 |
7 | 2354 #ifdef HAVE_TGETENT |
2355 /* | |
2356 * Call tgetent() | |
2357 * Return error message if it fails, NULL if it's OK. | |
2358 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2359 static char * |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
2360 invoke_tgetent(char_u *tbuf, char_u *term) |
7 | 2361 { |
2362 int i; | |
2363 | |
18838
8dabdfc7c799
patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
2364 // Note: Valgrind may report a leak here, because the library keeps one |
8dabdfc7c799
patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
2365 // buffer around that we can't ever free. |
7 | 2366 i = TGETENT(tbuf, term); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2367 if (i < 0 // -1 is always an error |
7 | 2368 # ifdef TGETENT_ZERO_ERR |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2369 || i == 0 // sometimes zero is also an error |
7 | 2370 # endif |
2371 ) | |
2372 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2373 // On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2374 // tgetent() with the always existing "dumb" entry to avoid a crash or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2375 // hang. |
7 | 2376 (void)TGETENT(tbuf, "dumb"); |
2377 | |
2378 if (i < 0) | |
2379 # ifdef TGETENT_ZERO_ERR | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2380 return _(e_cannot_open_termcap_file); |
7 | 2381 if (i == 0) |
2382 # endif | |
2383 #ifdef TERMINFO | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2384 return _(e_terminal_entry_not_found_in_terminfo); |
7 | 2385 #else |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2386 return _(e_terminal_entry_not_found_in_termcap); |
7 | 2387 #endif |
2388 } | |
2389 return NULL; | |
2390 } | |
2391 | |
2392 /* | |
2393 * Some versions of tgetstr() have been reported to return -1 instead of NULL. | |
2394 * Fix that here. | |
2395 */ | |
2396 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2397 vim_tgetstr(char *s, char_u **pp) |
7 | 2398 { |
2399 char *p; | |
2400 | |
2401 p = tgetstr(s, (char **)pp); | |
2402 if (p == (char *)-1) | |
2403 p = NULL; | |
2404 return (char_u *)p; | |
2405 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2406 #endif // HAVE_TGETENT |
7 | 2407 |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2408 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X)) |
7 | 2409 /* |
2410 * Get Columns and Rows from the termcap. Used after a window signal if the | |
2411 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co" | |
2412 * and "li" entries never change. But on some systems this works. | |
2413 * Errors while getting the entries are ignored. | |
2414 */ | |
2415 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2416 getlinecol( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2417 long *cp, // pointer to columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2418 long *rp) // pointer to rows |
7 | 2419 { |
2420 char_u tbuf[TBUFSZ]; | |
2421 | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2422 if (T_NAME == NULL || *T_NAME == NUL |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2423 || invoke_tgetent(tbuf, T_NAME) != NULL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2424 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2425 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2426 if (*cp == 0) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2427 *cp = tgetnum("co"); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2428 if (*rp == 0) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2429 *rp = tgetnum("li"); |
7 | 2430 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2431 #endif // defined(HAVE_TGETENT) && defined(UNIX) |
7 | 2432 |
2433 /* | |
2434 * Get a string entry from the termcap and add it to the list of termcodes. | |
2435 * Used for <t_xx> special keys. | |
2436 * Give an error message for failure when not sourcing. | |
2437 * If force given, replace an existing entry. | |
2438 * Return FAIL if the entry was not found, OK if the entry was added. | |
2439 */ | |
2440 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2441 add_termcap_entry(char_u *name, int force) |
7 | 2442 { |
2443 char_u *term; | |
2444 int key; | |
2445 #ifdef HAVE_TGETENT | |
2446 char_u *string; | |
2447 int i; | |
2448 int builtin_first; | |
2449 char_u tbuf[TBUFSZ]; | |
2450 char_u tstrbuf[TBUFSZ]; | |
2451 char_u *tp = tstrbuf; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2452 char *error_msg = NULL; |
7 | 2453 #endif |
2454 | |
2455 /* | |
2456 * If the GUI is running or will start in a moment, we only support the keys | |
2457 * that the GUI can produce. | |
2458 */ | |
2459 #ifdef FEAT_GUI | |
2460 if (gui.in_use || gui.starting) | |
2461 return gui_mch_haskey(name); | |
2462 #endif | |
2463 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2464 if (!force && find_termcode(name) != NULL) // it's already there |
7 | 2465 return OK; |
2466 | |
2467 term = T_NAME; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2468 if (term == NULL || *term == NUL) // 'term' not defined yet |
7 | 2469 return FAIL; |
2470 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2471 if (term_is_builtin(term)) // name starts with "builtin_" |
7 | 2472 { |
2473 term += 8; | |
2474 #ifdef HAVE_TGETENT | |
2475 builtin_first = TRUE; | |
2476 #endif | |
2477 } | |
2478 #ifdef HAVE_TGETENT | |
2479 else | |
2480 builtin_first = p_tbi; | |
2481 #endif | |
2482 | |
2483 #ifdef HAVE_TGETENT | |
2484 /* | |
2485 * We can get the entry from the builtin termcap and from the external one. | |
2486 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try | |
2487 * builtin termcap first. | |
2488 * If 'ttybuiltin' is off, try external termcap first. | |
2489 */ | |
2490 for (i = 0; i < 2; ++i) | |
2491 { | |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
6901
diff
changeset
|
2492 if ((!builtin_first) == i) |
7 | 2493 #endif |
2494 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2495 * Search in builtin termcaps |
7 | 2496 */ |
2497 { | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2498 tcap_entry_T *termp = find_builtin_term(term); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2499 if (termp != NULL) // found it |
7 | 2500 { |
2501 key = TERMCAP2KEY(name[0], name[1]); | |
13406
4e30f3f4cb78
patch 8.0.1577: virtual replace test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13398
diff
changeset
|
2502 ++termp; |
7 | 2503 while (termp->bt_entry != (int)KS_NAME) |
2504 { | |
2505 if ((int)termp->bt_entry == key) | |
2506 { | |
2507 add_termcode(name, (char_u *)termp->bt_string, | |
2508 term_is_8bit(term)); | |
2509 return OK; | |
2510 } | |
2511 ++termp; | |
2512 } | |
2513 } | |
2514 } | |
2515 #ifdef HAVE_TGETENT | |
2516 else | |
2517 /* | |
2518 * Search in external termcap | |
2519 */ | |
2520 { | |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
2521 error_msg = invoke_tgetent(tbuf, term); |
7 | 2522 if (error_msg == NULL) |
2523 { | |
2524 string = TGETSTR((char *)name, &tp); | |
2525 if (string != NULL && *string != NUL) | |
2526 { | |
2527 add_termcode(name, string, FALSE); | |
2528 return OK; | |
2529 } | |
2530 } | |
2531 } | |
2532 } | |
2533 #endif | |
2534 | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18838
diff
changeset
|
2535 if (SOURCING_NAME == NULL) |
7 | 2536 { |
2537 #ifdef HAVE_TGETENT | |
2538 if (error_msg != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2539 emsg(error_msg); |
7 | 2540 else |
2541 #endif | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
2542 semsg(_(e_no_str_entry_in_termcap), name); |
7 | 2543 } |
2544 return FAIL; | |
2545 } | |
2546 | |
2547 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2548 term_is_builtin(char_u *name) |
7 | 2549 { |
2550 return (STRNCMP(name, "builtin_", (size_t)8) == 0); | |
2551 } | |
2552 | |
2553 /* | |
2554 * Return TRUE if terminal "name" uses CSI instead of <Esc>[. | |
2555 * Assume that the terminal is using 8-bit controls when the name contains | |
2556 * "8bit", like in "xterm-8bit". | |
2557 */ | |
2558 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2559 term_is_8bit(char_u *name) |
7 | 2560 { |
2561 return (detected_8bit || strstr((char *)name, "8bit") != NULL); | |
2562 } | |
2563 | |
2564 /* | |
2565 * Translate terminal control chars from 7-bit to 8-bit: | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
2566 * <Esc>[ -> CSI <M_C_[> |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
2567 * <Esc>] -> OSC <M-C-]> |
7 | 2568 * <Esc>O -> <M-C-O> |
2569 */ | |
2570 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2571 term_7to8bit(char_u *p) |
7 | 2572 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2573 if (*p != ESC) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2574 return 0; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2575 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2576 if (p[1] == '[') |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2577 return CSI; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2578 else if (p[1] == ']') |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2579 return OSC; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2580 else if (p[1] == 'O') |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2581 return 0x8f; |
7 | 2582 return 0; |
2583 } | |
2584 | |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13573
diff
changeset
|
2585 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 2586 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2587 term_is_gui(char_u *name) |
7 | 2588 { |
2589 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0); | |
2590 } | |
2591 #endif | |
2592 | |
2593 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO) | |
2594 | |
2595 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2596 tltoa(unsigned long i) |
7 | 2597 { |
2598 static char_u buf[16]; | |
2599 char_u *p; | |
2600 | |
2601 p = buf + 15; | |
2602 *p = '\0'; | |
2603 do | |
2604 { | |
2605 --p; | |
2606 *p = (char_u) (i % 10 + '0'); | |
2607 i /= 10; | |
2608 } | |
2609 while (i > 0 && p > buf); | |
2610 return p; | |
2611 } | |
2612 #endif | |
2613 | |
2614 #ifndef HAVE_TGETENT | |
2615 | |
2616 /* | |
2617 * minimal tgoto() implementation. | |
2618 * no padding and we only parse for %i %d and %+char | |
2619 */ | |
298 | 2620 static char * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2621 tgoto(char *cm, int x, int y) |
7 | 2622 { |
2623 static char buf[30]; | |
2624 char *p, *s, *e; | |
2625 | |
2626 if (!cm) | |
2627 return "OOPS"; | |
2628 e = buf + 29; | |
2629 for (s = buf; s < e && *cm; cm++) | |
2630 { | |
2631 if (*cm != '%') | |
2632 { | |
2633 *s++ = *cm; | |
2634 continue; | |
2635 } | |
2636 switch (*++cm) | |
2637 { | |
2638 case 'd': | |
2639 p = (char *)tltoa((unsigned long)y); | |
2640 y = x; | |
2641 while (*p) | |
2642 *s++ = *p++; | |
2643 break; | |
2644 case 'i': | |
2645 x++; | |
2646 y++; | |
2647 break; | |
2648 case '+': | |
2649 *s++ = (char)(*++cm + y); | |
2650 y = x; | |
2651 break; | |
2652 case '%': | |
2653 *s++ = *cm; | |
2654 break; | |
2655 default: | |
2656 return "OOPS"; | |
2657 } | |
2658 } | |
2659 *s = '\0'; | |
2660 return buf; | |
2661 } | |
2662 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2663 #endif // HAVE_TGETENT |
7 | 2664 |
2665 /* | |
2666 * Set the terminal name and initialize the terminal options. | |
2667 * If "name" is NULL or empty, get the terminal name from the environment. | |
2668 * If that fails, use the default terminal name. | |
2669 */ | |
2670 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2671 termcapinit(char_u *name) |
7 | 2672 { |
31481
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2673 char_u *term = name; |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2674 |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2675 if (term != NULL && *term == NUL) |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2676 term = NULL; // empty name is equal to no name |
7 | 2677 |
2678 #ifndef MSWIN | |
2679 if (term == NULL) | |
2680 term = mch_getenv((char_u *)"TERM"); | |
2681 #endif | |
2682 if (term == NULL || *term == NUL) | |
2683 term = DEFAULT_TERM; | |
694 | 2684 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0); |
7 | 2685 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2686 // Set the default terminal name. |
7 | 2687 set_string_default("term", term); |
2688 set_string_default("ttytype", term); | |
2689 | |
31481
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
2690 // Avoid using "term" here, because the next mch_getenv() may overwrite it. |
7 | 2691 set_termname(T_NAME != NULL ? T_NAME : term); |
2692 } | |
2693 | |
2694 /* | |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2695 * The number of calls to ui_write is reduced by using "out_buf". |
7 | 2696 */ |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2697 #define OUT_SIZE 2047 |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2698 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2699 // add one to allow mch_write() in os_win32.c to append a NUL |
7 | 2700 static char_u out_buf[OUT_SIZE + 1]; |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2701 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2702 static int out_pos = 0; // number of chars in out_buf |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2703 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2704 // Since the maximum number of SGR parameters shown as a normal value range is |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2705 // 16, the escape sequence length can be 4 * 16 + lead + tail. |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2706 #define MAX_ESC_SEQ_LEN 80 |
7 | 2707 |
2708 /* | |
2709 * out_flush(): flush the output buffer | |
2710 */ | |
2711 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2712 out_flush(void) |
7 | 2713 { |
2714 int len; | |
2715 | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2716 if (out_pos == 0) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2717 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2718 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2719 // set out_pos to 0 before ui_write, to avoid recursiveness |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2720 len = out_pos; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2721 out_pos = 0; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2722 ui_write(out_buf, len, FALSE); |
31287
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
31285
diff
changeset
|
2723 #ifdef FEAT_EVAL |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2724 if (ch_log_output != FALSE) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2725 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2726 out_buf[len] = NUL; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2727 ch_log(NULL, "raw %s output: \"%s\"", |
23610
07f9e4a54178
patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
2728 # ifdef FEAT_GUI |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2729 (gui.in_use && !gui.dying && !gui.starting) ? "GUI" : |
23610
07f9e4a54178
patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
2730 # endif |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2731 "terminal", |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2732 out_buf); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2733 if (ch_log_output == TRUE) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2734 ch_log_output = FALSE; // only log once |
7 | 2735 } |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2736 #endif |
7 | 2737 } |
2738 | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2739 /* |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2740 * out_flush_cursor(): flush the output buffer and redraw the cursor. |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2741 * Does not flush recursively in the GUI to avoid slow drawing. |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2742 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2743 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2744 out_flush_cursor( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2745 int force UNUSED, // when TRUE, update cursor even when not moved |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2746 int clear_selection UNUSED) // clear selection under cursor |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2747 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2748 mch_disable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2749 out_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2750 mch_enable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2751 #ifdef FEAT_GUI |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2752 if (gui.in_use) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2753 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2754 gui_update_cursor(force, clear_selection); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2755 gui_may_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2756 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2757 #endif |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2758 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2759 |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2760 |
7 | 2761 /* |
2762 * Sometimes a byte out of a multi-byte character is written with out_char(). | |
2763 * To avoid flushing half of the character, call this function first. | |
2764 */ | |
2765 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2766 out_flush_check(void) |
7 | 2767 { |
2768 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES) | |
2769 out_flush(); | |
2770 } | |
2771 | |
2772 #ifdef FEAT_GUI | |
2773 /* | |
2774 * out_trash(): Throw away the contents of the output buffer | |
2775 */ | |
2776 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2777 out_trash(void) |
7 | 2778 { |
2779 out_pos = 0; | |
2780 } | |
2781 #endif | |
2782 | |
2783 /* | |
2784 * out_char(c): put a byte into the output buffer. | |
2785 * Flush it if it becomes full. | |
2786 * This should not be used for outputting text on the screen (use functions | |
2787 * like msg_puts() and screen_putchar() for that). | |
2788 */ | |
2789 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2790 out_char(unsigned c) |
7 | 2791 { |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12640
diff
changeset
|
2792 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2793 if (c == '\n') // turn LF into CR-LF (CRMOD doesn't seem to do this) |
7 | 2794 out_char('\r'); |
2795 #endif | |
2796 | |
2797 out_buf[out_pos++] = c; | |
2798 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2799 // For testing we flush each time. |
7 | 2800 if (out_pos >= OUT_SIZE || p_wd) |
2801 out_flush(); | |
2802 } | |
2803 | |
2804 /* | |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2805 * Output "c" like out_char(), but don't flush when p_wd is set. |
7 | 2806 */ |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2807 static int |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2808 out_char_nf(int c) |
7 | 2809 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2810 out_buf[out_pos++] = (unsigned)c; |
7 | 2811 |
2812 if (out_pos >= OUT_SIZE) | |
2813 out_flush(); | |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2814 return (unsigned)c; |
7 | 2815 } |
2816 | |
2817 /* | |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2818 * A never-padding out_str(). |
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2819 * Use this whenever you don't want to run the string through tputs(). |
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2820 * tputs() above is harmless, but tputs() from the termcap library |
7 | 2821 * is likely to strip off leading digits, that it mistakes for padding |
2822 * information, and "%i", "%d", etc. | |
2823 * This should only be used for writing terminal codes, not for outputting | |
2824 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2825 */ | |
2826 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2827 out_str_nf(char_u *s) |
7 | 2828 { |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2829 // avoid terminal strings being split up |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2830 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
7 | 2831 out_flush(); |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2832 |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2833 for (char_u *p = s; *p != NUL; ++p) |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2834 out_char_nf(*p); |
7 | 2835 |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2836 // For testing we write one string at a time. |
7 | 2837 if (p_wd) |
2838 out_flush(); | |
2839 } | |
2840 | |
2841 /* | |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2842 * A conditional-flushing out_str, mainly for visualbell. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2843 * Handles a delay internally, because termlib may not respect the delay or do |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2844 * it at the wrong time. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2845 * Note: Only for terminal strings. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2846 */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2847 void |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2848 out_str_cf(char_u *s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2849 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2850 if (s == NULL || *s == NUL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2851 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2852 |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2853 #ifdef HAVE_TGETENT |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2854 char_u *p; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2855 #endif |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2856 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2857 #ifdef FEAT_GUI |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2858 // Don't use tputs() when GUI is used, ncurses crashes. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2859 if (gui.in_use) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2860 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2861 out_str_nf(s); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2862 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2863 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2864 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2865 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2866 out_flush(); |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2867 #ifdef HAVE_TGETENT |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2868 for (p = s; *s; ++s) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2869 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2870 // flush just before delay command |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2871 if (*s == '$' && *(s + 1) == '<') |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2872 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2873 char_u save_c = *s; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2874 int duration = atoi((char *)s + 2); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2875 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2876 *s = NUL; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2877 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2878 *s = save_c; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2879 out_flush(); |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2880 # ifdef ELAPSED_FUNC |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2881 // Only sleep here if we can limit this happening in |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2882 // vim_beep(). |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2883 p = vim_strchr(s, '>'); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2884 if (p == NULL || duration <= 0) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2885 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2886 // can't parse the time, don't sleep here |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2887 p = s; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2888 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2889 else |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2890 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2891 ++p; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2892 do_sleep(duration, FALSE); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2893 } |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2894 # else |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2895 // Rely on the terminal library to sleep. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2896 p = s; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2897 # endif |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2898 break; |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2899 } |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2900 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2901 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf); |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2902 #else |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2903 while (*s) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2904 out_char_nf(*s++); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2905 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2906 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2907 // For testing we write one string at a time. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2908 if (p_wd) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2909 out_flush(); |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2910 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2911 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2912 /* |
7 | 2913 * out_str(s): Put a character string a byte at a time into the output buffer. |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2914 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw) |
7 | 2915 * This should only be used for writing terminal codes, not for outputting |
2916 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2917 */ | |
2918 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2919 out_str(char_u *s) |
7 | 2920 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2921 if (s == NULL || *s == NUL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2922 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2923 |
7 | 2924 #ifdef FEAT_GUI |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2925 // Don't use tputs() when GUI is used, ncurses crashes. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2926 if (gui.in_use) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2927 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2928 out_str_nf(s); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2929 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2930 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2931 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2932 // avoid terminal strings being split up |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2933 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2934 out_flush(); |
7 | 2935 #ifdef HAVE_TGETENT |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2936 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf); |
7 | 2937 #else |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2938 while (*s) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2939 out_char_nf(*s++); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2940 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2941 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2942 // For testing we write one string at a time. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2943 if (p_wd) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
2944 out_flush(); |
7 | 2945 } |
2946 | |
2947 /* | |
2948 * cursor positioning using termcap parser. (jw) | |
2949 */ | |
2950 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2951 term_windgoto(int row, int col) |
7 | 2952 { |
2953 OUT_STR(tgoto((char *)T_CM, col, row)); | |
2954 } | |
2955 | |
2956 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2957 term_cursor_right(int i) |
7 | 2958 { |
2959 OUT_STR(tgoto((char *)T_CRI, 0, i)); | |
2960 } | |
2961 | |
2962 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2963 term_append_lines(int line_count) |
7 | 2964 { |
2965 OUT_STR(tgoto((char *)T_CAL, 0, line_count)); | |
2966 } | |
2967 | |
2968 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2969 term_delete_lines(int line_count) |
7 | 2970 { |
2971 OUT_STR(tgoto((char *)T_CDL, 0, line_count)); | |
2972 } | |
2973 | |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2974 #if defined(UNIX) || defined(PROTO) |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2975 void |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2976 term_enable_mouse(int enable) |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2977 { |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2978 int on = enable ? 1 : 0; |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2979 OUT_STR(tgoto((char *)T_CXM, 0, on)); |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2980 } |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2981 #endif |
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31588
diff
changeset
|
2982 |
7 | 2983 #if defined(HAVE_TGETENT) || defined(PROTO) |
2984 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2985 term_set_winpos(int x, int y) |
7 | 2986 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2987 // Can't handle a negative value here |
7 | 2988 if (x < 0) |
2989 x = 0; | |
2990 if (y < 0) | |
2991 y = 0; | |
2992 OUT_STR(tgoto((char *)T_CWP, y, x)); | |
2993 } | |
2994 | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2995 # if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2996 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2997 * Return TRUE if we can request the terminal for a response. |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2998 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2999 static int |
32009
4545f58c8490
patch 9.0.1336: functions without arguments are not always declared properly
Bram Moolenaar <Bram@vim.org>
parents:
31910
diff
changeset
|
3000 can_get_termresponse(void) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3001 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3002 return cur_tmode == TMODE_RAW |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3003 && termcap_active |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3004 # ifdef UNIX |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3005 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd))) |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3006 # endif |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3007 && p_ek; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3008 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3009 |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3010 /* |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3011 * Set "status" to STATUS_SENT. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3012 */ |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3013 static void |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3014 termrequest_sent(termrequest_T *status) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3015 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3016 status->tr_progress = STATUS_SENT; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3017 status->tr_start = time(NULL); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3018 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3019 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3020 /* |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3021 * Return TRUE if any of the requests are in STATUS_SENT. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3022 */ |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3023 static int |
32009
4545f58c8490
patch 9.0.1336: functions without arguments are not always declared properly
Bram Moolenaar <Bram@vim.org>
parents:
31910
diff
changeset
|
3024 termrequest_any_pending(void) |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3025 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3026 int i; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3027 time_t now = time(NULL); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3028 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3029 for (i = 0; all_termrequests[i] != NULL; ++i) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3030 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3031 if (all_termrequests[i]->tr_progress == STATUS_SENT) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3032 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3033 if (all_termrequests[i]->tr_start > 0 && now > 0 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3034 && all_termrequests[i]->tr_start + 2 < now) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3035 // Sent the request more than 2 seconds ago and didn't get a |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3036 // response, assume it failed. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3037 all_termrequests[i]->tr_progress = STATUS_FAIL; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3038 else |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3039 return TRUE; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3040 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3041 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3042 return FALSE; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3043 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3044 |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3045 static int winpos_x = -1; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3046 static int winpos_y = -1; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3047 static int did_request_winpos = 0; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3048 |
16245
e0a6298bd70f
patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16200
diff
changeset
|
3049 # if defined(FEAT_EVAL) || defined(FEAT_TERMINAL) || defined(PROTO) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3050 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3051 * Try getting the Vim window position from the terminal. |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3052 * Returns OK or FAIL. |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3053 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3054 int |
13379
0f9dd1b43244
patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents:
13365
diff
changeset
|
3055 term_get_winpos(int *x, int *y, varnumber_T timeout) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3056 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3057 int count = 0; |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3058 int prev_winpos_x = winpos_x; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3059 int prev_winpos_y = winpos_y; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3060 |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3061 if (*T_CGP == NUL || !can_get_termresponse()) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3062 return FAIL; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3063 winpos_x = -1; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3064 winpos_y = -1; |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3065 ++did_request_winpos; |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3066 termrequest_sent(&winpos_status); |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3067 OUT_STR(T_CGP); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3068 out_flush(); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3069 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3070 // Try reading the result for "timeout" msec. |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3071 while (count++ <= timeout / 10 && !got_int) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3072 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3073 (void)vpeekc_nomap(); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3074 if (winpos_x >= 0 && winpos_y >= 0) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3075 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3076 *x = winpos_x; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3077 *y = winpos_y; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3078 return OK; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3079 } |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18430
diff
changeset
|
3080 ui_delay(10L, FALSE); |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3081 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3082 // Do not reset "did_request_winpos", if we timed out the response might |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3083 // still come later and we must consume it. |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3084 |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3085 winpos_x = prev_winpos_x; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3086 winpos_y = prev_winpos_y; |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13573
diff
changeset
|
3087 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0) |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3088 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3089 // Polling: return previous values if we have them. |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3090 *x = winpos_x; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3091 *y = winpos_y; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3092 return OK; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3093 } |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3094 |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3095 return FALSE; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3096 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3097 # endif |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3098 # endif |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3099 |
7 | 3100 void |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3101 term_set_winsize(int height, int width) |
7 | 3102 { |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3103 OUT_STR(tgoto((char *)T_CWS, width, height)); |
7 | 3104 } |
3105 #endif | |
3106 | |
3107 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3108 term_color(char_u *s, int n) |
7 | 3109 { |
3110 char buf[20]; | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3111 int i = *s == CSI ? 1 : 2; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3112 // index in s[] just after <Esc>[ or CSI |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3113 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3114 // Special handling of 16 colors, because termcap can't handle it |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3115 // Also accept "\e[3%dm" for TERMINFO, it is sometimes used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3116 // Also accept CSI instead of <Esc>[ |
7 | 3117 if (n >= 8 && t_colors >= 16 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3118 && ((s[0] == ESC && s[1] == '[') |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3119 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3120 || (s[0] == ESC && s[1] == '|') |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3121 #endif |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3122 || (s[0] == CSI && (i = 1) == 1)) |
7 | 3123 && s[i] != NUL |
3124 && (STRCMP(s + i + 1, "%p1%dm") == 0 | |
3125 || STRCMP(s + i + 1, "%dm") == 0) | |
3126 && (s[i] == '3' || s[i] == '4')) | |
3127 { | |
3128 #ifdef TERMINFO | |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
3129 char *format = "%s%s%%p1%%dm"; |
7 | 3130 #else |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
3131 char *format = "%s%s%%dm"; |
7 | 3132 #endif |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3133 char *lead = i == 2 ? ( |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3134 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
3135 s[1] == '|' ? "\033|" : |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3136 #endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
3137 "\033[") : "\233"; |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3138 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9") |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3139 : (n >= 16 ? "48;5;" : "10"); |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3140 |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3141 sprintf(buf, format, lead, tail); |
7 | 3142 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8)); |
3143 } | |
3144 else | |
3145 OUT_STR(tgoto((char *)s, 0, n)); | |
3146 } | |
3147 | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3148 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3149 term_fg_color(int n) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3150 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3151 // Use "AF" termcap entry if present, "Sf" entry otherwise |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3152 if (*T_CAF) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3153 term_color(T_CAF, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3154 else if (*T_CSF) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3155 term_color(T_CSF, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3156 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3157 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3158 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3159 term_bg_color(int n) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3160 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3161 // Use "AB" termcap entry if present, "Sb" entry otherwise |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3162 if (*T_CAB) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3163 term_color(T_CAB, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3164 else if (*T_CSB) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3165 term_color(T_CSB, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3166 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3167 |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3168 void |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3169 term_ul_color(int n) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3170 { |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3171 if (*T_CAU) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3172 term_color(T_CAU, n); |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3173 } |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3174 |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3175 /* |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3176 * Return "dark" or "light" depending on the kind of terminal. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3177 * This is just guessing! Recognized are: |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3178 * "linux" Linux console |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3179 * "screen.linux" Linux console with screen |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3180 * "cygwin.*" Cygwin shell |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3181 * "putty.*" Putty program |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3182 * We also check the COLORFGBG environment variable, which is set by |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3183 * rxvt and derivatives. This variable contains either two or three |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3184 * values separated by semicolons; we want the last value in either |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3185 * case. If this value is 0-6 or 8, our background is dark. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3186 */ |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3187 char_u * |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3188 term_bg_default(void) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3189 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3190 #if defined(MSWIN) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3191 // DOS console is nearly always black |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3192 return (char_u *)"dark"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3193 #else |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3194 char_u *p; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3195 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3196 if (STRCMP(T_NAME, "linux") == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3197 || STRCMP(T_NAME, "screen.linux") == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3198 || STRNCMP(T_NAME, "cygwin", 6) == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3199 || STRNCMP(T_NAME, "putty", 5) == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3200 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3201 && (p = vim_strrchr(p, ';')) != NULL |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3202 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8') |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3203 && p[2] == NUL)) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3204 return (char_u *)"dark"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3205 return (char_u *)"light"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3206 #endif |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3207 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3208 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
3209 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3210 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3211 #define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3212 #define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3213 #define BLUE(rgb) (((long_u)(rgb) ) & 0xFF) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3214 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3215 static void |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3216 term_rgb_color(char_u *s, guicolor_T rgb) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3217 { |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3218 #define MAX_COLOR_STR_LEN 100 |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3219 char buf[MAX_COLOR_STR_LEN]; |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3220 |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3221 if (*s == NUL) |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3222 return; |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
3223 vim_snprintf(buf, MAX_COLOR_STR_LEN, |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3224 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb)); |
20589
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3225 #ifdef FEAT_VTP |
31805
e279b756475b
patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents:
31800
diff
changeset
|
3226 if (use_vtp() && (p_tgc || t_colors >= 256)) |
20589
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3227 { |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3228 out_flush(); |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3229 buf[1] = '['; |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3230 vtp_printf(buf); |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3231 } |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3232 else |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3233 #endif |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3234 OUT_STR(buf); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3235 } |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3236 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3237 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3238 term_fg_rgb_color(guicolor_T rgb) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3239 { |
31031
467d950013a1
patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3240 if (rgb != INVALCOLOR) |
467d950013a1
patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3241 term_rgb_color(T_8F, rgb); |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3242 } |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3243 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3244 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3245 term_bg_rgb_color(guicolor_T rgb) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3246 { |
28763
b01bca69b1d5
patch 8.2.4906: MS-Windows: cannot use transparent background
Bram Moolenaar <Bram@vim.org>
parents:
28739
diff
changeset
|
3247 if (rgb != INVALCOLOR) |
b01bca69b1d5
patch 8.2.4906: MS-Windows: cannot use transparent background
Bram Moolenaar <Bram@vim.org>
parents:
28739
diff
changeset
|
3248 term_rgb_color(T_8B, rgb); |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3249 } |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3250 |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3251 void |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3252 term_ul_rgb_color(guicolor_T rgb) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3253 { |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3254 # ifdef FEAT_TERMRESPONSE |
30602
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3255 // If the user explicitly sets t_8u then use it. Otherwise wait for |
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3256 // termresponse to be received, which is when t_8u would be set and a |
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3257 // redraw is needed if it was used. |
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3258 if (!option_was_set((char_u *)"t_8u") && write_t_8u_state != OK) |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3259 write_t_8u_state = MAYBE; |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3260 else |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3261 # endif |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3262 term_rgb_color(T_8U, rgb); |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3263 } |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3264 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3265 |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
3266 #if (defined(UNIX) || defined(VMS) || defined(MACOS_X)) || defined(PROTO) |
7 | 3267 /* |
3268 * Generic function to set window title, using t_ts and t_fs. | |
3269 */ | |
3270 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3271 term_settitle(char_u *title) |
7 | 3272 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3273 MAY_WANT_TO_LOG_THIS; |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3274 |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
3275 // t_ts takes one argument: column in status line |
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
3276 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start |
7 | 3277 out_str_nf(title); |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
3278 out_str(T_FS); // set title end |
7 | 3279 out_flush(); |
3280 } | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3281 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3282 /* |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3283 * Tell the terminal to push (save) the title and/or icon, so that it can be |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3284 * popped (restored) later. |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3285 */ |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3286 void |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3287 term_push_title(int which) |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3288 { |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3289 if ((which & SAVE_RESTORE_TITLE) && T_CST != NULL && *T_CST != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3290 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3291 OUT_STR(T_CST); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3292 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3293 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3294 |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3295 if ((which & SAVE_RESTORE_ICON) && T_SSI != NULL && *T_SSI != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3296 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3297 OUT_STR(T_SSI); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3298 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3299 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3300 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3301 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3302 /* |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3303 * Tell the terminal to pop the title and/or icon. |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3304 */ |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3305 void |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3306 term_pop_title(int which) |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3307 { |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3308 if ((which & SAVE_RESTORE_TITLE) && T_CRT != NULL && *T_CRT != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3309 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3310 OUT_STR(T_CRT); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3311 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3312 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3313 |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3314 if ((which & SAVE_RESTORE_ICON) && T_SRI != NULL && *T_SRI != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3315 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3316 OUT_STR(T_SRI); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3317 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3318 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3319 } |
7 | 3320 #endif |
3321 | |
3322 /* | |
3323 * Make sure we have a valid set or terminal options. | |
3324 * Replace all entries that are NULL by empty_option | |
3325 */ | |
3326 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3327 ttest(int pairs) |
7 | 3328 { |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3329 char_u *env_colors; |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3330 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3331 check_options(); // make sure no options are NULL |
7 | 3332 |
3333 /* | |
3334 * MUST have "cm": cursor motion. | |
3335 */ | |
3336 if (*T_CM == NUL) | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3337 emsg(_(e_terminal_capability_cm_required)); |
7 | 3338 |
3339 /* | |
3340 * if "cs" defined, use a scroll region, it's faster. | |
3341 */ | |
3342 if (*T_CS != NUL) | |
3343 scroll_region = TRUE; | |
3344 else | |
3345 scroll_region = FALSE; | |
3346 | |
3347 if (pairs) | |
3348 { | |
3349 /* | |
3350 * optional pairs | |
3351 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3352 // TP goes to normal mode for TI (invert) and TB (bold) |
7 | 3353 if (*T_ME == NUL) |
3354 T_ME = T_MR = T_MD = T_MB = empty_option; | |
3355 if (*T_SO == NUL || *T_SE == NUL) | |
3356 T_SO = T_SE = empty_option; | |
3357 if (*T_US == NUL || *T_UE == NUL) | |
3358 T_US = T_UE = empty_option; | |
3359 if (*T_CZH == NUL || *T_CZR == NUL) | |
3360 T_CZH = T_CZR = empty_option; | |
3361 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3362 // T_VE is needed even though T_VI is not defined |
7 | 3363 if (*T_VE == NUL) |
3364 T_VI = empty_option; | |
3365 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3366 // if 'mr' or 'me' is not defined use 'so' and 'se' |
7 | 3367 if (*T_ME == NUL) |
3368 { | |
3369 T_ME = T_SE; | |
3370 T_MR = T_SO; | |
3371 T_MD = T_SO; | |
3372 } | |
3373 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3374 // if 'so' or 'se' is not defined use 'mr' and 'me' |
7 | 3375 if (*T_SO == NUL) |
3376 { | |
3377 T_SE = T_ME; | |
3378 if (*T_MR == NUL) | |
3379 T_SO = T_MD; | |
3380 else | |
3381 T_SO = T_MR; | |
3382 } | |
3383 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3384 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me' |
7 | 3385 if (*T_CZH == NUL) |
3386 { | |
3387 T_CZR = T_ME; | |
3388 if (*T_MR == NUL) | |
3389 T_CZH = T_MD; | |
3390 else | |
3391 T_CZH = T_MR; | |
3392 } | |
3393 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3394 // "Sb" and "Sf" come in pairs |
7 | 3395 if (*T_CSB == NUL || *T_CSF == NUL) |
3396 { | |
3397 T_CSB = empty_option; | |
3398 T_CSF = empty_option; | |
3399 } | |
3400 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3401 // "AB" and "AF" come in pairs |
7 | 3402 if (*T_CAB == NUL || *T_CAF == NUL) |
3403 { | |
3404 T_CAB = empty_option; | |
3405 T_CAF = empty_option; | |
3406 } | |
3407 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3408 // if 'Sb' and 'AB' are not defined, reset "Co" |
7 | 3409 if (*T_CSB == NUL && *T_CAB == NUL) |
1941 | 3410 free_one_termoption(T_CCO); |
7 | 3411 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3412 // Set 'weirdinvert' according to value of 't_xs' |
7 | 3413 p_wiv = (*T_XS != NUL); |
3414 } | |
3415 need_gather = TRUE; | |
3416 | |
20181
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3417 // Set t_colors to the value of $COLORS or t_Co. Ignore $COLORS in the |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3418 // GUI. |
7 | 3419 t_colors = atoi((char *)T_CCO); |
20181
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3420 #ifdef FEAT_GUI |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3421 if (!gui.in_use) |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3422 #endif |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3423 { |
20181
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3424 env_colors = mch_getenv((char_u *)"COLORS"); |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3425 if (env_colors != NULL && isdigit(*env_colors)) |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3426 { |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3427 int colors = atoi((char *)env_colors); |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3428 |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3429 if (colors != t_colors) |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3430 set_color_count(colors); |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3431 } |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3432 } |
7 | 3433 } |
3434 | |
3435 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \ | |
3436 || defined(PROTO) | |
3437 /* | |
3438 * Represent the given long_u as individual bytes, with the most significant | |
3439 * byte first, and store them in dst. | |
3440 */ | |
3441 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3442 add_long_to_buf(long_u val, char_u *dst) |
7 | 3443 { |
3444 int i; | |
3445 int shift; | |
3446 | |
1883 | 3447 for (i = 1; i <= (int)sizeof(long_u); i++) |
7 | 3448 { |
3449 shift = 8 * (sizeof(long_u) - i); | |
3450 dst[i - 1] = (char_u) ((val >> shift) & 0xff); | |
3451 } | |
3452 } | |
3453 | |
3454 /* | |
3455 * Interpret the next string of bytes in buf as a long integer, with the most | |
3456 * significant byte first. Note that it is assumed that buf has been through | |
3457 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each. | |
3458 * Puts result in val, and returns the number of bytes read from buf | |
3459 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes | |
3460 * were present. | |
3461 */ | |
3462 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3463 get_long_from_buf(char_u *buf, long_u *val) |
7 | 3464 { |
3465 int len; | |
3466 char_u bytes[sizeof(long_u)]; | |
3467 int i; | |
3468 int shift; | |
3469 | |
3470 *val = 0; | |
3471 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u)); | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3472 if (len == -1) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3473 return -1; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3474 for (i = 0; i < (int)sizeof(long_u); i++) |
7 | 3475 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3476 shift = 8 * (sizeof(long_u) - 1 - i); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3477 *val += (long_u)bytes[i] << shift; |
7 | 3478 } |
3479 return len; | |
3480 } | |
3481 #endif | |
3482 | |
3483 /* | |
3484 * Read the next num_bytes bytes from buf, and store them in bytes. Assume | |
3485 * that buf has been through inchar(). Returns the actual number of bytes used | |
3486 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were | |
3487 * available. | |
3488 */ | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
3489 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3490 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) |
7 | 3491 { |
3492 int len = 0; | |
3493 int i; | |
3494 char_u c; | |
3495 | |
3496 for (i = 0; i < num_bytes; i++) | |
3497 { | |
3498 if ((c = buf[len++]) == NUL) | |
3499 return -1; | |
3500 if (c == K_SPECIAL) | |
3501 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3502 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen? |
7 | 3503 return -1; |
3504 if (buf[len++] == (int)KS_ZERO) | |
3505 c = NUL; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3506 // else it should be KS_SPECIAL; when followed by KE_FILLER c is |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3507 // K_SPECIAL, or followed by KE_CSI and c must be CSI. |
5076
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3508 if (buf[len++] == (int)KE_CSI) |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3509 c = CSI; |
7 | 3510 } |
1160 | 3511 else if (c == CSI && buf[len] == KS_EXTRA |
3512 && buf[len + 1] == (int)KE_CSI) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3513 // CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3514 // the start of a special key, see add_to_input_buf_csi(). |
667 | 3515 len += 2; |
7 | 3516 bytes[i] = c; |
3517 } | |
3518 return len; | |
3519 } | |
3520 | |
3521 /* | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3522 * Check if the new shell size is valid, correct it if it's too small or way |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3523 * too big. |
7 | 3524 */ |
3525 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3526 check_shellsize(void) |
7 | 3527 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3528 if (Rows < min_rows()) // need room for one window and command line |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3529 Rows = min_rows(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3530 limit_screen_size(); |
29286
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3531 |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3532 // make sure these values are not invalid |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3533 if (cmdline_row >= Rows) |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3534 cmdline_row = Rows - 1; |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3535 if (msg_row >= Rows) |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3536 msg_row = Rows - 1; |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3537 } |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3538 |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3539 /* |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3540 * Limit Rows and Columns to avoid an overflow in Rows * Columns. |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3541 */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3542 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3543 limit_screen_size(void) |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3544 { |
7 | 3545 if (Columns < MIN_COLUMNS) |
3546 Columns = MIN_COLUMNS; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3547 else if (Columns > 10000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3548 Columns = 10000; |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3549 if (Rows > 1000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3550 Rows = 1000; |
7 | 3551 } |
3552 | |
41 | 3553 /* |
3554 * Invoked just before the screen structures are going to be (re)allocated. | |
3555 */ | |
7 | 3556 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3557 win_new_shellsize(void) |
7 | 3558 { |
3559 static int old_Rows = 0; | |
3560 static int old_Columns = 0; | |
3561 | |
3562 if (old_Rows != Rows || old_Columns != Columns) | |
3563 ui_new_shellsize(); | |
3564 if (old_Rows != Rows) | |
3565 { | |
24228
1e85e76f9e76
patch 8.2.2655: The -w command line argument doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
3566 // If 'window' uses the whole screen, keep it using that. |
1e85e76f9e76
patch 8.2.2655: The -w command line argument doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
3567 // Don't change it when set with "-w size" on the command line. |
27996
3ae5bc51d39d
patch 8.2.4523: when gvim is started maximized the 'window' option isn't set
Bram Moolenaar <Bram@vim.org>
parents:
27930
diff
changeset
|
3568 if (p_window == old_Rows - 1 |
3ae5bc51d39d
patch 8.2.4523: when gvim is started maximized the 'window' option isn't set
Bram Moolenaar <Bram@vim.org>
parents:
27930
diff
changeset
|
3569 || (old_Rows == 0 && !option_was_set((char_u *)"window"))) |
164 | 3570 p_window = Rows - 1; |
7 | 3571 old_Rows = Rows; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3572 shell_new_rows(); // update window sizes |
7 | 3573 } |
3574 if (old_Columns != Columns) | |
3575 { | |
3576 old_Columns = Columns; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3577 shell_new_columns(); // update window sizes |
7 | 3578 } |
3579 } | |
3580 | |
3581 /* | |
3582 * Call this function when the Vim shell has been resized in any way. | |
3583 * Will obtain the current size and redraw (also when size didn't change). | |
3584 */ | |
3585 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3586 shell_resized(void) |
7 | 3587 { |
3588 set_shellsize(0, 0, FALSE); | |
3589 } | |
3590 | |
3591 /* | |
3592 * Check if the shell size changed. Handle a resize. | |
3593 * When the size didn't change, nothing happens. | |
3594 */ | |
3595 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3596 shell_resized_check(void) |
7 | 3597 { |
3598 int old_Rows = Rows; | |
3599 int old_Columns = Columns; | |
3600 | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3601 if (exiting |
3770 | 3602 #ifdef FEAT_GUI |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3603 // Do not get the size when executing a shell command during |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3604 // startup. |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3605 || gui.starting |
3770 | 3606 #endif |
3607 ) | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3608 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3609 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3610 (void)ui_get_shellsize(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3611 check_shellsize(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3612 if (old_Rows != Rows || old_Columns != Columns) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3613 shell_resized(); |
7 | 3614 } |
3615 | |
3616 /* | |
3617 * Set size of the Vim shell. | |
3618 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real | |
3619 * window size (this is used for the :win command). | |
3620 * If 'mustset' is FALSE, we may try to get the real window size and if | |
3621 * it fails use 'width' and 'height'. | |
3622 */ | |
31178
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3623 static void |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3624 set_shellsize_inner(int width, int height, int mustset) |
7 | 3625 { |
17330
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3626 if (updating_screen) |
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3627 // resizing while in update_screen() may cause a crash |
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3628 return; |
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3629 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3630 // curwin->w_buffer can be NULL when we are closing a window and the |
23410
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3631 // buffer (or window) has already been closed and removing a scrollbar |
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3632 // causes a resize event. Don't resize then, it will happen after entering |
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3633 // another buffer. |
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3634 if (curwin->w_buffer == NULL || curwin->w_lines == NULL) |
3068 | 3635 return; |
3636 | |
7 | 3637 #ifdef AMIGA |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3638 out_flush(); // must do this before mch_get_shellsize() for |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3639 // some obscure reason |
7 | 3640 #endif |
3641 | |
3642 if (mustset || (ui_get_shellsize() == FAIL && height != 0)) | |
3643 { | |
3644 Rows = height; | |
3645 Columns = width; | |
3646 check_shellsize(); | |
3647 ui_set_shellsize(mustset); | |
3648 } | |
3649 else | |
3650 check_shellsize(); | |
3651 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3652 // The window layout used to be adjusted here, but it now happens in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3653 // screenalloc() (also invoked from screenclear()). That is because the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3654 // "busy" check above may skip this, but not screenalloc(). |
7 | 3655 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3656 if (State != MODE_ASKMORE && State != MODE_EXTERNCMD |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3657 && State != MODE_CONFIRM) |
7 | 3658 screenclear(); |
3659 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3660 screen_start(); // don't know where cursor is now |
7 | 3661 |
3662 if (starting != NO_SCREEN) | |
3663 { | |
3664 maketitle(); | |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
3665 |
7 | 3666 changed_line_abv_curs(); |
3667 invalidate_botline(); | |
3668 | |
3669 /* | |
3670 * We only redraw when it's needed: | |
3671 * - While at the more prompt or executing an external command, don't | |
3672 * redraw, but position the cursor. | |
3673 * - While editing the command line, only redraw that. | |
3674 * - in Ex mode, don't redraw anything. | |
3675 * - Otherwise, redraw right now, and position the cursor. | |
3676 * Always need to call update_screen() or screenalloc(), to make | |
3677 * sure Rows/Columns and the size of ScreenLines[] is correct! | |
3678 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3679 if (State == MODE_ASKMORE || State == MODE_EXTERNCMD |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3680 || State == MODE_CONFIRM || exmode_active) |
7 | 3681 { |
3682 screenalloc(FALSE); | |
3683 repeat_message(); | |
3684 } | |
3685 else | |
3686 { | |
1024 | 3687 if (curwin->w_p_scb) |
3688 do_check_scrollbind(TRUE); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3689 if (State & MODE_CMDLINE) |
648 | 3690 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
3691 update_screen(UPD_NOT_VALID); |
1024 | 3692 redrawcmdline(); |
648 | 3693 } |
3694 else | |
1024 | 3695 { |
3696 update_topline(); | |
3697 if (pum_visible()) | |
3698 { | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
3699 redraw_later(UPD_NOT_VALID); |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
3700 ins_compl_show_pum(); |
1024 | 3701 } |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
3702 update_screen(UPD_NOT_VALID); |
1024 | 3703 if (redrawing()) |
3704 setcursor(); | |
3705 } | |
7 | 3706 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3707 cursor_on(); // redrawing may have switched it off |
7 | 3708 } |
3709 out_flush(); | |
31178
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3710 } |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3711 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3712 void |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3713 set_shellsize(int width, int height, int mustset) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3714 { |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3715 static int busy = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3716 static int do_run = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3717 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3718 if (width < 0 || height < 0) // just checking... |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3719 return; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3720 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3721 if (State == MODE_HITRETURN || State == MODE_SETWSIZE) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3722 { |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3723 // postpone the resizing |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3724 State = MODE_SETWSIZE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3725 return; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3726 } |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3727 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3728 // Avoid recursiveness. This can happen when setting the window size |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3729 // causes another window-changed signal or when two SIGWINCH signals come |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3730 // very close together. There needs to be another run then after the |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3731 // current one is done to pick up the latest size. |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3732 do_run = TRUE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3733 if (busy) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3734 return; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3735 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3736 while (do_run) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3737 { |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3738 do_run = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3739 busy = TRUE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3740 set_shellsize_inner(width, height, mustset); |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3741 busy = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3742 } |
7 | 3743 } |
3744 | |
3745 /* | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3746 * Output T_CTE, the t_TE termcap entry, and handle expected effects. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3747 * The code possibly disables modifyOtherKeys and the Kitty keyboard protocol. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3748 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3749 void |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3750 out_str_t_TE(void) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3751 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3752 out_str(T_CTE); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3753 |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3754 // The seenModifyOtherKeys flag is not reset here. We do expect t_TE to |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3755 // disable modifyOtherKeys, but until Xterm version 377 there is no way to |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3756 // detect it's enabled again after the following t_TI. We assume that when |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3757 // seenModifyOtherKeys was set before it will still be valid. |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3758 |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3759 // When the modifyOtherKeys level is detected to be 2 we expect t_TE to |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3760 // disable it. Remembering that it was detected to be enabled is useful in |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3761 // some situations. |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3762 // The following t_TI is expected to request the state and then |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3763 // modify_otherkeys_state will be set again. |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3764 if (modify_otherkeys_state == MOKS_ENABLED |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3765 || modify_otherkeys_state == MOKS_DISABLED) |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3766 modify_otherkeys_state = MOKS_DISABLED; |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
3767 else if (modify_otherkeys_state != MOKS_INITIAL) |
31465
d9263e7a0570
patch 9.0.1065: a shell command switching screens may still have a problem
Bram Moolenaar <Bram@vim.org>
parents:
31461
diff
changeset
|
3768 modify_otherkeys_state = MOKS_AFTER_T_TE; |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3769 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3770 // When the kitty keyboard protocol is enabled we expect t_TE to disable |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3771 // it. Remembering that it was detected to be enabled is useful in some |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3772 // situations. |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3773 // The following t_TI is expected to request the state and then |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3774 // kitty_protocol_state will be set again. |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3775 if (kitty_protocol_state == KKPS_ENABLED |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3776 || kitty_protocol_state == KKPS_DISABLED) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3777 kitty_protocol_state = KKPS_DISABLED; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3778 else |
31465
d9263e7a0570
patch 9.0.1065: a shell command switching screens may still have a problem
Bram Moolenaar <Bram@vim.org>
parents:
31461
diff
changeset
|
3779 kitty_protocol_state = KKPS_AFTER_T_TE; |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3780 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3781 |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3782 static int send_t_RK = FALSE; |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3783 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3784 /* |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3785 * Output T_TI and setup for what follows. |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3786 */ |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3787 void |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3788 out_str_t_TI(void) |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3789 { |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3790 out_str(T_CTI); |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3791 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3792 // Send t_RK when there is no more work to do. |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3793 send_t_RK = TRUE; |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3794 } |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3795 |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3796 /* |
31588
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3797 * Output T_BE, but only when t_PS and t_PE are set. |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3798 */ |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3799 void |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3800 out_str_t_BE(void) |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3801 { |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3802 char_u *p; |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3803 |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3804 if (T_BE == NULL || *T_BE == NUL |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3805 || (p = find_termcode((char_u *)"PS")) == NULL || *p == NUL |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3806 || (p = find_termcode((char_u *)"PE")) == NULL || *p == NUL) |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3807 return; |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3808 out_str(T_BE); |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3809 } |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3810 |
e94571ac4134
patch 9.0.1126: bracketed paste can be enabled when it is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31569
diff
changeset
|
3811 /* |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3812 * If t_TI was recently sent and there is no typeahead or work to do, now send |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3813 * t_RK. This is postponed to avoid the response arriving in a shell command |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3814 * or after Vim exits. |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3815 */ |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3816 void |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3817 may_send_t_RK(void) |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3818 { |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3819 if (send_t_RK |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3820 && !work_pending() |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3821 && !ex_normal_busy |
31295
311e11e63356
patch 9.0.0981: build error in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
31293
diff
changeset
|
3822 #ifdef FEAT_EVAL |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3823 && !in_feedkeys |
31295
311e11e63356
patch 9.0.0981: build error in tiny version
Bram Moolenaar <Bram@vim.org>
parents:
31293
diff
changeset
|
3824 #endif |
31293
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3825 && !exiting) |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3826 { |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3827 send_t_RK = FALSE; |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3828 out_str(T_CRK); |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3829 out_flush(); |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3830 } |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3831 } |
ff4473b3fc58
patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
3832 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3833 /* |
7 | 3834 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external |
3835 * commands and Ex mode). | |
3836 */ | |
3837 void | |
20450
d5d89c24eec7
patch 8.2.0779: tmode_T not used everywhere
Bram Moolenaar <Bram@vim.org>
parents:
20439
diff
changeset
|
3838 settmode(tmode_T tmode) |
7 | 3839 { |
3840 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3841 // don't set the term where gvim was started to any mode |
7 | 3842 if (gui.in_use) |
3843 return; | |
3844 #endif | |
3845 | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3846 if (!full_screen) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3847 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3848 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3849 /* |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3850 * When returning after calling a shell cur_tmode is TMODE_UNKNOWN, |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3851 * set the terminal to raw mode, even though we think it already is, |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3852 * because the shell program may have reset the terminal mode. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3853 * When we think the terminal is normal, don't try to set it to |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3854 * normal again, because that causes problems (logout!) on some |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3855 * machines. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3856 */ |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3857 if (tmode != cur_tmode) |
7 | 3858 { |
3859 #ifdef FEAT_TERMRESPONSE | |
1691 | 3860 # ifdef FEAT_GUI |
3861 if (!gui.in_use && !gui.starting) | |
3862 # endif | |
3863 { | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3864 // May need to check for T_CRV response and termcodes, it |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3865 // doesn't work in Cooked mode, an external program may get |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3866 // them. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3867 if (tmode != TMODE_RAW && termrequest_any_pending()) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3868 (void)vpeekc_nomap(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3869 check_for_codes_from_term(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3870 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3871 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3872 if (tmode != TMODE_RAW) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3873 mch_setmouse(FALSE); // switch mouse off |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3874 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3875 // Disable bracketed paste and modifyOtherKeys in cooked mode. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3876 // Avoid doing this too often, on some terminals the codes are not |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3877 // handled properly. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3878 if (termcap_active && tmode != TMODE_SLEEP |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3879 && cur_tmode != TMODE_SLEEP) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3880 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3881 MAY_WANT_TO_LOG_THIS; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3882 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3883 if (tmode != TMODE_RAW) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3884 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3885 out_str(T_BD); // disable bracketed paste mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3886 out_str_t_TE(); // possibly disables modifyOtherKeys |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3887 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3888 else |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3889 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3890 out_str_t_BE(); // enable bracketed paste mode (should |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3891 // be before mch_settmode(). |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3892 out_str_t_TI(); // possibly enables modifyOtherKeys |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3893 } |
1691 | 3894 } |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3895 out_flush(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3896 mch_settmode(tmode); // machine specific function |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3897 cur_tmode = tmode; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3898 if (tmode == TMODE_RAW) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3899 setmouse(); // may switch mouse on |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3900 out_flush(); |
7 | 3901 } |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3902 #ifdef FEAT_TERMRESPONSE |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3903 may_req_termresponse(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3904 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3905 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3906 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3907 void |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3908 starttermcap(void) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3909 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3910 if (!full_screen || termcap_active) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3911 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3912 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3913 MAY_WANT_TO_LOG_THIS; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3914 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3915 out_str(T_TI); // start termcap mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3916 out_str_t_TI(); // start "raw" mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3917 out_str(T_KS); // start "keypad transmit" mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3918 out_str_t_BE(); // enable bracketed paste mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3919 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3920 #if defined(UNIX) || defined(VMS) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3921 // Enable xterm's focus reporting mode when 'esckeys' is set. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3922 if (p_ek && *T_FE != NUL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3923 out_str(T_FE); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3924 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3925 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3926 out_flush(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3927 termcap_active = TRUE; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3928 screen_start(); // don't know where cursor is now |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3929 #ifdef FEAT_TERMRESPONSE |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3930 # ifdef FEAT_GUI |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3931 if (!gui.in_use && !gui.starting) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3932 # endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3933 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3934 may_req_termresponse(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3935 // Immediately check for a response. If t_Co changes, we don't |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3936 // want to redraw with wrong colors first. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3937 if (crv_status.tr_progress == STATUS_SENT) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3938 check_for_codes_from_term(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3939 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3940 #endif |
7 | 3941 } |
3942 | |
3943 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3944 stoptermcap(void) |
7 | 3945 { |
3946 screen_stop_highlight(); | |
3947 reset_cterm_colors(); | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3948 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3949 if (!termcap_active) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3950 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3951 |
7 | 3952 #ifdef FEAT_TERMRESPONSE |
1691 | 3953 # ifdef FEAT_GUI |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3954 if (!gui.in_use && !gui.starting) |
1691 | 3955 # endif |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3956 { |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3957 // May need to discard T_CRV, T_U7 or T_RBG response. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3958 if (termrequest_any_pending()) |
1691 | 3959 { |
4391 | 3960 # ifdef UNIX |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3961 // Give the terminal a chance to respond. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3962 mch_delay(100L, 0); |
4391 | 3963 # endif |
3964 # ifdef TCIFLUSH | |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3965 // Discard data received but not read. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3966 if (exiting) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3967 tcflush(fileno(stdin), TCIFLUSH); |
4391 | 3968 # endif |
1691 | 3969 } |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3970 // Check for termcodes first, otherwise an external program may |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3971 // get them. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3972 check_for_codes_from_term(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3973 } |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3974 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3975 MAY_WANT_TO_LOG_THIS; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3976 |
24045
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
3977 #if defined(UNIX) || defined(VMS) |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3978 // Disable xterm's focus reporting mode if 'esckeys' is set. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3979 if (p_ek && *T_FD != NUL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3980 out_str(T_FD); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3981 #endif |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3982 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3983 out_str(T_BD); // disable bracketed paste mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3984 out_str(T_KE); // stop "keypad transmit" mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3985 out_flush(); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3986 termcap_active = FALSE; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3987 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3988 // Output t_te before t_TE, t_te may switch between main and alternate |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3989 // screen and following codes may work on the active screen only. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3990 // |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3991 // When using the Kitty keyboard protocol the main and alternate screen |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3992 // use a separate state. If we are (or were) using the Kitty keyboard |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3993 // protocol and t_te is not empty (possibly switching screens) then |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3994 // output t_TE both before and after outputting t_te. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3995 if (*T_TE != NUL && (kitty_protocol_state == KKPS_ENABLED |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3996 || kitty_protocol_state == KKPS_DISABLED)) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3997 out_str_t_TE(); // probably disables the kitty keyboard |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3998 // protocol |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
3999 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4000 out_str(T_TE); // stop termcap mode |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4001 cursor_on(); // just in case it is still off |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4002 out_str_t_TE(); // stop "raw" mode, modifyOtherKeys and |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
4003 // Kitty keyboard protocol |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4004 screen_start(); // don't know where cursor is now |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4005 out_flush(); |
7 | 4006 } |
4007 | |
5932 | 4008 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 4009 /* |
4010 * Request version string (for xterm) when needed. | |
4011 * Only do this after switching to raw mode, otherwise the result will be | |
4012 * echoed. | |
626 | 4013 * Only do this after startup has finished, to avoid that the response comes |
1221 | 4014 * while executing "-c !cmd" or even after "-c quit". |
7 | 4015 * Only do this after termcap mode has been started, otherwise the codes for |
4016 * the cursor keys may be wrong. | |
620 | 4017 * Only do this when 'esckeys' is on, otherwise the response causes trouble in |
4018 * Insert mode. | |
164 | 4019 * On Unix only do it when both output and input are a tty (avoid writing |
4020 * request to terminal while reading from a file). | |
7 | 4021 * The result is caught in check_termcode(). |
4022 */ | |
626 | 4023 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4024 may_req_termresponse(void) |
7 | 4025 { |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4026 if (crv_status.tr_progress == STATUS_GET |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4027 && can_get_termresponse() |
626 | 4028 && starting == 0 |
7 | 4029 && *T_CRV != NUL) |
4030 { | |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4031 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4032 LOG_TR(("Sending CRV request")); |
7 | 4033 out_str(T_CRV); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4034 termrequest_sent(&crv_status); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4035 // check for the characters now, otherwise they might be eaten by |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4036 // get_keystroke() |
7 | 4037 out_flush(); |
4038 (void)vpeekc_nomap(); | |
4039 } | |
4040 } | |
4215 | 4041 |
4042 /* | |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4043 * Send sequences to the terminal and check with t_u7 how the cursor moves, to |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4044 * find out properties of the terminal. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4045 * Note that this goes out before T_CRV, so that the result can be used when |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4046 * the termresponse arrives. |
4215 | 4047 */ |
4048 void | |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4049 check_terminal_behavior(void) |
4215 | 4050 { |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4051 int did_send = FALSE; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4052 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4053 if (!can_get_termresponse() || starting != 0 || *T_U7 == NUL) |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4054 return; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4055 |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4056 if (u7_status.tr_progress == STATUS_GET |
4215 | 4057 && !option_was_set((char_u *)"ambiwidth")) |
4058 { | |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4059 char_u buf[16]; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4060 |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4061 // Ambiguous width check. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4062 // Check how the terminal treats ambiguous character width (UAX #11). |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4063 // First, we move the cursor to (1, 0) and print a test ambiguous |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4064 // character \u25bd (WHITE DOWN-POINTING TRIANGLE) and then query |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4065 // the current cursor position. If the terminal treats \u25bd as |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4066 // single width, the position is (1, 1), or if it is treated as double |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4067 // width, that will be (1, 2). This function has the side effect that |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4068 // changes cursor position, so it must be called immediately after |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4069 // entering termcap mode. |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4070 MAY_WANT_TO_LOG_THIS; |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4071 LOG_TR(("Sending request for ambiwidth check")); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4072 // Do this in the second row. In the first row the returned sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4073 // may be CSI 1;2R, which is the same as <S-F3>. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4074 term_windgoto(1, 0); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4075 buf[mb_char2bytes(0x25bd, buf)] = NUL; |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4076 out_str(buf); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4077 out_str(T_U7); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4078 termrequest_sent(&u7_status); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4079 out_flush(); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4080 did_send = TRUE; |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4081 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4082 // This overwrites a few characters on the screen, a redraw is needed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4083 // after this. Clear them out for now. |
17482
6cf077f59152
patch 8.1.1739: deleted match highlighting not updated in other window
Bram Moolenaar <Bram@vim.org>
parents:
17330
diff
changeset
|
4084 screen_stop_highlight(); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4085 term_windgoto(1, 0); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4086 out_str((char_u *)" "); |
21226
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
4087 line_was_clobbered(1); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4088 } |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4089 |
27004
671664c5faa4
patch 8.2.4031: crash in xterm with only two lines
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
4090 if (xcc_status.tr_progress == STATUS_GET && Rows > 2) |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4091 { |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4092 // 2. Check compatibility with xterm. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4093 // We move the cursor to (2, 0), print a test sequence and then query |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4094 // the current cursor position. If the terminal properly handles |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4095 // unknown DCS string and CSI sequence with intermediate byte, the test |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4096 // sequence is ignored and the cursor does not move. If the terminal |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4097 // handles test sequence incorrectly, a garbage string is displayed and |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4098 // the cursor does move. |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4099 MAY_WANT_TO_LOG_THIS; |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4100 LOG_TR(("Sending xterm compatibility test sequence.")); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4101 // Do this in the third row. Second row is used by ambiguous |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
22956
diff
changeset
|
4102 // character width check. |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4103 term_windgoto(2, 0); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4104 // send the test DCS string. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4105 out_str((char_u *)"\033Pzz\033\\"); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4106 // send the test CSI sequence with intermediate byte. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4107 out_str((char_u *)"\033[0%m"); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4108 out_str(T_U7); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4109 termrequest_sent(&xcc_status); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4110 out_flush(); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4111 did_send = TRUE; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4112 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4113 // If the terminal handles test sequence incorrectly, garbage text is |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4114 // displayed. Clear them out for now. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4115 screen_stop_highlight(); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4116 term_windgoto(2, 0); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4117 out_str((char_u *)" "); |
21226
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
4118 line_was_clobbered(2); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4119 } |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4120 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4121 if (did_send) |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
4122 { |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4123 term_windgoto(0, 0); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4124 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4125 // Need to reset the known cursor position. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4126 screen_start(); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4127 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4128 // check for the characters now, otherwise they might be eaten by |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4129 // get_keystroke() |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4130 out_flush(); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4131 (void)vpeekc_nomap(); |
4215 | 4132 } |
4133 } | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4134 |
6874 | 4135 /* |
6885 | 4136 * Similar to requesting the version string: Request the terminal background |
4137 * color when it is the right moment. | |
6874 | 4138 */ |
4139 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4140 may_req_bg_color(void) |
6874 | 4141 { |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4142 if (can_get_termresponse() && starting == 0) |
6874 | 4143 { |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4144 int didit = FALSE; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4145 |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
4146 # ifdef FEAT_TERMINAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4147 // Only request foreground if t_RF is set. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4148 if (rfg_status.tr_progress == STATUS_GET && *T_RFG != NUL) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4149 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4150 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4151 LOG_TR(("Sending FG request")); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4152 out_str(T_RFG); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4153 termrequest_sent(&rfg_status); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4154 didit = TRUE; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4155 } |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
4156 # endif |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4157 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4158 // Only request background if t_RB is set. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4159 if (rbg_status.tr_progress == STATUS_GET && *T_RBG != NUL) |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4160 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4161 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4162 LOG_TR(("Sending BG request")); |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4163 out_str(T_RBG); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4164 termrequest_sent(&rbg_status); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4165 didit = TRUE; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4166 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4167 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4168 if (didit) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4169 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4170 // check for the characters now, otherwise they might be eaten by |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4171 // get_keystroke() |
12232
1553d1a4bf7c
patch 8.0.0996: Mac: t_RS is echoed on the screne in Terminal.app
Christian Brabandt <cb@256bit.org>
parents:
12226
diff
changeset
|
4172 out_flush(); |
1553d1a4bf7c
patch 8.0.0996: Mac: t_RS is echoed on the screne in Terminal.app
Christian Brabandt <cb@256bit.org>
parents:
12226
diff
changeset
|
4173 (void)vpeekc_nomap(); |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4174 } |
6874 | 4175 } |
4176 } | |
4177 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4178 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4179 static void |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4180 log_tr(const char *fmt, ...) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4181 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4182 static FILE *fd_tr = NULL; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4183 static proftime_T start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4184 proftime_T now; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4185 va_list ap; |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4186 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4187 if (fd_tr == NULL) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4188 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4189 fd_tr = fopen("termresponse.log", "w"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4190 profile_start(&start); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4191 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4192 now = start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4193 profile_end(&now); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4194 fprintf(fd_tr, "%s: %s ", profile_msg(&now), |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4195 must_redraw == UPD_NOT_VALID ? "NV" |
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4196 : must_redraw == UPD_CLEAR ? "CL" : " "); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4197 va_start(ap, fmt); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4198 vfprintf(fd_tr, fmt, ap); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4199 va_end(ap); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4200 fputc('\n', fd_tr); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4201 fflush(fd_tr); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4202 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4203 # endif |
7 | 4204 #endif |
4205 | |
4206 /* | |
4207 * Return TRUE when saving and restoring the screen. | |
4208 */ | |
4209 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4210 swapping_screen(void) |
7 | 4211 { |
4212 return (full_screen && *T_TI != NUL); | |
4213 } | |
4214 | |
4215 /* | |
4216 * By outputting the 'cursor very visible' termcap code, for some windowed | |
4217 * terminals this makes the screen scrolled to the correct position. | |
4218 * Used when starting Vim or returning from a shell. | |
4219 */ | |
4220 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4221 scroll_start(void) |
7 | 4222 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4223 if (*T_VS == NUL || *T_CVS == NUL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4224 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4225 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4226 MAY_WANT_TO_LOG_THIS; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4227 out_str(T_VS); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4228 out_str(T_CVS); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4229 screen_start(); // don't know where cursor is now |
7 | 4230 } |
4231 | |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4232 // True if cursor is not visible |
7 | 4233 static int cursor_is_off = FALSE; |
4234 | |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4235 // True if cursor is not visible due to an ongoing cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4236 static int cursor_is_asleep = FALSE; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4237 |
7 | 4238 /* |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4239 * Enable the cursor without checking if it's already enabled. |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4240 */ |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4241 void |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4242 cursor_on_force(void) |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4243 { |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4244 out_str(T_VE); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4245 cursor_is_off = FALSE; |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4246 cursor_is_asleep = FALSE; |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4247 } |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4248 |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4249 /* |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4250 * Enable the cursor if it's currently off. |
7 | 4251 */ |
4252 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4253 cursor_on(void) |
7 | 4254 { |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4255 if (cursor_is_off && !cursor_is_asleep) |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4256 cursor_on_force(); |
7 | 4257 } |
4258 | |
4259 /* | |
4260 * Disable the cursor. | |
4261 */ | |
4262 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4263 cursor_off(void) |
7 | 4264 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4265 if (full_screen && !cursor_is_off) |
7 | 4266 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4267 out_str(T_VI); // disable cursor |
7 | 4268 cursor_is_off = TRUE; |
4269 } | |
4270 } | |
4271 | |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
27004
diff
changeset
|
4272 #ifdef FEAT_GUI |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4273 /* |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4274 * Check whether the cursor is invisible due to an ongoing cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4275 */ |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4276 int |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4277 cursor_is_sleeping(void) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4278 { |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4279 return cursor_is_asleep; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4280 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
27004
diff
changeset
|
4281 #endif |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4282 |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4283 /* |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4284 * Disable the cursor and mark it disabled by cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4285 */ |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4286 void |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4287 cursor_sleep(void) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4288 { |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4289 cursor_is_asleep = TRUE; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4290 cursor_off(); |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4291 } |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4292 |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4293 /* |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4294 * Enable the cursor and mark it not disabled by cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4295 */ |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4296 void |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4297 cursor_unsleep(void) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4298 { |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4299 cursor_is_asleep = FALSE; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4300 cursor_on(); |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4301 } |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4302 |
39 | 4303 #if defined(CURSOR_SHAPE) || defined(PROTO) |
7 | 4304 /* |
6727 | 4305 * Set cursor shape to match Insert or Replace mode. |
36 | 4306 */ |
4307 void | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4308 term_cursor_mode(int forced) |
36 | 4309 { |
12078
d21b8f31b296
patch 8.0.0919: cursor color isn't set on startup
Christian Brabandt <cb@256bit.org>
parents:
12076
diff
changeset
|
4310 static int showing_mode = -1; |
6727 | 4311 char_u *p; |
4312 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4313 // Only do something when redrawing the screen and we can restore the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4314 // mode. |
6727 | 4315 if (!full_screen || *T_CEI == NUL) |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4316 { |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
4317 # ifdef FEAT_TERMRESPONSE |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4318 if (forced && initial_cursor_shape > 0) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4319 // Restore to initial values. |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4320 term_cursor_shape(initial_cursor_shape, initial_cursor_blink); |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
4321 # endif |
36 | 4322 return; |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4323 } |
36 | 4324 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4325 if ((State & MODE_REPLACE) == MODE_REPLACE) |
36 | 4326 { |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4327 if (forced || showing_mode != MODE_REPLACE) |
6727 | 4328 { |
4329 if (*T_CSR != NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4330 p = T_CSR; // Replace mode cursor |
6727 | 4331 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4332 p = T_CSI; // fall back to Insert mode cursor |
6727 | 4333 if (*p != NUL) |
4334 { | |
4335 out_str(p); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4336 showing_mode = MODE_REPLACE; |
6727 | 4337 } |
4338 } | |
36 | 4339 } |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4340 else if (State & MODE_INSERT) |
36 | 4341 { |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4342 if ((forced || showing_mode != MODE_INSERT) && *T_CSI != NUL) |
6727 | 4343 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4344 out_str(T_CSI); // Insert mode cursor |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4345 showing_mode = MODE_INSERT; |
6727 | 4346 } |
4347 } | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4348 else if (forced || showing_mode != MODE_NORMAL) |
6727 | 4349 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4350 out_str(T_CEI); // non-Insert mode cursor |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4351 showing_mode = MODE_NORMAL; |
36 | 4352 } |
4353 } | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4354 |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4355 # if defined(FEAT_TERMINAL) || defined(PROTO) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4356 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4357 term_cursor_color(char_u *color) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4358 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4359 if (*T_CSC == NUL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4360 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4361 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4362 out_str(T_CSC); // set cursor color start |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4363 out_str_nf(color); |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4364 out_str(T_CEC); // set cursor color end |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4365 out_flush(); |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4366 } |
12172
444793fce117
patch 8.0.0966: build failure without terminal feature
Christian Brabandt <cb@256bit.org>
parents:
12170
diff
changeset
|
4367 # endif |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4368 |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4369 int |
32009
4545f58c8490
patch 9.0.1336: functions without arguments are not always declared properly
Bram Moolenaar <Bram@vim.org>
parents:
31910
diff
changeset
|
4370 blink_state_is_inverted(void) |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4371 { |
12261
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4372 #ifdef FEAT_TERMRESPONSE |
16936
73e6ed2f69a2
patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents:
16926
diff
changeset
|
4373 return rbm_status.tr_progress == STATUS_GOT |
73e6ed2f69a2
patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents:
16926
diff
changeset
|
4374 && rcs_status.tr_progress == STATUS_GOT |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4375 && initial_cursor_blink != initial_cursor_shape_blink; |
12261
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4376 #else |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4377 return FALSE; |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4378 #endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4379 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4380 |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4381 /* |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4382 * "shape": 1 = block, 2 = underline, 3 = vertical bar |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4383 */ |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4384 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4385 term_cursor_shape(int shape, int blink) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4386 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4387 if (*T_CSH != NUL) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4388 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4389 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink)); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4390 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4391 } |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4392 else |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4393 { |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4394 int do_blink = blink; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4395 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4396 // t_SH is empty: try setting just the blink state. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4397 // The blink flags are XORed together, if the initial blinking from |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4398 // style and shape differs, we need to invert the flag here. |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4399 if (blink_state_is_inverted()) |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4400 do_blink = !blink; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4401 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4402 if (do_blink && *T_VS != NUL) |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4403 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4404 out_str(T_VS); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4405 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4406 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4407 else if (!do_blink && *T_CVS != NUL) |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4408 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4409 out_str(T_CVS); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4410 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4411 } |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4412 } |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4413 } |
39 | 4414 #endif |
36 | 4415 |
4416 /* | |
7 | 4417 * Set scrolling region for window 'wp'. |
4418 * The region starts 'off' lines from the start of the window. | |
4419 * Also set the vertical scroll region for a vertically split window. Always | |
4420 * the full width of the window, excluding the vertical separator. | |
4421 */ | |
4422 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4423 scroll_region_set(win_T *wp, int off) |
7 | 4424 { |
4425 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1, | |
4426 W_WINROW(wp) + off)); | |
4427 if (*T_CSV != NUL && wp->w_width != Columns) | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12497
diff
changeset
|
4428 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1, |
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12497
diff
changeset
|
4429 wp->w_wincol)); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4430 screen_start(); // don't know where cursor is now |
7 | 4431 } |
4432 | |
4433 /* | |
4434 * Reset scrolling region to the whole screen. | |
4435 */ | |
4436 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4437 scroll_region_reset(void) |
7 | 4438 { |
4439 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0)); | |
4440 if (*T_CSV != NUL) | |
4441 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0)); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4442 screen_start(); // don't know where cursor is now |
7 | 4443 } |
4444 | |
4445 | |
4446 /* | |
4447 * List of terminal codes that are currently recognized. | |
4448 */ | |
4449 | |
298 | 4450 static struct termcode |
7 | 4451 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4452 char_u name[2]; // termcap name of entry |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4453 char_u *code; // terminal code (in allocated memory) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4454 int len; // STRLEN(code) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4455 int modlen; // length of part before ";*~". |
7 | 4456 } *termcodes = NULL; |
4457 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4458 static int tc_max_len = 0; // number of entries that termcodes[] can hold |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4459 static int tc_len = 0; // current number of entries in termcodes[] |
7 | 4460 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
4461 static int termcode_star(char_u *code, int len); |
180 | 4462 |
7 | 4463 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4464 clear_termcodes(void) |
7 | 4465 { |
4466 while (tc_len > 0) | |
4467 vim_free(termcodes[--tc_len].code); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
4468 VIM_CLEAR(termcodes); |
7 | 4469 tc_max_len = 0; |
4470 | |
4471 #ifdef HAVE_TGETENT | |
4472 BC = (char *)empty_option; | |
4473 UP = (char *)empty_option; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4474 PC = NUL; // set pad character to NUL |
7 | 4475 ospeed = 0; |
4476 #endif | |
4477 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4478 need_gather = TRUE; // need to fill termleader[] |
7 | 4479 } |
4480 | |
180 | 4481 #define ATC_FROM_TERM 55 |
4482 | |
7 | 4483 /* |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4484 * For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4485 * accept modifiers. |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4486 * Set "termcodes[idx].modlen". |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4487 */ |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4488 static void |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4489 adjust_modlen(int idx) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4490 { |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4491 termcodes[idx].modlen = 0; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4492 int j = termcode_star(termcodes[idx].code, termcodes[idx].len); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4493 if (j <= 0) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4494 return; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4495 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4496 termcodes[idx].modlen = termcodes[idx].len - 1 - j; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4497 // For "CSI[@;X" the "@" is not included in "modlen". |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4498 if (termcodes[idx].code[termcodes[idx].modlen - 1] == '@') |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4499 --termcodes[idx].modlen; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4500 } |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4501 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4502 /* |
31475
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4503 * Add a new entry for "name[2]" to the list of terminal codes. |
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4504 * Note that "name" may not have a terminating NUL. |
7 | 4505 * The list is kept alphabetical for ":set termcap" |
180 | 4506 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired. |
4507 * "flags" can also be ATC_FROM_TERM for got_code_from_term(). | |
7 | 4508 */ |
4509 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4510 add_termcode(char_u *name, char_u *string, int flags) |
7 | 4511 { |
4512 struct termcode *new_tc; | |
4513 int i, j; | |
4514 char_u *s; | |
179 | 4515 int len; |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4516 #ifdef FEAT_EVAL |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4517 char *action = "Setting"; |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4518 #endif |
7 | 4519 |
4520 if (string == NULL || *string == NUL) | |
4521 { | |
4522 del_termcode(name); | |
4523 return; | |
4524 } | |
4525 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
4526 #if defined(MSWIN) && !defined(FEAT_GUI) |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20778
diff
changeset
|
4527 s = vim_strnsave(string, STRLEN(string) + 1); |
6047 | 4528 #else |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4529 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4530 if (!gui.in_use) |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20778
diff
changeset
|
4531 s = vim_strnsave(string, STRLEN(string) + 1); |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4532 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4533 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4534 s = vim_strsave(string); |
6047 | 4535 #endif |
7 | 4536 if (s == NULL) |
4537 return; | |
4538 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4539 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. |
180 | 4540 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0) |
7 | 4541 { |
1623 | 4542 STRMOVE(s, s + 1); |
7 | 4543 s[0] = term_7to8bit(string); |
4544 } | |
6047 | 4545 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4546 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4547 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4548 if (!gui.in_use) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4549 # endif |
6047 | 4550 { |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4551 if (s[0] == K_NUL) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4552 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4553 STRMOVE(s + 1, s); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4554 s[1] = 3; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4555 } |
6047 | 4556 } |
4557 #endif | |
4558 | |
179 | 4559 len = (int)STRLEN(s); |
7 | 4560 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4561 need_gather = TRUE; // need to fill termleader[] |
7 | 4562 |
4563 /* | |
4564 * need to make space for more entries | |
4565 */ | |
4566 if (tc_len == tc_max_len) | |
4567 { | |
4568 tc_max_len += 20; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
4569 new_tc = ALLOC_MULT(struct termcode, tc_max_len); |
7 | 4570 if (new_tc == NULL) |
4571 { | |
4572 tc_max_len -= 20; | |
24737
e97a14604f65
patch 8.2.2907: memory leak when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
24428
diff
changeset
|
4573 vim_free(s); |
7 | 4574 return; |
4575 } | |
4576 for (i = 0; i < tc_len; ++i) | |
4577 new_tc[i] = termcodes[i]; | |
4578 vim_free(termcodes); | |
4579 termcodes = new_tc; | |
4580 } | |
4581 | |
4582 /* | |
4583 * Look for existing entry with the same name, it is replaced. | |
4584 * Look for an existing entry that is alphabetical higher, the new entry | |
4585 * is inserted in front of it. | |
4586 */ | |
4587 for (i = 0; i < tc_len; ++i) | |
4588 { | |
4589 if (termcodes[i].name[0] < name[0]) | |
4590 continue; | |
4591 if (termcodes[i].name[0] == name[0]) | |
4592 { | |
4593 if (termcodes[i].name[1] < name[1]) | |
4594 continue; | |
4595 /* | |
180 | 4596 * Exact match: May replace old code. |
7 | 4597 */ |
4598 if (termcodes[i].name[1] == name[1]) | |
4599 { | |
180 | 4600 if (flags == ATC_FROM_TERM && (j = termcode_star( |
4601 termcodes[i].code, termcodes[i].len)) > 0) | |
179 | 4602 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4603 // Don't replace ESC[123;*X or ESC O*X with another when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4604 // invoked from got_code_from_term(). |
180 | 4605 if (len == termcodes[i].len - j |
179 | 4606 && STRNCMP(s, termcodes[i].code, len - 1) == 0 |
180 | 4607 && s[len - 1] |
4608 == termcodes[i].code[termcodes[i].len - 1]) | |
179 | 4609 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4610 // They are equal but for the ";*": don't add it. |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4611 #ifdef FEAT_EVAL |
31475
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4612 ch_log(NULL, "Termcap entry %c%c did not change", |
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4613 name[0], name[1]); |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4614 #endif |
179 | 4615 vim_free(s); |
4616 return; | |
4617 } | |
4618 } | |
4619 else | |
4620 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4621 // Replace old code. |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4622 #ifdef FEAT_EVAL |
31475
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4623 ch_log(NULL, "Termcap entry %c%c was: %s", |
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4624 name[0], name[1], termcodes[i].code); |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4625 #endif |
179 | 4626 vim_free(termcodes[i].code); |
4627 --tc_len; | |
4628 break; | |
4629 } | |
7 | 4630 } |
4631 } | |
4632 /* | |
4633 * Found alphabetical larger entry, move rest to insert new entry | |
4634 */ | |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4635 #ifdef FEAT_EVAL |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4636 action = "Adding"; |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4637 #endif |
7 | 4638 for (j = tc_len; j > i; --j) |
4639 termcodes[j] = termcodes[j - 1]; | |
4640 break; | |
4641 } | |
4642 | |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4643 #ifdef FEAT_EVAL |
31475
9ef91bdd1ab4
patch 9.0.1070: reading beyond array size
Bram Moolenaar <Bram@vim.org>
parents:
31471
diff
changeset
|
4644 ch_log(NULL, "%s termcap entry %c%c to %s", action, name[0], name[1], s); |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
4645 #endif |
7 | 4646 termcodes[i].name[0] = name[0]; |
4647 termcodes[i].name[1] = name[1]; | |
4648 termcodes[i].code = s; | |
179 | 4649 termcodes[i].len = len; |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4650 adjust_modlen(i); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4651 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4652 ++tc_len; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4653 } |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4654 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4655 /* |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4656 * Some function keys may include modifiers, but the terminfo/termcap entries |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4657 * do not indicate that. Insert ";*" where we expect modifiers might appear. |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4658 */ |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4659 static void |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4660 accept_modifiers_for_function_keys(void) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4661 { |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4662 regmatch_T regmatch; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4663 CLEAR_FIELD(regmatch); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4664 regmatch.rm_ic = TRUE; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4665 regmatch.regprog = vim_regcomp((char_u *)"^\033[\\d\\+\\~$", RE_MAGIC); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4666 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4667 for (int i = 0; i < tc_len; ++i) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4668 { |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4669 if (regmatch.regprog == NULL) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4670 return; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4671 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4672 // skip PasteStart and PasteEnd |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4673 if (termcodes[i].name[0] == 'P' |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4674 && (termcodes[i].name[1] == 'S' || termcodes[i].name[1] == 'E')) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4675 continue; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4676 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4677 char_u *s = termcodes[i].code; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4678 if (s != NULL && vim_regexec(®match, s, (colnr_T)0)) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4679 { |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4680 size_t len = STRLEN(s); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4681 char_u *ns = alloc(len + 3); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4682 if (ns != NULL) |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4683 { |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4684 mch_memmove(ns, s, len - 1); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4685 mch_memmove(ns + len - 1, ";*~", 4); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4686 vim_free(s); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4687 termcodes[i].code = ns; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4688 termcodes[i].len += 2; |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4689 adjust_modlen(i); |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4690 } |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4691 } |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4692 } |
31776
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4693 |
1e21d10ceb58
patch 9.0.1220: termcap/terminfo entries do not indicate possible modifiers
Bram Moolenaar <Bram@vim.org>
parents:
31734
diff
changeset
|
4694 vim_regfree(regmatch.regprog); |
7 | 4695 } |
4696 | |
180 | 4697 /* |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4698 * Check termcode "code[len]" for ending in ;*X or *X. |
180 | 4699 * The "X" can be any character. |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4700 * Return 0 if not found, 2 for ;*X and 1 for *X. |
180 | 4701 */ |
4702 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4703 termcode_star(char_u *code, int len) |
180 | 4704 { |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4705 // Shortest is <M-O>*X. With ; shortest is <CSI>@;*X |
180 | 4706 if (len >= 3 && code[len - 2] == '*') |
4707 { | |
4708 if (len >= 5 && code[len - 3] == ';') | |
4709 return 2; | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4710 else |
180 | 4711 return 1; |
4712 } | |
4713 return 0; | |
4714 } | |
4715 | |
7 | 4716 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4717 find_termcode(char_u *name) |
7 | 4718 { |
4719 int i; | |
4720 | |
4721 for (i = 0; i < tc_len; ++i) | |
4722 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4723 return termcodes[i].code; | |
4724 return NULL; | |
4725 } | |
4726 | |
4727 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4728 get_termcode(int i) |
7 | 4729 { |
4730 if (i >= tc_len) | |
4731 return NULL; | |
4732 return &termcodes[i].name[0]; | |
4733 } | |
4734 | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4735 /* |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4736 * Returns the length of the terminal code at index 'idx'. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4737 */ |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4738 int |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4739 get_termcode_len(int idx) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4740 { |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4741 return termcodes[idx].len; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4742 } |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4743 |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4744 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4745 del_termcode(char_u *name) |
7 | 4746 { |
4747 int i; | |
4748 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4749 if (termcodes == NULL) // nothing there yet |
7 | 4750 return; |
4751 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4752 need_gather = TRUE; // need to fill termleader[] |
7 | 4753 |
4754 for (i = 0; i < tc_len; ++i) | |
4755 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4756 { | |
4757 del_termcode_idx(i); | |
4758 return; | |
4759 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4760 // not found. Give error message? |
7 | 4761 } |
4762 | |
4763 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4764 del_termcode_idx(int idx) |
7 | 4765 { |
4766 int i; | |
4767 | |
4768 vim_free(termcodes[idx].code); | |
4769 --tc_len; | |
4770 for (i = idx; i < tc_len; ++i) | |
4771 termcodes[i] = termcodes[i + 1]; | |
4772 } | |
4773 | |
4774 /* | |
4775 * Called when detected that the terminal sends 8-bit codes. | |
4776 * Convert all 7-bit codes to their 8-bit equivalent. | |
4777 */ | |
4778 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4779 switch_to_8bit(void) |
7 | 4780 { |
4781 int i; | |
4782 int c; | |
4783 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4784 // Only need to do something when not already using 8-bit codes. |
7 | 4785 if (!term_is_8bit(T_NAME)) |
4786 { | |
4787 for (i = 0; i < tc_len; ++i) | |
4788 { | |
4789 c = term_7to8bit(termcodes[i].code); | |
4790 if (c != 0) | |
4791 { | |
1623 | 4792 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2); |
7 | 4793 termcodes[i].code[0] = c; |
4794 } | |
4795 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4796 need_gather = TRUE; // need to fill termleader[] |
7 | 4797 } |
4798 detected_8bit = TRUE; | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4799 LOG_TR(("Switching to 8 bit")); |
7 | 4800 } |
4801 | |
4802 #ifdef CHECK_DOUBLE_CLICK | |
4803 static linenr_T orig_topline = 0; | |
4804 # ifdef FEAT_DIFF | |
4805 static int orig_topfill = 0; | |
4806 # endif | |
4807 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
4808 #if defined(CHECK_DOUBLE_CLICK) || defined(PROTO) |
7 | 4809 /* |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26670
diff
changeset
|
4810 * Checking for double-clicks ourselves. |
7 | 4811 * "orig_topline" is used to avoid detecting a double-click when the window |
4812 * contents scrolled (e.g., when 'scrolloff' is non-zero). | |
4813 */ | |
4814 /* | |
4815 * Set orig_topline. Used when jumping to another window, so that a double | |
4816 * click still works. | |
4817 */ | |
4818 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4819 set_mouse_topline(win_T *wp) |
7 | 4820 { |
4821 orig_topline = wp->w_topline; | |
4822 # ifdef FEAT_DIFF | |
4823 orig_topfill = wp->w_topfill; | |
4824 # endif | |
4825 } | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4826 |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4827 /* |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4828 * Returns TRUE if the top line and top fill of window 'wp' matches the saved |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4829 * topline and topfill. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4830 */ |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4831 int |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4832 is_mouse_topline(win_T *wp) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4833 { |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4834 return orig_topline == wp->w_topline |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4835 #ifdef FEAT_DIFF |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4836 && orig_topfill == wp->w_topfill |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4837 #endif |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4838 ; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4839 } |
7 | 4840 #endif |
4841 | |
4842 /* | |
28616
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4843 * If "buf" is NULL put "string[new_slen]" in typebuf; "buflen" is not used. |
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4844 * If "buf" is not NULL put "string[new_slen]" in "buf[bufsize]" and adjust |
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4845 * "buflen". |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4846 * Remove "slen" bytes. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4847 * Returns FAIL for error. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4848 */ |
20727
5ffe112b1afd
patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents:
20705
diff
changeset
|
4849 int |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4850 put_string_in_typebuf( |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4851 int offset, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4852 int slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4853 char_u *string, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4854 int new_slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4855 char_u *buf, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4856 int bufsize, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4857 int *buflen) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4858 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4859 int extra = new_slen - slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4860 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4861 string[new_slen] = NUL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4862 if (buf == NULL) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4863 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4864 if (extra < 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4865 // remove matched chars, taking care of noremap |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4866 del_typebuf(-extra, offset); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4867 else if (extra > 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4868 // insert the extra space we need |
28618
daad4c7b39be
patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents:
28616
diff
changeset
|
4869 if (ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE) |
daad4c7b39be
patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents:
28616
diff
changeset
|
4870 == FAIL) |
daad4c7b39be
patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents:
28616
diff
changeset
|
4871 return FAIL; |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4872 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4873 // Careful: del_typebuf() and ins_typebuf() may have reallocated |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4874 // typebuf.tb_buf[]! |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4875 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4876 (size_t)new_slen); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4877 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4878 else |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4879 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4880 if (extra < 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4881 // remove matched characters |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4882 mch_memmove(buf + offset, buf + offset - extra, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4883 (size_t)(*buflen + offset + extra)); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4884 else if (extra > 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4885 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4886 // Insert the extra space we need. If there is insufficient |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4887 // space return -1. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4888 if (*buflen + extra + new_slen >= bufsize) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4889 return FAIL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4890 mch_memmove(buf + offset + extra, buf + offset, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4891 (size_t)(*buflen - offset)); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4892 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4893 mch_memmove(buf + offset, string, (size_t)new_slen); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4894 *buflen = *buflen + extra + new_slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4895 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4896 return OK; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4897 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4898 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4899 /* |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4900 * Decode a modifier number as xterm provides it into MOD_MASK bits. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4901 */ |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4902 int |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4903 decode_modifiers(int n) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4904 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4905 int code = n - 1; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4906 int modifiers = 0; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4907 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4908 if (code & 1) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4909 modifiers |= MOD_MASK_SHIFT; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4910 if (code & 2) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4911 modifiers |= MOD_MASK_ALT; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4912 if (code & 4) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4913 modifiers |= MOD_MASK_CTRL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4914 if (code & 8) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4915 modifiers |= MOD_MASK_META; |
31279
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
4916 // Any further modifiers are silently dropped. |
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
4917 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4918 return modifiers; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4919 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4920 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4921 static int |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4922 modifiers2keycode(int modifiers, int *key, char_u *string) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4923 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4924 int new_slen = 0; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4925 |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4926 if (modifiers == 0) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4927 return 0; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4928 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4929 // Some keys have the modifier included. Need to handle that here to |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4930 // make mappings work. This may result in a special key, such as |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4931 // K_S_TAB. |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4932 *key = simplify_key(*key, &modifiers); |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4933 if (modifiers != 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4934 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4935 string[new_slen++] = K_SPECIAL; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4936 string[new_slen++] = (int)KS_MODIFIER; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
4937 string[new_slen++] = modifiers; |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4938 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4939 return new_slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4940 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4941 |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4942 /* |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4943 * Handle a cursor position report. |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4944 */ |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4945 static void |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4946 handle_u7_response(int *arg, char_u *tp UNUSED, int csi_len UNUSED) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4947 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4948 if (arg[0] == 2 && arg[1] >= 2) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4949 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4950 char *aw = NULL; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4951 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4952 LOG_TR(("Received U7 status: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4953 u7_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4954 did_cursorhold = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4955 if (arg[1] == 2) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4956 aw = "single"; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4957 else if (arg[1] == 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4958 aw = "double"; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4959 if (aw != NULL && STRCMP(aw, p_ambw) != 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4960 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4961 // Setting the option causes a screen redraw. Do |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4962 // that right away if possible, keeping any |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4963 // messages. |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
4964 set_option_value_give_err((char_u *)"ambw", 0L, (char_u *)aw, 0); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
4965 #ifdef DEBUG_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4966 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4967 int r = redraw_asap(UPD_CLEAR); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4968 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4969 log_tr("set 'ambiwidth', redraw_asap(): %d", r); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4970 } |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
4971 #else |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4972 redraw_asap(UPD_CLEAR); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
4973 #endif |
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
4974 #ifdef FEAT_EVAL |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4975 set_vim_var_string(VV_TERMU7RESP, tp, csi_len); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
4976 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4977 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4978 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4979 else if (arg[0] == 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4980 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4981 int value; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4982 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4983 LOG_TR(("Received compatibility test result: %s", tp)); |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4984 xcc_status.tr_progress = STATUS_GOT; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4985 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4986 // Third row: xterm compatibility test. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4987 // If the cursor is on the first column then the terminal can handle |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4988 // the request for cursor style and blinking. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4989 value = arg[1] == 1 ? TPR_YES : TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4990 term_props[TPR_CURSOR_STYLE].tpr_status = value; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4991 term_props[TPR_CURSOR_BLINK].tpr_status = value; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4992 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4993 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4994 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4995 /* |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4996 * Handle a response to T_CRV: {lead}{first}{x};{vers};{y}c |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
22956
diff
changeset
|
4997 * Xterm and alike use '>' for {first}. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4998 * Rxvt sends "{lead}?1;2c". |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4999 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5000 static void |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5001 handle_version_response(int first, int *arg, int argc, char_u *tp) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5002 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5003 // The xterm version. It is set to zero when it can't be an actual xterm |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5004 // version. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5005 int version = arg[1]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5006 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5007 LOG_TR(("Received CRV response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5008 crv_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5009 did_cursorhold = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5010 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5011 // Reset terminal properties that are set based on the termresponse. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5012 // Mainly useful for tests that send the termresponse multiple times. |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
5013 // For testing all props can be reset. |
20838
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5014 init_term_props( |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5015 #ifdef FEAT_EVAL |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5016 reset_term_props_on_termresponse |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5017 #else |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5018 FALSE |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5019 #endif |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
5020 ); |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5021 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5022 // If this code starts with CSI, you can bet that the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5023 // terminal uses 8-bit codes. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5024 if (tp[0] == CSI) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5025 switch_to_8bit(); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5026 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5027 // Screen sends 40500. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5028 // rxvt sends its version number: "20703" is 2.7.3. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5029 // Ignore it for when the user has set 'term' to xterm, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5030 // even though it's an rxvt. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5031 if (version > 20000) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5032 version = 0; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5033 |
28616
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
5034 // Figure out more if the response is CSI > 99 ; 99 ; 99 c |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5035 if (first == '>' && argc == 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5036 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5037 // mintty 2.9.5 sends 77;20905;0c. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5038 // (77 is ASCII 'M' for mintty.) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5039 if (arg[0] == 77) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5040 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5041 // mintty can do SGR mouse reporting |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5042 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5043 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5044 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5045 #ifdef FEAT_TERMRESPONSE |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5046 // If xterm version >= 141 try to get termcap codes. For other |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5047 // terminals the request should be ignored. |
26670
a77b661439f9
patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents:
26439
diff
changeset
|
5048 if (version >= 141 && p_xtermcodes) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5049 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5050 LOG_TR(("Enable checking for XT codes")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5051 check_for_codes = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5052 need_gather = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5053 req_codes_from_term(); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5054 } |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5055 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5056 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5057 // libvterm sends 0;100;0 |
29869
0eab537e9ccb
patch 9.0.0273: Konsole termresponse not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
5058 // Konsole sends 0;115;0 and works the same way |
0eab537e9ccb
patch 9.0.0273: Konsole termresponse not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
5059 if ((version == 100 || version == 115) && arg[0] == 0 && arg[2] == 0) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5060 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5061 // If run from Vim $COLORS is set to the number of |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5062 // colors the terminal supports. Otherwise assume |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5063 // 256, libvterm supports even more. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5064 if (mch_getenv((char_u *)"COLORS") == NULL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5065 may_adjust_color_count(256); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5066 // Libvterm can handle SGR mouse reporting. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5067 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5068 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5069 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5070 if (version == 95) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5071 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5072 // Mac Terminal.app sends 1;95;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5073 if (arg[0] == 1 && arg[2] == 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5074 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5075 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5076 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5077 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5078 // iTerm2 sends 0;95;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5079 else if (arg[0] == 0 && arg[2] == 0) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5080 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5081 // iTerm2 can do SGR mouse reporting |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5082 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5083 } |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5084 // old iTerm2 sends 0;95; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5085 else if (arg[0] == 0 && arg[2] == -1) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5086 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5087 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5088 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5089 // screen sends 83;40500;0 83 is 'S' in ASCII. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5090 if (arg[0] == 83) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5091 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5092 // screen supports SGR mouse codes since 4.7.0 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5093 if (arg[1] >= 40700) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5094 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5095 else |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5096 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5097 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5098 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5099 // If no recognized terminal has set mouse behavior, assume xterm. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5100 if (term_props[TPR_MOUSE].tpr_status == TPR_UNKNOWN) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5101 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5102 // Xterm version 277 supports SGR. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5103 // Xterm version >= 95 supports mouse dragging. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5104 if (version >= 277) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5105 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5106 else if (version >= 95) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5107 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM2; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5108 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5109 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5110 // Detect terminals that set $TERM to something like |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5111 // "xterm-256color" but are not fully xterm compatible. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5112 // |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5113 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0. |
20850
bf7453768034
patch 8.2.0977: t_8u is made empty for the wrong terminals
Bram Moolenaar <Bram@vim.org>
parents:
20838
diff
changeset
|
5114 // Newer Gnome-terminal sends 65;6001;1. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5115 // xfce4-terminal sends 1;2802;0. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5116 // screen sends 83;40500;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5117 // Assuming any version number over 2500 is not an |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5118 // xterm (without the limit for rxvt and screen). |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5119 if (arg[1] >= 2500) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5120 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5121 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5122 else if (version == 136 && arg[2] == 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5123 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5124 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5125 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5126 // PuTTY sends 0;136;0 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5127 if (arg[0] == 0) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5128 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5129 // supports sgr-like mouse reporting. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5130 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5131 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5132 // vandyke SecureCRT sends 1;136;0 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5133 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5134 |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5135 // Konsole sends 0;115;0 - but t_u8 does not actually work, therefore |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5136 // commented out. |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5137 // else if (version == 115 && arg[0] == 0 && arg[2] == 0) |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5138 // term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5139 |
31111
f1cb6b4dbf72
patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents:
31031
diff
changeset
|
5140 // Kitty up to 9.x sends 1;400{version};{secondary-version} |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5141 if (arg[0] == 1 && arg[1] >= 4000 && arg[1] <= 4009) |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5142 { |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5143 term_props[TPR_KITTY].tpr_status = TPR_YES; |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5144 term_props[TPR_KITTY].tpr_set_by_termresponse = TRUE; |
31481
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
5145 |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
5146 // Kitty can handle SGR mouse reporting. |
7f79eb4ad11a
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
Bram Moolenaar <Bram@vim.org>
parents:
31475
diff
changeset
|
5147 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5148 } |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5149 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5150 // GNU screen sends 83;30600;0, 83;40500;0, etc. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5151 // 30600/40500 is a version number of GNU screen. DA2 support is added |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5152 // on 3.6. DCS string has a special meaning to GNU screen, but xterm |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5153 // compatibility checking does not detect GNU screen. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5154 if (arg[0] == 83 && arg[1] >= 30600) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5155 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5156 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5157 term_props[TPR_CURSOR_BLINK].tpr_status = TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5158 } |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5159 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5160 // Xterm first responded to this request at patch level |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5161 // 95, so assume anything below 95 is not xterm and hopefully supports |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5162 // the underline RGB color sequence. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5163 if (version < 95) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5164 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5165 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5166 // Getting the cursor style is only supported properly by xterm since |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5167 // version 279 (otherwise it returns 0x18). |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5168 if (version < 279) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5169 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5170 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5171 /* |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5172 * Take action on the detected properties. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5173 */ |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5174 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5175 // Unless the underline RGB color is expected to work, disable "t_8u". |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5176 // It does not work for the real Xterm, it resets the background color. |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5177 // This may cause some flicker. Alternative would be to set "t_8u" |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5178 // here if the terminal is expected to support it, but that might |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5179 // conflict with what was set in the .vimrc. |
28548
a54564337e89
patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents:
28505
diff
changeset
|
5180 if (term_props[TPR_UNDERLINE_RGB].tpr_status != TPR_YES |
a54564337e89
patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents:
28505
diff
changeset
|
5181 && *T_8U != NUL |
a54564337e89
patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents:
28505
diff
changeset
|
5182 && !option_was_set((char_u *)"t_8u")) |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5183 { |
20854
bd56f4045f37
patch 8.2.0979: a couple of screendump tests fail
Bram Moolenaar <Bram@vim.org>
parents:
20852
diff
changeset
|
5184 set_string_option_direct((char_u *)"t_8u", -1, (char_u *)"", |
bd56f4045f37
patch 8.2.0979: a couple of screendump tests fail
Bram Moolenaar <Bram@vim.org>
parents:
20852
diff
changeset
|
5185 OPT_FREE, 0); |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
5186 } |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5187 #ifdef FEAT_TERMRESPONSE |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
5188 if (*T_8U != NUL && write_t_8u_state == MAYBE) |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
5189 // Did skip writing t_8u, a complete redraw is needed. |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
5190 redraw_later_clear(); |
28616
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
5191 write_t_8u_state = OK; // can output t_8u now |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5192 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5193 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5194 // Only set 'ttymouse' automatically if it was not set |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5195 // by the user already. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5196 if (!option_was_set((char_u *)"ttym") |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5197 && (term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_XTERM2 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5198 || term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR)) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5199 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
5200 set_option_value_give_err((char_u *)"ttym", 0L, |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5201 term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5202 ? (char_u *)"sgr" : (char_u *)"xterm2", 0); |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5203 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5204 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5205 #ifdef FEAT_TERMRESPONSE |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5206 int need_flush = FALSE; |
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5207 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5208 // Only request the cursor style if t_SH and t_RS are |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5209 // set. Only supported properly by xterm since version |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5210 // 279 (otherwise it returns 0x18). |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5211 // Only when getting the cursor style was detected to work. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5212 // Not for Terminal.app, it can't handle t_RS, it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5213 // echoes the characters to the screen. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5214 if (rcs_status.tr_progress == STATUS_GET |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5215 && term_props[TPR_CURSOR_STYLE].tpr_status == TPR_YES |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5216 && *T_CSH != NUL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5217 && *T_CRS != NUL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5218 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
5219 MAY_WANT_TO_LOG_THIS; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5220 LOG_TR(("Sending cursor style request")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5221 out_str(T_CRS); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5222 termrequest_sent(&rcs_status); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5223 need_flush = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5224 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5225 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5226 // Only request the cursor blink mode if t_RC set. Not |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5227 // for Gnome terminal, it can't handle t_RC, it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5228 // echoes the characters to the screen. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5229 // Only when getting the cursor style was detected to work. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5230 if (rbm_status.tr_progress == STATUS_GET |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5231 && term_props[TPR_CURSOR_BLINK].tpr_status == TPR_YES |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5232 && *T_CRC != NUL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5233 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
5234 MAY_WANT_TO_LOG_THIS; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5235 LOG_TR(("Sending cursor blink mode request")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5236 out_str(T_CRC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5237 termrequest_sent(&rbm_status); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5238 need_flush = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5239 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5240 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5241 if (need_flush) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5242 out_flush(); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5243 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5244 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5245 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5246 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5247 /* |
30827
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5248 * Add "key" to "buf" and return the number of bytes used. |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5249 * Handles special keys and multi-byte characters. |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5250 */ |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5251 static int |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5252 add_key_to_buf(int key, char_u *buf) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5253 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5254 int idx = 0; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5255 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5256 if (IS_SPECIAL(key)) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5257 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5258 buf[idx++] = K_SPECIAL; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5259 buf[idx++] = KEY2TERMCAP0(key); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5260 buf[idx++] = KEY2TERMCAP1(key); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5261 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5262 else if (has_mbyte) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5263 idx += (*mb_char2bytes)(key, buf + idx); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5264 else |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5265 buf[idx++] = key; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5266 return idx; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5267 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5268 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5269 /* |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5270 * Shared between handle_key_with_modifier() and handle_csi_function_key(). |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5271 */ |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5272 static int |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5273 put_key_modifiers_in_typebuf( |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5274 int key_arg, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5275 int modifiers_arg, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5276 int csi_len, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5277 int offset, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5278 char_u *buf, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5279 int bufsize, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5280 int *buflen) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5281 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5282 int key = key_arg; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5283 int modifiers = modifiers_arg; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5284 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5285 // Some keys need adjustment when the Ctrl modifier is used. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5286 key = may_adjust_key_for_ctrl(modifiers, key); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5287 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5288 // May remove the shift modifier if it's already included in the key. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5289 modifiers = may_remove_shift_modifier(modifiers, key); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5290 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5291 // Produce modifiers with K_SPECIAL KS_MODIFIER {mod} |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5292 char_u string[MAX_KEY_CODE_LEN + 1]; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5293 int new_slen = modifiers2keycode(modifiers, &key, string); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5294 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5295 // Add the bytes for the key. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5296 new_slen += add_key_to_buf(key, string + new_slen); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5297 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5298 string[new_slen] = NUL; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5299 if (put_string_in_typebuf(offset, csi_len, string, new_slen, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5300 buf, bufsize, buflen) == FAIL) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5301 return -1; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5302 return new_slen - csi_len + offset; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5303 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5304 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5305 /* |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5306 * Handle a sequence with key and modifier, one of: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5307 * {lead}27;{modifier};{key}~ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5308 * {lead}{key};{modifier}u |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5309 * Returns the difference in length. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5310 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5311 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5312 handle_key_with_modifier( |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5313 int *arg, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5314 int trail, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5315 int csi_len, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5316 int offset, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5317 char_u *buf, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5318 int bufsize, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5319 int *buflen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5320 { |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5321 // Only set seenModifyOtherKeys for the "{lead}27;" code to avoid setting |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5322 // it for terminals using the kitty keyboard protocol. Xterm sends |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5323 // the form ending in "u" when the formatOtherKeys resource is set. We do |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5324 // not support this. |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5325 // |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5326 // Do not set seenModifyOtherKeys if there was a positive response at any |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5327 // time from requesting the kitty keyboard protocol state, these are not |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5328 // expected to support modifyOtherKeys level 2. |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5329 // |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5330 // Do not set seenModifyOtherKeys for kitty, it does send some sequences |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5331 // like this but does not have the modifyOtherKeys feature. |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5332 if (trail != 'u' |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5333 && (kitty_protocol_state == KKPS_INITIAL |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5334 || kitty_protocol_state == KKPS_OFF |
31465
d9263e7a0570
patch 9.0.1065: a shell command switching screens may still have a problem
Bram Moolenaar <Bram@vim.org>
parents:
31461
diff
changeset
|
5335 || kitty_protocol_state == KKPS_AFTER_T_TE) |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5336 && term_props[TPR_KITTY].tpr_status != TPR_YES) |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5337 { |
31305
216c01bb1f90
patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
31303
diff
changeset
|
5338 #ifdef FEAT_EVAL |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5339 ch_log(NULL, "setting seenModifyOtherKeys to TRUE"); |
31305
216c01bb1f90
patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
31303
diff
changeset
|
5340 #endif |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5341 seenModifyOtherKeys = TRUE; |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5342 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5343 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5344 int key = trail == 'u' ? arg[0] : arg[2]; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5345 int modifiers = decode_modifiers(arg[1]); |
31888
b374dfaa8645
patch 9.0.1276: some mappings with Meta and Shift do not work
Bram Moolenaar <Bram@vim.org>
parents:
31825
diff
changeset
|
5346 |
b374dfaa8645
patch 9.0.1276: some mappings with Meta and Shift do not work
Bram Moolenaar <Bram@vim.org>
parents:
31825
diff
changeset
|
5347 // Some terminals do not apply the Shift modifier to the key. To make |
b374dfaa8645
patch 9.0.1276: some mappings with Meta and Shift do not work
Bram Moolenaar <Bram@vim.org>
parents:
31825
diff
changeset
|
5348 // mappings consistent we do it here. TODO: support more keys. |
b374dfaa8645
patch 9.0.1276: some mappings with Meta and Shift do not work
Bram Moolenaar <Bram@vim.org>
parents:
31825
diff
changeset
|
5349 if ((modifiers & MOD_MASK_SHIFT) && key >= 'a' && key <= 'z') |
b374dfaa8645
patch 9.0.1276: some mappings with Meta and Shift do not work
Bram Moolenaar <Bram@vim.org>
parents:
31825
diff
changeset
|
5350 key += 'A' - 'a'; |
b374dfaa8645
patch 9.0.1276: some mappings with Meta and Shift do not work
Bram Moolenaar <Bram@vim.org>
parents:
31825
diff
changeset
|
5351 |
31910
69003e374f0d
patch 9.0.1287: with the Kitty key protocl Esc with NumLock cannot be mapped
Bram Moolenaar <Bram@vim.org>
parents:
31888
diff
changeset
|
5352 // Putting Esc in the buffer creates ambiguity, it can be the start of an |
69003e374f0d
patch 9.0.1287: with the Kitty key protocl Esc with NumLock cannot be mapped
Bram Moolenaar <Bram@vim.org>
parents:
31888
diff
changeset
|
5353 // escape sequence. Use K_ESC to avoid that. |
69003e374f0d
patch 9.0.1287: with the Kitty key protocl Esc with NumLock cannot be mapped
Bram Moolenaar <Bram@vim.org>
parents:
31888
diff
changeset
|
5354 if (key == ESC) |
69003e374f0d
patch 9.0.1287: with the Kitty key protocl Esc with NumLock cannot be mapped
Bram Moolenaar <Bram@vim.org>
parents:
31888
diff
changeset
|
5355 key = K_ESC; |
69003e374f0d
patch 9.0.1287: with the Kitty key protocl Esc with NumLock cannot be mapped
Bram Moolenaar <Bram@vim.org>
parents:
31888
diff
changeset
|
5356 |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5357 return put_key_modifiers_in_typebuf(key, modifiers, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5358 csi_len, offset, buf, bufsize, buflen); |
30827
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5359 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5360 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5361 /* |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5362 * Handle a sequence with key without a modifier: |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5363 * {lead}{key}u |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5364 * Returns the difference in length. |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5365 */ |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5366 static int |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5367 handle_key_without_modifier( |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5368 int *arg, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5369 int csi_len, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5370 int offset, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5371 char_u *buf, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5372 int bufsize, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5373 int *buflen) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5374 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5375 char_u string[MAX_KEY_CODE_LEN + 1]; |
31281
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5376 int new_slen; |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5377 |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5378 if (arg[0] == ESC) |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5379 { |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5380 // Putting Esc in the buffer creates ambiguity, it can be the start of |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5381 // an escape sequence. Use K_ESC to avoid that. |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5382 string[0] = K_SPECIAL; |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5383 string[1] = KS_EXTRA; |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5384 string[2] = KE_ESC; |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5385 new_slen = 3; |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5386 } |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5387 else |
cab7d8accab7
patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents:
31279
diff
changeset
|
5388 new_slen = add_key_to_buf(arg[0], string); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5389 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5390 if (put_string_in_typebuf(offset, csi_len, string, new_slen, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5391 buf, bufsize, buflen) == FAIL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5392 return -1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5393 return new_slen - csi_len + offset; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5394 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5395 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5396 /* |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5397 * CSI function key without or with modifiers: |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5398 * {lead}[ABCDEFHPQRS] |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5399 * {lead}1;{modifier}[ABCDEFHPQRS] |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5400 * Returns zero when nog recognized, a positive number when recognized. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5401 */ |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5402 static int |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5403 handle_csi_function_key( |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5404 int argc, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5405 int *arg, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5406 int trail, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5407 int csi_len, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5408 char_u *key_name, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5409 int offset, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5410 char_u *buf, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5411 int bufsize, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5412 int *buflen) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5413 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5414 key_name[0] = 'k'; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5415 switch (trail) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5416 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5417 case 'A': key_name[1] = 'u'; break; // K_UP |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5418 case 'B': key_name[1] = 'd'; break; // K_DOWN |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5419 case 'C': key_name[1] = 'r'; break; // K_RIGHT |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5420 case 'D': key_name[1] = 'l'; break; // K_LEFT |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5421 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5422 // case 'E': keypad BEGIN - not supported |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5423 case 'F': key_name[0] = '@'; key_name[1] = '7'; break; // K_END |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5424 case 'H': key_name[1] = 'h'; break; // K_HOME |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5425 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5426 case 'P': key_name[1] = '1'; break; // K_F1 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5427 case 'Q': key_name[1] = '2'; break; // K_F2 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5428 case 'R': key_name[1] = '3'; break; // K_F3 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5429 case 'S': key_name[1] = '4'; break; // K_F4 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5430 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5431 default: return 0; // not recognized |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5432 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5433 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5434 int key = TERMCAP2KEY(key_name[0], key_name[1]); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5435 int modifiers = argc == 2 ? decode_modifiers(arg[1]) : 0; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5436 put_key_modifiers_in_typebuf(key, modifiers, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5437 csi_len, offset, buf, bufsize, buflen); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5438 return csi_len; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5439 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5440 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5441 /* |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5442 * Handle a CSI escape sequence. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5443 * - Xterm version string. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5444 * |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5445 * - Response to XTQMODKEYS: "{lead} > 4 ; Pv m". |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5446 * |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5447 * - Cursor position report: {lead}{row};{col}R |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5448 * The final byte must be 'R'. It is used for checking the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5449 * ambiguous-width character state. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5450 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5451 * - window position reply: {lead}3;{x};{y}t |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5452 * |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5453 * - key with modifiers when modifyOtherKeys is enabled or the Kitty keyboard |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5454 * protocol is used: |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5455 * {lead}27;{modifier};{key}~ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5456 * {lead}{key};{modifier}u |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5457 * |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5458 * - function key with or without modifiers: |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5459 * {lead}[ABCDEFHPQRS] |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5460 * {lead}1;{modifier}[ABCDEFHPQRS] |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5461 * |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5462 * Return 0 for no match, -1 for partial match, > 0 for full match. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5463 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5464 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5465 handle_csi( |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5466 char_u *tp, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5467 int len, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5468 char_u *argp, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5469 int offset, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5470 char_u *buf, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5471 int bufsize, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5472 int *buflen, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5473 char_u *key_name, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5474 int *slen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5475 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5476 int first = -1; // optional char right after {lead} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5477 int trail; // char that ends CSI sequence |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5478 int arg[3] = {-1, -1, -1}; // argument numbers |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5479 int argc = 0; // number of arguments |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5480 char_u *ap = argp; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5481 int csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5482 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5483 // Check for non-digit after CSI. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5484 if (!VIM_ISDIGIT(*ap)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5485 first = *ap++; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5486 |
31327
ab527a32a5d8
patch 9.0.0997: Coverity warns for dead code
Bram Moolenaar <Bram@vim.org>
parents:
31325
diff
changeset
|
5487 if (first >= 'A' && first <= 'Z') |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5488 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5489 // If "first" is in [ABCDEFHPQRS] then it is actually the "trail" and |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5490 // no argument follows. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5491 trail = first; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5492 first = -1; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5493 --ap; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5494 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5495 else |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5496 { |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5497 // Find up to three argument numbers. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5498 for (argc = 0; argc < 3; ) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5499 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5500 if (ap >= tp + len) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5501 return -1; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5502 if (*ap == ';') |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5503 arg[argc++] = -1; // omitted number |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5504 else if (VIM_ISDIGIT(*ap)) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5505 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5506 arg[argc] = 0; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5507 for (;;) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5508 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5509 if (ap >= tp + len) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5510 return -1; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5511 if (!VIM_ISDIGIT(*ap)) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5512 break; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5513 arg[argc] = arg[argc] * 10 + (*ap - '0'); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5514 ++ap; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5515 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5516 ++argc; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5517 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5518 if (*ap == ';') |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5519 ++ap; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5520 else |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5521 break; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5522 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5523 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5524 // mrxvt has been reported to have "+" in the version. Assume |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5525 // the escape sequence ends with a letter or one of "{|}~". |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5526 while (ap < tp + len |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5527 && !(*ap >= '{' && *ap <= '~') |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5528 && !ASCII_ISALPHA(*ap)) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5529 ++ap; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5530 if (ap >= tp + len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5531 return -1; |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5532 trail = *ap; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5533 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5534 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5535 csi_len = (int)(ap - tp) + 1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5536 |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5537 // Response to XTQMODKEYS: "CSI > 4 ; Pv m" where Pv indicates the |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5538 // modifyOtherKeys level. Drop similar responses. |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5539 if (first == '>' && (argc == 1 || argc == 2) && trail == 'm') |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5540 { |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5541 if (arg[0] == 4 && argc == 2) |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5542 modify_otherkeys_state = arg[1] == 2 ? MOKS_ENABLED : MOKS_OFF; |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5543 |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5544 key_name[0] = (int)KS_EXTRA; |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5545 key_name[1] = (int)KE_IGNORE; |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5546 *slen = csi_len; |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5547 } |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5548 |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5549 // Function key starting with CSI: |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5550 // {lead}[ABCDEFHPQRS] |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5551 // {lead}1;{modifier}[ABCDEFHPQRS] |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5552 else if (first == -1 && ASCII_ISUPPER(trail) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5553 && (argc == 0 || (argc == 2 && arg[0] == 1))) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5554 { |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5555 int res = handle_csi_function_key(argc, arg, trail, |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5556 csi_len, key_name, offset, buf, bufsize, buflen); |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5557 return res <= 0 ? res : len + res; |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5558 } |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5559 |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5560 // Cursor position report: {lead}{row};{col}R |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5561 // Eat it when there are 2 arguments and it ends in 'R'. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5562 // Also when u7_status is not "sent", it may be from a previous Vim that |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5563 // just exited. But not for <S-F3>, it sends something similar, check for |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5564 // row and column to make sense. |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
5565 else if (first == -1 && argc == 2 && trail == 'R') |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5566 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5567 handle_u7_response(arg, tp, csi_len); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5568 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5569 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5570 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5571 *slen = csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5572 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5573 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5574 // Version string: Eat it when there is at least one digit and |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5575 // it ends in 'c' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5576 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5577 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5578 handle_version_response(first, arg, argc, tp); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5579 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5580 *slen = csi_len; |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5581 #ifdef FEAT_EVAL |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5582 set_vim_var_string(VV_TERMRESPONSE, tp, *slen); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5583 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5584 apply_autocmds(EVENT_TERMRESPONSE, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5585 NULL, NULL, FALSE, curbuf); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5586 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5587 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5588 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5589 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5590 #ifdef FEAT_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5591 // Check blinking cursor from xterm: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5592 // {lead}?12;1$y set |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5593 // {lead}?12;2$y not set |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5594 // |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5595 // {lead} can be <Esc>[ or CSI |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5596 else if (rbm_status.tr_progress == STATUS_SENT |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5597 && first == '?' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5598 && ap == argp + 6 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5599 && arg[0] == 12 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5600 && ap[-1] == '$' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5601 && trail == 'y') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5602 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5603 initial_cursor_blink = (arg[1] == '1'); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5604 rbm_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5605 LOG_TR(("Received cursor blinking mode response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5606 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5607 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5608 *slen = csi_len; |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5609 # ifdef FEAT_EVAL |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5610 set_vim_var_string(VV_TERMBLINKRESP, tp, *slen); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5611 # endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5612 } |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5613 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5614 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5615 // Kitty keyboard protocol status response: CSI ? flags u |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5616 else if (first == '?' && argc == 1 && trail == 'u') |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5617 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5618 // The protocol has various "progressive enhancement flags" values, but |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5619 // we only check for zero and non-zero here. |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5620 if (arg[0] == '0') |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5621 { |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5622 kitty_protocol_state = KKPS_OFF; |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5623 } |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5624 else |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5625 { |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5626 kitty_protocol_state = KKPS_ENABLED; |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5627 |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5628 // Reset seenModifyOtherKeys just in case some key combination has |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5629 // been seen that set it before we get the status response. |
31305
216c01bb1f90
patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
31303
diff
changeset
|
5630 #ifdef FEAT_EVAL |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
5631 ch_log(NULL, "setting seenModifyOtherKeys to FALSE"); |
31305
216c01bb1f90
patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents:
31303
diff
changeset
|
5632 #endif |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5633 seenModifyOtherKeys = FALSE; |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5634 } |
31198
b4491e73d6d1
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents:
31194
diff
changeset
|
5635 |
b4491e73d6d1
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents:
31194
diff
changeset
|
5636 key_name[0] = (int)KS_EXTRA; |
b4491e73d6d1
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents:
31194
diff
changeset
|
5637 key_name[1] = (int)KE_IGNORE; |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5638 *slen = csi_len; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5639 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5640 |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5641 #ifdef FEAT_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5642 // Check for a window position response from the terminal: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5643 // {lead}3;{x};{y}t |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5644 else if (did_request_winpos && argc == 3 && arg[0] == 3 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5645 && trail == 't') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5646 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5647 winpos_x = arg[1]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5648 winpos_y = arg[2]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5649 // got finished code: consume it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5650 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5651 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5652 *slen = csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5653 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5654 if (--did_request_winpos <= 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5655 winpos_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5656 } |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5657 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5658 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5659 // Key with modifier: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5660 // {lead}27;{modifier};{key}~ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5661 // {lead}{key};{modifier}u |
31279
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
5662 // Even though we only handle four modifiers and the {modifier} value |
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
5663 // should be 16 or lower, we accept all modifier values to avoid the raw |
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
5664 // sequence to be passed through. |
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
5665 else if ((arg[0] == 27 && argc == 3 && trail == '~') |
30934
a07193ed51cd
patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents:
30914
diff
changeset
|
5666 || (argc == 2 && trail == 'u')) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5667 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5668 return len + handle_key_with_modifier(arg, trail, |
31279
7e51449ab768
patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
5669 csi_len, offset, buf, bufsize, buflen); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5670 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5671 |
31168
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5672 // Key without modifier (Kitty sends this for Esc): |
30827
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5673 // {lead}{key}u |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5674 else if (argc == 1 && trail == 'u') |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5675 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5676 return len + handle_key_without_modifier(arg, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5677 csi_len, offset, buf, bufsize, buflen); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5678 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5679 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5680 // else: Unknown CSI sequence. We could drop it, but then the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5681 // user can't create a map for it. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5682 return 0; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5683 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5684 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5685 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5686 * Handle an OSC sequence, fore/background color response from the terminal: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5687 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5688 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5689 * or {lead}{code};rgb:{rr}/{gg}/{bb}{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5690 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5691 * {code} is 10 for foreground, 11 for background |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5692 * {lead} can be <Esc>] or OSC |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5693 * {tail} can be '\007', <Esc>\ or STERM. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5694 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5695 * Consume any code that starts with "{lead}11;", it's also |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5696 * possible that "rgba" is following. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5697 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5698 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5699 handle_osc(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5700 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5701 int i, j; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5702 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5703 j = 1 + (tp[0] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5704 if (len >= j + 3 && (argp[0] != '1' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5705 || (argp[1] != '1' && argp[1] != '0') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5706 || argp[2] != ';')) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5707 i = 0; // no match |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5708 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5709 for (i = j; i < len; ++i) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5710 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5711 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\'))) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5712 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5713 int is_bg = argp[1] == '1'; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5714 int is_4digit = i - j >= 21 && tp[j + 11] == '/' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5715 && tp[j + 16] == '/'; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5716 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5717 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5718 && (is_4digit |
32025
9085421fe397
patch 9.0.1344: check for OSC escape sequence doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
32023
diff
changeset
|
5719 || (tp[j + 9] == '/' && tp[j + 12] == '/'))) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5720 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5721 char_u *tp_r = tp + j + 7; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5722 char_u *tp_g = tp + j + (is_4digit ? 12 : 10); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5723 char_u *tp_b = tp + j + (is_4digit ? 17 : 13); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5724 #if defined(FEAT_TERMRESPONSE) && defined(FEAT_TERMINAL) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5725 int rval, gval, bval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5726 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5727 rval = hexhex2nr(tp_r); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5728 gval = hexhex2nr(tp_b); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5729 bval = hexhex2nr(tp_g); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5730 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5731 if (is_bg) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5732 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5733 char *new_bg_val = (3 * '6' < *tp_r + *tp_g + |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5734 *tp_b) ? "light" : "dark"; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5735 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5736 LOG_TR(("Received RBG response: %s", tp)); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5737 #ifdef FEAT_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5738 rbg_status.tr_progress = STATUS_GOT; |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5739 # ifdef FEAT_TERMINAL |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5740 bg_r = rval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5741 bg_g = gval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5742 bg_b = bval; |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5743 # endif |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5744 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5745 if (!option_was_set((char_u *)"bg") |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5746 && STRCMP(p_bg, new_bg_val) != 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5747 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5748 // value differs, apply it |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
5749 set_option_value_give_err((char_u *)"bg", |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
5750 0L, (char_u *)new_bg_val, 0); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5751 reset_option_was_set((char_u *)"bg"); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
5752 redraw_asap(UPD_CLEAR); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5753 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5754 } |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5755 #if defined(FEAT_TERMRESPONSE) && defined(FEAT_TERMINAL) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5756 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5757 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5758 LOG_TR(("Received RFG response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5759 rfg_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5760 fg_r = rval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5761 fg_g = gval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5762 fg_b = bval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5763 } |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5764 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5765 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5766 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5767 // got finished code: consume it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5768 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5769 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5770 *slen = i + 1 + (tp[i] == ESC); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5771 #ifdef FEAT_EVAL |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5772 set_vim_var_string(is_bg ? VV_TERMRBGRESP |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5773 : VV_TERMRFGRESP, tp, *slen); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5774 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5775 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5776 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5777 if (i == len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5778 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5779 LOG_TR(("not enough characters for RB")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5780 return FAIL; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5781 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5782 return OK; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5783 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5784 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5785 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5786 * Check for key code response from xterm: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5787 * {lead}{flag}+r<hex bytes><{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5788 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5789 * {lead} can be <Esc>P or DCS |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5790 * {flag} can be '0' or '1' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5791 * {tail} can be Esc>\ or STERM |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5792 * |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5793 * Check for resource response from xterm (and drop it): |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5794 * {lead}{flag}+R<hex bytes>=<value>{tail} |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5795 * |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5796 * Check for cursor shape response from xterm: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5797 * {lead}1$r<digit> q{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5798 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5799 * {lead} can be <Esc>P or DCS |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5800 * {tail} can be <Esc>\ or STERM |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5801 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5802 * Consume any code that starts with "{lead}.+r" or "{lead}.$r". |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5803 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5804 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5805 handle_dcs(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5806 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5807 int i, j; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5808 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5809 j = 1 + (tp[0] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5810 if (len < j + 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5811 i = len; // need more chars |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5812 else if ((argp[1] != '+' && argp[1] != '$') |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5813 || (argp[2] != 'r' && argp[2] != 'R')) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5814 i = 0; // no match |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5815 else if (argp[1] == '+') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5816 // key code response |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5817 for (i = j; i < len; ++i) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5818 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5819 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5820 || tp[i] == STERM) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5821 { |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5822 #ifdef FEAT_TERMRESPONSE |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5823 // handle a key code response, drop a resource response |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5824 if (i - j >= 3 && argp[2] == 'r') |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5825 got_code_from_term(tp + j, i); |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5826 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5827 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5828 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5829 *slen = i + 1 + (tp[i] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5830 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5831 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5832 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5833 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5834 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5835 // Probably the cursor shape response. Make sure that "i" |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5836 // is equal to "len" when there are not sufficient |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5837 // characters. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5838 for (i = j + 3; i < len; ++i) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5839 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5840 if (i - j == 3 && !isdigit(tp[i])) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5841 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5842 if (i - j == 4 && tp[i] != ' ') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5843 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5844 if (i - j == 5 && tp[i] != 'q') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5845 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5846 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5847 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5848 if ((i - j == 6 && tp[i] == STERM) |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5849 || (i - j == 7 && tp[i] == '\\')) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5850 { |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5851 #ifdef FEAT_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5852 int number = argp[3] - '0'; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5853 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5854 // 0, 1 = block blink, 2 = block |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5855 // 3 = underline blink, 4 = underline |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5856 // 5 = vertical bar blink, 6 = vertical bar |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5857 number = number == 0 ? 1 : number; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5858 initial_cursor_shape = (number + 1) / 2; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5859 // The blink flag is actually inverted, compared to |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5860 // the value set with T_SH. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5861 initial_cursor_shape_blink = |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5862 (number & 1) ? FALSE : TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5863 rcs_status.tr_progress = STATUS_GOT; |
31277
68d13970fe8b
patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents:
31275
diff
changeset
|
5864 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5865 LOG_TR(("Received cursor shape response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5866 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5867 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5868 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5869 *slen = i + 1; |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5870 #ifdef FEAT_EVAL |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5871 set_vim_var_string(VV_TERMSTYLERESP, tp, *slen); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
5872 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5873 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5874 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5875 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5876 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5877 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5878 if (i == len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5879 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5880 // These codes arrive many together, each code can be |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5881 // truncated at any point. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5882 LOG_TR(("not enough characters for XT")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5883 return FAIL; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5884 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5885 return OK; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5886 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5887 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5888 /* |
7 | 5889 * Check if typebuf.tb_buf[] contains a terminal key code. |
5890 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off | |
20727
5ffe112b1afd
patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents:
20705
diff
changeset
|
5891 * + "max_offset"]. |
7 | 5892 * Return 0 for no match, -1 for partial match, > 0 for full match. |
2672 | 5893 * Return KEYLEN_REMOVED when a key code was deleted. |
7 | 5894 * With a match, the match is removed, the replacement code is inserted in |
5895 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is | |
5896 * returned. | |
3328 | 5897 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[]. |
5898 * "buflen" is then the length of the string in buf[] and is updated for | |
5899 * inserts and deletes. | |
7 | 5900 */ |
5901 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5902 check_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5903 int max_offset, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5904 char_u *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5905 int bufsize, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5906 int *buflen) |
7 | 5907 { |
5908 char_u *tp; | |
5909 char_u *p; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5910 int slen = 0; // init for GCC |
180 | 5911 int modslen; |
7 | 5912 int len; |
2672 | 5913 int retval = 0; |
7 | 5914 int offset; |
5915 char_u key_name[2]; | |
180 | 5916 int modifiers; |
11565
91519a14ec1f
patch 8.0.0665: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
11563
diff
changeset
|
5917 char_u *modifiers_start = NULL; |
180 | 5918 int key; |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5919 int new_slen; // Length of what will replace the termcode |
7 | 5920 char_u string[MAX_KEY_CODE_LEN + 1]; |
5921 int i, j; | |
5922 int idx = 0; | |
5923 int cpo_koffset; | |
5924 | |
5925 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL); | |
5926 | |
5927 /* | |
5928 * Speed up the checks for terminal codes by gathering all first bytes | |
5929 * used in termleader[]. Often this is just a single <Esc>. | |
5930 */ | |
5931 if (need_gather) | |
5932 gather_termleader(); | |
5933 | |
5934 /* | |
5935 * Check at several positions in typebuf.tb_buf[], to catch something like | |
5936 * "x<Up>" that can be mapped. Stop at max_offset, because characters | |
5937 * after that cannot be used for mapping, and with @r commands | |
4223 | 5938 * typebuf.tb_buf[] can become very long. |
7 | 5939 * This is used often, KEEP IT FAST! |
5940 */ | |
5941 for (offset = 0; offset < max_offset; ++offset) | |
5942 { | |
5943 if (buf == NULL) | |
5944 { | |
5945 if (offset >= typebuf.tb_len) | |
5946 break; | |
5947 tp = typebuf.tb_buf + typebuf.tb_off + offset; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5948 len = typebuf.tb_len - offset; // length of the input |
7 | 5949 } |
5950 else | |
5951 { | |
3328 | 5952 if (offset >= *buflen) |
7 | 5953 break; |
5954 tp = buf + offset; | |
3328 | 5955 len = *buflen - offset; |
7 | 5956 } |
5957 | |
5958 /* | |
5959 * Don't check characters after K_SPECIAL, those are already | |
5960 * translated terminal chars (avoid translating ~@^Hx). | |
5961 */ | |
5962 if (*tp == K_SPECIAL) | |
5963 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5964 offset += 2; // there are always 2 extra characters |
7 | 5965 continue; |
5966 } | |
5967 | |
5968 /* | |
5969 * Skip this position if the character does not appear as the first | |
5970 * character in term_strings. This speeds up a lot, since most | |
5971 * termcodes start with the same character (ESC or CSI). | |
5972 */ | |
5973 i = *tp; | |
5974 for (p = termleader; *p && *p != i; ++p) | |
5975 ; | |
5976 if (*p == NUL) | |
5977 continue; | |
5978 | |
5979 /* | |
5980 * Skip this position if p_ek is not set and tp[0] is an ESC and we | |
5981 * are in Insert mode. | |
5982 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
5983 if (*tp == ESC && !p_ek && (State & MODE_INSERT)) |
7 | 5984 continue; |
5985 | |
29350
8a822186f1ab
patch 9.0.0018: going over the end of the typahead
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5986 tp[len] = NUL; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5987 key_name[0] = NUL; // no key name found yet |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5988 key_name[1] = NUL; // no key name found yet |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5989 modifiers = 0; // no modifiers yet |
7 | 5990 |
5991 #ifdef FEAT_GUI | |
5992 if (gui.in_use) | |
5993 { | |
5994 /* | |
5995 * GUI special key codes are all of the form [CSI xx]. | |
5996 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5997 if (*tp == CSI) // Special key from GUI |
7 | 5998 { |
5999 if (len < 3) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6000 return -1; // Shouldn't happen |
7 | 6001 slen = 3; |
6002 key_name[0] = tp[1]; | |
6003 key_name[1] = tp[2]; | |
6004 } | |
6005 } | |
6006 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6007 #endif // FEAT_GUI |
31168
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6008 #ifdef MSWIN |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6009 if (len >= 3 && tp[0] == CSI && tp[1] == KS_EXTRA |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6010 && (tp[2] == KE_MOUSEUP |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6011 || tp[2] == KE_MOUSEDOWN |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6012 || tp[2] == KE_MOUSELEFT |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6013 || tp[2] == KE_MOUSERIGHT)) |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6014 { |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6015 // MS-Windows console sends mouse scroll events encoded: |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6016 // - CSI |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6017 // - KS_EXTRA |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6018 // - {KE_MOUSE[UP|DOWN|LEFT|RIGHT]} |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6019 slen = 3; |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6020 key_name[0] = tp[1]; |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6021 key_name[1] = tp[2]; |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6022 } |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6023 else |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
6024 #endif |
7 | 6025 { |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6026 int mouse_index_found = -1; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6027 |
7 | 6028 for (idx = 0; idx < tc_len; ++idx) |
6029 { | |
6030 /* | |
6031 * Ignore the entry if we are not at the start of | |
6032 * typebuf.tb_buf[] | |
6033 * and there are not enough characters to make a match. | |
6034 * But only when the 'K' flag is in 'cpoptions'. | |
6035 */ | |
6036 slen = termcodes[idx].len; | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
6037 modifiers_start = NULL; |
7 | 6038 if (cpo_koffset && offset && len < slen) |
6039 continue; | |
6040 if (STRNCMP(termcodes[idx].code, tp, | |
6041 (size_t)(slen > len ? len : slen)) == 0) | |
6042 { | |
26392
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6043 int looks_like_mouse_start = FALSE; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6044 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6045 if (len < slen) // got a partial sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6046 return -1; // need to get more chars |
7 | 6047 |
6048 /* | |
6049 * When found a keypad key, check if there is another key | |
6050 * that matches and use that one. This makes <Home> to be | |
6051 * found instead of <kHome> when they produce the same | |
6052 * key code. | |
6053 */ | |
6054 if (termcodes[idx].name[0] == 'K' | |
6055 && VIM_ISDIGIT(termcodes[idx].name[1])) | |
6056 { | |
6057 for (j = idx + 1; j < tc_len; ++j) | |
6058 if (termcodes[j].len == slen && | |
6059 STRNCMP(termcodes[idx].code, | |
6060 termcodes[j].code, slen) == 0) | |
6061 { | |
6062 idx = j; | |
6063 break; | |
6064 } | |
6065 } | |
6066 | |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6067 if (slen == 2 && len > 2 |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6068 && termcodes[idx].code[0] == ESC |
26392
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6069 && termcodes[idx].code[1] == '[') |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6070 { |
26392
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6071 // The mouse termcode "ESC [" is also the prefix of |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6072 // "ESC [ I" (focus gained) and other keys. Check some |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6073 // more bytes to find out. |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6074 if (!isdigit(tp[2])) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6075 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6076 // ESC [ without number following: Only use it when |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6077 // there is no other match. |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6078 looks_like_mouse_start = TRUE; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6079 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6080 else if (termcodes[idx].name[0] == KS_DEC_MOUSE) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6081 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6082 char_u *nr = tp + 2; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6083 int count = 0; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6084 |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6085 // If a digit is following it could be a key with |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6086 // modifier, e.g., ESC [ 1;2P. Can be confused |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6087 // with DEC_MOUSE, which requires four numbers |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6088 // following. If not then it can't be a DEC_MOUSE |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6089 // code. |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6090 for (;;) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6091 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6092 ++count; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6093 (void)getdigits(&nr); |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6094 if (nr >= tp + len) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6095 return -1; // partial sequence |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6096 if (*nr != ';') |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6097 break; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6098 ++nr; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6099 if (nr >= tp + len) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6100 return -1; // partial sequence |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6101 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6102 if (count < 4) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6103 continue; // no match |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6104 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6105 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6106 if (looks_like_mouse_start) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6107 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
6108 // Only use it when there is no other match. |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6109 if (mouse_index_found < 0) |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6110 mouse_index_found = idx; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6111 } |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6112 else |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6113 { |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6114 key_name[0] = termcodes[idx].name[0]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6115 key_name[1] = termcodes[idx].name[1]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6116 break; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6117 } |
7 | 6118 } |
179 | 6119 |
6120 /* | |
6121 * Check for code with modifier, like xterm uses: | |
180 | 6122 * <Esc>[123;*X (modslen == slen - 3) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
6123 * <Esc>[@;*X (matches <Esc>[X and <Esc>[1;9X ) |
180 | 6124 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2). |
6125 * When there is a modifier the * matches a number. | |
6126 * When there is no modifier the ;* or * is omitted. | |
179 | 6127 */ |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6128 if (termcodes[idx].modlen > 0 && mouse_index_found < 0) |
179 | 6129 { |
180 | 6130 modslen = termcodes[idx].modlen; |
6131 if (cpo_koffset && offset && len < modslen) | |
179 | 6132 continue; |
6133 if (STRNCMP(termcodes[idx].code, tp, | |
180 | 6134 (size_t)(modslen > len ? len : modslen)) == 0) |
179 | 6135 { |
6136 int n; | |
180 | 6137 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6138 if (len <= modslen) // got a partial sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6139 return -1; // need to get more chars |
179 | 6140 |
180 | 6141 if (tp[modslen] == termcodes[idx].code[slen - 1]) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
6142 // no modifiers |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
6143 slen = modslen + 1; |
180 | 6144 else if (tp[modslen] != ';' && modslen == slen - 3) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
6145 // no match for "code;*X" with "code;" |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
6146 continue; |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
6147 else if (termcodes[idx].code[modslen] == '@' |
31111
f1cb6b4dbf72
patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents:
31031
diff
changeset
|
6148 && (tp[modslen] != '1' |
f1cb6b4dbf72
patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents:
31031
diff
changeset
|
6149 || tp[modslen + 1] != ';')) |
30984
a82629ff46c8
patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"
Bram Moolenaar <Bram@vim.org>
parents:
30958
diff
changeset
|
6150 // no match for "<Esc>[@" with "<Esc>[1;" |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
6151 continue; |
179 | 6152 else |
6153 { | |
16485
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
6154 // Skip over the digits, the final char must |
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
6155 // follow. URXVT can use a negative value, thus |
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
6156 // also accept '-'. |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
6157 for (j = slen - 2; j < len && (isdigit(tp[j]) |
16485
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
6158 || tp[j] == '-' || tp[j] == ';'); ++j) |
179 | 6159 ; |
6160 ++j; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6161 if (len < j) // got a partial sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6162 return -1; // need to get more chars |
180 | 6163 if (tp[j - 1] != termcodes[idx].code[slen - 1]) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6164 continue; // no match |
179 | 6165 |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
6166 modifiers_start = tp + slen - 2; |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
6167 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6168 // Match! Convert modifier bits. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6169 n = atoi((char *)modifiers_start); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6170 modifiers |= decode_modifiers(n); |
179 | 6171 |
6172 slen = j; | |
6173 } | |
6174 key_name[0] = termcodes[idx].name[0]; | |
6175 key_name[1] = termcodes[idx].name[1]; | |
6176 break; | |
6177 } | |
6178 } | |
7 | 6179 } |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6180 if (idx == tc_len && mouse_index_found >= 0) |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6181 { |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6182 key_name[0] = termcodes[mouse_index_found].name[0]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6183 key_name[1] = termcodes[mouse_index_found].name[1]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
6184 } |
7 | 6185 } |
6186 | |
3166 | 6187 if (key_name[0] == NUL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6188 // Mouse codes of DEC and pterm start with <ESC>[. When |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6189 // detecting the start of these mouse codes they might as well be |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6190 // another key code or terminal response. |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
6191 #ifdef FEAT_MOUSE_DEC |
6102 | 6192 || key_name[0] == KS_DEC_MOUSE |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
6193 #endif |
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
6194 #ifdef FEAT_MOUSE_PTERM |
6102 | 6195 || key_name[0] == KS_PTERM_MOUSE |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
6196 #endif |
6102 | 6197 ) |
7 | 6198 { |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6199 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1; |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6200 |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6201 /* |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6202 * Check for responses from the terminal starting with {lead}: |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6203 * "<Esc>[" or CSI followed by [0-9>?]. |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6204 * Also for function keys without a modifier: |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6205 * "<Esc>[" or CSI followed by [ABCDEFHPQRS]. |
4215 | 6206 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6207 * - Xterm version string: {lead}>{x};{vers};{y}c |
4215 | 6208 * Also eat other possible responses to t_RV, rxvt returns |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6209 * "{lead}?1;2c". |
4215 | 6210 * |
31241
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
6211 * - Response to XTQMODKEYS: "{lead} > 4 ; Pv m". |
ee50174810ac
patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
6212 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6213 * - Cursor position report: {lead}{row};{col}R |
6102 | 6214 * The final byte must be 'R'. It is used for checking the |
4215 | 6215 * ambiguous-width character state. |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
6216 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6217 * - window position reply: {lead}3;{x};{y}t |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6218 * |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6219 * - key with modifiers when modifyOtherKeys is enabled: |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6220 * {lead}27;{modifier};{key}~ |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6221 * {lead}{key};{modifier}u |
4215 | 6222 */ |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
6223 if (((tp[0] == ESC && len >= 3 && tp[1] == '[') |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6224 || (tp[0] == CSI && len >= 2)) |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6225 && vim_strchr((char_u *)"0123456789>?ABCDEFHPQRS", |
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6226 *argp) != NULL) |
7 | 6227 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6228 int resp = handle_csi(tp, len, argp, offset, buf, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6229 bufsize, buflen, key_name, &slen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6230 if (resp != 0) |
7 | 6231 { |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
6232 #ifdef DEBUG_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6233 if (resp == -1) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6234 LOG_TR(("Not enough characters for CSI sequence")); |
31275
0851a1a22a38
patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
31263
diff
changeset
|
6235 #endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6236 return resp; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
6237 } |
6901 | 6238 } |
6239 | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6240 // Check for fore/background color response from the terminal, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6241 // starting} with <Esc>] or OSC |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6242 else if ((*T_RBG != NUL || *T_RFG != NUL) |
6901 | 6243 && ((tp[0] == ESC && len >= 2 && tp[1] == ']') |
6244 || tp[0] == OSC)) | |
6245 { | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6246 if (handle_osc(tp, argp, len, key_name, &slen) == FAIL) |
6901 | 6247 return -1; |
7 | 6248 } |
6249 | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6250 // Check for key code response from xterm, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6251 // starting with <Esc>P or DCS |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
6252 // It would only be needed with this condition: |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
6253 // (check_for_codes || rcs_status.tr_progress == STATUS_SENT) |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
6254 // Now this is always done so that DCS codes don't mess up things. |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
6255 else if ((tp[0] == ESC && len >= 2 && tp[1] == 'P') || tp[0] == DCS) |
7 | 6256 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
6257 if (handle_dcs(tp, argp, len, key_name, &slen) == FAIL) |
6901 | 6258 return -1; |
7 | 6259 } |
6260 } | |
6261 | |
6262 if (key_name[0] == NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6263 continue; // No match at this position, try next one |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6264 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6265 // We only get here when we have a complete termcode match |
7 | 6266 |
31194
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6267 #if defined(FEAT_GUI) || defined(MSWIN) |
7 | 6268 /* |
31194
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6269 * For scroll events from the GUI or MS-Windows console, fetch the |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6270 * pointer coordinates so that we know which window to scroll later. |
7 | 6271 */ |
31194
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6272 if (TRUE |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6273 # if defined(FEAT_GUI) && !defined(MSWIN) |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6274 && gui.in_use |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
6275 # endif |
7 | 6276 && key_name[0] == (int)KS_EXTRA |
6277 && (key_name[1] == (int)KE_X1MOUSE | |
6278 || key_name[1] == (int)KE_X2MOUSE | |
24850
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
6279 || key_name[1] == (int)KE_MOUSEMOVE_XY |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
6280 || key_name[1] == (int)KE_MOUSELEFT |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
6281 || key_name[1] == (int)KE_MOUSERIGHT |
7 | 6282 || key_name[1] == (int)KE_MOUSEDOWN |
6283 || key_name[1] == (int)KE_MOUSEUP)) | |
6284 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6285 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6286 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6287 |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6288 if (num_bytes == -1) // not enough coordinates |
7 | 6289 return -1; |
6290 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; | |
6291 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1; | |
6292 slen += num_bytes; | |
24850
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
6293 // equal to K_MOUSEMOVE |
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
6294 if (key_name[1] == (int)KE_MOUSEMOVE_XY) |
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
6295 key_name[1] = (int)KE_MOUSEMOVE; |
7 | 6296 } |
6297 else | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6298 #endif |
7 | 6299 /* |
6300 * If it is a mouse click, get the coordinates. | |
6301 */ | |
3746 | 6302 if (key_name[0] == KS_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6303 #ifdef FEAT_MOUSE_GPM |
16523
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16501
diff
changeset
|
6304 || key_name[0] == KS_GPM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6305 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6306 #ifdef FEAT_MOUSE_JSB |
3746 | 6307 || key_name[0] == KS_JSBTERM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6308 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6309 #ifdef FEAT_MOUSE_NET |
3746 | 6310 || key_name[0] == KS_NETTERM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6311 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6312 #ifdef FEAT_MOUSE_DEC |
3746 | 6313 || key_name[0] == KS_DEC_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6314 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6315 #ifdef FEAT_MOUSE_PTERM |
3746 | 6316 || key_name[0] == KS_PTERM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6317 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6318 #ifdef FEAT_MOUSE_URXVT |
3746 | 6319 || key_name[0] == KS_URXVT_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
6320 #endif |
3746 | 6321 || key_name[0] == KS_SGR_MOUSE |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
6322 || key_name[0] == KS_SGR_MOUSE_RELEASE) |
7 | 6323 { |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6324 if (check_termcode_mouse(tp, &slen, key_name, modifiers_start, idx, |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6325 &modifiers) == -1) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6326 return -1; |
7 | 6327 } |
6328 | |
6329 #ifdef FEAT_GUI | |
6330 /* | |
6331 * If using the GUI, then we get menu and scrollbar events. | |
6332 * | |
6333 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by | |
6334 * four bytes which are to be taken as a pointer to the vimmenu_T | |
6335 * structure. | |
6336 * | |
1221 | 6337 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr" |
685 | 6338 * is one byte with the tab index. |
6339 * | |
7 | 6340 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed |
6341 * by one byte representing the scrollbar number, and then four bytes | |
6342 * representing a long_u which is the new value of the scrollbar. | |
6343 * | |
6344 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR, | |
6345 * KE_FILLER followed by four bytes representing a long_u which is the | |
6346 * new value of the scrollbar. | |
6347 */ | |
6348 # ifdef FEAT_MENU | |
6349 else if (key_name[0] == (int)KS_MENU) | |
6350 { | |
6351 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6352 int num_bytes = get_long_from_buf(tp + slen, &val); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6353 |
7 | 6354 if (num_bytes == -1) |
6355 return -1; | |
6356 current_menu = (vimmenu_T *)val; | |
6357 slen += num_bytes; | |
936 | 6358 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6359 // The menu may have been deleted right after it was used, check |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6360 // for that. |
936 | 6361 if (check_menu_pointer(root_menu, current_menu) == FAIL) |
6362 { | |
6363 key_name[0] = KS_EXTRA; | |
6364 key_name[1] = (int)KE_IGNORE; | |
6365 } | |
7 | 6366 } |
6367 # endif | |
685 | 6368 # ifdef FEAT_GUI_TABLINE |
6369 else if (key_name[0] == (int)KS_TABLINE) | |
6370 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6371 // Selecting tabline tab or using its menu. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6372 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6373 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6374 |
685 | 6375 if (num_bytes == -1) |
6376 return -1; | |
6377 current_tab = (int)bytes[0]; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6378 if (current_tab == 255) // -1 in a byte gives 255 |
1394 | 6379 current_tab = -1; |
685 | 6380 slen += num_bytes; |
6381 } | |
688 | 6382 else if (key_name[0] == (int)KS_TABMENU) |
6383 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6384 // Selecting tabline tab or using its menu. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6385 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6386 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6387 |
688 | 6388 if (num_bytes == -1) |
6389 return -1; | |
6390 current_tab = (int)bytes[0]; | |
6391 current_tabmenu = (int)bytes[1]; | |
6392 slen += num_bytes; | |
6393 } | |
685 | 6394 # endif |
7 | 6395 # ifndef USE_ON_FLY_SCROLL |
6396 else if (key_name[0] == (int)KS_VER_SCROLLBAR) | |
6397 { | |
6398 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6399 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6400 int num_bytes; |
7 | 6401 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6402 // Get the last scrollbar event in the queue of the same type |
7 | 6403 j = 0; |
6404 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR | |
6405 && tp[j + 2] != NUL; ++i) | |
6406 { | |
6407 j += 3; | |
6408 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); | |
6409 if (num_bytes == -1) | |
6410 break; | |
6411 if (i == 0) | |
6412 current_scrollbar = (int)bytes[0]; | |
6413 else if (current_scrollbar != (int)bytes[0]) | |
6414 break; | |
6415 j += num_bytes; | |
6416 num_bytes = get_long_from_buf(tp + j, &val); | |
6417 if (num_bytes == -1) | |
6418 break; | |
6419 scrollbar_value = val; | |
6420 j += num_bytes; | |
6421 slen = j; | |
6422 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6423 if (i == 0) // not enough characters to make one |
7 | 6424 return -1; |
6425 } | |
6426 else if (key_name[0] == (int)KS_HOR_SCROLLBAR) | |
6427 { | |
6428 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6429 int num_bytes; |
7 | 6430 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6431 // Get the last horiz. scrollbar event in the queue |
7 | 6432 j = 0; |
6433 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR | |
6434 && tp[j + 2] != NUL; ++i) | |
6435 { | |
6436 j += 3; | |
6437 num_bytes = get_long_from_buf(tp + j, &val); | |
6438 if (num_bytes == -1) | |
6439 break; | |
6440 scrollbar_value = val; | |
6441 j += num_bytes; | |
6442 slen = j; | |
6443 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6444 if (i == 0) // not enough characters to make one |
7 | 6445 return -1; |
6446 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6447 # endif // !USE_ON_FLY_SCROLL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6448 #endif // FEAT_GUI |
7 | 6449 |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6450 #if (defined(UNIX) || defined(VMS)) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6451 /* |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6452 * Handle FocusIn/FocusOut event sequences reported by XTerm. |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6453 * (CSI I/CSI O) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6454 */ |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
6455 if (key_name[0] == KS_EXTRA |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6456 # ifdef FEAT_GUI |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6457 && !gui.in_use |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6458 # endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6459 ) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6460 { |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6461 if (key_name[1] == KE_FOCUSGAINED) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6462 { |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6463 if (!focus_state) |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6464 { |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6465 ui_focus_change(TRUE); |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6466 did_cursorhold = TRUE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6467 focus_state = TRUE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6468 } |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6469 key_name[1] = (int)KE_IGNORE; |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6470 } |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6471 else if (key_name[1] == KE_FOCUSLOST) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6472 { |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6473 if (focus_state) |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6474 { |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6475 ui_focus_change(FALSE); |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6476 did_cursorhold = TRUE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6477 focus_state = FALSE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6478 } |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6479 key_name[1] = (int)KE_IGNORE; |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6480 } |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6481 } |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6482 #endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6483 |
180 | 6484 /* |
6485 * Change <xHome> to <Home>, <xUp> to <Up>, etc. | |
6486 */ | |
6487 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1])); | |
6488 | |
6489 /* | |
6490 * Add any modifier codes to our string. | |
6491 */ | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6492 new_slen = modifiers2keycode(modifiers, &key, string); |
180 | 6493 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6494 // Finally, add the special key code to our string |
180 | 6495 key_name[0] = KEY2TERMCAP0(key); |
6496 key_name[1] = KEY2TERMCAP1(key); | |
7 | 6497 if (key_name[0] == KS_KEY) |
1787 | 6498 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6499 // from ":set <M-b>=xx" |
1787 | 6500 if (has_mbyte) |
6501 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen); | |
6502 else | |
6503 string[new_slen++] = key_name[1]; | |
6504 } | |
2672 | 6505 else if (new_slen == 0 && key_name[0] == KS_EXTRA |
6506 && key_name[1] == KE_IGNORE) | |
6507 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6508 // Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6509 // to indicate what happened. |
2672 | 6510 retval = KEYLEN_REMOVED; |
6511 } | |
7 | 6512 else |
6513 { | |
6514 string[new_slen++] = K_SPECIAL; | |
6515 string[new_slen++] = key_name[0]; | |
6516 string[new_slen++] = key_name[1]; | |
6517 } | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6518 if (put_string_in_typebuf(offset, slen, string, new_slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6519 buf, bufsize, buflen) == FAIL) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6520 return -1; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6521 return retval == 0 ? (len + new_slen - slen + offset) : retval; |
7 | 6522 } |
6523 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
6524 #ifdef FEAT_TERMRESPONSE |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6525 LOG_TR(("normal character")); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
6526 #endif |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
6527 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6528 return 0; // no match found |
7 | 6529 } |
6530 | |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
6531 #if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6532 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6533 * Get the text foreground color, if known. |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6534 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6535 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
6536 term_get_fg_color(char_u *r, char_u *g, char_u *b) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6537 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6538 if (rfg_status.tr_progress != STATUS_GOT) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6539 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6540 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6541 *r = fg_r; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6542 *g = fg_g; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6543 *b = fg_b; |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6544 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6545 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6546 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6547 * Get the text background color, if known. |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6548 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6549 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
6550 term_get_bg_color(char_u *r, char_u *g, char_u *b) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6551 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6552 if (rbg_status.tr_progress != STATUS_GOT) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6553 return; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6554 |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6555 *r = bg_r; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6556 *g = bg_g; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
6557 *b = bg_b; |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6558 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6559 #endif |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6560 |
7 | 6561 /* |
6562 * Replace any terminal code strings in from[] with the equivalent internal | |
6563 * vim representation. This is used for the "from" and "to" part of a | |
6564 * mapping, and the "to" part of a menu command. | |
6565 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains | |
6566 * '<'. | |
6567 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER. | |
6568 * | |
6569 * The replacement is done in result[] and finally copied into allocated | |
6570 * memory. If this all works well *bufp is set to the allocated memory and a | |
6571 * pointer to it is returned. If something fails *bufp is set to NULL and from | |
6572 * is returned. | |
6573 * | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6574 * CTRL-V characters are removed. When "flags" has REPTERM_FROM_PART, a |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6575 * trailing CTRL-V is included, otherwise it is removed (for ":map xx ^V", maps |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6576 * xx to nothing). When 'cpoptions' does not contain 'B', a backslash can be |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6577 * used instead of a CTRL-V. |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6578 * |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6579 * Flags: |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6580 * REPTERM_FROM_PART see above |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6581 * REPTERM_DO_LT also translate <lt> |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6582 * REPTERM_SPECIAL always accept <key> notation |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6583 * REPTERM_NO_SIMPLIFY do not simplify <C-H> to 0x08 and set 8th bit for <A-x> |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6584 * |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6585 * "did_simplify" is set when some <C-H> or <A-x> code was simplified, unless |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6586 * it is NULL. |
7 | 6587 */ |
859 | 6588 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6589 replace_termcodes( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6590 char_u *from, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6591 char_u **bufp, |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6592 int flags, |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6593 int *did_simplify) |
7 | 6594 { |
6595 int i; | |
6596 int slen; | |
6597 int key; | |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6598 size_t dlen = 0; |
7 | 6599 char_u *src; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6600 int do_backslash; // backslash is a special character |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6601 int do_special; // recognize <> key codes |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6602 int do_key_code; // recognize raw key codes |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6603 char_u *result; // buffer for resulting string |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6604 garray_T ga; |
7 | 6605 |
6606 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL); | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6607 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6608 || (flags & REPTERM_SPECIAL); |
7 | 6609 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6610 src = from; |
7 | 6611 |
6612 /* | |
6613 * Allocate space for the translation. Worst case a single character is | |
6614 * replaced by 6 bytes (shifted special key), plus a NUL at the end. | |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6615 * In the rare case more might be needed ga_grow() must be called again. |
7 | 6616 */ |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6617 ga_init2(&ga, 1L, 100); |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6618 if (ga_grow(&ga, (int)(STRLEN(src) * 6 + 1)) == FAIL) // out of memory |
7 | 6619 { |
6620 *bufp = NULL; | |
6621 return from; | |
6622 } | |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6623 result = ga.ga_data; |
7 | 6624 |
6625 /* | |
6626 * Check for #n at start only: function key n | |
6627 */ | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6628 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1])) |
7 | 6629 { |
6630 result[dlen++] = K_SPECIAL; | |
6631 result[dlen++] = 'k'; | |
6632 if (src[1] == '0') | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6633 result[dlen++] = ';'; // #0 is F10 is "k;" |
7 | 6634 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6635 result[dlen++] = src[1]; // #3 is F3 is "k3" |
7 | 6636 src += 2; |
6637 } | |
6638 | |
6639 /* | |
6640 * Copy each byte from *from to result[dlen] | |
6641 */ | |
6642 while (*src != NUL) | |
6643 { | |
6644 /* | |
6645 * If 'cpoptions' does not contain '<', check for special key codes, | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
6646 * like "<C-S-LeftMouse>" |
7 | 6647 */ |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6648 if (do_special && ((flags & REPTERM_DO_LT) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6649 || STRNCMP(src, "<lt>", 4) != 0)) |
7 | 6650 { |
6651 #ifdef FEAT_EVAL | |
6652 /* | |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6653 * Change <SID>Func to K_SNR <script-nr> _Func. This name is used |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6654 * for script-locla user functions. |
7 | 6655 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14) |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6656 * Also change <SID>name.Func to K_SNR <import-script-nr> _Func. |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6657 * Only if "name" is recognized as an import. |
7 | 6658 */ |
6659 if (STRNICMP(src, "<SID>", 5) == 0) | |
6660 { | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
6661 if (current_sctx.sc_sid <= 0) |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
6662 emsg(_(e_using_sid_not_in_script_context)); |
7 | 6663 else |
6664 { | |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6665 char_u *dot; |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6666 long sid = current_sctx.sc_sid; |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6667 |
7 | 6668 src += 5; |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6669 if (in_vim9script() |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6670 && (dot = vim_strchr(src, '.')) != NULL) |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6671 { |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6672 imported_T *imp = find_imported(src, dot - src, FALSE); |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6673 |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6674 if (imp != NULL) |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6675 { |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6676 scriptitem_T *si = SCRIPT_ITEM(imp->imp_sid); |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6677 size_t len; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6678 |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6679 src = dot + 1; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6680 if (si->sn_autoload_prefix != NULL) |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6681 { |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6682 // Turn "<SID>name.Func" |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6683 // into "scriptname#Func". |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6684 len = STRLEN(si->sn_autoload_prefix); |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6685 if (ga_grow(&ga, |
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6686 (int)(STRLEN(src) * 6 + len + 1)) == FAIL) |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6687 { |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6688 ga_clear(&ga); |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6689 *bufp = NULL; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6690 return from; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6691 } |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6692 result = ga.ga_data; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6693 STRCPY(result + dlen, si->sn_autoload_prefix); |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6694 dlen += len; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6695 continue; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6696 } |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6697 sid = imp->imp_sid; |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6698 } |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6699 } |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6700 |
7 | 6701 result[dlen++] = K_SPECIAL; |
6702 result[dlen++] = (int)KS_EXTRA; | |
6703 result[dlen++] = (int)KE_SNR; | |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6704 sprintf((char *)result + dlen, "%ld", sid); |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6705 dlen += STRLEN(result + dlen); |
7 | 6706 result[dlen++] = '_'; |
6707 continue; | |
6708 } | |
6709 } | |
6710 #endif | |
31734
59c474f6715d
patch 9.0.1199: crash when using kitty and using a mapping with <Esc>
Bram Moolenaar <Bram@vim.org>
parents:
31682
diff
changeset
|
6711 int fsk_flags = FSK_KEYCODE |
59c474f6715d
patch 9.0.1199: crash when using kitty and using a mapping with <Esc>
Bram Moolenaar <Bram@vim.org>
parents:
31682
diff
changeset
|
6712 | ((flags & REPTERM_NO_SIMPLIFY) ? 0 : FSK_SIMPLIFY) |
59c474f6715d
patch 9.0.1199: crash when using kitty and using a mapping with <Esc>
Bram Moolenaar <Bram@vim.org>
parents:
31682
diff
changeset
|
6713 | ((flags & REPTERM_FROM_PART) ? FSK_FROM_PART : 0); |
59c474f6715d
patch 9.0.1199: crash when using kitty and using a mapping with <Esc>
Bram Moolenaar <Bram@vim.org>
parents:
31682
diff
changeset
|
6714 slen = trans_special(&src, result + dlen, fsk_flags, |
28668
53c608c7ea9e
patch 8.2.4858: K_SPECIAL may be escaped twice
Bram Moolenaar <Bram@vim.org>
parents:
28660
diff
changeset
|
6715 TRUE, did_simplify); |
31303
d2107f7b2155
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
31295
diff
changeset
|
6716 if (slen > 0) |
7 | 6717 { |
6718 dlen += slen; | |
6719 continue; | |
6720 } | |
6721 } | |
6722 | |
6723 /* | |
6724 * If 'cpoptions' does not contain 'k', see if it's an actual key-code. | |
6725 * Note that this is also checked after replacing the <> form. | |
6726 * Single character codes are NOT replaced (e.g. ^H or DEL), because | |
6727 * it could be a character in the file. | |
6728 */ | |
6729 if (do_key_code) | |
6730 { | |
6731 i = find_term_bykeys(src); | |
6732 if (i >= 0) | |
6733 { | |
6734 result[dlen++] = K_SPECIAL; | |
6735 result[dlen++] = termcodes[i].name[0]; | |
6736 result[dlen++] = termcodes[i].name[1]; | |
6737 src += termcodes[i].len; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6738 // If terminal code matched, continue after it. |
7 | 6739 continue; |
6740 } | |
6741 } | |
6742 | |
6743 #ifdef FEAT_EVAL | |
6744 if (do_special) | |
6745 { | |
6746 char_u *p, *s, len; | |
6747 | |
6748 /* | |
6749 * Replace <Leader> by the value of "mapleader". | |
6750 * Replace <LocalLeader> by the value of "maplocalleader". | |
6751 * If "mapleader" or "maplocalleader" isn't set use a backslash. | |
6752 */ | |
6753 if (STRNICMP(src, "<Leader>", 8) == 0) | |
6754 { | |
6755 len = 8; | |
6756 p = get_var_value((char_u *)"g:mapleader"); | |
6757 } | |
6758 else if (STRNICMP(src, "<LocalLeader>", 13) == 0) | |
6759 { | |
6760 len = 13; | |
6761 p = get_var_value((char_u *)"g:maplocalleader"); | |
6762 } | |
6763 else | |
6764 { | |
6765 len = 0; | |
6766 p = NULL; | |
6767 } | |
6768 if (len != 0) | |
6769 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6770 // Allow up to 8 * 6 characters for "mapleader". |
7 | 6771 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6) |
6772 s = (char_u *)"\\"; | |
6773 else | |
6774 s = p; | |
6775 while (*s != NUL) | |
6776 result[dlen++] = *s++; | |
6777 src += len; | |
6778 continue; | |
6779 } | |
6780 } | |
6781 #endif | |
6782 | |
6783 /* | |
6784 * Remove CTRL-V and ignore the next character. | |
6785 * For "from" side the CTRL-V at the end is included, for the "to" | |
6786 * part it is removed. | |
6787 * If 'cpoptions' does not contain 'B', also accept a backslash. | |
6788 */ | |
6789 key = *src; | |
6790 if (key == Ctrl_V || (do_backslash && key == '\\')) | |
6791 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6792 ++src; // skip CTRL-V or backslash |
7 | 6793 if (*src == NUL) |
6794 { | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6795 if (flags & REPTERM_FROM_PART) |
7 | 6796 result[dlen++] = key; |
6797 break; | |
6798 } | |
6799 } | |
6800 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6801 // skip multibyte char correctly |
474 | 6802 for (i = (*mb_ptr2len)(src); i > 0; --i) |
7 | 6803 { |
6804 /* | |
6805 * If the character is K_SPECIAL, replace it with K_SPECIAL | |
6806 * KS_SPECIAL KE_FILLER. | |
6807 * If compiled with the GUI replace CSI with K_CSI. | |
6808 */ | |
6809 if (*src == K_SPECIAL) | |
6810 { | |
6811 result[dlen++] = K_SPECIAL; | |
6812 result[dlen++] = KS_SPECIAL; | |
6813 result[dlen++] = KE_FILLER; | |
6814 } | |
6815 # ifdef FEAT_GUI | |
6816 else if (*src == CSI) | |
6817 { | |
6818 result[dlen++] = K_SPECIAL; | |
6819 result[dlen++] = KS_EXTRA; | |
6820 result[dlen++] = (int)KE_CSI; | |
6821 } | |
6822 # endif | |
6823 else | |
6824 result[dlen++] = *src; | |
6825 ++src; | |
6826 } | |
6827 } | |
6828 result[dlen] = NUL; | |
6829 | |
6830 /* | |
6831 * Copy the new string to allocated memory. | |
6832 * If this fails, just return from. | |
6833 */ | |
6834 if ((*bufp = vim_strsave(result)) != NULL) | |
6835 from = *bufp; | |
6836 vim_free(result); | |
6837 return from; | |
6838 } | |
6839 | |
6840 /* | |
6841 * Find a termcode with keys 'src' (must be NUL terminated). | |
6842 * Return the index in termcodes[], or -1 if not found. | |
6843 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
6844 static int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6845 find_term_bykeys(char_u *src) |
7 | 6846 { |
6847 int i; | |
3290 | 6848 int slen = (int)STRLEN(src); |
7 | 6849 |
6850 for (i = 0; i < tc_len; ++i) | |
6851 { | |
3273 | 6852 if (slen == termcodes[i].len |
6853 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0) | |
7 | 6854 return i; |
6855 } | |
6856 return -1; | |
6857 } | |
6858 | |
6859 /* | |
6860 * Gather the first characters in the terminal key codes into a string. | |
6861 * Used to speed up check_termcode(). | |
6862 */ | |
6863 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6864 gather_termleader(void) |
7 | 6865 { |
6866 int i; | |
6867 int len = 0; | |
6868 | |
6869 #ifdef FEAT_GUI | |
6870 if (gui.in_use) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6871 termleader[len++] = CSI; // the GUI codes are not in termcodes[] |
7 | 6872 #endif |
6873 #ifdef FEAT_TERMRESPONSE | |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
6874 if (check_for_codes || *T_CRS != NUL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6875 termleader[len++] = DCS; // the termcode response starts with DCS |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6876 // in 8-bit mode |
7 | 6877 #endif |
6878 termleader[len] = NUL; | |
6879 | |
6880 for (i = 0; i < tc_len; ++i) | |
6881 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL) | |
6882 { | |
6883 termleader[len++] = termcodes[i].code[0]; | |
6884 termleader[len] = NUL; | |
6885 } | |
6886 | |
6887 need_gather = FALSE; | |
6888 } | |
6889 | |
6890 /* | |
6891 * Show all termcodes (for ":set termcap") | |
6892 * This code looks a lot like showoptions(), but is different. | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6893 * "flags" can have OPT_ONECOLUMN. |
7 | 6894 */ |
6895 void | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6896 show_termcodes(int flags) |
7 | 6897 { |
6898 int col; | |
6899 int *items; | |
6900 int item_count; | |
6901 int run; | |
6902 int row, rows; | |
6903 int cols; | |
6904 int i; | |
6905 int len; | |
6906 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6907 #define INC3 27 // try to make three columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6908 #define INC2 40 // try to make two columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6909 #define GAP 2 // spaces between columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6910 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6911 if (tc_len == 0) // no terminal codes (must be GUI) |
7 | 6912 return; |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
6913 items = ALLOC_MULT(int, tc_len); |
7 | 6914 if (items == NULL) |
6915 return; | |
6916 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6917 // Highlight title |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6918 msg_puts_title(_("\n--- Terminal keys ---")); |
7 | 6919 |
6920 /* | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6921 * Do the loop three times: |
7 | 6922 * 1. display the short items (non-strings and short strings) |
180 | 6923 * 2. display the medium items (medium length strings) |
6924 * 3. display the long items (remaining strings) | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6925 * When "flags" has OPT_ONECOLUMN do everything in 3. |
7 | 6926 */ |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6927 for (run = (flags & OPT_ONECOLUMN) ? 3 : 1; run <= 3 && !got_int; ++run) |
7 | 6928 { |
6929 /* | |
6930 * collect the items in items[] | |
6931 */ | |
6932 item_count = 0; | |
6933 for (i = 0; i < tc_len; i++) | |
6934 { | |
6935 len = show_one_termcode(termcodes[i].name, | |
6936 termcodes[i].code, FALSE); | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6937 if ((flags & OPT_ONECOLUMN) || |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6938 (len <= INC3 - GAP ? run == 1 |
180 | 6939 : len <= INC2 - GAP ? run == 2 |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6940 : run == 3)) |
7 | 6941 items[item_count++] = i; |
6942 } | |
6943 | |
6944 /* | |
6945 * display the items | |
6946 */ | |
180 | 6947 if (run <= 2) |
7 | 6948 { |
180 | 6949 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2); |
7 | 6950 if (cols == 0) |
6951 cols = 1; | |
6952 rows = (item_count + cols - 1) / cols; | |
6953 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6954 else // run == 3 |
7 | 6955 rows = item_count; |
6956 for (row = 0; row < rows && !got_int; ++row) | |
6957 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6958 msg_putchar('\n'); // go to next line |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6959 if (got_int) // 'q' typed in more |
7 | 6960 break; |
6961 col = 0; | |
6962 for (i = row; i < item_count; i += rows) | |
6963 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6964 msg_col = col; // make columns |
7 | 6965 show_one_termcode(termcodes[items[i]].name, |
6966 termcodes[items[i]].code, TRUE); | |
180 | 6967 if (run == 2) |
6968 col += INC2; | |
6969 else | |
6970 col += INC3; | |
7 | 6971 } |
6972 out_flush(); | |
6973 ui_breakcheck(); | |
6974 } | |
6975 } | |
6976 vim_free(items); | |
6977 } | |
6978 | |
6979 /* | |
6980 * Show one termcode entry. | |
6981 * Output goes into IObuff[] | |
6982 */ | |
6983 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6984 show_one_termcode(char_u *name, char_u *code, int printit) |
7 | 6985 { |
6986 char_u *p; | |
6987 int len; | |
6988 | |
6989 if (name[0] > '~') | |
6990 { | |
6991 IObuff[0] = ' '; | |
6992 IObuff[1] = ' '; | |
6993 IObuff[2] = ' '; | |
6994 IObuff[3] = ' '; | |
6995 } | |
6996 else | |
6997 { | |
6998 IObuff[0] = 't'; | |
6999 IObuff[1] = '_'; | |
7000 IObuff[2] = name[0]; | |
7001 IObuff[3] = name[1]; | |
7002 } | |
7003 IObuff[4] = ' '; | |
7004 | |
7005 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0); | |
7006 if (p[1] != 't') | |
7007 STRCPY(IObuff + 5, p); | |
7008 else | |
7009 IObuff[5] = NUL; | |
7010 len = (int)STRLEN(IObuff); | |
7011 do | |
7012 IObuff[len++] = ' '; | |
7013 while (len < 17); | |
7014 IObuff[len] = NUL; | |
7015 if (code == NULL) | |
7016 len += 4; | |
7017 else | |
7018 len += vim_strsize(code); | |
7019 | |
7020 if (printit) | |
7021 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7022 msg_puts((char *)IObuff); |
7 | 7023 if (code == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7024 msg_puts("NULL"); |
7 | 7025 else |
7026 msg_outtrans(code); | |
7027 } | |
7028 return len; | |
7029 } | |
7030 | |
7031 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) | |
7032 /* | |
7033 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used | |
7034 * termcap codes from the terminal itself. | |
7035 * We get them one by one to avoid a very long response string. | |
7036 */ | |
6102 | 7037 static int xt_index_in = 0; |
7038 static int xt_index_out = 0; | |
7039 | |
7 | 7040 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7041 req_codes_from_term(void) |
7 | 7042 { |
7043 xt_index_out = 0; | |
7044 xt_index_in = 0; | |
7045 req_more_codes_from_term(); | |
7046 } | |
7047 | |
7048 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7049 req_more_codes_from_term(void) |
7 | 7050 { |
28013
dbf6d5ea7a1f
patch 8.2.4531: LGTM warnings for condition and buffer size
Bram Moolenaar <Bram@vim.org>
parents:
27996
diff
changeset
|
7051 char buf[23]; // extra size to shut up LGTM |
7 | 7052 int old_idx = xt_index_out; |
7053 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7054 // Don't do anything when going to exit. |
7 | 7055 if (exiting) |
7056 return; | |
7057 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7058 // Send up to 10 more requests out than we received. Avoid sending too |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7059 // many, there can be a buffer overflow somewhere. |
7 | 7060 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL) |
7061 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7062 char *key_name = key_names[xt_index_out]; |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7063 |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
7064 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7065 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name)); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7066 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]); |
7 | 7067 out_str_nf((char_u *)buf); |
7068 ++xt_index_out; | |
7069 } | |
7070 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7071 // Send the codes out right away. |
7 | 7072 if (xt_index_out != old_idx) |
7073 out_flush(); | |
7074 } | |
7075 | |
7076 /* | |
7077 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'. | |
7078 * A "0" instead of the "1" indicates a code that isn't supported. | |
7079 * Both <name> and <string> are encoded in hex. | |
7080 * "code" points to the "0" or "1". | |
7081 */ | |
7082 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7083 got_code_from_term(char_u *code, int len) |
7 | 7084 { |
7085 #define XT_LEN 100 | |
7086 char_u name[3]; | |
7087 char_u str[XT_LEN]; | |
7088 int i; | |
7089 int j = 0; | |
7090 int c; | |
7091 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7092 // A '1' means the code is supported, a '0' means it isn't. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7093 // When half the length is > XT_LEN we can't use it. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7094 // Our names are currently all 2 characters. |
7 | 7095 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN) |
7096 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7097 // Get the name from the response and find it in the table. |
7 | 7098 name[0] = hexhex2nr(code + 3); |
7099 name[1] = hexhex2nr(code + 5); | |
7100 name[2] = NUL; | |
7101 for (i = 0; key_names[i] != NULL; ++i) | |
7102 { | |
7103 if (STRCMP(key_names[i], name) == 0) | |
7104 { | |
7105 xt_index_in = i; | |
7106 break; | |
7107 } | |
7108 } | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7109 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7110 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name)); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
7111 |
7 | 7112 if (key_names[i] != NULL) |
7113 { | |
7114 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2) | |
7115 str[j++] = c; | |
7116 str[j] = NUL; | |
7117 if (name[0] == 'C' && name[1] == 'o') | |
7118 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7119 // Color count is not a key code. |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7120 int val = atoi((char *)str); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7121 #if defined(FEAT_EVAL) |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7122 if (val == t_colors) |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7123 ch_log(NULL, "got_code_from_term(Co): no change (%d)", val); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7124 else |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7125 ch_log(NULL, |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7126 "got_code_from_term(Co): changed from %d to %d", |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7127 t_colors, val); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7128 #endif |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7129 may_adjust_color_count(val); |
7 | 7130 } |
7131 else | |
7132 { | |
7133 i = find_term_bykeys(str); | |
31471
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7134 if (i >= 0 && name[0] == termcodes[i].name[0] |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7135 && name[1] == termcodes[i].name[1]) |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7136 { |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7137 // Existing entry with the same name and code - skip. |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7138 #ifdef FEAT_EVAL |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7139 ch_log(NULL, "got_code_from_term(): Entry %c%c did not change", |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7140 name[0], name[1]); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7141 #endif |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7142 } |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7143 else |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7144 { |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7145 if (i >= 0) |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7146 { |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7147 // Delete an existing entry using the same code. |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7148 #ifdef FEAT_EVAL |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7149 ch_log(NULL, "got_code_from_term(): Deleting entry %c%c with matching keys %s", |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7150 termcodes[i].name[0], termcodes[i].name[1], str); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7151 #endif |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7152 del_termcode_idx(i); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7153 } |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7154 #ifdef FEAT_EVAL |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7155 else |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7156 ch_log(NULL, "got_code_from_term(): Adding entry %c%c with keys %s", |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7157 name[0], name[1], str); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7158 #endif |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7159 add_termcode(name, str, ATC_FROM_TERM); |
eb7a266c6835
patch 9.0.1068: no information about whether request term codes has an effect
Bram Moolenaar <Bram@vim.org>
parents:
31465
diff
changeset
|
7160 } |
7 | 7161 } |
7162 } | |
7163 } | |
7164 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7165 // May request more codes now that we received one. |
7 | 7166 ++xt_index_in; |
7167 req_more_codes_from_term(); | |
7168 } | |
7169 | |
7170 /* | |
7171 * Check if there are any unanswered requests and deal with them. | |
7172 * This is called before starting an external program or getting direct | |
7173 * keyboard input. We don't want responses to be send to that program or | |
7174 * handled as typed text. | |
7175 */ | |
7176 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7177 check_for_codes_from_term(void) |
7 | 7178 { |
7179 int c; | |
7180 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7181 // If no codes requested or all are answered, no need to wait. |
7 | 7182 if (xt_index_out == 0 || xt_index_out == xt_index_in) |
7183 return; | |
7184 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7185 // Vgetc() will check for and handle any response. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7186 // Keep calling vpeekc() until we don't get any responses. |
7 | 7187 ++no_mapping; |
7188 ++allow_keys; | |
7189 for (;;) | |
7190 { | |
7191 c = vpeekc(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7192 if (c == NUL) // nothing available |
7 | 7193 break; |
7194 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7195 // If a response is recognized it's replaced with K_IGNORE, must read |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7196 // it from the input stream. If there is no K_IGNORE we can't do |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7197 // anything, break here (there might be some responses further on, but |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7198 // we don't want to throw away any typed chars). |
7 | 7199 if (c != K_SPECIAL && c != K_IGNORE) |
7200 break; | |
7201 c = vgetc(); | |
7202 if (c != K_IGNORE) | |
7203 { | |
7204 vungetc(c); | |
7205 break; | |
7206 } | |
7207 } | |
7208 --no_mapping; | |
7209 --allow_keys; | |
7210 } | |
7211 #endif | |
7212 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
7213 #if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO) |
7 | 7214 static char ksme_str[20]; |
7215 static char ksmr_str[20]; | |
7216 static char ksmd_str[20]; | |
7217 | |
7218 /* | |
7219 * For Win32 console: update termcap codes for existing console attributes. | |
7220 */ | |
7221 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7222 update_tcap(int attr) |
7 | 7223 { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7224 sprintf(ksme_str, "\033|%dm", attr); |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7225 sprintf(ksmd_str, "\033|%dm", attr | 0x08); // FOREGROUND_INTENSITY |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
7226 sprintf(ksmr_str, "\033|%dm", ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4)); |
7 | 7227 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7228 tcap_entry_T *p = find_builtin_term(DEFAULT_TERM); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7229 if (p == NULL) // did not find it |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7230 return; |
7 | 7231 while (p->bt_string != NULL) |
7232 { | |
7233 if (p->bt_entry == (int)KS_ME) | |
7234 p->bt_string = &ksme_str[0]; | |
7235 else if (p->bt_entry == (int)KS_MR) | |
7236 p->bt_string = &ksmr_str[0]; | |
7237 else if (p->bt_entry == (int)KS_MD) | |
7238 p->bt_string = &ksmd_str[0]; | |
7239 ++p; | |
7240 } | |
7241 } | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7242 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7243 # ifdef FEAT_TERMGUICOLORS |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7244 # define KSSIZE 20 |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7245 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7246 typedef enum |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7247 { |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7248 CMODE_INDEXED = 0, // Use cmd.exe 4bit palette. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7249 CMODE_RGB, // Use 24bit RGB colors using VTP. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7250 CMODE_256COL, // Emulate xterm's 256-color palette using VTP. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7251 CMODE_LAST, |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7252 } cmode_T; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7253 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7254 struct ks_tbl_S |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7255 { |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7256 int code; // value of KS_ |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7257 char *vtp; // code in RGB mode |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7258 char *vtp2; // code in 256color mode |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7259 char buf[CMODE_LAST][KSSIZE]; // real buffer |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7260 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7261 |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7262 static struct ks_tbl_S ks_tbl[] = |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7263 { |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7264 {(int)KS_ME, "\033|0m", "\033|0m", {""}}, // normal |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7265 {(int)KS_MR, "\033|7m", "\033|7m", {""}}, // reverse |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7266 {(int)KS_MD, "\033|1m", "\033|1m", {""}}, // bold |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7267 {(int)KS_SO, "\033|91m", "\033|91m", {""}}, // standout: bright red text |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7268 {(int)KS_SE, "\033|39m", "\033|39m", {""}}, // standout end: default color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7269 {(int)KS_CZH, "\033|3m", "\033|3m", {""}}, // italic |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7270 {(int)KS_CZR, "\033|0m", "\033|0m", {""}}, // italic end |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7271 {(int)KS_US, "\033|4m", "\033|4m", {""}}, // underscore |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7272 {(int)KS_UE, "\033|24m", "\033|24m", {""}}, // underscore end |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7273 # ifdef TERMINFO |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7274 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm", {""}}, // set background color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7275 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm", {""}}, // set foreground color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7276 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR", {""}}, |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7277 {(int)KS_CSV, "\033|%p1%d;%p2%dV", "\033|%p1%d;%p2%dV", {""}}, |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7278 # else |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7279 {(int)KS_CAB, "\033|%db", "\033|4%dm", {""}}, // set background color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7280 {(int)KS_CAF, "\033|%df", "\033|3%dm", {""}}, // set foreground color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7281 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR", {""}}, |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7282 {(int)KS_CSV, "\033|%d;%dV", "\033|%d;%dV", {""}}, |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7283 # endif |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7284 {(int)KS_CCO, "256", "256", {""}}, // colors |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
7285 {(int)KS_NAME, NULL, NULL, {""}} // terminator |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7286 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7287 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7288 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7289 * Find the first entry for "code" in the builtin termcap for "name". |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7290 * Returns NULL when not found. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7291 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7292 static tcap_entry_T * |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7293 find_first_tcap( |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7294 char_u *name, |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7295 int code) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7296 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7297 tcap_entry_T *p = find_builtin_term(name); |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
7298 if (p == NULL) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
7299 return NULL; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
7300 while (p->bt_string != NULL) |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7301 { |
31825
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
7302 if (p->bt_entry == code) |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
7303 return p; |
0d27ddce621d
patch 9.0.1245: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31805
diff
changeset
|
7304 ++p; |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7305 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7306 return NULL; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7307 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7308 # endif |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7309 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7310 /* |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7311 * For Win32 console: replace the sequence immediately after termguicolors. |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7312 */ |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7313 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7314 swap_tcap(void) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7315 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7316 # ifdef FEAT_TERMGUICOLORS |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7317 static int init_done = FALSE; |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7318 static cmode_T curr_mode; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7319 struct ks_tbl_S *ks; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7320 cmode_T mode; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7321 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7322 if (!init_done) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7323 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7324 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7325 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7326 tcap_entry_T *bt = find_first_tcap(DEFAULT_TERM, ks->code); |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7327 if (bt != NULL) |
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7328 { |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7329 // Preserve the original value. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7330 STRNCPY(ks->buf[CMODE_INDEXED], bt->bt_string, KSSIZE); |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7331 STRNCPY(ks->buf[CMODE_RGB], ks->vtp, KSSIZE); |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7332 STRNCPY(ks->buf[CMODE_256COL], ks->vtp2, KSSIZE); |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7333 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7334 bt->bt_string = ks->buf[CMODE_INDEXED]; |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7335 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7336 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
7337 init_done = TRUE; |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7338 curr_mode = CMODE_INDEXED; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7339 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7340 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7341 if (p_tgc) |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7342 mode = CMODE_RGB; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7343 else if (t_colors >= 256) |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7344 mode = CMODE_256COL; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7345 else |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7346 mode = CMODE_INDEXED; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7347 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7348 if (mode == curr_mode) |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7349 return; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7350 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7351 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7352 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
7353 tcap_entry_T *bt = find_first_tcap(DEFAULT_TERM, ks->code); |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7354 if (bt != NULL) |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7355 bt->bt_string = ks->buf[mode]; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7356 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7357 |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
7358 curr_mode = mode; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7359 # endif |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7360 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
7361 |
7 | 7362 #endif |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
7363 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7364 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
7365 #if (defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))) || defined(FEAT_TERMINAL) \ |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7366 || defined(PROTO) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7367 static int cube_value[] = { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7368 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7369 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7370 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7371 static int grey_ramp[] = { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7372 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76, |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7373 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7374 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7375 |
28919
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7376 static const char_u ansi_table[16][3] = { |
28656
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7377 // R G B |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7378 { 0, 0, 0}, // black |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7379 {224, 0, 0}, // dark red |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7380 { 0, 224, 0}, // dark green |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7381 {224, 224, 0}, // dark yellow / brown |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7382 { 0, 0, 224}, // dark blue |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7383 {224, 0, 224}, // dark magenta |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7384 { 0, 224, 224}, // dark cyan |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7385 {224, 224, 224}, // light grey |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7386 |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7387 {128, 128, 128}, // dark grey |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7388 {255, 64, 64}, // light red |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7389 { 64, 255, 64}, // light green |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7390 {255, 255, 64}, // yellow |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7391 { 64, 64, 255}, // light blue |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7392 {255, 64, 255}, // light magenta |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7393 { 64, 255, 255}, // light cyan |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7394 {255, 255, 255}, // white |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7395 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7396 |
28656
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7397 #if defined(MSWIN) |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7398 // Mapping between cterm indices < 16 and their counterpart in the ANSI palette. |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7399 static const char_u cterm_ansi_idx[] = { |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7400 0, 4, 2, 6, 1, 5, 3, 7, 8, 12, 10, 14, 9, 13, 11, 15 |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7401 }; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7402 #endif |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7403 |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7404 #define ANSI_INDEX_NONE 0 |
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7405 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7406 void |
28919
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7407 ansi_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx) |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7408 { |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7409 if (nr < 16) |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7410 { |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7411 *r = ansi_table[nr][0]; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7412 *g = ansi_table[nr][1]; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7413 *b = ansi_table[nr][2]; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7414 *ansi_idx = nr; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7415 } |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7416 else |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7417 { |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7418 *r = 0; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7419 *g = 0; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7420 *b = 0; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7421 *ansi_idx = ANSI_INDEX_NONE; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7422 } |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7423 } |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7424 |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7425 void |
13839
ca8953d36264
patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13827
diff
changeset
|
7426 cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx) |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7427 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7428 int idx; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7429 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7430 if (nr < 16) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7431 { |
28656
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7432 #if defined(MSWIN) |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7433 idx = cterm_ansi_idx[nr]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7434 #else |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7435 idx = nr; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7436 #endif |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7437 *r = ansi_table[idx][0]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7438 *g = ansi_table[idx][1]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7439 *b = ansi_table[idx][2]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7440 *ansi_idx = idx + 1; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7441 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7442 else if (nr < 232) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7443 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7444 // 216 color cube |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7445 idx = nr - 16; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7446 *r = cube_value[idx / 36 % 6]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7447 *g = cube_value[idx / 6 % 6]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7448 *b = cube_value[idx % 6]; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7449 *ansi_idx = ANSI_INDEX_NONE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7450 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7451 else if (nr < 256) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7452 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7453 // 24 grey scale ramp |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7454 idx = nr - 232; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7455 *r = grey_ramp[idx]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7456 *g = grey_ramp[idx]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7457 *b = grey_ramp[idx]; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7458 *ansi_idx = ANSI_INDEX_NONE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7459 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7460 else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7461 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7462 *r = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7463 *g = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7464 *b = 0; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7465 *ansi_idx = ANSI_INDEX_NONE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7466 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7467 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7468 #endif |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
7469 |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7470 /* |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7471 * Replace K_BS by <BS> and K_DEL by <DEL>. |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7472 * Include any modifiers into the key and drop them. |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7473 * Returns "len" adjusted for replaced codes. |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7474 */ |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7475 int |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7476 term_replace_keycodes(char_u *ta_buf, int ta_len, int len_arg) |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7477 { |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7478 int len = len_arg; |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7479 int i; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7480 int c; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7481 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7482 for (i = ta_len; i < ta_len + len; ++i) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7483 { |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7484 if (ta_buf[i] == CSI && len - i > 3 && ta_buf[i + 1] == KS_MODIFIER) |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7485 { |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7486 int modifiers = ta_buf[i + 2]; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7487 int key = ta_buf[i + 3]; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7488 |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7489 // Try to use the modifier to modify the key. In any case drop the |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7490 // modifier. |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7491 mch_memmove(ta_buf + i + 1, ta_buf + i + 4, (size_t)(len - i - 3)); |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7492 len -= 3; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7493 if (key < 0x80) |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7494 key = merge_modifyOtherKeys(key, &modifiers); |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7495 ta_buf[i] = key; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7496 } |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7497 else if (ta_buf[i] == CSI && len - i > 2) |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7498 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7499 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7500 if (c == K_DEL || c == K_KDEL || c == K_BS) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7501 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7502 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7503 (size_t)(len - i - 2)); |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7504 if (c == K_DEL || c == K_KDEL) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7505 ta_buf[i] = DEL; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7506 else |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7507 ta_buf[i] = Ctrl_H; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7508 len -= 2; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7509 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7510 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7511 else if (ta_buf[i] == '\r') |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7512 ta_buf[i] = '\n'; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7513 if (has_mbyte) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7514 i += (*mb_ptr2len_len)(ta_buf + i, ta_len + len - i) - 1; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7515 } |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7516 return len; |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7517 } |