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