Mercurial > vim
annotate src/term.c @ 31211:d6355c3af211 v9.0.0939
patch 9.0.0939: still using simplified mappings when using kitty protocol
Commit: https://github.com/vim/vim/commit/47f1fdc28c6839ec8f5aede631d3a870624767b6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 24 13:27:36 2022 +0000
patch 9.0.0939: still using simplified mappings when using kitty protocol
Problem: Still using simplified mappings when using the kitty keyboard
protocol.
Solution: Use the kitty_protocol_state value to decide whether to use
simplified mappings. Improve how seenModifyOtherKeys is set and
reset.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 24 Nov 2022 14:30:03 +0100 |
parents | b4491e73d6d1 |
children | 5b71c3884a2a |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 /* | |
10 * | |
11 * term.c: functions for controlling the terminal | |
12 * | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
13 * primitive termcap support for Amiga and Win32 included |
7 | 14 * |
15 * NOTE: padding and variable substitution is not performed, | |
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies. | |
17 */ | |
18 | |
19 /* | |
20 * Some systems have a prototype for tgetstr() with (char *) instead of | |
21 * (char **). This define removes that prototype. We include our own prototype | |
22 * below. | |
23 */ | |
24 #define tgetstr tgetstr_defined_wrong | |
16378
3d6b282e2d6e
patch 8.1.1194: typos and small problems in source files
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
25 |
7 | 26 #include "vim.h" |
27 | |
28 #ifdef HAVE_TGETENT | |
29 # ifdef HAVE_TERMIOS_H | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
30 # include <termios.h> // seems to be required for some Linux |
7 | 31 # endif |
32 # ifdef HAVE_TERMCAP_H | |
33 # include <termcap.h> | |
34 # endif | |
35 | |
36 /* | |
37 * A few linux systems define outfuntype in termcap.h to be used as the third | |
38 * argument for tputs(). | |
39 */ | |
27684
1761cc771623
patch 8.2.4368: Amiga: a few compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
40 # if defined(VMS) || defined(AMIGA) |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
23406
diff
changeset
|
41 # define TPUTSFUNCAST (void (*)(unsigned int)) |
7 | 42 # else |
43 # ifdef HAVE_OUTFUNTYPE | |
44 # define TPUTSFUNCAST (outfuntype) | |
45 # else | |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
46 # define TPUTSFUNCAST (int (*)(int)) |
7 | 47 # endif |
48 # endif | |
49 #endif | |
50 | |
51 #undef tgetstr | |
52 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
53 // start of keys that are not directly used by Vim but can be mapped |
7 | 54 #define BT_EXTRA_KEYS 0x101 |
55 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
56 static void parse_builtin_tcap(char_u *s); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
57 static void gather_termleader(void); |
7 | 58 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
59 static void req_codes_from_term(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
60 static void req_more_codes_from_term(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
61 static void got_code_from_term(char_u *code, int len); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
62 static void check_for_codes_from_term(void); |
7 | 63 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
64 static void del_termcode_idx(int idx); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
65 static int find_term_bykeys(char_u *src); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
66 static int term_is_builtin(char_u *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
67 static int term_7to8bit(char_u *p); |
7 | 68 |
69 #ifdef HAVE_TGETENT | |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
70 static char *invoke_tgetent(char_u *, char_u *); |
7 | 71 |
72 /* | |
73 * Here is our own prototype for tgetstr(), any prototypes from the include | |
74 * files have been disabled by the define at the start of this file. | |
75 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
76 char *tgetstr(char *, char **); |
7 | 77 |
78 # ifdef FEAT_TERMRESPONSE | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
79 // Change this to "if 1" to debug what happens with termresponse. |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
80 # if 0 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
81 # define DEBUG_TERMRESPONSE |
25475
038eb6d9003a
patch 8.2.3274: macro for printf format check can be simplified
Bram Moolenaar <Bram@vim.org>
parents:
25429
diff
changeset
|
82 static void log_tr(const char *fmt, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
83 # define LOG_TR(msg) log_tr msg |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
84 # else |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
85 # define LOG_TR(msg) do { /**/ } while (0) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
86 # endif |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
87 |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
88 typedef enum { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
89 STATUS_GET, // send request when switching to RAW mode |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
90 STATUS_SENT, // did send request, checking for response |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
91 STATUS_GOT, // received response |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
92 STATUS_FAIL // timed out |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
93 } request_progress_T; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
94 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
95 typedef struct { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
96 request_progress_T tr_progress; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
97 time_t tr_start; // when request was sent, -1 for never |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
98 } termrequest_T; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
99 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
100 # define TERMREQUEST_INIT {STATUS_GET, -1} |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
101 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
102 // Request Terminal Version status: |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
103 static termrequest_T crv_status = TERMREQUEST_INIT; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
104 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
105 // Request Cursor position report: |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
106 static termrequest_T u7_status = TERMREQUEST_INIT; |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
107 |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
108 // Request xterm compatibility check: |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
109 static termrequest_T xcc_status = TERMREQUEST_INIT; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
110 |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
111 # ifdef FEAT_TERMINAL |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
112 // Request foreground color report: |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
113 static termrequest_T rfg_status = TERMREQUEST_INIT; |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
114 static int fg_r = 0; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
115 static int fg_g = 0; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
116 static int fg_b = 0; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
117 static int bg_r = 255; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
118 static int bg_g = 255; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
119 static int bg_b = 255; |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
120 # endif |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
121 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
122 // Request background color report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
123 static termrequest_T rbg_status = TERMREQUEST_INIT; |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
124 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
125 // Request cursor blinking mode report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
126 static termrequest_T rbm_status = TERMREQUEST_INIT; |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
127 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
128 // Request cursor style report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
129 static termrequest_T rcs_status = TERMREQUEST_INIT; |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
130 |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19178
diff
changeset
|
131 // Request window's position report: |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
132 static termrequest_T winpos_status = TERMREQUEST_INIT; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
133 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
134 static termrequest_T *all_termrequests[] = { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
135 &crv_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
136 &u7_status, |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
137 &xcc_status, |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
138 # ifdef FEAT_TERMINAL |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
139 &rfg_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
140 # endif |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
141 &rbg_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
142 &rbm_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
143 &rcs_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
144 &winpos_status, |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
145 NULL |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
146 }; |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
147 |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
148 // The t_8u code may default to a value but get reset when the term response is |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
149 // received. To avoid redrawing too often, only redraw when t_8u is not reset |
30602
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
150 // and it was supposed to be written. Unless t_8u was set explicitly. |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
151 // FALSE -> don't output t_8u yet |
30986
360f286b5869
patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents:
30984
diff
changeset
|
152 // MAYBE -> tried outputting t_8u while FALSE |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
153 // OK -> can write t_8u |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
154 int write_t_8u_state = FALSE; |
7 | 155 # endif |
156 | |
157 /* | |
158 * Don't declare these variables if termcap.h contains them. | |
159 * Autoconf checks if these variables should be declared extern (not all | |
160 * systems have them). | |
161 * Some versions define ospeed to be speed_t, but that is incompatible with | |
162 * BSD, where ospeed is short and speed_t is long. | |
163 */ | |
164 # ifndef HAVE_OSPEED | |
165 # ifdef OSPEED_EXTERN | |
166 extern short ospeed; | |
167 # else | |
168 short ospeed; | |
169 # endif | |
170 # endif | |
171 # ifndef HAVE_UP_BC_PC | |
172 # ifdef UP_BC_PC_EXTERN | |
173 extern char *UP, *BC, PC; | |
174 # else | |
175 char *UP, *BC, PC; | |
176 # endif | |
177 # endif | |
178 | |
179 # define TGETSTR(s, p) vim_tgetstr((s), (p)) | |
180 # 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
|
181 static char_u *vim_tgetstr(char *s, char_u **pp); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
182 #endif // HAVE_TGETENT |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
183 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
184 static int detected_8bit = FALSE; // detected 8-bit terminal |
7 | 185 |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
186 #if (defined(UNIX) || defined(VMS)) |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
187 static int focus_state = MAYBE; // TRUE if the Vim window has focus |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
188 #endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
189 |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
190 #ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
191 // When the cursor shape was detected these values are used: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
192 // 1: block, 2: underline, 3: vertical bar |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
193 static int initial_cursor_shape = 0; |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
194 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
195 // The blink flag from the style response may be inverted from the actual |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
196 // blinking state, xterm XORs the flags. |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
197 static int initial_cursor_shape_blink = FALSE; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
198 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
199 // The blink flag from the blinking-cursor mode response |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
200 static int initial_cursor_blink = FALSE; |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
201 #endif |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
202 |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
203 /* |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
204 * The builtin termcap entries. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
205 * |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
206 * The entries are also included when HAVE_TGETENT is defined, the system |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
207 * termcap may be incomplete and a few Vim-specific entries are added. |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
208 * |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
209 * When HAVE_TGETENT is defined, the builtin entries can be accessed with |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
210 * "builtin_amiga", "builtin_ansi", "builtin_debug", etc. |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
211 * |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
212 * Each termcap is a list of tcap_entry_T. See parse_builtin_tcap() for all |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
213 * details. |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
214 * |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
215 * Entries marked with "guessed" may be wrong. |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
216 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
217 typedef struct |
7 | 218 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
219 int bt_entry; // either a KS_xxx code (>= 0), or a K_xxx code. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
220 char *bt_string; // value |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
221 } tcap_entry_T; |
7 | 222 |
223 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
224 * Standard ANSI terminal, default for Unix. |
7 | 225 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
226 static tcap_entry_T builtin_ansi[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
227 {(int)KS_CE, "\033[K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
228 {(int)KS_AL, "\033[L"}, |
7 | 229 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
230 {(int)KS_CAL, "\033[%p1%dL"}, |
7 | 231 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
232 {(int)KS_CAL, "\033[%dL"}, |
7 | 233 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
234 {(int)KS_DL, "\033[M"}, |
7 | 235 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
236 {(int)KS_CDL, "\033[%p1%dM"}, |
7 | 237 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
238 {(int)KS_CDL, "\033[%dM"}, |
7 | 239 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
240 {(int)KS_CL, "\033[H\033[2J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
241 {(int)KS_ME, "\033[0m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
242 {(int)KS_MR, "\033[7m"}, |
7 | 243 {(int)KS_MS, "y"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
244 {(int)KS_UT, "y"}, // guessed |
7 | 245 {(int)KS_LE, "\b"}, |
246 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
247 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
7 | 248 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
249 {(int)KS_CM, "\033[%i%d;%dH"}, |
7 | 250 # endif |
251 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
252 {(int)KS_CRI, "\033[%p1%dC"}, |
7 | 253 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
254 {(int)KS_CRI, "\033[%dC"}, |
7 | 255 # endif |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
256 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
257 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
258 }; |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
259 |
7 | 260 /* |
261 * VT320 is working as an ANSI terminal compatible DEC terminal. | |
262 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well) | |
263 * TODO:- rewrite ESC[ codes to CSI | |
264 * - keyboard languages (CSI ? 26 n) | |
265 */ | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
266 static tcap_entry_T builtin_vt320[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
267 {(int)KS_CE, "\033[K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
268 {(int)KS_AL, "\033[L"}, |
7 | 269 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
270 {(int)KS_CAL, "\033[%p1%dL"}, |
7 | 271 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
272 {(int)KS_CAL, "\033[%dL"}, |
7 | 273 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
274 {(int)KS_DL, "\033[M"}, |
7 | 275 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
276 {(int)KS_CDL, "\033[%p1%dM"}, |
7 | 277 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
278 {(int)KS_CDL, "\033[%dM"}, |
7 | 279 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
280 {(int)KS_CL, "\033[H\033[2J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
281 {(int)KS_CD, "\033[J"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
282 {(int)KS_CCO, "8"}, // allow 8 colors |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
283 {(int)KS_ME, "\033[0m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
284 {(int)KS_MR, "\033[7m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
285 {(int)KS_MD, "\033[1m"}, // bold mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
286 {(int)KS_SE, "\033[22m"},// normal mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
287 {(int)KS_UE, "\033[24m"},// exit underscore mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
288 {(int)KS_US, "\033[4m"}, // underscore mode |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
289 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
290 {(int)KS_CZR, "\033[0m"}, // italic mode end |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
291 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI) |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
292 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI) |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
293 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
294 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color |
7 | 295 {(int)KS_MS, "y"}, |
296 {(int)KS_UT, "y"}, | |
6602 | 297 {(int)KS_XN, "y"}, |
7 | 298 {(int)KS_LE, "\b"}, |
299 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
300 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
7 | 301 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
302 {(int)KS_CM, "\033[%i%d;%dH"}, |
7 | 303 # endif |
304 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
305 {(int)KS_CRI, "\033[%p1%dC"}, |
7 | 306 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
307 {(int)KS_CRI, "\033[%dC"}, |
7 | 308 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
309 {K_UP, "\033[A"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
310 {K_DOWN, "\033[B"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
311 {K_RIGHT, "\033[C"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
312 {K_LEFT, "\033[D"}, |
14252
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
313 // Note: cursor key sequences for application cursor mode are omitted, |
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
314 // because they interfere with typed commands: <Esc>OA. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
315 {K_F1, "\033[11~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
316 {K_F2, "\033[12~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
317 {K_F3, "\033[13~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
318 {K_F4, "\033[14~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
319 {K_F5, "\033[15~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
320 {K_F6, "\033[17~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
321 {K_F7, "\033[18~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
322 {K_F8, "\033[19~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
323 {K_F9, "\033[20~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
324 {K_F10, "\033[21~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
325 {K_F11, "\033[23~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
326 {K_F12, "\033[24~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
327 {K_F13, "\033[25~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
328 {K_F14, "\033[26~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
329 {K_F15, "\033[28~"}, // Help |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
330 {K_F16, "\033[29~"}, // Select |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
331 {K_F17, "\033[31~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
332 {K_F18, "\033[32~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
333 {K_F19, "\033[33~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
334 {K_F20, "\033[34~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
335 {K_INS, "\033[2~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
336 {K_DEL, "\033[3~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
337 {K_HOME, "\033[1~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
338 {K_END, "\033[4~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
339 {K_PAGEUP, "\033[5~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
340 {K_PAGEDOWN, "\033[6~"}, |
14252
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
341 // These sequences starting with <Esc> O may interfere with what the user |
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
342 // is typing. Remove these if that bothers you. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
343 {K_KPLUS, "\033Ok"}, // keypad plus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
344 {K_KMINUS, "\033Om"}, // keypad minus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
345 {K_KDIVIDE, "\033Oo"}, // keypad / |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
346 {K_KMULTIPLY, "\033Oj"}, // keypad * |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
347 {K_KENTER, "\033OM"}, // keypad Enter |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
348 {K_K0, "\033Op"}, // keypad 0 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
349 {K_K1, "\033Oq"}, // keypad 1 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
350 {K_K2, "\033Or"}, // keypad 2 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
351 {K_K3, "\033Os"}, // keypad 3 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
352 {K_K4, "\033Ot"}, // keypad 4 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
353 {K_K5, "\033Ou"}, // keypad 5 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
354 {K_K6, "\033Ov"}, // keypad 6 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
355 {K_K7, "\033Ow"}, // keypad 7 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
356 {K_K8, "\033Ox"}, // keypad 8 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
357 {K_K9, "\033Oy"}, // keypad 9 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
358 {K_BS, "\x7f"}, // for some reason 0177 doesn't work |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
359 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
360 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
361 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
362 |
7 | 363 /* |
364 * Ordinary vt52 | |
365 */ | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
366 static tcap_entry_T builtin_vt52[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
367 {(int)KS_CE, "\033K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
368 {(int)KS_CD, "\033J"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
369 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
370 {(int)KS_CM, "\033Y%p1%' '%+%c%p2%' '%+%c"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
371 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
372 {(int)KS_CM, "\033Y%+ %+ "}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
373 # endif |
7 | 374 {(int)KS_LE, "\b"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
375 {(int)KS_SR, "\033I"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
376 {(int)KS_AL, "\033L"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
377 {(int)KS_DL, "\033M"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
378 {K_UP, "\033A"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
379 {K_DOWN, "\033B"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
380 {K_LEFT, "\033D"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
381 {K_RIGHT, "\033C"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
382 {K_F1, "\033P"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
383 {K_F2, "\033Q"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
384 {K_F3, "\033R"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
385 {(int)KS_CL, "\033H\033J"}, |
7 | 386 {(int)KS_MS, "y"}, |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
387 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
388 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
389 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
390 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
391 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
392 * Builtin xterm with Vim-specific entries. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
393 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
394 static tcap_entry_T builtin_xterm[] = { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
395 {(int)KS_CE, "\033[K"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
396 {(int)KS_AL, "\033[L"}, |
7 | 397 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
398 {(int)KS_CAL, "\033[%p1%dL"}, |
7 | 399 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
400 {(int)KS_CAL, "\033[%dL"}, |
7 | 401 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
402 {(int)KS_DL, "\033[M"}, |
7 | 403 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
404 {(int)KS_CDL, "\033[%p1%dM"}, |
7 | 405 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
406 {(int)KS_CDL, "\033[%dM"}, |
7 | 407 # endif |
408 # ifdef TERMINFO | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
409 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, |
7 | 410 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
411 {(int)KS_CS, "\033[%i%d;%dr"}, |
7 | 412 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
413 {(int)KS_CL, "\033[H\033[2J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
414 {(int)KS_CD, "\033[J"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
415 {(int)KS_ME, "\033[m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
416 {(int)KS_MR, "\033[7m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
417 {(int)KS_MD, "\033[1m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
418 {(int)KS_UE, "\033[m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
419 {(int)KS_US, "\033[4m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
420 {(int)KS_STE, "\033[29m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
421 {(int)KS_STS, "\033[9m"}, |
7 | 422 {(int)KS_MS, "y"}, |
423 {(int)KS_UT, "y"}, | |
424 {(int)KS_LE, "\b"}, | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
425 {(int)KS_VI, "\033[?25l"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
426 {(int)KS_VE, "\033[?25h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
427 {(int)KS_VS, "\033[?12h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
428 {(int)KS_CVS, "\033[?12l"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
429 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
430 {(int)KS_CSH, "\033[%p1%d q"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
431 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
432 {(int)KS_CSH, "\033[%d q"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
433 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
434 {(int)KS_CRC, "\033[?12$p"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
435 {(int)KS_CRS, "\033P$q q\033\\"}, |
7 | 436 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
437 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
7 | 438 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
439 {(int)KS_CM, "\033[%i%d;%dH"}, |
7 | 440 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
441 {(int)KS_SR, "\033M"}, |
7 | 442 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
443 {(int)KS_CRI, "\033[%p1%dC"}, |
7 | 444 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
445 {(int)KS_CRI, "\033[%dC"}, |
7 | 446 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
447 {(int)KS_KS, "\033[?1h\033="}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
448 {(int)KS_KE, "\033[?1l\033>"}, |
7 | 449 # ifdef FEAT_XTERM_SAVE |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
450 {(int)KS_TI, "\0337\033[?47h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
451 {(int)KS_TE, "\033[?47l\0338"}, |
7 | 452 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
453 {(int)KS_CTI, "\033[>4;2m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
454 {(int)KS_CTE, "\033[>4;m"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
455 {(int)KS_CIS, "\033]1;"}, |
7 | 456 {(int)KS_CIE, "\007"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
457 {(int)KS_TS, "\033]2;"}, |
7 | 458 {(int)KS_FS, "\007"}, |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
459 {(int)KS_CSC, "\033]12;"}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
460 {(int)KS_CEC, "\007"}, |
7 | 461 # ifdef TERMINFO |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
462 {(int)KS_CWS, "\033[8;%p1%d;%p2%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
463 {(int)KS_CWP, "\033[3;%p1%d;%p2%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
464 {(int)KS_CGP, "\033[13t"}, |
7 | 465 # else |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
466 {(int)KS_CWS, "\033[8;%d;%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
467 {(int)KS_CWP, "\033[3;%d;%dt"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
468 {(int)KS_CGP, "\033[13t"}, |
7 | 469 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
470 {(int)KS_CRV, "\033[>c"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
471 {(int)KS_RFG, "\033]10;?\007"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
472 {(int)KS_RBG, "\033]11;?\007"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
473 {(int)KS_U7, "\033[6n"}, |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
474 # ifdef FEAT_TERMGUICOLORS |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
475 // These are printf strings, not terminal codes. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
476 {(int)KS_8F, "\033[38;2;%lu;%lu;%lum"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
477 {(int)KS_8B, "\033[48;2;%lu;%lu;%lum"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
478 {(int)KS_8U, "\033[58;2;%lu;%lu;%lum"}, |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
479 # endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
480 {(int)KS_CAU, "\033[58;5;%dm"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
481 {(int)KS_CBE, "\033[?2004h"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
482 {(int)KS_CBD, "\033[?2004l"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
483 {(int)KS_CST, "\033[22;2t"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
484 {(int)KS_CRT, "\033[23;2t"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
485 {(int)KS_SSI, "\033[22;1t"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
486 {(int)KS_SRI, "\033[23;1t"}, |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
487 # if (defined(UNIX) || defined(VMS)) |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
488 {(int)KS_FD, "\033[?1004l"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
489 {(int)KS_FE, "\033[?1004h"}, |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
490 # endif |
180 | 491 |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
492 {K_UP, "\033O*A"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
493 {K_DOWN, "\033O*B"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
494 {K_RIGHT, "\033O*C"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
495 {K_LEFT, "\033O*D"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
496 // An extra set of cursor keys for vt100 mode |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
497 {K_XUP, "\033[@;*A"}, // Esc [ A or Esc [ 1 ; A |
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
498 {K_XDOWN, "\033[@;*B"}, // Esc [ B or Esc [ 1 ; B |
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
499 {K_XRIGHT, "\033[@;*C"}, // Esc [ C or Esc [ 1 ; C |
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
500 {K_XLEFT, "\033[@;*D"}, // Esc [ D or Esc [ 1 ; D |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
501 // An extra set of function keys for vt100 mode |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
502 {K_XF1, "\033O*P"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
503 {K_XF2, "\033O*Q"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
504 {K_XF3, "\033O*R"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
505 {K_XF4, "\033O*S"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
506 {K_F1, "\033[11;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
507 {K_F2, "\033[12;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
508 {K_F3, "\033[13;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
509 {K_F4, "\033[14;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
510 {K_F5, "\033[15;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
511 {K_F6, "\033[17;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
512 {K_F7, "\033[18;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
513 {K_F8, "\033[19;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
514 {K_F9, "\033[20;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
515 {K_F10, "\033[21;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
516 {K_F11, "\033[23;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
517 {K_F12, "\033[24;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
518 {K_S_TAB, "\033[Z"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
519 {K_HELP, "\033[28;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
520 {K_UNDO, "\033[26;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
521 {K_INS, "\033[2;*~"}, |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
522 {K_HOME, "\033[@;*H"}, // Esc [ H or Esc 1 ; H |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
523 // {K_S_HOME, "\033O2H"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
524 // {K_C_HOME, "\033O5H"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
525 {K_KHOME, "\033[1;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
526 {K_XHOME, "\033O*H"}, // other Home |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
527 {K_ZHOME, "\033[7;*~"}, // other Home |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
528 {K_END, "\033[@;*F"}, // Esc [ F or Esc 1 ; F |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
529 // {K_S_END, "\033O2F"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
530 // {K_C_END, "\033O5F"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
531 {K_KEND, "\033[4;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
532 {K_XEND, "\033O*F"}, // other End |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
533 {K_ZEND, "\033[8;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
534 {K_PAGEUP, "\033[5;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
535 {K_PAGEDOWN, "\033[6;*~"}, |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
536 {K_KPLUS, "\033O*k"}, // keypad plus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
537 {K_KMINUS, "\033O*m"}, // keypad minus |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
538 {K_KDIVIDE, "\033O*o"}, // keypad / |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
539 {K_KMULTIPLY, "\033O*j"}, // keypad * |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
540 {K_KENTER, "\033O*M"}, // keypad Enter |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
541 {K_KPOINT, "\033O*n"}, // keypad . |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
542 {K_K0, "\033O*p"}, // keypad 0 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
543 {K_K1, "\033O*q"}, // keypad 1 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
544 {K_K2, "\033O*r"}, // keypad 2 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
545 {K_K3, "\033O*s"}, // keypad 3 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
546 {K_K4, "\033O*t"}, // keypad 4 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
547 {K_K5, "\033O*u"}, // keypad 5 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
548 {K_K6, "\033O*v"}, // keypad 6 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
549 {K_K7, "\033O*w"}, // keypad 7 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
550 {K_K8, "\033O*x"}, // keypad 8 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
551 {K_K9, "\033O*y"}, // keypad 9 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
552 {K_KDEL, "\033[3;*~"}, // keypad Del |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
553 {K_PS, "\033[200~"}, // paste start |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
554 {K_PE, "\033[201~"}, // paste end |
7 | 555 |
556 {BT_EXTRA_KEYS, ""}, | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
557 {TERMCAP2KEY('k', '0'), "\033[10;*~"}, // F0 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
558 {TERMCAP2KEY('F', '3'), "\033[25;*~"}, // F13 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
559 // F14 and F15 are missing, because they send the same codes as the undo |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
560 // and help key, although they don't work on all keyboards. |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
561 {TERMCAP2KEY('F', '6'), "\033[29;*~"}, // F16 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
562 {TERMCAP2KEY('F', '7'), "\033[31;*~"}, // F17 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
563 {TERMCAP2KEY('F', '8'), "\033[32;*~"}, // F18 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
564 {TERMCAP2KEY('F', '9'), "\033[33;*~"}, // F19 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
565 {TERMCAP2KEY('F', 'A'), "\033[34;*~"}, // F20 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
566 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
567 {TERMCAP2KEY('F', 'B'), "\033[42;*~"}, // F21 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
568 {TERMCAP2KEY('F', 'C'), "\033[43;*~"}, // F22 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
569 {TERMCAP2KEY('F', 'D'), "\033[44;*~"}, // F23 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
570 {TERMCAP2KEY('F', 'E'), "\033[45;*~"}, // F24 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
571 {TERMCAP2KEY('F', 'F'), "\033[46;*~"}, // F25 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
572 {TERMCAP2KEY('F', 'G'), "\033[47;*~"}, // F26 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
573 {TERMCAP2KEY('F', 'H'), "\033[48;*~"}, // F27 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
574 {TERMCAP2KEY('F', 'I'), "\033[49;*~"}, // F28 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
575 {TERMCAP2KEY('F', 'J'), "\033[50;*~"}, // F29 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
576 {TERMCAP2KEY('F', 'K'), "\033[51;*~"}, // F30 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
577 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
578 {TERMCAP2KEY('F', 'L'), "\033[52;*~"}, // F31 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
579 {TERMCAP2KEY('F', 'M'), "\033[53;*~"}, // F32 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
580 {TERMCAP2KEY('F', 'N'), "\033[54;*~"}, // F33 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
581 {TERMCAP2KEY('F', 'O'), "\033[55;*~"}, // F34 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
582 {TERMCAP2KEY('F', 'P'), "\033[56;*~"}, // F35 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
583 {TERMCAP2KEY('F', 'Q'), "\033[57;*~"}, // F36 |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
584 {TERMCAP2KEY('F', 'R'), "\033[58;*~"}, // F37 |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
585 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
586 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
587 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
588 |
7 | 589 /* |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
590 * Additions for using modifyOtherKeys level 2. Same as what is used for |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
591 * xterm. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
592 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
593 static tcap_entry_T builtin_mok2[] = { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
594 {(int)KS_CTI, "\033[>4;2m"}, |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
595 {(int)KS_CTE, "\033[>4;m"}, |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
596 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
597 {(int)KS_NAME, NULL} // end marker |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
598 }; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
599 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
600 /* |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
601 * Additions for using the Kitty keyboard protocol. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
602 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
603 static tcap_entry_T builtin_kitty[] = { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
604 // t_TI enables the kitty keyboard protocol, requests the kitty keyboard |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
605 // protocol state and requests the version response. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
606 {(int)KS_CTI, "\033[>1u\033[?u\033[>c"}, |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
607 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
608 // t_TE also disabled modifyOtherKeys, because t_TI from xterm may already |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
609 // have been used. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
610 {(int)KS_CTE, "\033[>4;m\033[<u"}, |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
611 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
612 {(int)KS_NAME, NULL} // end marker |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
613 }; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
614 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
615 /* |
7 | 616 * iris-ansi for Silicon Graphics machines. |
617 */ | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
618 static tcap_entry_T builtin_iris_ansi[] = { |
7 | 619 {(int)KS_CE, "\033[K"}, |
620 {(int)KS_CD, "\033[J"}, | |
621 {(int)KS_AL, "\033[L"}, | |
622 # ifdef TERMINFO | |
623 {(int)KS_CAL, "\033[%p1%dL"}, | |
624 # else | |
625 {(int)KS_CAL, "\033[%dL"}, | |
626 # endif | |
627 {(int)KS_DL, "\033[M"}, | |
628 # ifdef TERMINFO | |
629 {(int)KS_CDL, "\033[%p1%dM"}, | |
630 # else | |
631 {(int)KS_CDL, "\033[%dM"}, | |
632 # endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
633 #if 0 // The scroll region is not working as Vim expects. |
7 | 634 # ifdef TERMINFO |
635 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
636 # else | |
637 {(int)KS_CS, "\033[%i%d;%dr"}, | |
638 # endif | |
639 #endif | |
640 {(int)KS_CL, "\033[H\033[2J"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
641 {(int)KS_VE, "\033[9/y\033[12/y"}, // These aren't documented |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
642 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, // These aren't documented |
7 | 643 {(int)KS_TI, "\033[=6h"}, |
644 {(int)KS_TE, "\033[=6l"}, | |
645 {(int)KS_SE, "\033[21;27m"}, | |
646 {(int)KS_SO, "\033[1;7m"}, | |
647 {(int)KS_ME, "\033[m"}, | |
648 {(int)KS_MR, "\033[7m"}, | |
649 {(int)KS_MD, "\033[1m"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
650 {(int)KS_CCO, "8"}, // allow 8 colors |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
651 {(int)KS_CZH, "\033[3m"}, // italic mode on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
652 {(int)KS_CZR, "\033[23m"}, // italic mode off |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
653 {(int)KS_US, "\033[4m"}, // underline on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
654 {(int)KS_UE, "\033[24m"}, // underline off |
7 | 655 # ifdef TERMINFO |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
656 {(int)KS_CAB, "\033[4%p1%dm"}, // set background color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
657 {(int)KS_CAF, "\033[3%p1%dm"}, // set foreground color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
658 {(int)KS_CSB, "\033[102;%p1%dm"}, // set screen background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
659 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color |
7 | 660 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
661 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
662 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
663 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
664 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color |
7 | 665 # endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
666 {(int)KS_MS, "y"}, // guessed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
667 {(int)KS_UT, "y"}, // guessed |
7 | 668 {(int)KS_LE, "\b"}, |
669 # ifdef TERMINFO | |
670 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
671 # else | |
672 {(int)KS_CM, "\033[%i%d;%dH"}, | |
673 # endif | |
674 {(int)KS_SR, "\033M"}, | |
675 # ifdef TERMINFO | |
676 {(int)KS_CRI, "\033[%p1%dC"}, | |
677 # else | |
678 {(int)KS_CRI, "\033[%dC"}, | |
679 # endif | |
680 {(int)KS_CIS, "\033P3.y"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
681 {(int)KS_CIE, "\234"}, // ST "String Terminator" |
7 | 682 {(int)KS_TS, "\033P1.y"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
683 {(int)KS_FS, "\234"}, // ST "String Terminator" |
7 | 684 # ifdef TERMINFO |
685 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"}, | |
686 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"}, | |
687 # else | |
688 {(int)KS_CWS, "\033[203;%d;%d/y"}, | |
689 {(int)KS_CWP, "\033[205;%d;%d/y"}, | |
690 # endif | |
691 {K_UP, "\033[A"}, | |
692 {K_DOWN, "\033[B"}, | |
693 {K_LEFT, "\033[D"}, | |
694 {K_RIGHT, "\033[C"}, | |
695 {K_S_UP, "\033[161q"}, | |
696 {K_S_DOWN, "\033[164q"}, | |
697 {K_S_LEFT, "\033[158q"}, | |
698 {K_S_RIGHT, "\033[167q"}, | |
699 {K_F1, "\033[001q"}, | |
700 {K_F2, "\033[002q"}, | |
701 {K_F3, "\033[003q"}, | |
702 {K_F4, "\033[004q"}, | |
703 {K_F5, "\033[005q"}, | |
704 {K_F6, "\033[006q"}, | |
705 {K_F7, "\033[007q"}, | |
706 {K_F8, "\033[008q"}, | |
707 {K_F9, "\033[009q"}, | |
708 {K_F10, "\033[010q"}, | |
709 {K_F11, "\033[011q"}, | |
710 {K_F12, "\033[012q"}, | |
711 {K_S_F1, "\033[013q"}, | |
712 {K_S_F2, "\033[014q"}, | |
713 {K_S_F3, "\033[015q"}, | |
714 {K_S_F4, "\033[016q"}, | |
715 {K_S_F5, "\033[017q"}, | |
716 {K_S_F6, "\033[018q"}, | |
717 {K_S_F7, "\033[019q"}, | |
718 {K_S_F8, "\033[020q"}, | |
719 {K_S_F9, "\033[021q"}, | |
720 {K_S_F10, "\033[022q"}, | |
721 {K_S_F11, "\033[023q"}, | |
722 {K_S_F12, "\033[024q"}, | |
723 {K_INS, "\033[139q"}, | |
724 {K_HOME, "\033[H"}, | |
725 {K_END, "\033[146q"}, | |
726 {K_PAGEUP, "\033[150q"}, | |
727 {K_PAGEDOWN, "\033[154q"}, | |
29883
1342ee83ab97
patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents:
29869
diff
changeset
|
728 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
729 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
730 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
731 |
7 | 732 /* |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
733 * These codes are valid when nansi.sys or equivalent has been installed. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
734 * Function keys on a PC are preceded with a NUL. These are converted into |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
735 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
736 * CTRL-arrow is used instead of SHIFT-arrow. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
737 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
738 static tcap_entry_T builtin_pcansi[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
739 {(int)KS_DL, "\033[M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
740 {(int)KS_AL, "\033[L"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
741 {(int)KS_CE, "\033[K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
742 {(int)KS_CL, "\033[2J"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
743 {(int)KS_ME, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
744 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
745 {(int)KS_MD, "\033[1m"}, // bold: white text |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
746 {(int)KS_SE, "\033[0m"}, // standout end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
747 {(int)KS_SO, "\033[31m"}, // standout: white on blue |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
748 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
749 {(int)KS_CZR, "\033[0m"}, // italic mode end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
750 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
751 {(int)KS_UE, "\033[0m"}, // underscore mode end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
752 {(int)KS_CCO, "8"}, // allow 8 colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
753 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
754 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
755 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
756 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
757 {(int)KS_CAB, "\033[4%dm"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
758 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
759 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
760 {(int)KS_OP, "\033[0m"}, // reset colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
761 {(int)KS_MS, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
762 {(int)KS_UT, "y"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
763 {(int)KS_LE, "\b"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
764 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
765 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
766 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
767 {(int)KS_CM, "\033[%i%d;%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
768 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
769 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
770 {(int)KS_CRI, "\033[%p1%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
771 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
772 {(int)KS_CRI, "\033[%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
773 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
774 {K_UP, "\316H"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
775 {K_DOWN, "\316P"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
776 {K_LEFT, "\316K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
777 {K_RIGHT, "\316M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
778 {K_S_LEFT, "\316s"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
779 {K_S_RIGHT, "\316t"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
780 {K_F1, "\316;"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
781 {K_F2, "\316<"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
782 {K_F3, "\316="}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
783 {K_F4, "\316>"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
784 {K_F5, "\316?"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
785 {K_F6, "\316@"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
786 {K_F7, "\316A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
787 {K_F8, "\316B"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
788 {K_F9, "\316C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
789 {K_F10, "\316D"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
790 {K_F11, "\316\205"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
791 {K_F12, "\316\206"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
792 {K_S_F1, "\316T"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
793 {K_S_F2, "\316U"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
794 {K_S_F3, "\316V"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
795 {K_S_F4, "\316W"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
796 {K_S_F5, "\316X"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
797 {K_S_F6, "\316Y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
798 {K_S_F7, "\316Z"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
799 {K_S_F8, "\316["}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
800 {K_S_F9, "\316\\"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
801 {K_S_F10, "\316]"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
802 {K_S_F11, "\316\207"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
803 {K_S_F12, "\316\210"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
804 {K_INS, "\316R"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
805 {K_DEL, "\316S"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
806 {K_HOME, "\316G"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
807 {K_END, "\316O"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
808 {K_PAGEDOWN, "\316Q"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
809 {K_PAGEUP, "\316I"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
810 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
811 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
812 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
813 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
814 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
815 * These codes are valid for the Win32 Console . The entries that start with |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
816 * ESC | are translated into console calls in os_win32.c. The function keys |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
817 * are also translated in os_win32.c. |
7 | 818 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
819 static tcap_entry_T builtin_win32[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
820 {(int)KS_CE, "\033|K"}, // clear to end of line |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
821 {(int)KS_AL, "\033|L"}, // add new blank line |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
822 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
823 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
824 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
825 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
826 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
827 {(int)KS_DL, "\033|M"}, // delete line |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
828 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
829 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
830 {(int)KS_CSV, "\033|%p1%d;%p2%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
831 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
832 {(int)KS_CDL, "\033|%dM"}, // delete number of lines |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
833 {(int)KS_CSV, "\033|%d;%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
834 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
835 {(int)KS_CL, "\033|J"}, // clear screen |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
836 {(int)KS_CD, "\033|j"}, // clear to end of display |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
837 {(int)KS_VI, "\033|v"}, // cursor invisible |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
838 {(int)KS_VE, "\033|V"}, // cursor visible |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
839 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
840 {(int)KS_ME, "\033|0m"}, // normal |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
841 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
842 {(int)KS_MD, "\033|15m"}, // bold: white on black |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
843 #if 1 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
844 {(int)KS_SO, "\033|31m"}, // standout: white on blue |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
845 {(int)KS_SE, "\033|0m"}, // standout end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
846 #else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
847 {(int)KS_SO, "\033|F"}, // standout: high intensity |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
848 {(int)KS_SE, "\033|f"}, // standout end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
849 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
850 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
851 {(int)KS_CZR, "\033|0m"}, // italic end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
852 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
853 {(int)KS_UE, "\033|0m"}, // underscore end |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
854 {(int)KS_CCO, "16"}, // allow 16 colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
855 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
856 {(int)KS_CAB, "\033|%p1%db"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
857 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
858 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
859 {(int)KS_CAB, "\033|%db"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
860 {(int)KS_CAF, "\033|%df"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
861 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
862 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
863 {(int)KS_MS, "y"}, // save to move cur in reverse mode |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
864 {(int)KS_UT, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
865 {(int)KS_XN, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
866 {(int)KS_LE, "\b"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
867 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
868 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
869 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
870 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
871 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
872 {(int)KS_VB, "\033|B"}, // visual bell |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
873 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
874 {(int)KS_TE, "\033|E"}, // out of termcap mode |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
875 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
876 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
877 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
878 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
879 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
880 # ifdef FEAT_TERMGUICOLORS |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
881 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
882 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
883 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
884 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
885 {K_UP, "\316H"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
886 {K_DOWN, "\316P"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
887 {K_LEFT, "\316K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
888 {K_RIGHT, "\316M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
889 {K_S_UP, "\316\304"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
890 {K_S_DOWN, "\316\317"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
891 {K_S_LEFT, "\316\311"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
892 {K_C_LEFT, "\316s"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
893 {K_S_RIGHT, "\316\313"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
894 {K_C_RIGHT, "\316t"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
895 {K_S_TAB, "\316\017"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
896 {K_F1, "\316;"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
897 {K_F2, "\316<"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
898 {K_F3, "\316="}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
899 {K_F4, "\316>"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
900 {K_F5, "\316?"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
901 {K_F6, "\316@"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
902 {K_F7, "\316A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
903 {K_F8, "\316B"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
904 {K_F9, "\316C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
905 {K_F10, "\316D"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
906 {K_F11, "\316\205"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
907 {K_F12, "\316\206"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
908 {K_S_F1, "\316T"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
909 {K_S_F2, "\316U"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
910 {K_S_F3, "\316V"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
911 {K_S_F4, "\316W"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
912 {K_S_F5, "\316X"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
913 {K_S_F6, "\316Y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
914 {K_S_F7, "\316Z"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
915 {K_S_F8, "\316["}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
916 {K_S_F9, "\316\\"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
917 {K_S_F10, "\316]"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
918 {K_S_F11, "\316\207"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
919 {K_S_F12, "\316\210"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
920 {K_INS, "\316R"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
921 {K_DEL, "\316S"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
922 {K_HOME, "\316G"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
923 {K_S_HOME, "\316\302"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
924 {K_C_HOME, "\316w"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
925 {K_END, "\316O"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
926 {K_S_END, "\316\315"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
927 {K_C_END, "\316u"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
928 {K_PAGEDOWN, "\316Q"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
929 {K_PAGEUP, "\316I"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
930 {K_KPLUS, "\316N"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
931 {K_KMINUS, "\316J"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
932 {K_KMULTIPLY, "\316\067"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
933 {K_K0, "\316\332"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
934 {K_K1, "\316\336"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
935 {K_K2, "\316\342"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
936 {K_K3, "\316\346"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
937 {K_K4, "\316\352"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
938 {K_K5, "\316\356"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
939 {K_K6, "\316\362"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
940 {K_K7, "\316\366"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
941 {K_K8, "\316\372"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
942 {K_K9, "\316\376"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
943 {K_BS, "\316x"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
944 {K_S_BS, "\316y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
945 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
946 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
947 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
948 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
949 #if defined(FEAT_GUI) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
950 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
951 * GUI uses made-up codes, only used inside Vim. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
952 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
953 static tcap_entry_T builtin_gui[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
954 {(int)KS_CE, "\033|$"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
955 {(int)KS_AL, "\033|i"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
956 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
957 {(int)KS_CAL, "\033|%p1%dI"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
958 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
959 {(int)KS_CAL, "\033|%dI"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
960 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
961 {(int)KS_DL, "\033|d"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
962 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
963 {(int)KS_CDL, "\033|%p1%dD"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
964 {(int)KS_CS, "\033|%p1%d;%p2%dR"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
965 {(int)KS_CSV, "\033|%p1%d;%p2%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
966 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
967 {(int)KS_CDL, "\033|%dD"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
968 {(int)KS_CS, "\033|%d;%dR"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
969 {(int)KS_CSV, "\033|%d;%dV"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
970 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
971 {(int)KS_CL, "\033|C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
972 // attributes switched on with 'h', off with * 'H' |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
973 {(int)KS_ME, "\033|31H"}, // HL_ALL |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
974 {(int)KS_MR, "\033|1h"}, // HL_INVERSE |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
975 {(int)KS_MD, "\033|2h"}, // HL_BOLD |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
976 {(int)KS_SE, "\033|16H"}, // HL_STANDOUT |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
977 {(int)KS_SO, "\033|16h"}, // HL_STANDOUT |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
978 {(int)KS_UE, "\033|8H"}, // HL_UNDERLINE |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
979 {(int)KS_US, "\033|8h"}, // HL_UNDERLINE |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
980 {(int)KS_UCE, "\033|8C"}, // HL_UNDERCURL |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
981 {(int)KS_UCS, "\033|8c"}, // HL_UNDERCURL |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
982 {(int)KS_STE, "\033|4C"}, // HL_STRIKETHROUGH |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
983 {(int)KS_STS, "\033|4c"}, // HL_STRIKETHROUGH |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
984 {(int)KS_CZR, "\033|4H"}, // HL_ITALIC |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
985 {(int)KS_CZH, "\033|4h"}, // HL_ITALIC |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
986 {(int)KS_VB, "\033|f"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
987 {(int)KS_MS, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
988 {(int)KS_UT, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
989 {(int)KS_XN, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
990 {(int)KS_LE, "\b"}, // cursor-left = BS |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
991 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
992 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
993 {(int)KS_CM, "\033|%p1%d;%p2%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
994 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
995 {(int)KS_CM, "\033|%d;%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
996 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
997 // there are no key sequences here, the GUI sequences are recognized |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
998 // in check_termcode() |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
999 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1000 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1001 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1002 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1003 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1004 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1005 * Amiga console window, default for Amiga. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1006 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1007 static tcap_entry_T builtin_amiga[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1008 {(int)KS_CE, "\033[K"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1009 {(int)KS_CD, "\033[J"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1010 {(int)KS_AL, "\033[L"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1011 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1012 {(int)KS_CAL, "\033[%p1%dL"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1013 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1014 {(int)KS_CAL, "\033[%dL"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1015 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1016 {(int)KS_DL, "\033[M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1017 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1018 {(int)KS_CDL, "\033[%p1%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1019 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1020 {(int)KS_CDL, "\033[%dM"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1021 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1022 {(int)KS_CL, "\014"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1023 {(int)KS_VI, "\033[0 p"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1024 {(int)KS_VE, "\033[1 p"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1025 {(int)KS_ME, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1026 {(int)KS_MR, "\033[7m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1027 {(int)KS_MD, "\033[1m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1028 {(int)KS_SE, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1029 {(int)KS_SO, "\033[33m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1030 {(int)KS_US, "\033[4m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1031 {(int)KS_UE, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1032 {(int)KS_CZH, "\033[3m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1033 {(int)KS_CZR, "\033[0m"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1034 #if defined(__amigaos4__) || defined(__MORPHOS__) || defined(__AROS__) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1035 {(int)KS_CCO, "8"}, // allow 8 colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1036 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1037 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1038 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1039 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1040 {(int)KS_CAB, "\033[4%dm"}, // set background color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1041 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1042 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1043 {(int)KS_OP, "\033[m"}, // reset colors |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1044 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1045 {(int)KS_MS, "y"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1046 {(int)KS_UT, "y"}, // guessed |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1047 {(int)KS_LE, "\b"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1048 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1049 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1050 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1051 {(int)KS_CM, "\033[%i%d;%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1052 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1053 #if defined(__MORPHOS__) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1054 {(int)KS_SR, "\033M"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1055 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1056 # ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1057 {(int)KS_CRI, "\033[%p1%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1058 # else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1059 {(int)KS_CRI, "\033[%dC"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1060 # endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1061 {K_UP, "\233A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1062 {K_DOWN, "\233B"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1063 {K_LEFT, "\233D"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1064 {K_RIGHT, "\233C"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1065 {K_S_UP, "\233T"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1066 {K_S_DOWN, "\233S"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1067 {K_S_LEFT, "\233 A"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1068 {K_S_RIGHT, "\233 @"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1069 {K_S_TAB, "\233Z"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1070 {K_F1, "\233\060~"},// some compilers don't dig "\2330" |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1071 {K_F2, "\233\061~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1072 {K_F3, "\233\062~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1073 {K_F4, "\233\063~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1074 {K_F5, "\233\064~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1075 {K_F6, "\233\065~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1076 {K_F7, "\233\066~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1077 {K_F8, "\233\067~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1078 {K_F9, "\233\070~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1079 {K_F10, "\233\071~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1080 {K_S_F1, "\233\061\060~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1081 {K_S_F2, "\233\061\061~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1082 {K_S_F3, "\233\061\062~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1083 {K_S_F4, "\233\061\063~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1084 {K_S_F5, "\233\061\064~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1085 {K_S_F6, "\233\061\065~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1086 {K_S_F7, "\233\061\066~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1087 {K_S_F8, "\233\061\067~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1088 {K_S_F9, "\233\061\070~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1089 {K_S_F10, "\233\061\071~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1090 {K_HELP, "\233?~"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1091 {K_INS, "\233\064\060~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1092 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1093 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1094 {K_HOME, "\233\064\064~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1095 {K_END, "\233\064\065~"}, // 101 key keyboard |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1096 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1097 {BT_EXTRA_KEYS, ""}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1098 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1099 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1100 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1101 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1102 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1103 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1104 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1105 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1106 * The most minimal terminal: only clear screen and cursor positioning. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1107 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1108 static tcap_entry_T builtin_dumb[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1109 {(int)KS_CL, "\014"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1110 #ifdef TERMINFO |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1111 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1112 #else |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1113 {(int)KS_CM, "\033[%i%d;%dH"}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1114 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1115 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1116 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1117 }; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1118 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1119 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1120 * Terminal used for debugging. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1121 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1122 static tcap_entry_T builtin_debug[] = { |
7 | 1123 {(int)KS_CE, "[CE]"}, |
1124 {(int)KS_CD, "[CD]"}, | |
1125 {(int)KS_AL, "[AL]"}, | |
1126 # ifdef TERMINFO | |
1127 {(int)KS_CAL, "[CAL%p1%d]"}, | |
1128 # else | |
1129 {(int)KS_CAL, "[CAL%d]"}, | |
1130 # endif | |
1131 {(int)KS_DL, "[DL]"}, | |
1132 # ifdef TERMINFO | |
1133 {(int)KS_CDL, "[CDL%p1%d]"}, | |
1134 # else | |
1135 {(int)KS_CDL, "[CDL%d]"}, | |
1136 # endif | |
1137 # ifdef TERMINFO | |
1138 {(int)KS_CS, "[%p1%dCS%p2%d]"}, | |
1139 # else | |
1140 {(int)KS_CS, "[%dCS%d]"}, | |
1141 # endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
1142 # ifdef TERMINFO |
7 | 1143 {(int)KS_CSV, "[%p1%dCSV%p2%d]"}, |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
1144 # else |
7 | 1145 {(int)KS_CSV, "[%dCSV%d]"}, |
1146 # endif | |
1147 # ifdef TERMINFO | |
1148 {(int)KS_CAB, "[CAB%p1%d]"}, | |
1149 {(int)KS_CAF, "[CAF%p1%d]"}, | |
1150 {(int)KS_CSB, "[CSB%p1%d]"}, | |
1151 {(int)KS_CSF, "[CSF%p1%d]"}, | |
1152 # else | |
1153 {(int)KS_CAB, "[CAB%d]"}, | |
1154 {(int)KS_CAF, "[CAF%d]"}, | |
1155 {(int)KS_CSB, "[CSB%d]"}, | |
1156 {(int)KS_CSF, "[CSF%d]"}, | |
1157 # endif | |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1158 {(int)KS_CAU, "[CAU%d]"}, |
7 | 1159 {(int)KS_OP, "[OP]"}, |
1160 {(int)KS_LE, "[LE]"}, | |
1161 {(int)KS_CL, "[CL]"}, | |
1162 {(int)KS_VI, "[VI]"}, | |
1163 {(int)KS_VE, "[VE]"}, | |
1164 {(int)KS_VS, "[VS]"}, | |
1165 {(int)KS_ME, "[ME]"}, | |
1166 {(int)KS_MR, "[MR]"}, | |
1167 {(int)KS_MB, "[MB]"}, | |
1168 {(int)KS_MD, "[MD]"}, | |
1169 {(int)KS_SE, "[SE]"}, | |
1170 {(int)KS_SO, "[SO]"}, | |
1171 {(int)KS_UE, "[UE]"}, | |
1172 {(int)KS_US, "[US]"}, | |
205 | 1173 {(int)KS_UCE, "[UCE]"}, |
1174 {(int)KS_UCS, "[UCS]"}, | |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1175 {(int)KS_USS, "[USS]"}, |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1176 {(int)KS_DS, "[DS]"}, |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1177 {(int)KS_CDS, "[CDS]"}, |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1178 {(int)KS_STE, "[STE]"}, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1179 {(int)KS_STS, "[STS]"}, |
7 | 1180 {(int)KS_MS, "[MS]"}, |
1181 {(int)KS_UT, "[UT]"}, | |
6602 | 1182 {(int)KS_XN, "[XN]"}, |
7 | 1183 # ifdef TERMINFO |
1184 {(int)KS_CM, "[%p1%dCM%p2%d]"}, | |
1185 # else | |
1186 {(int)KS_CM, "[%dCM%d]"}, | |
1187 # endif | |
1188 {(int)KS_SR, "[SR]"}, | |
1189 # ifdef TERMINFO | |
1190 {(int)KS_CRI, "[CRI%p1%d]"}, | |
1191 # else | |
1192 {(int)KS_CRI, "[CRI%d]"}, | |
1193 # endif | |
1194 {(int)KS_VB, "[VB]"}, | |
1195 {(int)KS_KS, "[KS]"}, | |
1196 {(int)KS_KE, "[KE]"}, | |
1197 {(int)KS_TI, "[TI]"}, | |
1198 {(int)KS_TE, "[TE]"}, | |
1199 {(int)KS_CIS, "[CIS]"}, | |
1200 {(int)KS_CIE, "[CIE]"}, | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
1201 {(int)KS_CSC, "[CSC]"}, |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
1202 {(int)KS_CEC, "[CEC]"}, |
7 | 1203 {(int)KS_TS, "[TS]"}, |
1204 {(int)KS_FS, "[FS]"}, | |
1205 # ifdef TERMINFO | |
1206 {(int)KS_CWS, "[%p1%dCWS%p2%d]"}, | |
1207 {(int)KS_CWP, "[%p1%dCWP%p2%d]"}, | |
1208 # else | |
1209 {(int)KS_CWS, "[%dCWS%d]"}, | |
1210 {(int)KS_CWP, "[%dCWP%d]"}, | |
1211 # endif | |
1212 {(int)KS_CRV, "[CRV]"}, | |
4215 | 1213 {(int)KS_U7, "[U7]"}, |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
1214 {(int)KS_RFG, "[RFG]"}, |
6874 | 1215 {(int)KS_RBG, "[RBG]"}, |
7 | 1216 {K_UP, "[KU]"}, |
1217 {K_DOWN, "[KD]"}, | |
1218 {K_LEFT, "[KL]"}, | |
1219 {K_RIGHT, "[KR]"}, | |
180 | 1220 {K_XUP, "[xKU]"}, |
1221 {K_XDOWN, "[xKD]"}, | |
1222 {K_XLEFT, "[xKL]"}, | |
1223 {K_XRIGHT, "[xKR]"}, | |
7 | 1224 {K_S_UP, "[S-KU]"}, |
1225 {K_S_DOWN, "[S-KD]"}, | |
1226 {K_S_LEFT, "[S-KL]"}, | |
1227 {K_C_LEFT, "[C-KL]"}, | |
1228 {K_S_RIGHT, "[S-KR]"}, | |
1229 {K_C_RIGHT, "[C-KR]"}, | |
1230 {K_F1, "[F1]"}, | |
1231 {K_XF1, "[xF1]"}, | |
1232 {K_F2, "[F2]"}, | |
1233 {K_XF2, "[xF2]"}, | |
1234 {K_F3, "[F3]"}, | |
1235 {K_XF3, "[xF3]"}, | |
1236 {K_F4, "[F4]"}, | |
1237 {K_XF4, "[xF4]"}, | |
1238 {K_F5, "[F5]"}, | |
1239 {K_F6, "[F6]"}, | |
1240 {K_F7, "[F7]"}, | |
1241 {K_F8, "[F8]"}, | |
1242 {K_F9, "[F9]"}, | |
1243 {K_F10, "[F10]"}, | |
1244 {K_F11, "[F11]"}, | |
1245 {K_F12, "[F12]"}, | |
1246 {K_S_F1, "[S-F1]"}, | |
1247 {K_S_XF1, "[S-xF1]"}, | |
1248 {K_S_F2, "[S-F2]"}, | |
1249 {K_S_XF2, "[S-xF2]"}, | |
1250 {K_S_F3, "[S-F3]"}, | |
1251 {K_S_XF3, "[S-xF3]"}, | |
1252 {K_S_F4, "[S-F4]"}, | |
1253 {K_S_XF4, "[S-xF4]"}, | |
1254 {K_S_F5, "[S-F5]"}, | |
1255 {K_S_F6, "[S-F6]"}, | |
1256 {K_S_F7, "[S-F7]"}, | |
1257 {K_S_F8, "[S-F8]"}, | |
1258 {K_S_F9, "[S-F9]"}, | |
1259 {K_S_F10, "[S-F10]"}, | |
1260 {K_S_F11, "[S-F11]"}, | |
1261 {K_S_F12, "[S-F12]"}, | |
1262 {K_HELP, "[HELP]"}, | |
1263 {K_UNDO, "[UNDO]"}, | |
1264 {K_BS, "[BS]"}, | |
1265 {K_INS, "[INS]"}, | |
1266 {K_KINS, "[KINS]"}, | |
1267 {K_DEL, "[DEL]"}, | |
1268 {K_KDEL, "[KDEL]"}, | |
1269 {K_HOME, "[HOME]"}, | |
1270 {K_S_HOME, "[C-HOME]"}, | |
1271 {K_C_HOME, "[C-HOME]"}, | |
1272 {K_KHOME, "[KHOME]"}, | |
1273 {K_XHOME, "[XHOME]"}, | |
230 | 1274 {K_ZHOME, "[ZHOME]"}, |
7 | 1275 {K_END, "[END]"}, |
1276 {K_S_END, "[C-END]"}, | |
1277 {K_C_END, "[C-END]"}, | |
1278 {K_KEND, "[KEND]"}, | |
1279 {K_XEND, "[XEND]"}, | |
230 | 1280 {K_ZEND, "[ZEND]"}, |
7 | 1281 {K_PAGEUP, "[PAGEUP]"}, |
1282 {K_PAGEDOWN, "[PAGEDOWN]"}, | |
1283 {K_KPAGEUP, "[KPAGEUP]"}, | |
1284 {K_KPAGEDOWN, "[KPAGEDOWN]"}, | |
1285 {K_MOUSE, "[MOUSE]"}, | |
1286 {K_KPLUS, "[KPLUS]"}, | |
1287 {K_KMINUS, "[KMINUS]"}, | |
1288 {K_KDIVIDE, "[KDIVIDE]"}, | |
1289 {K_KMULTIPLY, "[KMULTIPLY]"}, | |
1290 {K_KENTER, "[KENTER]"}, | |
1291 {K_KPOINT, "[KPOINT]"}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1292 {K_PS, "[PASTE-START]"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1293 {K_PE, "[PASTE-END]"}, |
7 | 1294 {K_K0, "[K0]"}, |
1295 {K_K1, "[K1]"}, | |
1296 {K_K2, "[K2]"}, | |
1297 {K_K3, "[K3]"}, | |
1298 {K_K4, "[K4]"}, | |
1299 {K_K5, "[K5]"}, | |
1300 {K_K6, "[K6]"}, | |
1301 {K_K7, "[K7]"}, | |
1302 {K_K8, "[K8]"}, | |
1303 {K_K9, "[K9]"}, | |
1304 | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1305 {(int)KS_NAME, NULL} // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1306 }; |
7 | 1307 |
1308 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1309 * List of builtin terminals. |
7 | 1310 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1311 typedef struct { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1312 char *bitc_name; // name, such as "xterm" |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1313 tcap_entry_T *bitc_table; // table with entries for bitc_name |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1314 } builtin_tcap_T; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1315 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1316 builtin_tcap_T builtin_terminals[] = { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1317 // Unix and Generic |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1318 {"ansi", builtin_ansi}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1319 {"vt320", builtin_vt320}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1320 {"vt52", builtin_vt52}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1321 {"xterm", builtin_xterm}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1322 {"iris-ansi", builtin_iris_ansi}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1323 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1324 // MS-Windows |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1325 {"pcansi", builtin_pcansi}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1326 {"win32", builtin_win32}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1327 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1328 // Other systems |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1329 #if defined(FEAT_GUI) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1330 {"gui", builtin_gui}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1331 #endif |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1332 {"amiga", builtin_amiga}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1333 {"dumb", builtin_dumb}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1334 {"debug", builtin_debug}, |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1335 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1336 {NULL, NULL}, // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1337 }; |
7 | 1338 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1339 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
1340 static guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1341 termgui_mch_get_color(char_u *name) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1342 { |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
1343 return gui_get_color_cmn(name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1344 } |
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 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1347 termgui_get_color(char_u *name) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1348 { |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1349 guicolor_T t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1350 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1351 if (*name == NUL) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1352 return INVALCOLOR; |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1353 t = termgui_mch_get_color(name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1354 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1355 if (t == INVALCOLOR) |
26057
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
25475
diff
changeset
|
1356 semsg(_(e_cannot_allocate_color_str), name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1357 return t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1358 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1359 |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1360 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1361 termgui_mch_get_rgb(guicolor_T color) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1362 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1363 return color; |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1364 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1365 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1366 |
7 | 1367 /* |
1368 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM. | |
1369 */ | |
1370 #ifdef AMIGA | |
1371 # define DEFAULT_TERM (char_u *)"amiga" | |
1372 #endif | |
1373 | |
1374 #ifdef MSWIN | |
1375 # define DEFAULT_TERM (char_u *)"win32" | |
1376 #endif | |
1377 | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
21226
diff
changeset
|
1378 #if defined(UNIX) |
7 | 1379 # define DEFAULT_TERM (char_u *)"ansi" |
1380 #endif | |
1381 | |
1382 #ifdef VMS | |
1383 # define DEFAULT_TERM (char_u *)"vt320" | |
1384 #endif | |
1385 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1386 #ifdef __HAIKU__ |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1387 # undef DEFAULT_TERM |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1388 # define DEFAULT_TERM (char_u *)"xterm" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1389 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1390 |
7 | 1391 #ifndef DEFAULT_TERM |
1392 # define DEFAULT_TERM (char_u *)"dumb" | |
1393 #endif | |
1394 | |
1395 /* | |
1396 * Term_strings contains currently used terminal output strings. | |
1397 * It is initialized with the default values by parse_builtin_tcap(). | |
1398 * The values can be changed by setting the option with the same name. | |
1399 */ | |
1400 char_u *(term_strings[(int)KS_LAST + 1]); | |
1401 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1402 static int need_gather = FALSE; // need to fill termleader[] |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1403 static char_u termleader[256 + 1]; // for check_termcode() |
7 | 1404 #ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1405 static int check_for_codes = FALSE; // check for key code response |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1406 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1407 /* |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1408 * Structure and table to store terminal features that can be detected by |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1409 * querying the terminal. Either by inspecting the termresponse or a more |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1410 * specific request. Besides this there are: |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1411 * t_colors - number of colors supported |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1412 */ |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1413 typedef struct { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1414 char *tpr_name; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1415 int tpr_set_by_termresponse; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1416 int tpr_status; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1417 } termprop_T; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1418 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1419 // Values for tpr_status. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1420 #define TPR_UNKNOWN 'u' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1421 #define TPR_YES 'y' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1422 #define TPR_NO 'n' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1423 #define TPR_MOUSE_XTERM 'x' // use "xterm" for 'ttymouse' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1424 #define TPR_MOUSE_XTERM2 '2' // use "xterm2" for 'ttymouse' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1425 #define TPR_MOUSE_SGR 's' // use "sgr" for 'ttymouse' |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1426 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1427 // can request the cursor style without messing up the display |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1428 #define TPR_CURSOR_STYLE 0 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1429 // can request the cursor blink mode without messing up the display |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1430 #define TPR_CURSOR_BLINK 1 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1431 // can set the underline color with t_8u without resetting other colors |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1432 #define TPR_UNDERLINE_RGB 2 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1433 // mouse support - TPR_MOUSE_XTERM, TPR_MOUSE_XTERM2 or TPR_MOUSE_SGR |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1434 #define TPR_MOUSE 3 |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1435 // term response indicates kitty |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1436 #define TPR_KITTY 4 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1437 // table size |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1438 #define TPR_COUNT 5 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1439 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1440 static termprop_T term_props[TPR_COUNT]; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1441 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1442 /* |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1443 * Initialize the term_props table. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1444 * When "all" is FALSE only set those that are detected from the version |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1445 * response. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1446 */ |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1447 void |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1448 init_term_props(int all) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1449 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1450 int i; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1451 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1452 term_props[TPR_CURSOR_STYLE].tpr_name = "cursor_style"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1453 term_props[TPR_CURSOR_STYLE].tpr_set_by_termresponse = FALSE; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1454 term_props[TPR_CURSOR_BLINK].tpr_name = "cursor_blink_mode"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1455 term_props[TPR_CURSOR_BLINK].tpr_set_by_termresponse = FALSE; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1456 term_props[TPR_UNDERLINE_RGB].tpr_name = "underline_rgb"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1457 term_props[TPR_UNDERLINE_RGB].tpr_set_by_termresponse = TRUE; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1458 term_props[TPR_MOUSE].tpr_name = "mouse"; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1459 term_props[TPR_MOUSE].tpr_set_by_termresponse = TRUE; |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1460 term_props[TPR_KITTY].tpr_name = "kitty"; |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
1461 term_props[TPR_KITTY].tpr_set_by_termresponse = FALSE; |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1462 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1463 for (i = 0; i < TPR_COUNT; ++i) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1464 if (all || term_props[i].tpr_set_by_termresponse) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1465 term_props[i].tpr_status = TPR_UNKNOWN; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
1466 } |
7 | 1467 #endif |
1468 | |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1469 #if defined(FEAT_EVAL) || defined(PROTO) |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1470 void |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1471 f_terminalprops(typval_T *argvars UNUSED, typval_T *rettv) |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1472 { |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1473 # ifdef FEAT_TERMRESPONSE |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1474 int i; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1475 # endif |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1476 |
29175
755ab148288b
patch 8.2.5107: some callers of rettv_list_alloc() check for not OK
Bram Moolenaar <Bram@vim.org>
parents:
29105
diff
changeset
|
1477 if (rettv_dict_alloc(rettv) == FAIL) |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1478 return; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1479 # ifdef FEAT_TERMRESPONSE |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1480 for (i = 0; i < TPR_COUNT; ++i) |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1481 { |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1482 char_u value[2]; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1483 |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1484 value[0] = term_props[i].tpr_status; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1485 value[1] = NUL; |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1486 dict_add_string(rettv->vval.v_dict, term_props[i].tpr_name, value); |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1487 } |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1488 # endif |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1489 } |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1490 #endif |
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
1491 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1492 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1493 * Find the builtin termcap entries for "term". |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1494 * This also recognizes similar names. E.g. "xterm-256color" finds the "xterm" |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1495 * entry. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1496 * Returns NULL when "term" is not found. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1497 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1498 static tcap_entry_T * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1499 find_builtin_term(char_u *term) |
7 | 1500 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1501 for (int i = 0; ; ++i) |
7 | 1502 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1503 char_u *name = (char_u *)builtin_terminals[i].bitc_name; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1504 if (name == NULL) // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1505 break; |
7 | 1506 #ifdef UNIX |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1507 if (STRCMP(name, "iris-ansi") == 0 && vim_is_iris(term)) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1508 return builtin_terminals[i].bitc_table; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1509 if (STRCMP(name, "xterm") == 0 && vim_is_xterm(term)) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1510 return builtin_terminals[i].bitc_table; |
7 | 1511 #endif |
1512 #ifdef VMS | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1513 if (STRCMP(name, "vt320") == 0 && vim_is_vt300(term)) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1514 return builtin_terminals[i].bitc_table; |
7 | 1515 #endif |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1516 if (STRCMP(term, name) == 0) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1517 return builtin_terminals[i].bitc_table; |
7 | 1518 } |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1519 return NULL; |
7 | 1520 } |
1521 | |
1522 /* | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1523 * Apply entries from a builtin termcap. |
7 | 1524 */ |
1525 static void | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1526 apply_builtin_tcap(char_u *term, tcap_entry_T *entries, int overwrite) |
7 | 1527 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1528 int term_8bit = term_is_8bit(term); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1529 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1530 for (tcap_entry_T *p = entries; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1531 p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p) |
7 | 1532 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1533 if ((int)p->bt_entry >= 0) // KS_xx entry |
7 | 1534 { |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1535 // Only set the value if it wasn't set yet or "overwrite" is TRUE. |
7 | 1536 if (term_strings[p->bt_entry] == NULL |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1537 || term_strings[p->bt_entry] == empty_option |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1538 || overwrite) |
7 | 1539 { |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1540 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1541 int opt_idx = -1; |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1542 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1543 // 8bit terminal: use CSI instead of <Esc>[ |
7 | 1544 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0) |
1545 { | |
1546 char_u *s, *t; | |
1547 | |
1548 s = vim_strsave((char_u *)p->bt_string); | |
1549 if (s != NULL) | |
1550 { | |
1551 for (t = s; *t; ++t) | |
1552 if (term_7to8bit(t)) | |
1553 { | |
1554 *t = term_7to8bit(t); | |
14321
6bcac243b9de
patch 8.1.0176: overlapping string argument for strcpy()
Christian Brabandt <cb@256bit.org>
parents:
14282
diff
changeset
|
1555 STRMOVE(t + 1, t + 2); |
7 | 1556 } |
1557 term_strings[p->bt_entry] = s; | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1558 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1559 opt_idx = |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1560 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1561 set_term_option_alloced( |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1562 &term_strings[p->bt_entry]); |
7 | 1563 } |
1564 } | |
1565 else | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1566 { |
7 | 1567 term_strings[p->bt_entry] = (char_u *)p->bt_string; |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1568 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1569 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1570 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1571 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1572 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1573 set_term_option_sctx_idx(NULL, opt_idx); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1574 #endif |
7 | 1575 } |
1576 } | |
1577 else | |
1578 { | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1579 char_u name[2]; |
7 | 1580 name[0] = KEY2TERMCAP0((int)p->bt_entry); |
1581 name[1] = KEY2TERMCAP1((int)p->bt_entry); | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1582 if (find_termcode(name) == NULL || overwrite) |
7 | 1583 add_termcode(name, (char_u *)p->bt_string, term_8bit); |
1584 } | |
1585 } | |
1586 } | |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1587 |
7 | 1588 /* |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1589 * Parsing of the builtin termcap entries. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1590 * Caller should check if "term" is a valid builtin terminal name. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1591 * The terminal's name is not set, as this is already done in termcapinit(). |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1592 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1593 static void |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1594 parse_builtin_tcap(char_u *term) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1595 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1596 tcap_entry_T *entries = find_builtin_term(term); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1597 if (entries != NULL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1598 apply_builtin_tcap(term, entries, FALSE); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1599 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1600 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1601 /* |
7 | 1602 * Set number of colors. |
1603 * Store it as a number in t_colors. | |
1604 * Store it as a string in T_CCO (using nr_colors[]). | |
1605 */ | |
19997
3d1de9093c01
patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
1606 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1607 set_color_count(int nr) |
7 | 1608 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1609 char_u nr_colors[20]; // string for number of colors |
7 | 1610 |
1611 t_colors = nr; | |
1612 if (t_colors > 1) | |
1613 sprintf((char *)nr_colors, "%d", t_colors); | |
1614 else | |
1615 *nr_colors = NUL; | |
694 | 1616 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0); |
7 | 1617 } |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1618 |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1619 #if defined(FEAT_TERMRESPONSE) |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1620 /* |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1621 * Set the color count to "val" and redraw if it changed. |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1622 */ |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1623 static void |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1624 may_adjust_color_count(int val) |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1625 { |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1626 if (val != t_colors) |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1627 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1628 // Nr of colors changed, initialize highlighting and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1629 // redraw everything. This causes a redraw, which usually |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1630 // clears the message. Try keeping the message if it |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1631 // might work. |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1632 set_keep_msg_from_hist(); |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1633 set_color_count(val); |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1634 init_highlight(TRUE, FALSE); |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1635 # ifdef DEBUG_TERMRESPONSE |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1636 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
1637 int r = redraw_asap(UPD_CLEAR); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1638 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1639 log_tr("Received t_Co, redraw_asap(): %d", r); |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1640 } |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1641 # else |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
1642 redraw_asap(UPD_CLEAR); |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1643 # endif |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1644 } |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
1645 } |
7 | 1646 #endif |
1647 | |
1648 #ifdef HAVE_TGETENT | |
1649 static char *(key_names[]) = | |
1650 { | |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1651 # ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1652 // Do this one first, it may cause a screen redraw. |
7 | 1653 "Co", |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1654 # endif |
7 | 1655 "ku", "kd", "kr", "kl", |
1656 "#2", "#4", "%i", "*7", | |
1657 "k1", "k2", "k3", "k4", "k5", "k6", | |
1658 "k7", "k8", "k9", "k;", "F1", "F2", | |
1659 "%1", "&8", "kb", "kI", "kD", "kh", | |
1660 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB", | |
1661 NULL | |
1662 }; | |
1663 #endif | |
1664 | |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1665 #ifdef HAVE_TGETENT |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1666 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1667 get_term_entries(int *height, int *width) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1668 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1669 static struct { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1670 enum SpecialKey dest; // index in term_strings[] |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1671 char *name; // termcap name for string |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1672 } string_names[] = |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1673 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1674 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1675 {KS_CL, "cl"}, {KS_CD, "cd"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1676 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1677 {KS_ME, "me"}, {KS_MR, "mr"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1678 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1679 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1680 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"}, |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
29286
diff
changeset
|
1681 {KS_USS, "Us"}, {KS_DS, "ds"}, {KS_CDS, "Ds"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1682 {KS_STE,"Te"}, {KS_STS,"Ts"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1683 {KS_CM, "cm"}, {KS_SR, "sr"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1684 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1685 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"}, |
18299
a9cf41bcb5d6
patch 8.1.2144: side effects when using t_ti to enable modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18295
diff
changeset
|
1686 {KS_CTI, "TI"}, {KS_CTE, "TE"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1687 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"}, |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1688 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_CAU,"AU"}, |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1689 {KS_LE, "le"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1690 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1691 {KS_VS, "vs"}, {KS_CVS, "VS"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1692 {KS_CIS, "IS"}, {KS_CIE, "IE"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1693 {KS_CSC, "SC"}, {KS_CEC, "EC"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1694 {KS_TS, "ts"}, {KS_FS, "fs"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1695 {KS_CWP, "WP"}, {KS_CWS, "WS"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1696 {KS_CSI, "SI"}, {KS_CEI, "EI"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1697 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"}, |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1698 {KS_8F, "8f"}, {KS_8B, "8b"}, {KS_8U, "8u"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1699 {KS_CBE, "BE"}, {KS_CBD, "BD"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1700 {KS_CPS, "PS"}, {KS_CPE, "PE"}, |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
1701 {KS_CST, "ST"}, {KS_CRT, "RT"}, |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
1702 {KS_SSI, "Si"}, {KS_SRI, "Ri"}, |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1703 {(enum SpecialKey)0, NULL} |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1704 }; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1705 int i; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1706 char_u *p; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1707 static char_u tstrbuf[TBUFSZ]; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1708 char_u *tp = tstrbuf; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1709 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1710 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1711 * get output strings |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1712 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1713 for (i = 0; string_names[i].name != NULL; ++i) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1714 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1715 if (TERM_STR(string_names[i].dest) == NULL |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1716 || TERM_STR(string_names[i].dest) == empty_option) |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1717 { |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1718 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp); |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1719 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1720 set_term_option_sctx_idx(string_names[i].name, -1); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1721 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1722 } |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1723 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1724 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1725 // tgetflag() returns 1 if the flag is present, 0 if not and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1726 // possibly -1 if the flag doesn't exist. |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1727 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1728 T_MS = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1729 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1730 T_XS = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1731 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1732 T_XN = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1733 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1734 T_DB = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1735 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1736 T_DA = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1737 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1738 T_UT = (char_u *)"y"; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1739 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1740 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1741 * get key codes |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1742 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1743 for (i = 0; key_names[i] != NULL; ++i) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1744 if (find_termcode((char_u *)key_names[i]) == NULL) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1745 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1746 p = TGETSTR(key_names[i], &tp); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1747 // if cursor-left == backspace, ignore it (televideo 925) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1748 if (p != NULL |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1749 && (*p != Ctrl_H |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1750 || key_names[i][0] != 'k' |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1751 || key_names[i][1] != 'l')) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1752 add_termcode((char_u *)key_names[i], p, FALSE); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1753 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1754 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1755 if (*height == 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1756 *height = tgetnum("li"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1757 if (*width == 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1758 *width = tgetnum("co"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1759 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1760 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1761 * Get number of colors (if not done already). |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1762 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1763 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option) |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1764 { |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1765 set_color_count(tgetnum("Co")); |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1766 #ifdef FEAT_EVAL |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1767 set_term_option_sctx_idx("Co", -1); |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1768 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1769 } |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1770 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1771 # ifndef hpux |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1772 BC = (char *)TGETSTR("bc", &tp); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1773 UP = (char *)TGETSTR("up", &tp); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1774 p = TGETSTR("pc", &tp); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1775 if (p) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1776 PC = *p; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1777 # endif |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1778 } |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1779 #endif |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1780 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1781 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1782 * Report "term" is not found and list the ones we do know about. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1783 */ |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1784 static void |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1785 report_term_error(char *error_msg, char_u *term) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1786 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1787 mch_errmsg("\r\n"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1788 if (error_msg != NULL) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1789 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1790 mch_errmsg(error_msg); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1791 mch_errmsg("\r\n"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1792 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1793 mch_errmsg("'"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1794 mch_errmsg((char *)term); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1795 mch_errmsg(_("' not known. Available builtin terminals are:")); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1796 mch_errmsg("\r\n"); |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1797 |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1798 for (int i = 0; ; ++i) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1799 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1800 char *name = builtin_terminals[i].bitc_name; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1801 if (name == NULL) // end marker |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1802 break; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1803 // Do not mention the "gui" entry, the user won't need to type it. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1804 if (STRCMP(name, "gui") != 0) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1805 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1806 #ifdef HAVE_TGETENT |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1807 mch_errmsg(" builtin_"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1808 #else |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1809 mch_errmsg(" "); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1810 #endif |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1811 mch_errmsg(name); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1812 mch_errmsg("\r\n"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1813 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1814 } |
21624
1d75baa22d9a
patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1815 // Output extra 'cmdheight' line breaks to avoid that the following error |
1d75baa22d9a
patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1816 // message overwrites the last terminal name. |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1817 for (int i = 1; i < p_ch; ++i) |
21624
1d75baa22d9a
patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1818 mch_errmsg("\r\n"); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1819 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1820 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1821 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1822 report_default_term(char_u *term) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1823 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1824 mch_errmsg(_("defaulting to '")); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1825 mch_errmsg((char *)term); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1826 mch_errmsg("'\r\n"); |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22522
diff
changeset
|
1827 if (emsg_silent == 0 && !in_assert_fails) |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1828 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1829 screen_start(); // don't know where cursor is now |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1830 out_flush(); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1831 if (!is_not_a_term()) |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18430
diff
changeset
|
1832 ui_delay(2007L, TRUE); |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1833 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1834 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1835 |
7 | 1836 /* |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1837 * Parse the 'keyprotocol' option, match against "term" and return the protocol |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1838 * for the first matching entry. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1839 * When "term" is NULL then compile all patterns to check for any errors. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1840 * Returns KEYPROTOCOL_FAIL if a pattern cannot be compiled. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1841 * Returns KEYPROTOCOL_NONE if there is no match. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1842 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1843 keyprot_T |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1844 match_keyprotocol(char_u *term) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1845 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1846 int len = (int)STRLEN(p_kpc) + 1; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1847 char_u *buf = alloc(len); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1848 if (buf == NULL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1849 return KEYPROTOCOL_FAIL; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1850 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1851 keyprot_T ret = KEYPROTOCOL_FAIL; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1852 char_u *p = p_kpc; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1853 while (*p != NUL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1854 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1855 // Isolate one comma separated item. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1856 (void)copy_option_part(&p, buf, len, ","); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1857 char_u *colon = vim_strchr(buf, ':'); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1858 if (colon == NULL || colon == buf || colon[1] == NUL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1859 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1860 *colon = NUL; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1861 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1862 keyprot_T prot; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1863 if (STRCMP(colon + 1, "none") == 0) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1864 prot = KEYPROTOCOL_NONE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1865 else if (STRCMP(colon + 1, "mok2") == 0) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1866 prot = KEYPROTOCOL_MOK2; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1867 else if (STRCMP(colon + 1, "kitty") == 0) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1868 prot = KEYPROTOCOL_KITTY; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1869 else |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1870 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1871 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1872 regmatch_T regmatch; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1873 CLEAR_FIELD(regmatch); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1874 regmatch.rm_ic = TRUE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1875 regmatch.regprog = vim_regcomp(buf, RE_MAGIC); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1876 if (regmatch.regprog == NULL) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1877 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1878 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1879 int match = term != NULL && vim_regexec(®match, term, (colnr_T)0); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1880 vim_regfree(regmatch.regprog); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1881 if (match) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1882 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1883 ret = prot; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1884 goto theend; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1885 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1886 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1887 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1888 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1889 // No match found, use "none". |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1890 ret = KEYPROTOCOL_NONE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1891 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1892 theend: |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1893 vim_free(buf); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1894 return ret; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1895 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1896 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
1897 /* |
7 | 1898 * Set terminal options for terminal "term". |
1899 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise. | |
1900 * | |
1901 * While doing this, until ttest(), some options may be NULL, be careful. | |
1902 */ | |
1903 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1904 set_termname(char_u *term) |
7 | 1905 { |
1906 #ifdef HAVE_TGETENT | |
1907 int builtin_first = p_tbi; | |
1908 int try; | |
1909 int termcap_cleared = FALSE; | |
1910 #endif | |
1911 int width = 0, height = 0; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1912 char *error_msg = NULL; |
7 | 1913 char_u *bs_p, *del_p; |
1914 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1915 // In silect mode (ex -s) we don't use the 'term' option. |
168 | 1916 if (silent_mode) |
1917 return OK; | |
1918 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1919 detected_8bit = FALSE; // reset 8-bit detection |
7 | 1920 |
1921 if (term_is_builtin(term)) | |
1922 { | |
1923 term += 8; | |
1924 #ifdef HAVE_TGETENT | |
1925 builtin_first = 1; | |
1926 #endif | |
1927 } | |
1928 | |
1929 /* | |
1930 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise: | |
1931 * If builtin_first is TRUE: | |
1932 * 0. try builtin termcap | |
1933 * 1. try external termcap | |
1934 * 2. if both fail default to a builtin terminal | |
1935 * If builtin_first is FALSE: | |
1936 * 1. try external termcap | |
1937 * 2. try builtin termcap, if both fail default to a builtin terminal | |
1938 */ | |
1939 #ifdef HAVE_TGETENT | |
1940 for (try = builtin_first ? 0 : 1; try < 3; ++try) | |
1941 { | |
1942 /* | |
1943 * Use external termcap | |
1944 */ | |
1945 if (try == 1) | |
1946 { | |
1947 char_u tbuf[TBUFSZ]; | |
1948 | |
1949 /* | |
1950 * If the external termcap does not have a matching entry, try the | |
1951 * builtin ones. | |
1952 */ | |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
1953 if ((error_msg = invoke_tgetent(tbuf, term)) == NULL) |
7 | 1954 { |
1955 if (!termcap_cleared) | |
1956 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1957 clear_termoptions(); // clear old options |
7 | 1958 termcap_cleared = TRUE; |
1959 } | |
1960 | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1961 get_term_entries(&height, &width); |
7 | 1962 } |
1963 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1964 else // try == 0 || try == 2 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1965 #endif // HAVE_TGETENT |
7 | 1966 /* |
1967 * Use builtin termcap | |
1968 */ | |
1969 { | |
1970 #ifdef HAVE_TGETENT | |
1971 /* | |
1972 * If builtin termcap was already used, there is no need to search | |
1973 * for the builtin termcap again, quit now. | |
1974 */ | |
1975 if (try == 2 && builtin_first && termcap_cleared) | |
1976 break; | |
1977 #endif | |
1978 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1979 * Search for 'term' in builtin_terminals[]. |
7 | 1980 */ |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1981 tcap_entry_T *termp = find_builtin_term(term); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
1982 if (termp == NULL) // did not find it |
7 | 1983 { |
1984 #ifdef HAVE_TGETENT | |
1985 /* | |
1986 * If try == 0, first try the external termcap. If that is not | |
1987 * found we'll get back here with try == 2. | |
1988 * If termcap_cleared is set we used the external termcap, | |
1989 * don't complain about not finding the term in the builtin | |
1990 * termcap. | |
1991 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1992 if (try == 0) // try external one |
7 | 1993 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1994 if (termcap_cleared) // found in external termcap |
7 | 1995 break; |
1996 #endif | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1997 report_term_error(error_msg, term); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1998 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1999 // when user typed :set term=xxx, quit here |
7 | 2000 if (starting != NO_SCREEN) |
2001 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2002 screen_start(); // don't know where cursor is now |
7 | 2003 wait_return(TRUE); |
2004 return FAIL; | |
2005 } | |
2006 term = DEFAULT_TERM; | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
2007 report_default_term(term); |
694 | 2008 set_string_option_direct((char_u *)"term", -1, term, |
2009 OPT_FREE, 0); | |
7 | 2010 display_errors(); |
2011 } | |
2012 out_flush(); | |
2013 #ifdef HAVE_TGETENT | |
2014 if (!termcap_cleared) | |
2015 { | |
2016 #endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2017 clear_termoptions(); // clear old options |
7 | 2018 #ifdef HAVE_TGETENT |
2019 termcap_cleared = TRUE; | |
2020 } | |
2021 #endif | |
2022 parse_builtin_tcap(term); | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2023 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2024 // Use the 'keyprotocol' option to adjust the t_TE and t_TI |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2025 // termcap entries if there is an entry maching "term". |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2026 keyprot_T kpc = match_keyprotocol(term); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2027 if (kpc == KEYPROTOCOL_KITTY) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2028 apply_builtin_tcap(term, builtin_kitty, TRUE); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2029 else if (kpc == KEYPROTOCOL_MOK2) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2030 apply_builtin_tcap(term, builtin_mok2, TRUE); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
2031 |
7 | 2032 #ifdef FEAT_GUI |
2033 if (term_is_gui(term)) | |
2034 { | |
2035 out_flush(); | |
2036 gui_init(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2037 // If starting the GUI failed, don't do any of the other |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2038 // things for this terminal |
7 | 2039 if (!gui.in_use) |
2040 return FAIL; | |
2041 #ifdef HAVE_TGETENT | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2042 break; // don't try using external termcap |
7 | 2043 #endif |
2044 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2045 #endif // FEAT_GUI |
7 | 2046 } |
2047 #ifdef HAVE_TGETENT | |
2048 } | |
2049 #endif | |
2050 | |
2051 /* | |
2052 * special: There is no info in the termcap about whether the cursor | |
2053 * positioning is relative to the start of the screen or to the start of the | |
2054 * scrolling region. We just guess here. Only msdos pcterm is known to do it | |
2055 * relative. | |
2056 */ | |
2057 if (STRCMP(term, "pcterm") == 0) | |
2058 T_CCS = (char_u *)"yes"; | |
2059 else | |
2060 T_CCS = empty_option; | |
2061 | |
2062 #ifdef UNIX | |
2063 /* | |
2064 * Any "stty" settings override the default for t_kb from the termcap. | |
2065 * This is in os_unix.c, because it depends a lot on the version of unix that | |
2066 * is being used. | |
2067 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly. | |
2068 */ | |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
2069 # ifdef FEAT_GUI |
7 | 2070 if (!gui.in_use) |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
2071 # endif |
7 | 2072 get_stty(); |
2073 #endif | |
2074 | |
2075 /* | |
2076 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also | |
2077 * didn't work, use the default CTRL-H | |
2078 * The default for t_kD is DEL, unless t_kb is DEL. | |
2079 * The vim_strsave'd strings are probably lost forever, well it's only two | |
2080 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD" | |
2081 * directly. | |
2082 */ | |
2083 #ifdef FEAT_GUI | |
2084 if (!gui.in_use) | |
2085 #endif | |
2086 { | |
2087 bs_p = find_termcode((char_u *)"kb"); | |
2088 del_p = find_termcode((char_u *)"kD"); | |
2089 if (bs_p == NULL || *bs_p == NUL) | |
2090 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE); | |
2091 if ((del_p == NULL || *del_p == NUL) && | |
2092 (bs_p == NULL || *bs_p != DEL)) | |
2093 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE); | |
2094 } | |
2095 | |
2096 #if defined(UNIX) || defined(VMS) | |
2097 term_is_xterm = vim_is_xterm(term); | |
2098 #endif | |
18352
94e1a49b879e
patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
18350
diff
changeset
|
2099 #ifdef FEAT_TERMRESPONSE |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
2100 // Reset terminal properties that are set based on the termresponse, which |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
2101 // will be sent out soon. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
2102 init_term_props(FALSE); |
18352
94e1a49b879e
patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
18350
diff
changeset
|
2103 #endif |
7 | 2104 |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2105 #if defined(UNIX) || defined(VMS) |
7 | 2106 /* |
2107 * For Unix, set the 'ttymouse' option to the type of mouse to be used. | |
2108 * The termcode for the mouse is added as a side effect in option.c. | |
2109 */ | |
2110 { | |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2111 char_u *p = (char_u *)""; |
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2112 |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2113 # ifdef FEAT_MOUSE_XTERM |
1623 | 2114 if (use_xterm_like_mouse(term)) |
7 | 2115 { |
2116 if (use_xterm_mouse()) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2117 p = NULL; // keep existing value, might be "xterm2" |
7 | 2118 else |
2119 p = (char_u *)"xterm"; | |
2120 } | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2121 # endif |
7 | 2122 if (p != NULL) |
3980 | 2123 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
2124 set_option_value_give_err((char_u *)"ttym", 0L, p, 0); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2125 // Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2126 // "xterm2" in check_termcode(). |
3980 | 2127 reset_option_was_set((char_u *)"ttym"); |
2128 } | |
7 | 2129 if (p == NULL |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2130 # ifdef FEAT_GUI |
7 | 2131 || gui.in_use |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2132 # endif |
7 | 2133 ) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2134 check_mouse_termcode(); // set mouse termcode anyway |
7 | 2135 } |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2136 #else |
7 | 2137 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M"); |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
2138 #endif |
7 | 2139 |
23632
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2140 #ifdef FEAT_MOUSE_XTERM |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2141 // Focus reporting is supported by xterm compatible terminals and tmux. |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2142 if (use_xterm_like_mouse(term)) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2143 { |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2144 char_u name[3]; |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2145 |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2146 // handle focus in event |
23632
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2147 name[0] = KS_EXTRA; |
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2148 name[1] = KE_FOCUSGAINED; |
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2149 name[2] = NUL; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2150 add_termcode(name, (char_u *)"\033[I", FALSE); |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2151 |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2152 // handle focus out event |
23632
8da1d91d751c
patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents:
23620
diff
changeset
|
2153 name[1] = KE_FOCUSLOST; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2154 add_termcode(name, (char_u *)"\033[O", FALSE); |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2155 |
24045
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
2156 need_gather = TRUE; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2157 } |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2158 #endif |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2159 #if (defined(UNIX) || defined(VMS)) |
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2160 // First time after setting 'term' a focus event is always reported. |
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2161 focus_state = MAYBE; |
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
2162 #endif |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2163 |
7 | 2164 #ifdef USE_TERM_CONSOLE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2165 // DEFAULT_TERM indicates that it is the machine console. |
7 | 2166 if (STRCMP(term, DEFAULT_TERM) != 0) |
2167 term_console = FALSE; | |
2168 else | |
2169 { | |
2170 term_console = TRUE; | |
2171 # ifdef AMIGA | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2172 win_resize_on(); // enable window resizing reports |
7 | 2173 # endif |
2174 } | |
2175 #endif | |
2176 | |
2177 #if defined(UNIX) || defined(VMS) | |
2178 /* | |
2179 * 'ttyfast' is default on for xterm, iris-ansi and a few others. | |
2180 */ | |
2181 if (vim_is_fastterm(term)) | |
2182 p_tf = TRUE; | |
2183 #endif | |
2184 #ifdef USE_TERM_CONSOLE | |
2185 /* | |
2186 * 'ttyfast' is default on consoles | |
2187 */ | |
2188 if (term_console) | |
2189 p_tf = TRUE; | |
2190 #endif | |
2191 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2192 ttest(TRUE); // make sure we have a valid set of terminal codes |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2193 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2194 full_screen = TRUE; // we can use termcap codes from now on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2195 set_term_defaults(); // use current values as defaults |
7 | 2196 #ifdef FEAT_TERMRESPONSE |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
2197 LOG_TR(("setting crv_status to STATUS_GET")); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2198 crv_status.tr_progress = STATUS_GET; // Get terminal version later |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
2199 write_t_8u_state = FALSE; |
7 | 2200 #endif |
2201 | |
2202 /* | |
2203 * Initialize the terminal with the appropriate termcap codes. | |
2204 * Set the mouse and window title if possible. | |
2205 * Don't do this when starting, need to parse the .vimrc first, because it | |
2206 * may redefine t_TI etc. | |
2207 */ | |
2208 if (starting != NO_SCREEN) | |
2209 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2210 starttermcap(); // may change terminal mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2211 setmouse(); // may start using the mouse |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2212 maketitle(); // may display window title |
7 | 2213 } |
2214 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2215 // display initial screen after ttest() checking. jw. |
7 | 2216 if (width <= 0 || height <= 0) |
2217 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2218 // termcap failed to report size |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2219 // set defaults, in case ui_get_shellsize() also fails |
7 | 2220 width = 80; |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
2221 #if defined(MSWIN) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2222 height = 25; // console is often 25 lines |
7 | 2223 #else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2224 height = 24; // most terminals are 24 lines |
7 | 2225 #endif |
2226 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2227 set_shellsize(width, height, FALSE); // may change Rows |
7 | 2228 if (starting != NO_SCREEN) |
2229 { | |
2230 if (scroll_region) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2231 scroll_region_reset(); // In case Rows changed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2232 check_map_keycodes(); // check mappings for terminal codes used |
7 | 2233 |
2234 { | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2235 buf_T *buf; |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2236 aco_save_T aco; |
7 | 2237 |
2238 /* | |
2239 * Execute the TermChanged autocommands for each buffer that is | |
2240 * loaded. | |
2241 */ | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2242 FOR_ALL_BUFFERS(buf) |
7 | 2243 { |
2244 if (curbuf->b_ml.ml_mfp != NULL) | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2245 { |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2246 aucmd_prepbuf(&aco, buf); |
7 | 2247 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE, |
2248 curbuf); | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2249 // restore curwin/curbuf and a few other things |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2250 aucmd_restbuf(&aco); |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2251 } |
7 | 2252 } |
2253 } | |
2254 } | |
2255 | |
2256 #ifdef FEAT_TERMRESPONSE | |
2257 may_req_termresponse(); | |
2258 #endif | |
2259 | |
2260 return OK; | |
2261 } | |
2262 | |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2263 #if defined(EXITFREE) || defined(PROTO) |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2264 |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2265 # ifdef HAVE_DEL_CURTERM |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2266 # include <term.h> // declares cur_term |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2267 # endif |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2268 |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2269 /* |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2270 * If supported, delete "cur_term", which caches terminal related entries. |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2271 * Avoids that valgrind reports possibly lost memory. |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2272 */ |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2273 void |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2274 free_cur_term() |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2275 { |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2276 # ifdef HAVE_DEL_CURTERM |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2277 if (cur_term) |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2278 del_curterm(cur_term); |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2279 # endif |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2280 } |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2281 |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2282 #endif |
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2283 |
7 | 2284 #ifdef HAVE_TGETENT |
2285 /* | |
2286 * Call tgetent() | |
2287 * Return error message if it fails, NULL if it's OK. | |
2288 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2289 static char * |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
2290 invoke_tgetent(char_u *tbuf, char_u *term) |
7 | 2291 { |
2292 int i; | |
2293 | |
18838
8dabdfc7c799
patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
2294 // Note: Valgrind may report a leak here, because the library keeps one |
8dabdfc7c799
patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
2295 // buffer around that we can't ever free. |
7 | 2296 i = TGETENT(tbuf, term); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2297 if (i < 0 // -1 is always an error |
7 | 2298 # ifdef TGETENT_ZERO_ERR |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2299 || i == 0 // sometimes zero is also an error |
7 | 2300 # endif |
2301 ) | |
2302 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2303 // On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2304 // tgetent() with the always existing "dumb" entry to avoid a crash or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2305 // hang. |
7 | 2306 (void)TGETENT(tbuf, "dumb"); |
2307 | |
2308 if (i < 0) | |
2309 # ifdef TGETENT_ZERO_ERR | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2310 return _(e_cannot_open_termcap_file); |
7 | 2311 if (i == 0) |
2312 # endif | |
2313 #ifdef TERMINFO | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2314 return _(e_terminal_entry_not_found_in_terminfo); |
7 | 2315 #else |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
2316 return _(e_terminal_entry_not_found_in_termcap); |
7 | 2317 #endif |
2318 } | |
2319 return NULL; | |
2320 } | |
2321 | |
2322 /* | |
2323 * Some versions of tgetstr() have been reported to return -1 instead of NULL. | |
2324 * Fix that here. | |
2325 */ | |
2326 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2327 vim_tgetstr(char *s, char_u **pp) |
7 | 2328 { |
2329 char *p; | |
2330 | |
2331 p = tgetstr(s, (char **)pp); | |
2332 if (p == (char *)-1) | |
2333 p = NULL; | |
2334 return (char_u *)p; | |
2335 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2336 #endif // HAVE_TGETENT |
7 | 2337 |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2338 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X)) |
7 | 2339 /* |
2340 * Get Columns and Rows from the termcap. Used after a window signal if the | |
2341 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co" | |
2342 * and "li" entries never change. But on some systems this works. | |
2343 * Errors while getting the entries are ignored. | |
2344 */ | |
2345 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2346 getlinecol( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2347 long *cp, // pointer to columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2348 long *rp) // pointer to rows |
7 | 2349 { |
2350 char_u tbuf[TBUFSZ]; | |
2351 | |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
2352 if (T_NAME != NULL && *T_NAME != NUL && invoke_tgetent(tbuf, T_NAME) == NULL) |
7 | 2353 { |
2354 if (*cp == 0) | |
2355 *cp = tgetnum("co"); | |
2356 if (*rp == 0) | |
2357 *rp = tgetnum("li"); | |
2358 } | |
2359 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2360 #endif // defined(HAVE_TGETENT) && defined(UNIX) |
7 | 2361 |
2362 /* | |
2363 * Get a string entry from the termcap and add it to the list of termcodes. | |
2364 * Used for <t_xx> special keys. | |
2365 * Give an error message for failure when not sourcing. | |
2366 * If force given, replace an existing entry. | |
2367 * Return FAIL if the entry was not found, OK if the entry was added. | |
2368 */ | |
2369 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2370 add_termcap_entry(char_u *name, int force) |
7 | 2371 { |
2372 char_u *term; | |
2373 int key; | |
2374 #ifdef HAVE_TGETENT | |
2375 char_u *string; | |
2376 int i; | |
2377 int builtin_first; | |
2378 char_u tbuf[TBUFSZ]; | |
2379 char_u tstrbuf[TBUFSZ]; | |
2380 char_u *tp = tstrbuf; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2381 char *error_msg = NULL; |
7 | 2382 #endif |
2383 | |
2384 /* | |
2385 * If the GUI is running or will start in a moment, we only support the keys | |
2386 * that the GUI can produce. | |
2387 */ | |
2388 #ifdef FEAT_GUI | |
2389 if (gui.in_use || gui.starting) | |
2390 return gui_mch_haskey(name); | |
2391 #endif | |
2392 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2393 if (!force && find_termcode(name) != NULL) // it's already there |
7 | 2394 return OK; |
2395 | |
2396 term = T_NAME; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2397 if (term == NULL || *term == NUL) // 'term' not defined yet |
7 | 2398 return FAIL; |
2399 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2400 if (term_is_builtin(term)) // name starts with "builtin_" |
7 | 2401 { |
2402 term += 8; | |
2403 #ifdef HAVE_TGETENT | |
2404 builtin_first = TRUE; | |
2405 #endif | |
2406 } | |
2407 #ifdef HAVE_TGETENT | |
2408 else | |
2409 builtin_first = p_tbi; | |
2410 #endif | |
2411 | |
2412 #ifdef HAVE_TGETENT | |
2413 /* | |
2414 * We can get the entry from the builtin termcap and from the external one. | |
2415 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try | |
2416 * builtin termcap first. | |
2417 * If 'ttybuiltin' is off, try external termcap first. | |
2418 */ | |
2419 for (i = 0; i < 2; ++i) | |
2420 { | |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
6901
diff
changeset
|
2421 if ((!builtin_first) == i) |
7 | 2422 #endif |
2423 /* | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2424 * Search in builtin termcaps |
7 | 2425 */ |
2426 { | |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2427 tcap_entry_T *termp = find_builtin_term(term); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
2428 if (termp != NULL) // found it |
7 | 2429 { |
2430 key = TERMCAP2KEY(name[0], name[1]); | |
13406
4e30f3f4cb78
patch 8.0.1577: virtual replace test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13398
diff
changeset
|
2431 ++termp; |
7 | 2432 while (termp->bt_entry != (int)KS_NAME) |
2433 { | |
2434 if ((int)termp->bt_entry == key) | |
2435 { | |
2436 add_termcode(name, (char_u *)termp->bt_string, | |
2437 term_is_8bit(term)); | |
2438 return OK; | |
2439 } | |
2440 ++termp; | |
2441 } | |
2442 } | |
2443 } | |
2444 #ifdef HAVE_TGETENT | |
2445 else | |
2446 /* | |
2447 * Search in external termcap | |
2448 */ | |
2449 { | |
29230
3d3d629f5038
patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
29175
diff
changeset
|
2450 error_msg = invoke_tgetent(tbuf, term); |
7 | 2451 if (error_msg == NULL) |
2452 { | |
2453 string = TGETSTR((char *)name, &tp); | |
2454 if (string != NULL && *string != NUL) | |
2455 { | |
2456 add_termcode(name, string, FALSE); | |
2457 return OK; | |
2458 } | |
2459 } | |
2460 } | |
2461 } | |
2462 #endif | |
2463 | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18838
diff
changeset
|
2464 if (SOURCING_NAME == NULL) |
7 | 2465 { |
2466 #ifdef HAVE_TGETENT | |
2467 if (error_msg != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2468 emsg(error_msg); |
7 | 2469 else |
2470 #endif | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
2471 semsg(_(e_no_str_entry_in_termcap), name); |
7 | 2472 } |
2473 return FAIL; | |
2474 } | |
2475 | |
2476 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2477 term_is_builtin(char_u *name) |
7 | 2478 { |
2479 return (STRNCMP(name, "builtin_", (size_t)8) == 0); | |
2480 } | |
2481 | |
2482 /* | |
2483 * Return TRUE if terminal "name" uses CSI instead of <Esc>[. | |
2484 * Assume that the terminal is using 8-bit controls when the name contains | |
2485 * "8bit", like in "xterm-8bit". | |
2486 */ | |
2487 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2488 term_is_8bit(char_u *name) |
7 | 2489 { |
2490 return (detected_8bit || strstr((char *)name, "8bit") != NULL); | |
2491 } | |
2492 | |
2493 /* | |
2494 * Translate terminal control chars from 7-bit to 8-bit: | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
2495 * <Esc>[ -> CSI <M_C_[> |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
2496 * <Esc>] -> OSC <M-C-]> |
7 | 2497 * <Esc>O -> <M-C-O> |
2498 */ | |
2499 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2500 term_7to8bit(char_u *p) |
7 | 2501 { |
2502 if (*p == ESC) | |
2503 { | |
2504 if (p[1] == '[') | |
2505 return CSI; | |
2506 if (p[1] == ']') | |
6901 | 2507 return OSC; |
7 | 2508 if (p[1] == 'O') |
2509 return 0x8f; | |
2510 } | |
2511 return 0; | |
2512 } | |
2513 | |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13573
diff
changeset
|
2514 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 2515 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2516 term_is_gui(char_u *name) |
7 | 2517 { |
2518 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0); | |
2519 } | |
2520 #endif | |
2521 | |
2522 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO) | |
2523 | |
2524 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2525 tltoa(unsigned long i) |
7 | 2526 { |
2527 static char_u buf[16]; | |
2528 char_u *p; | |
2529 | |
2530 p = buf + 15; | |
2531 *p = '\0'; | |
2532 do | |
2533 { | |
2534 --p; | |
2535 *p = (char_u) (i % 10 + '0'); | |
2536 i /= 10; | |
2537 } | |
2538 while (i > 0 && p > buf); | |
2539 return p; | |
2540 } | |
2541 #endif | |
2542 | |
2543 #ifndef HAVE_TGETENT | |
2544 | |
2545 /* | |
2546 * minimal tgoto() implementation. | |
2547 * no padding and we only parse for %i %d and %+char | |
2548 */ | |
298 | 2549 static char * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2550 tgoto(char *cm, int x, int y) |
7 | 2551 { |
2552 static char buf[30]; | |
2553 char *p, *s, *e; | |
2554 | |
2555 if (!cm) | |
2556 return "OOPS"; | |
2557 e = buf + 29; | |
2558 for (s = buf; s < e && *cm; cm++) | |
2559 { | |
2560 if (*cm != '%') | |
2561 { | |
2562 *s++ = *cm; | |
2563 continue; | |
2564 } | |
2565 switch (*++cm) | |
2566 { | |
2567 case 'd': | |
2568 p = (char *)tltoa((unsigned long)y); | |
2569 y = x; | |
2570 while (*p) | |
2571 *s++ = *p++; | |
2572 break; | |
2573 case 'i': | |
2574 x++; | |
2575 y++; | |
2576 break; | |
2577 case '+': | |
2578 *s++ = (char)(*++cm + y); | |
2579 y = x; | |
2580 break; | |
2581 case '%': | |
2582 *s++ = *cm; | |
2583 break; | |
2584 default: | |
2585 return "OOPS"; | |
2586 } | |
2587 } | |
2588 *s = '\0'; | |
2589 return buf; | |
2590 } | |
2591 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2592 #endif // HAVE_TGETENT |
7 | 2593 |
2594 /* | |
2595 * Set the terminal name and initialize the terminal options. | |
2596 * If "name" is NULL or empty, get the terminal name from the environment. | |
2597 * If that fails, use the default terminal name. | |
2598 */ | |
2599 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2600 termcapinit(char_u *name) |
7 | 2601 { |
2602 char_u *term; | |
2603 | |
2604 if (name != NULL && *name == NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2605 name = NULL; // empty name is equal to no name |
7 | 2606 term = name; |
2607 | |
2608 #ifndef MSWIN | |
2609 if (term == NULL) | |
2610 term = mch_getenv((char_u *)"TERM"); | |
2611 #endif | |
2612 if (term == NULL || *term == NUL) | |
2613 term = DEFAULT_TERM; | |
694 | 2614 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0); |
7 | 2615 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2616 // Set the default terminal name. |
7 | 2617 set_string_default("term", term); |
2618 set_string_default("ttytype", term); | |
2619 | |
2620 /* | |
2621 * Avoid using "term" here, because the next mch_getenv() may overwrite it. | |
2622 */ | |
2623 set_termname(T_NAME != NULL ? T_NAME : term); | |
2624 } | |
2625 | |
2626 /* | |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2627 * The number of calls to ui_write is reduced by using "out_buf". |
7 | 2628 */ |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2629 #define OUT_SIZE 2047 |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2630 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2631 // add one to allow mch_write() in os_win32.c to append a NUL |
7 | 2632 static char_u out_buf[OUT_SIZE + 1]; |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2633 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2634 static int out_pos = 0; // number of chars in out_buf |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2635 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2636 // Since the maximum number of SGR parameters shown as a normal value range is |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2637 // 16, the escape sequence length can be 4 * 16 + lead + tail. |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2638 #define MAX_ESC_SEQ_LEN 80 |
7 | 2639 |
2640 /* | |
2641 * out_flush(): flush the output buffer | |
2642 */ | |
2643 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2644 out_flush(void) |
7 | 2645 { |
2646 int len; | |
2647 | |
2648 if (out_pos != 0) | |
2649 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2650 // set out_pos to 0 before ui_write, to avoid recursiveness |
7 | 2651 len = out_pos; |
2652 out_pos = 0; | |
24194
9f64c420f280
patch 8.2.2638: cannot write a message to the terminal from the GUI
Bram Moolenaar <Bram@vim.org>
parents:
24045
diff
changeset
|
2653 ui_write(out_buf, len, FALSE); |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2654 #ifdef FEAT_JOB_CHANNEL |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
2655 if (ch_log_output != FALSE) |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2656 { |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2657 out_buf[len] = NUL; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2658 ch_log(NULL, "raw %s output: \"%s\"", |
23610
07f9e4a54178
patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
2659 # ifdef FEAT_GUI |
07f9e4a54178
patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
2660 (gui.in_use && !gui.dying && !gui.starting) ? "GUI" : |
07f9e4a54178
patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
2661 # endif |
07f9e4a54178
patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
2662 "terminal", |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
2663 out_buf); |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
2664 if (ch_log_output == TRUE) |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
2665 ch_log_output = FALSE; // only log once |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2666 } |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2667 #endif |
7 | 2668 } |
2669 } | |
2670 | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2671 /* |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2672 * out_flush_cursor(): flush the output buffer and redraw the cursor. |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2673 * Does not flush recursively in the GUI to avoid slow drawing. |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2674 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2675 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2676 out_flush_cursor( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2677 int force UNUSED, // when TRUE, update cursor even when not moved |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2678 int clear_selection UNUSED) // clear selection under cursor |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2679 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2680 mch_disable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2681 out_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2682 mch_enable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2683 #ifdef FEAT_GUI |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2684 if (gui.in_use) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2685 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2686 gui_update_cursor(force, clear_selection); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2687 gui_may_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2688 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2689 #endif |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2690 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2691 |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2692 |
7 | 2693 /* |
2694 * Sometimes a byte out of a multi-byte character is written with out_char(). | |
2695 * To avoid flushing half of the character, call this function first. | |
2696 */ | |
2697 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2698 out_flush_check(void) |
7 | 2699 { |
2700 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES) | |
2701 out_flush(); | |
2702 } | |
2703 | |
2704 #ifdef FEAT_GUI | |
2705 /* | |
2706 * out_trash(): Throw away the contents of the output buffer | |
2707 */ | |
2708 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2709 out_trash(void) |
7 | 2710 { |
2711 out_pos = 0; | |
2712 } | |
2713 #endif | |
2714 | |
2715 /* | |
2716 * out_char(c): put a byte into the output buffer. | |
2717 * Flush it if it becomes full. | |
2718 * This should not be used for outputting text on the screen (use functions | |
2719 * like msg_puts() and screen_putchar() for that). | |
2720 */ | |
2721 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2722 out_char(unsigned c) |
7 | 2723 { |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12640
diff
changeset
|
2724 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2725 if (c == '\n') // turn LF into CR-LF (CRMOD doesn't seem to do this) |
7 | 2726 out_char('\r'); |
2727 #endif | |
2728 | |
2729 out_buf[out_pos++] = c; | |
2730 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2731 // For testing we flush each time. |
7 | 2732 if (out_pos >= OUT_SIZE || p_wd) |
2733 out_flush(); | |
2734 } | |
2735 | |
2736 /* | |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2737 * Output "c" like out_char(), but don't flush when p_wd is set. |
7 | 2738 */ |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2739 static int |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2740 out_char_nf(int c) |
7 | 2741 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2742 out_buf[out_pos++] = (unsigned)c; |
7 | 2743 |
2744 if (out_pos >= OUT_SIZE) | |
2745 out_flush(); | |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
21927
diff
changeset
|
2746 return (unsigned)c; |
7 | 2747 } |
2748 | |
2749 /* | |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2750 * A never-padding out_str(). |
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2751 * Use this whenever you don't want to run the string through tputs(). |
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2752 * tputs() above is harmless, but tputs() from the termcap library |
7 | 2753 * is likely to strip off leading digits, that it mistakes for padding |
2754 * information, and "%i", "%d", etc. | |
2755 * This should only be used for writing terminal codes, not for outputting | |
2756 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2757 */ | |
2758 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2759 out_str_nf(char_u *s) |
7 | 2760 { |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2761 // avoid terminal strings being split up |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2762 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
7 | 2763 out_flush(); |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2764 |
7 | 2765 while (*s) |
2766 out_char_nf(*s++); | |
2767 | |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2768 // For testing we write one string at a time. |
7 | 2769 if (p_wd) |
2770 out_flush(); | |
2771 } | |
2772 | |
2773 /* | |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2774 * A conditional-flushing out_str, mainly for visualbell. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2775 * Handles a delay internally, because termlib may not respect the delay or do |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2776 * it at the wrong time. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2777 * Note: Only for terminal strings. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2778 */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2779 void |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2780 out_str_cf(char_u *s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2781 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2782 if (s != NULL && *s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2783 { |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2784 #ifdef HAVE_TGETENT |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2785 char_u *p; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2786 #endif |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2787 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2788 #ifdef FEAT_GUI |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2789 // Don't use tputs() when GUI is used, ncurses crashes. |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2790 if (gui.in_use) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2791 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2792 out_str_nf(s); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2793 return; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2794 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2795 #endif |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2796 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2797 out_flush(); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2798 #ifdef HAVE_TGETENT |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2799 for (p = s; *s; ++s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2800 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2801 // flush just before delay command |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2802 if (*s == '$' && *(s + 1) == '<') |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2803 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2804 char_u save_c = *s; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2805 int duration = atoi((char *)s + 2); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2806 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2807 *s = NUL; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2808 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2809 *s = save_c; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2810 out_flush(); |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2811 # ifdef ELAPSED_FUNC |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2812 // Only sleep here if we can limit this happening in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2813 // vim_beep(). |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2814 p = vim_strchr(s, '>'); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2815 if (p == NULL || duration <= 0) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2816 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2817 // can't parse the time, don't sleep here |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2818 p = s; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2819 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2820 else |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2821 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2822 ++p; |
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
23632
diff
changeset
|
2823 do_sleep(duration, FALSE); |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2824 } |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2825 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2826 // Rely on the terminal library to sleep. |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2827 p = s; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2828 # endif |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2829 break; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2830 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2831 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2832 tputs((char *)p, 1, TPUTSFUNCAST out_char_nf); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2833 #else |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2834 while (*s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2835 out_char_nf(*s++); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2836 #endif |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2837 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2838 // For testing we write one string at a time. |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2839 if (p_wd) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2840 out_flush(); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2841 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2842 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2843 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2844 /* |
7 | 2845 * out_str(s): Put a character string a byte at a time into the output buffer. |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
2846 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw) |
7 | 2847 * This should only be used for writing terminal codes, not for outputting |
2848 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2849 */ | |
2850 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2851 out_str(char_u *s) |
7 | 2852 { |
2853 if (s != NULL && *s) | |
2854 { | |
2855 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2856 // Don't use tputs() when GUI is used, ncurses crashes. |
7 | 2857 if (gui.in_use) |
2858 { | |
2859 out_str_nf(s); | |
2860 return; | |
2861 } | |
2862 #endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2863 // avoid terminal strings being split up |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2864 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
7 | 2865 out_flush(); |
2866 #ifdef HAVE_TGETENT | |
2867 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf); | |
2868 #else | |
2869 while (*s) | |
2870 out_char_nf(*s++); | |
2871 #endif | |
2872 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2873 // For testing we write one string at a time. |
7 | 2874 if (p_wd) |
2875 out_flush(); | |
2876 } | |
2877 } | |
2878 | |
2879 /* | |
2880 * cursor positioning using termcap parser. (jw) | |
2881 */ | |
2882 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2883 term_windgoto(int row, int col) |
7 | 2884 { |
2885 OUT_STR(tgoto((char *)T_CM, col, row)); | |
2886 } | |
2887 | |
2888 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2889 term_cursor_right(int i) |
7 | 2890 { |
2891 OUT_STR(tgoto((char *)T_CRI, 0, i)); | |
2892 } | |
2893 | |
2894 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2895 term_append_lines(int line_count) |
7 | 2896 { |
2897 OUT_STR(tgoto((char *)T_CAL, 0, line_count)); | |
2898 } | |
2899 | |
2900 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2901 term_delete_lines(int line_count) |
7 | 2902 { |
2903 OUT_STR(tgoto((char *)T_CDL, 0, line_count)); | |
2904 } | |
2905 | |
2906 #if defined(HAVE_TGETENT) || defined(PROTO) | |
2907 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2908 term_set_winpos(int x, int y) |
7 | 2909 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2910 // Can't handle a negative value here |
7 | 2911 if (x < 0) |
2912 x = 0; | |
2913 if (y < 0) | |
2914 y = 0; | |
2915 OUT_STR(tgoto((char *)T_CWP, y, x)); | |
2916 } | |
2917 | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2918 # if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2919 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2920 * Return TRUE if we can request the terminal for a response. |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2921 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2922 static int |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2923 can_get_termresponse() |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2924 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2925 return cur_tmode == TMODE_RAW |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2926 && termcap_active |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2927 # ifdef UNIX |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2928 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd))) |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2929 # endif |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2930 && p_ek; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2931 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2932 |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2933 /* |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2934 * Set "status" to STATUS_SENT. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2935 */ |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2936 static void |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2937 termrequest_sent(termrequest_T *status) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2938 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2939 status->tr_progress = STATUS_SENT; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2940 status->tr_start = time(NULL); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2941 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2942 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2943 /* |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2944 * Return TRUE if any of the requests are in STATUS_SENT. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2945 */ |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2946 static int |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2947 termrequest_any_pending() |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2948 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2949 int i; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2950 time_t now = time(NULL); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2951 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2952 for (i = 0; all_termrequests[i] != NULL; ++i) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2953 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2954 if (all_termrequests[i]->tr_progress == STATUS_SENT) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2955 { |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2956 if (all_termrequests[i]->tr_start > 0 && now > 0 |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2957 && all_termrequests[i]->tr_start + 2 < now) |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2958 // Sent the request more than 2 seconds ago and didn't get a |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2959 // response, assume it failed. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2960 all_termrequests[i]->tr_progress = STATUS_FAIL; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2961 else |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2962 return TRUE; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2963 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2964 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2965 return FALSE; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2966 } |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2967 |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2968 static int winpos_x = -1; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2969 static int winpos_y = -1; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2970 static int did_request_winpos = 0; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2971 |
16245
e0a6298bd70f
patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16200
diff
changeset
|
2972 # if defined(FEAT_EVAL) || defined(FEAT_TERMINAL) || defined(PROTO) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2973 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2974 * Try getting the Vim window position from the terminal. |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2975 * Returns OK or FAIL. |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2976 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2977 int |
13379
0f9dd1b43244
patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents:
13365
diff
changeset
|
2978 term_get_winpos(int *x, int *y, varnumber_T timeout) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2979 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2980 int count = 0; |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2981 int prev_winpos_x = winpos_x; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2982 int prev_winpos_y = winpos_y; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2983 |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2984 if (*T_CGP == NUL || !can_get_termresponse()) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2985 return FAIL; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2986 winpos_x = -1; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2987 winpos_y = -1; |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2988 ++did_request_winpos; |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
2989 termrequest_sent(&winpos_status); |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2990 OUT_STR(T_CGP); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2991 out_flush(); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2992 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2993 // Try reading the result for "timeout" msec. |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2994 while (count++ <= timeout / 10 && !got_int) |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2995 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2996 (void)vpeekc_nomap(); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2997 if (winpos_x >= 0 && winpos_y >= 0) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2998 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2999 *x = winpos_x; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3000 *y = winpos_y; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3001 return OK; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3002 } |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18430
diff
changeset
|
3003 ui_delay(10L, FALSE); |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3004 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3005 // Do not reset "did_request_winpos", if we timed out the response might |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3006 // still come later and we must consume it. |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3007 |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3008 winpos_x = prev_winpos_x; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3009 winpos_y = prev_winpos_y; |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13573
diff
changeset
|
3010 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0) |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3011 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3012 // Polling: return previous values if we have them. |
13398
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3013 *x = winpos_x; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3014 *y = winpos_y; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3015 return OK; |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3016 } |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3017 |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3018 return FALSE; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3019 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3020 # endif |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3021 # endif |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3022 |
7 | 3023 void |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3024 term_set_winsize(int height, int width) |
7 | 3025 { |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3026 OUT_STR(tgoto((char *)T_CWS, width, height)); |
7 | 3027 } |
3028 #endif | |
3029 | |
3030 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3031 term_color(char_u *s, int n) |
7 | 3032 { |
3033 char buf[20]; | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3034 int i = *s == CSI ? 1 : 2; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3035 // index in s[] just after <Esc>[ or CSI |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3036 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3037 // Special handling of 16 colors, because termcap can't handle it |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3038 // Also accept "\e[3%dm" for TERMINFO, it is sometimes used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3039 // Also accept CSI instead of <Esc>[ |
7 | 3040 if (n >= 8 && t_colors >= 16 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3041 && ((s[0] == ESC && s[1] == '[') |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3042 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3043 || (s[0] == ESC && s[1] == '|') |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3044 #endif |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3045 || (s[0] == CSI && (i = 1) == 1)) |
7 | 3046 && s[i] != NUL |
3047 && (STRCMP(s + i + 1, "%p1%dm") == 0 | |
3048 || STRCMP(s + i + 1, "%dm") == 0) | |
3049 && (s[i] == '3' || s[i] == '4')) | |
3050 { | |
3051 #ifdef TERMINFO | |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
3052 char *format = "%s%s%%p1%%dm"; |
7 | 3053 #else |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
3054 char *format = "%s%s%%dm"; |
7 | 3055 #endif |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3056 char *lead = i == 2 ? ( |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3057 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
3058 s[1] == '|' ? "\033|" : |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
3059 #endif |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
3060 "\033[") : "\233"; |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3061 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9") |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3062 : (n >= 16 ? "48;5;" : "10"); |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3063 |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
3064 sprintf(buf, format, lead, tail); |
7 | 3065 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8)); |
3066 } | |
3067 else | |
3068 OUT_STR(tgoto((char *)s, 0, n)); | |
3069 } | |
3070 | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3071 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3072 term_fg_color(int n) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3073 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3074 // Use "AF" termcap entry if present, "Sf" entry otherwise |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3075 if (*T_CAF) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3076 term_color(T_CAF, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3077 else if (*T_CSF) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3078 term_color(T_CSF, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3079 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3080 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3081 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3082 term_bg_color(int n) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3083 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3084 // Use "AB" termcap entry if present, "Sb" entry otherwise |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3085 if (*T_CAB) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3086 term_color(T_CAB, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3087 else if (*T_CSB) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3088 term_color(T_CSB, n); |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3089 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3090 |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3091 void |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3092 term_ul_color(int n) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3093 { |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3094 if (*T_CAU) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3095 term_color(T_CAU, n); |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3096 } |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3097 |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3098 /* |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3099 * Return "dark" or "light" depending on the kind of terminal. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3100 * This is just guessing! Recognized are: |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3101 * "linux" Linux console |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3102 * "screen.linux" Linux console with screen |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3103 * "cygwin.*" Cygwin shell |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3104 * "putty.*" Putty program |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3105 * We also check the COLORFGBG environment variable, which is set by |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3106 * rxvt and derivatives. This variable contains either two or three |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3107 * values separated by semicolons; we want the last value in either |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3108 * case. If this value is 0-6 or 8, our background is dark. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3109 */ |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3110 char_u * |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3111 term_bg_default(void) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3112 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3113 #if defined(MSWIN) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3114 // DOS console is nearly always black |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3115 return (char_u *)"dark"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3116 #else |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3117 char_u *p; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3118 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3119 if (STRCMP(T_NAME, "linux") == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3120 || STRCMP(T_NAME, "screen.linux") == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3121 || STRNCMP(T_NAME, "cygwin", 6) == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3122 || STRNCMP(T_NAME, "putty", 5) == 0 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3123 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3124 && (p = vim_strrchr(p, ';')) != NULL |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3125 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8') |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3126 && p[2] == NUL)) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3127 return (char_u *)"dark"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3128 return (char_u *)"light"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3129 #endif |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3130 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
3131 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
3132 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3133 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3134 #define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3135 #define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3136 #define BLUE(rgb) (((long_u)(rgb) ) & 0xFF) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3137 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3138 static void |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3139 term_rgb_color(char_u *s, guicolor_T rgb) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3140 { |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3141 #define MAX_COLOR_STR_LEN 100 |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3142 char buf[MAX_COLOR_STR_LEN]; |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
3143 |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3144 if (*s == NUL) |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3145 return; |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
3146 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
|
3147 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb)); |
20589
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3148 #ifdef FEAT_VTP |
31031
467d950013a1
patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3149 if (has_vtp_working()) |
20589
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3150 { |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3151 out_flush(); |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3152 buf[1] = '['; |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3153 vtp_printf(buf); |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3154 } |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3155 else |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3156 #endif |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
3157 OUT_STR(buf); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3158 } |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3159 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3160 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3161 term_fg_rgb_color(guicolor_T rgb) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3162 { |
31031
467d950013a1
patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3163 if (rgb != INVALCOLOR) |
467d950013a1
patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3164 term_rgb_color(T_8F, rgb); |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3165 } |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3166 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3167 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3168 term_bg_rgb_color(guicolor_T rgb) |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3169 { |
28763
b01bca69b1d5
patch 8.2.4906: MS-Windows: cannot use transparent background
Bram Moolenaar <Bram@vim.org>
parents:
28739
diff
changeset
|
3170 if (rgb != INVALCOLOR) |
b01bca69b1d5
patch 8.2.4906: MS-Windows: cannot use transparent background
Bram Moolenaar <Bram@vim.org>
parents:
28739
diff
changeset
|
3171 term_rgb_color(T_8B, rgb); |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
3172 } |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3173 |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3174 void |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3175 term_ul_rgb_color(guicolor_T rgb) |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3176 { |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3177 # ifdef FEAT_TERMRESPONSE |
30602
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3178 // If the user explicitly sets t_8u then use it. Otherwise wait for |
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3179 // termresponse to be received, which is when t_8u would be set and a |
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3180 // redraw is needed if it was used. |
001c228efdab
patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents:
29883
diff
changeset
|
3181 if (!option_was_set((char_u *)"t_8u") && write_t_8u_state != OK) |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3182 write_t_8u_state = MAYBE; |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3183 else |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3184 # endif |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
3185 term_rgb_color(T_8U, rgb); |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
3186 } |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3187 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3188 |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
3189 #if (defined(UNIX) || defined(VMS) || defined(MACOS_X)) || defined(PROTO) |
7 | 3190 /* |
3191 * Generic function to set window title, using t_ts and t_fs. | |
3192 */ | |
3193 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3194 term_settitle(char_u *title) |
7 | 3195 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3196 MAY_WANT_TO_LOG_THIS; |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3197 |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
3198 // t_ts takes one argument: column in status line |
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
3199 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start |
7 | 3200 out_str_nf(title); |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
3201 out_str(T_FS); // set title end |
7 | 3202 out_flush(); |
3203 } | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3204 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3205 /* |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3206 * Tell the terminal to push (save) the title and/or icon, so that it can be |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3207 * popped (restored) later. |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3208 */ |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3209 void |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3210 term_push_title(int which) |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3211 { |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3212 if ((which & SAVE_RESTORE_TITLE) && T_CST != NULL && *T_CST != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3213 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3214 OUT_STR(T_CST); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3215 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3216 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3217 |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3218 if ((which & SAVE_RESTORE_ICON) && T_SSI != NULL && *T_SSI != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3219 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3220 OUT_STR(T_SSI); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3221 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3222 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3223 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3224 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3225 /* |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3226 * Tell the terminal to pop the title and/or icon. |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3227 */ |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3228 void |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3229 term_pop_title(int which) |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3230 { |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3231 if ((which & SAVE_RESTORE_TITLE) && T_CRT != NULL && *T_CRT != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3232 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3233 OUT_STR(T_CRT); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3234 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3235 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3236 |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3237 if ((which & SAVE_RESTORE_ICON) && T_SRI != NULL && *T_SRI != NUL) |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3238 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3239 OUT_STR(T_SRI); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3240 out_flush(); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3241 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3242 } |
7 | 3243 #endif |
3244 | |
3245 /* | |
3246 * Make sure we have a valid set or terminal options. | |
3247 * Replace all entries that are NULL by empty_option | |
3248 */ | |
3249 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3250 ttest(int pairs) |
7 | 3251 { |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3252 char_u *env_colors; |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3253 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3254 check_options(); // make sure no options are NULL |
7 | 3255 |
3256 /* | |
3257 * MUST have "cm": cursor motion. | |
3258 */ | |
3259 if (*T_CM == NUL) | |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
3260 emsg(_(e_terminal_capability_cm_required)); |
7 | 3261 |
3262 /* | |
3263 * if "cs" defined, use a scroll region, it's faster. | |
3264 */ | |
3265 if (*T_CS != NUL) | |
3266 scroll_region = TRUE; | |
3267 else | |
3268 scroll_region = FALSE; | |
3269 | |
3270 if (pairs) | |
3271 { | |
3272 /* | |
3273 * optional pairs | |
3274 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3275 // TP goes to normal mode for TI (invert) and TB (bold) |
7 | 3276 if (*T_ME == NUL) |
3277 T_ME = T_MR = T_MD = T_MB = empty_option; | |
3278 if (*T_SO == NUL || *T_SE == NUL) | |
3279 T_SO = T_SE = empty_option; | |
3280 if (*T_US == NUL || *T_UE == NUL) | |
3281 T_US = T_UE = empty_option; | |
3282 if (*T_CZH == NUL || *T_CZR == NUL) | |
3283 T_CZH = T_CZR = empty_option; | |
3284 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3285 // T_VE is needed even though T_VI is not defined |
7 | 3286 if (*T_VE == NUL) |
3287 T_VI = empty_option; | |
3288 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3289 // if 'mr' or 'me' is not defined use 'so' and 'se' |
7 | 3290 if (*T_ME == NUL) |
3291 { | |
3292 T_ME = T_SE; | |
3293 T_MR = T_SO; | |
3294 T_MD = T_SO; | |
3295 } | |
3296 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3297 // if 'so' or 'se' is not defined use 'mr' and 'me' |
7 | 3298 if (*T_SO == NUL) |
3299 { | |
3300 T_SE = T_ME; | |
3301 if (*T_MR == NUL) | |
3302 T_SO = T_MD; | |
3303 else | |
3304 T_SO = T_MR; | |
3305 } | |
3306 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3307 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me' |
7 | 3308 if (*T_CZH == NUL) |
3309 { | |
3310 T_CZR = T_ME; | |
3311 if (*T_MR == NUL) | |
3312 T_CZH = T_MD; | |
3313 else | |
3314 T_CZH = T_MR; | |
3315 } | |
3316 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3317 // "Sb" and "Sf" come in pairs |
7 | 3318 if (*T_CSB == NUL || *T_CSF == NUL) |
3319 { | |
3320 T_CSB = empty_option; | |
3321 T_CSF = empty_option; | |
3322 } | |
3323 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3324 // "AB" and "AF" come in pairs |
7 | 3325 if (*T_CAB == NUL || *T_CAF == NUL) |
3326 { | |
3327 T_CAB = empty_option; | |
3328 T_CAF = empty_option; | |
3329 } | |
3330 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3331 // if 'Sb' and 'AB' are not defined, reset "Co" |
7 | 3332 if (*T_CSB == NUL && *T_CAB == NUL) |
1941 | 3333 free_one_termoption(T_CCO); |
7 | 3334 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3335 // Set 'weirdinvert' according to value of 't_xs' |
7 | 3336 p_wiv = (*T_XS != NUL); |
3337 } | |
3338 need_gather = TRUE; | |
3339 | |
20181
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3340 // Set t_colors to the value of $COLORS or t_Co. Ignore $COLORS in the |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3341 // GUI. |
7 | 3342 t_colors = atoi((char *)T_CCO); |
20181
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3343 #ifdef FEAT_GUI |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3344 if (!gui.in_use) |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3345 #endif |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3346 { |
20181
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3347 env_colors = mch_getenv((char_u *)"COLORS"); |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3348 if (env_colors != NULL && isdigit(*env_colors)) |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3349 { |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3350 int colors = atoi((char *)env_colors); |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3351 |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3352 if (colors != t_colors) |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3353 set_color_count(colors); |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3354 } |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11615
diff
changeset
|
3355 } |
7 | 3356 } |
3357 | |
3358 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \ | |
3359 || defined(PROTO) | |
3360 /* | |
3361 * Represent the given long_u as individual bytes, with the most significant | |
3362 * byte first, and store them in dst. | |
3363 */ | |
3364 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3365 add_long_to_buf(long_u val, char_u *dst) |
7 | 3366 { |
3367 int i; | |
3368 int shift; | |
3369 | |
1883 | 3370 for (i = 1; i <= (int)sizeof(long_u); i++) |
7 | 3371 { |
3372 shift = 8 * (sizeof(long_u) - i); | |
3373 dst[i - 1] = (char_u) ((val >> shift) & 0xff); | |
3374 } | |
3375 } | |
3376 | |
3377 /* | |
3378 * Interpret the next string of bytes in buf as a long integer, with the most | |
3379 * significant byte first. Note that it is assumed that buf has been through | |
3380 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each. | |
3381 * Puts result in val, and returns the number of bytes read from buf | |
3382 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes | |
3383 * were present. | |
3384 */ | |
3385 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3386 get_long_from_buf(char_u *buf, long_u *val) |
7 | 3387 { |
3388 int len; | |
3389 char_u bytes[sizeof(long_u)]; | |
3390 int i; | |
3391 int shift; | |
3392 | |
3393 *val = 0; | |
3394 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u)); | |
3395 if (len != -1) | |
3396 { | |
1883 | 3397 for (i = 0; i < (int)sizeof(long_u); i++) |
7 | 3398 { |
3399 shift = 8 * (sizeof(long_u) - 1 - i); | |
3400 *val += (long_u)bytes[i] << shift; | |
3401 } | |
3402 } | |
3403 return len; | |
3404 } | |
3405 #endif | |
3406 | |
3407 /* | |
3408 * Read the next num_bytes bytes from buf, and store them in bytes. Assume | |
3409 * that buf has been through inchar(). Returns the actual number of bytes used | |
3410 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were | |
3411 * available. | |
3412 */ | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
3413 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3414 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) |
7 | 3415 { |
3416 int len = 0; | |
3417 int i; | |
3418 char_u c; | |
3419 | |
3420 for (i = 0; i < num_bytes; i++) | |
3421 { | |
3422 if ((c = buf[len++]) == NUL) | |
3423 return -1; | |
3424 if (c == K_SPECIAL) | |
3425 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3426 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen? |
7 | 3427 return -1; |
3428 if (buf[len++] == (int)KS_ZERO) | |
3429 c = NUL; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3430 // else it should be KS_SPECIAL; when followed by KE_FILLER c is |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3431 // K_SPECIAL, or followed by KE_CSI and c must be CSI. |
5076
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3432 if (buf[len++] == (int)KE_CSI) |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3433 c = CSI; |
7 | 3434 } |
1160 | 3435 else if (c == CSI && buf[len] == KS_EXTRA |
3436 && buf[len + 1] == (int)KE_CSI) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3437 // CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3438 // the start of a special key, see add_to_input_buf_csi(). |
667 | 3439 len += 2; |
7 | 3440 bytes[i] = c; |
3441 } | |
3442 return len; | |
3443 } | |
3444 | |
3445 /* | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3446 * 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
|
3447 * too big. |
7 | 3448 */ |
3449 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3450 check_shellsize(void) |
7 | 3451 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3452 if (Rows < min_rows()) // need room for one window and command line |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3453 Rows = min_rows(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3454 limit_screen_size(); |
29286
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3455 |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3456 // make sure these values are not invalid |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3457 if (cmdline_row >= Rows) |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3458 cmdline_row = Rows - 1; |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3459 if (msg_row >= Rows) |
45af13649a34
patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents:
29230
diff
changeset
|
3460 msg_row = Rows - 1; |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3461 } |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3462 |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3463 /* |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3464 * 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
|
3465 */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3466 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3467 limit_screen_size(void) |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3468 { |
7 | 3469 if (Columns < MIN_COLUMNS) |
3470 Columns = MIN_COLUMNS; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3471 else if (Columns > 10000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3472 Columns = 10000; |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3473 if (Rows > 1000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3474 Rows = 1000; |
7 | 3475 } |
3476 | |
41 | 3477 /* |
3478 * Invoked just before the screen structures are going to be (re)allocated. | |
3479 */ | |
7 | 3480 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3481 win_new_shellsize(void) |
7 | 3482 { |
3483 static int old_Rows = 0; | |
3484 static int old_Columns = 0; | |
3485 | |
3486 if (old_Rows != Rows || old_Columns != Columns) | |
3487 ui_new_shellsize(); | |
3488 if (old_Rows != Rows) | |
3489 { | |
24228
1e85e76f9e76
patch 8.2.2655: The -w command line argument doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
3490 // If 'window' uses the whole screen, keep it using that. |
1e85e76f9e76
patch 8.2.2655: The -w command line argument doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
3491 // Don't change it when set with "-w size" on the command line. |
27996
3ae5bc51d39d
patch 8.2.4523: when gvim is started maximized the 'window' option isn't set
Bram Moolenaar <Bram@vim.org>
parents:
27930
diff
changeset
|
3492 if (p_window == old_Rows - 1 |
3ae5bc51d39d
patch 8.2.4523: when gvim is started maximized the 'window' option isn't set
Bram Moolenaar <Bram@vim.org>
parents:
27930
diff
changeset
|
3493 || (old_Rows == 0 && !option_was_set((char_u *)"window"))) |
164 | 3494 p_window = Rows - 1; |
7 | 3495 old_Rows = Rows; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3496 shell_new_rows(); // update window sizes |
7 | 3497 } |
3498 if (old_Columns != Columns) | |
3499 { | |
3500 old_Columns = Columns; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3501 shell_new_columns(); // update window sizes |
7 | 3502 } |
3503 } | |
3504 | |
3505 /* | |
3506 * Call this function when the Vim shell has been resized in any way. | |
3507 * Will obtain the current size and redraw (also when size didn't change). | |
3508 */ | |
3509 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3510 shell_resized(void) |
7 | 3511 { |
3512 set_shellsize(0, 0, FALSE); | |
3513 } | |
3514 | |
3515 /* | |
3516 * Check if the shell size changed. Handle a resize. | |
3517 * When the size didn't change, nothing happens. | |
3518 */ | |
3519 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3520 shell_resized_check(void) |
7 | 3521 { |
3522 int old_Rows = Rows; | |
3523 int old_Columns = Columns; | |
3524 | |
3770 | 3525 if (!exiting |
3526 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3527 // Do not get the size when executing a shell command during |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3528 // startup. |
3770 | 3529 && !gui.starting |
3530 #endif | |
3531 ) | |
2673 | 3532 { |
3533 (void)ui_get_shellsize(); | |
3534 check_shellsize(); | |
3535 if (old_Rows != Rows || old_Columns != Columns) | |
3536 shell_resized(); | |
3537 } | |
7 | 3538 } |
3539 | |
3540 /* | |
3541 * Set size of the Vim shell. | |
3542 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real | |
3543 * window size (this is used for the :win command). | |
3544 * If 'mustset' is FALSE, we may try to get the real window size and if | |
3545 * it fails use 'width' and 'height'. | |
3546 */ | |
31178
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3547 static void |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3548 set_shellsize_inner(int width, int height, int mustset) |
7 | 3549 { |
17330
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3550 if (updating_screen) |
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3551 // resizing while in update_screen() may cause a crash |
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3552 return; |
b2918bd457cb
patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents:
16961
diff
changeset
|
3553 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3554 // curwin->w_buffer can be NULL when we are closing a window and the |
23410
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3555 // buffer (or window) has already been closed and removing a scrollbar |
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3556 // causes a resize event. Don't resize then, it will happen after entering |
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3557 // another buffer. |
ae3421daa981
patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
3558 if (curwin->w_buffer == NULL || curwin->w_lines == NULL) |
3068 | 3559 return; |
3560 | |
7 | 3561 #ifdef AMIGA |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3562 out_flush(); // must do this before mch_get_shellsize() for |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3563 // some obscure reason |
7 | 3564 #endif |
3565 | |
3566 if (mustset || (ui_get_shellsize() == FAIL && height != 0)) | |
3567 { | |
3568 Rows = height; | |
3569 Columns = width; | |
3570 check_shellsize(); | |
3571 ui_set_shellsize(mustset); | |
3572 } | |
3573 else | |
3574 check_shellsize(); | |
3575 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3576 // The window layout used to be adjusted here, but it now happens in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3577 // screenalloc() (also invoked from screenclear()). That is because the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3578 // "busy" check above may skip this, but not screenalloc(). |
7 | 3579 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3580 if (State != MODE_ASKMORE && State != MODE_EXTERNCMD |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3581 && State != MODE_CONFIRM) |
7 | 3582 screenclear(); |
3583 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3584 screen_start(); // don't know where cursor is now |
7 | 3585 |
3586 if (starting != NO_SCREEN) | |
3587 { | |
3588 maketitle(); | |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
3589 |
7 | 3590 changed_line_abv_curs(); |
3591 invalidate_botline(); | |
3592 | |
3593 /* | |
3594 * We only redraw when it's needed: | |
3595 * - While at the more prompt or executing an external command, don't | |
3596 * redraw, but position the cursor. | |
3597 * - While editing the command line, only redraw that. | |
3598 * - in Ex mode, don't redraw anything. | |
3599 * - Otherwise, redraw right now, and position the cursor. | |
3600 * Always need to call update_screen() or screenalloc(), to make | |
3601 * sure Rows/Columns and the size of ScreenLines[] is correct! | |
3602 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3603 if (State == MODE_ASKMORE || State == MODE_EXTERNCMD |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3604 || State == MODE_CONFIRM || exmode_active) |
7 | 3605 { |
3606 screenalloc(FALSE); | |
3607 repeat_message(); | |
3608 } | |
3609 else | |
3610 { | |
1024 | 3611 if (curwin->w_p_scb) |
3612 do_check_scrollbind(TRUE); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
3613 if (State & MODE_CMDLINE) |
648 | 3614 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
3615 update_screen(UPD_NOT_VALID); |
1024 | 3616 redrawcmdline(); |
648 | 3617 } |
3618 else | |
1024 | 3619 { |
3620 update_topline(); | |
3621 if (pum_visible()) | |
3622 { | |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
3623 redraw_later(UPD_NOT_VALID); |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
3624 ins_compl_show_pum(); |
1024 | 3625 } |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
3626 update_screen(UPD_NOT_VALID); |
1024 | 3627 if (redrawing()) |
3628 setcursor(); | |
3629 } | |
7 | 3630 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3631 cursor_on(); // redrawing may have switched it off |
7 | 3632 } |
3633 out_flush(); | |
31178
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3634 } |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3635 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3636 void |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3637 set_shellsize(int width, int height, int mustset) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3638 { |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3639 static int busy = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3640 static int do_run = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3641 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3642 if (width < 0 || height < 0) // just checking... |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3643 return; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3644 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3645 if (State == MODE_HITRETURN || State == MODE_SETWSIZE) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3646 { |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3647 // postpone the resizing |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3648 State = MODE_SETWSIZE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3649 return; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3650 } |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3651 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3652 // Avoid recursiveness. This can happen when setting the window size |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3653 // causes another window-changed signal or when two SIGWINCH signals come |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3654 // very close together. There needs to be another run then after the |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3655 // current one is done to pick up the latest size. |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3656 do_run = TRUE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3657 if (busy) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3658 return; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3659 |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3660 while (do_run) |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3661 { |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3662 do_run = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3663 busy = TRUE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3664 set_shellsize_inner(width, height, mustset); |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3665 busy = FALSE; |
f1c345ae4d89
patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents:
31168
diff
changeset
|
3666 } |
7 | 3667 } |
3668 | |
3669 /* | |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3670 * Output T_CTE, the t_TE termcap entry, and handle expected effects. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3671 * The code possibly disables modifyOtherKeys and the Kitty keyboard protocol. |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3672 */ |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3673 void |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3674 out_str_t_TE(void) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3675 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3676 out_str(T_CTE); |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3677 |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3678 // The seenModifyOtherKeys flag is not reset here. We do expect t_TE to |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3679 // disable modifyOtherKeys, but there is no way to detect it's enabled |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3680 // again after the following t_TI. We assume that when seenModifyOtherKeys |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3681 // was set before it will still be valid. |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3682 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3683 // When the kitty keyboard protocol is enabled we expect t_TE to disable |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3684 // it. Remembering that it was detected to be enabled is useful in some |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3685 // situations. |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3686 // The following t_TI is expected to request the state and then |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
3687 // kitty_protocol_state will be set again. |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3688 if (kitty_protocol_state == KKPS_ENABLED |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3689 || kitty_protocol_state == KKPS_DISABLED) |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3690 kitty_protocol_state = KKPS_DISABLED; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3691 else |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3692 kitty_protocol_state = KKPS_AFTER_T_KE; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3693 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3694 |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3695 /* |
7 | 3696 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external |
3697 * commands and Ex mode). | |
3698 */ | |
3699 void | |
20450
d5d89c24eec7
patch 8.2.0779: tmode_T not used everywhere
Bram Moolenaar <Bram@vim.org>
parents:
20439
diff
changeset
|
3700 settmode(tmode_T tmode) |
7 | 3701 { |
3702 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3703 // don't set the term where gvim was started to any mode |
7 | 3704 if (gui.in_use) |
3705 return; | |
3706 #endif | |
3707 | |
3708 if (full_screen) | |
3709 { | |
3710 /* | |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3711 * When returning after calling a shell cur_tmode is TMODE_UNKNOWN, |
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3712 * set the terminal to raw mode, even though we think it already is, |
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3713 * because the shell program may have reset the terminal mode. |
7 | 3714 * When we think the terminal is normal, don't try to set it to |
3715 * normal again, because that causes problems (logout!) on some | |
3716 * machines. | |
3717 */ | |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3718 if (tmode != cur_tmode) |
7 | 3719 { |
3720 #ifdef FEAT_TERMRESPONSE | |
1691 | 3721 # ifdef FEAT_GUI |
3722 if (!gui.in_use && !gui.starting) | |
3723 # endif | |
3724 { | |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3725 // May need to check for T_CRV response and termcodes, it |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3726 // doesn't work in Cooked mode, an external program may get |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3727 // them. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3728 if (tmode != TMODE_RAW && termrequest_any_pending()) |
1691 | 3729 (void)vpeekc_nomap(); |
3730 check_for_codes_from_term(); | |
3731 } | |
7 | 3732 #endif |
3733 if (tmode != TMODE_RAW) | |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3734 mch_setmouse(FALSE); // switch mouse off |
20439
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3735 |
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3736 // Disable bracketed paste and modifyOtherKeys in cooked mode. |
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3737 // Avoid doing this too often, on some terminals the codes are not |
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3738 // handled properly. |
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3739 if (termcap_active && tmode != TMODE_SLEEP |
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3740 && cur_tmode != TMODE_SLEEP) |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3741 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3742 MAY_WANT_TO_LOG_THIS; |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3743 |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3744 if (tmode != TMODE_RAW) |
20425
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3745 { |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3746 out_str(T_BD); // disable bracketed paste mode |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3747 out_str_t_TE(); // possibly disables modifyOtherKeys |
20425
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3748 } |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3749 else |
20425
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3750 { |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3751 out_str(T_BE); // enable bracketed paste mode (should |
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3752 // be before mch_settmode(). |
20425
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3753 out_str(T_CTI); // possibly enables modifyOtherKeys |
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3754 } |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3755 } |
7 | 3756 out_flush(); |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3757 mch_settmode(tmode); // machine specific function |
7 | 3758 cur_tmode = tmode; |
3759 if (tmode == TMODE_RAW) | |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3760 setmouse(); // may switch mouse on |
7 | 3761 out_flush(); |
3762 } | |
3763 #ifdef FEAT_TERMRESPONSE | |
3764 may_req_termresponse(); | |
3765 #endif | |
3766 } | |
3767 } | |
3768 | |
3769 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3770 starttermcap(void) |
7 | 3771 { |
3772 if (full_screen && !termcap_active) | |
3773 { | |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3774 MAY_WANT_TO_LOG_THIS; |
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3775 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3776 out_str(T_TI); // start termcap mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3777 out_str(T_CTI); // start "raw" mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3778 out_str(T_KS); // start "keypad transmit" mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3779 out_str(T_BE); // enable bracketed paste mode |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3780 |
24045
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
3781 #if defined(UNIX) || defined(VMS) |
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
3782 // Enable xterm's focus reporting mode when 'esckeys' is set. |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
3783 if (p_ek && *T_FE != NUL) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3784 out_str(T_FE); |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3785 #endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3786 |
7 | 3787 out_flush(); |
3788 termcap_active = TRUE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3789 screen_start(); // don't know where cursor is now |
7 | 3790 #ifdef FEAT_TERMRESPONSE |
1691 | 3791 # ifdef FEAT_GUI |
3792 if (!gui.in_use && !gui.starting) | |
3793 # endif | |
3794 { | |
3795 may_req_termresponse(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3796 // Immediately check for a response. If t_Co changes, we don't |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3797 // want to redraw with wrong colors first. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3798 if (crv_status.tr_progress == STATUS_SENT) |
1691 | 3799 check_for_codes_from_term(); |
3800 } | |
7 | 3801 #endif |
3802 } | |
3803 } | |
3804 | |
3805 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3806 stoptermcap(void) |
7 | 3807 { |
3808 screen_stop_highlight(); | |
3809 reset_cterm_colors(); | |
3810 if (termcap_active) | |
3811 { | |
3812 #ifdef FEAT_TERMRESPONSE | |
1691 | 3813 # ifdef FEAT_GUI |
3814 if (!gui.in_use && !gui.starting) | |
3815 # endif | |
3816 { | |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3817 // May need to discard T_CRV, T_U7 or T_RBG response. |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3818 if (termrequest_any_pending()) |
4391 | 3819 { |
3820 # ifdef UNIX | |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3821 // Give the terminal a chance to respond. |
21927
88070e222e82
patch 8.2.1513: cannot interrupt shell used for filename expansion
Bram Moolenaar <Bram@vim.org>
parents:
21624
diff
changeset
|
3822 mch_delay(100L, 0); |
4391 | 3823 # endif |
3824 # ifdef TCIFLUSH | |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3825 // Discard data received but not read. |
4391 | 3826 if (exiting) |
3827 tcflush(fileno(stdin), TCIFLUSH); | |
3828 # endif | |
3829 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3830 // Check for termcodes first, otherwise an external program may |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3831 // get them. |
1691 | 3832 check_for_codes_from_term(); |
3833 } | |
7 | 3834 #endif |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3835 MAY_WANT_TO_LOG_THIS; |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3836 |
24045
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
3837 #if defined(UNIX) || defined(VMS) |
1b56d4c75d19
patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents:
23774
diff
changeset
|
3838 // Disable xterm's focus reporting mode if 'esckeys' is set. |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
3839 if (p_ek && *T_FD != NUL) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3840 out_str(T_FD); |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3841 #endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
3842 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3843 out_str(T_BD); // disable bracketed paste mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3844 out_str(T_KE); // stop "keypad transmit" mode |
7 | 3845 out_flush(); |
3846 termcap_active = FALSE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3847 cursor_on(); // just in case it is still off |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3848 out_str_t_TE(); // stop "raw" mode, modifyOtherKeys and |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
3849 // Kitty keyboard protocol |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3850 out_str(T_TE); // stop termcap mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3851 screen_start(); // don't know where cursor is now |
7 | 3852 out_flush(); |
3853 } | |
3854 } | |
3855 | |
5932 | 3856 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 3857 /* |
3858 * Request version string (for xterm) when needed. | |
3859 * Only do this after switching to raw mode, otherwise the result will be | |
3860 * echoed. | |
626 | 3861 * Only do this after startup has finished, to avoid that the response comes |
1221 | 3862 * while executing "-c !cmd" or even after "-c quit". |
7 | 3863 * Only do this after termcap mode has been started, otherwise the codes for |
3864 * the cursor keys may be wrong. | |
620 | 3865 * Only do this when 'esckeys' is on, otherwise the response causes trouble in |
3866 * Insert mode. | |
164 | 3867 * On Unix only do it when both output and input are a tty (avoid writing |
3868 * request to terminal while reading from a file). | |
7 | 3869 * The result is caught in check_termcode(). |
3870 */ | |
626 | 3871 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3872 may_req_termresponse(void) |
7 | 3873 { |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3874 if (crv_status.tr_progress == STATUS_GET |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
3875 && can_get_termresponse() |
626 | 3876 && starting == 0 |
7 | 3877 && *T_CRV != NUL) |
3878 { | |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3879 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3880 LOG_TR(("Sending CRV request")); |
7 | 3881 out_str(T_CRV); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3882 termrequest_sent(&crv_status); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3883 // check for the characters now, otherwise they might be eaten by |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3884 // get_keystroke() |
7 | 3885 out_flush(); |
3886 (void)vpeekc_nomap(); | |
3887 } | |
3888 } | |
4215 | 3889 |
3890 /* | |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3891 * Send sequences to the terminal and check with t_u7 how the cursor moves, to |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3892 * find out properties of the terminal. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
3893 * Note that this goes out before T_CRV, so that the result can be used when |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
3894 * the termresponse arrives. |
4215 | 3895 */ |
3896 void | |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3897 check_terminal_behavior(void) |
4215 | 3898 { |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3899 int did_send = FALSE; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3900 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3901 if (!can_get_termresponse() || starting != 0 || *T_U7 == NUL) |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3902 return; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3903 |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3904 if (u7_status.tr_progress == STATUS_GET |
4215 | 3905 && !option_was_set((char_u *)"ambiwidth")) |
3906 { | |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3907 char_u buf[16]; |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3908 |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3909 // Ambiguous width check. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3910 // Check how the terminal treats ambiguous character width (UAX #11). |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3911 // First, we move the cursor to (1, 0) and print a test ambiguous |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3912 // character \u25bd (WHITE DOWN-POINTING TRIANGLE) and then query |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3913 // the current cursor position. If the terminal treats \u25bd as |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3914 // single width, the position is (1, 1), or if it is treated as double |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3915 // width, that will be (1, 2). This function has the side effect that |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3916 // changes cursor position, so it must be called immediately after |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3917 // entering termcap mode. |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3918 MAY_WANT_TO_LOG_THIS; |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3919 LOG_TR(("Sending request for ambiwidth check")); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3920 // Do this in the second row. In the first row the returned sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3921 // may be CSI 1;2R, which is the same as <S-F3>. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3922 term_windgoto(1, 0); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3923 buf[mb_char2bytes(0x25bd, buf)] = NUL; |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3924 out_str(buf); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3925 out_str(T_U7); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3926 termrequest_sent(&u7_status); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3927 out_flush(); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3928 did_send = TRUE; |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3929 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3930 // This overwrites a few characters on the screen, a redraw is needed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3931 // after this. Clear them out for now. |
17482
6cf077f59152
patch 8.1.1739: deleted match highlighting not updated in other window
Bram Moolenaar <Bram@vim.org>
parents:
17330
diff
changeset
|
3932 screen_stop_highlight(); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3933 term_windgoto(1, 0); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3934 out_str((char_u *)" "); |
21226
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
3935 line_was_clobbered(1); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3936 } |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3937 |
27004
671664c5faa4
patch 8.2.4031: crash in xterm with only two lines
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
3938 if (xcc_status.tr_progress == STATUS_GET && Rows > 2) |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3939 { |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3940 // 2. Check compatibility with xterm. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3941 // We move the cursor to (2, 0), print a test sequence and then query |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3942 // the current cursor position. If the terminal properly handles |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3943 // unknown DCS string and CSI sequence with intermediate byte, the test |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3944 // sequence is ignored and the cursor does not move. If the terminal |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3945 // handles test sequence incorrectly, a garbage string is displayed and |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3946 // the cursor does move. |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3947 MAY_WANT_TO_LOG_THIS; |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3948 LOG_TR(("Sending xterm compatibility test sequence.")); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3949 // Do this in the third row. Second row is used by ambiguous |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
22956
diff
changeset
|
3950 // character width check. |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3951 term_windgoto(2, 0); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3952 // send the test DCS string. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3953 out_str((char_u *)"\033Pzz\033\\"); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3954 // send the test CSI sequence with intermediate byte. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3955 out_str((char_u *)"\033[0%m"); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3956 out_str(T_U7); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3957 termrequest_sent(&xcc_status); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3958 out_flush(); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3959 did_send = TRUE; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3960 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3961 // If the terminal handles test sequence incorrectly, garbage text is |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3962 // displayed. Clear them out for now. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3963 screen_stop_highlight(); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3964 term_windgoto(2, 0); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3965 out_str((char_u *)" "); |
21226
421c4ed6b949
patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents:
20935
diff
changeset
|
3966 line_was_clobbered(2); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3967 } |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3968 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3969 if (did_send) |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3970 { |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3971 term_windgoto(0, 0); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3972 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3973 // Need to reset the known cursor position. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3974 screen_start(); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3975 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3976 // check for the characters now, otherwise they might be eaten by |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3977 // get_keystroke() |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3978 out_flush(); |
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3979 (void)vpeekc_nomap(); |
4215 | 3980 } |
3981 } | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3982 |
6874 | 3983 /* |
6885 | 3984 * Similar to requesting the version string: Request the terminal background |
3985 * color when it is the right moment. | |
6874 | 3986 */ |
3987 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3988 may_req_bg_color(void) |
6874 | 3989 { |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
3990 if (can_get_termresponse() && starting == 0) |
6874 | 3991 { |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3992 int didit = FALSE; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3993 |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
3994 # ifdef FEAT_TERMINAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3995 // Only request foreground if t_RF is set. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
3996 if (rfg_status.tr_progress == STATUS_GET && *T_RFG != NUL) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3997 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
3998 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3999 LOG_TR(("Sending FG request")); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4000 out_str(T_RFG); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4001 termrequest_sent(&rfg_status); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4002 didit = TRUE; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4003 } |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
4004 # endif |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4005 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4006 // Only request background if t_RB is set. |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4007 if (rbg_status.tr_progress == STATUS_GET && *T_RBG != NUL) |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4008 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4009 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4010 LOG_TR(("Sending BG request")); |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4011 out_str(T_RBG); |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
4012 termrequest_sent(&rbg_status); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4013 didit = TRUE; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4014 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4015 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4016 if (didit) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4017 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4018 // check for the characters now, otherwise they might be eaten by |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4019 // get_keystroke() |
12232
1553d1a4bf7c
patch 8.0.0996: Mac: t_RS is echoed on the screne in Terminal.app
Christian Brabandt <cb@256bit.org>
parents:
12226
diff
changeset
|
4020 out_flush(); |
1553d1a4bf7c
patch 8.0.0996: Mac: t_RS is echoed on the screne in Terminal.app
Christian Brabandt <cb@256bit.org>
parents:
12226
diff
changeset
|
4021 (void)vpeekc_nomap(); |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4022 } |
6874 | 4023 } |
4024 } | |
4025 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4026 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4027 static void |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4028 log_tr(const char *fmt, ...) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4029 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4030 static FILE *fd_tr = NULL; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4031 static proftime_T start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4032 proftime_T now; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4033 va_list ap; |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4034 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4035 if (fd_tr == NULL) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4036 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4037 fd_tr = fopen("termresponse.log", "w"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4038 profile_start(&start); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4039 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4040 now = start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4041 profile_end(&now); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4042 fprintf(fd_tr, "%s: %s ", profile_msg(&now), |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4043 must_redraw == UPD_NOT_VALID ? "NV" |
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4044 : must_redraw == UPD_CLEAR ? "CL" : " "); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4045 va_start(ap, fmt); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4046 vfprintf(fd_tr, fmt, ap); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4047 va_end(ap); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4048 fputc('\n', fd_tr); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4049 fflush(fd_tr); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4050 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4051 # endif |
7 | 4052 #endif |
4053 | |
4054 /* | |
4055 * Return TRUE when saving and restoring the screen. | |
4056 */ | |
4057 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4058 swapping_screen(void) |
7 | 4059 { |
4060 return (full_screen && *T_TI != NUL); | |
4061 } | |
4062 | |
4063 /* | |
4064 * By outputting the 'cursor very visible' termcap code, for some windowed | |
4065 * terminals this makes the screen scrolled to the correct position. | |
4066 * Used when starting Vim or returning from a shell. | |
4067 */ | |
4068 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4069 scroll_start(void) |
7 | 4070 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4071 if (*T_VS != NUL && *T_CVS != NUL) |
7 | 4072 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4073 MAY_WANT_TO_LOG_THIS; |
7 | 4074 out_str(T_VS); |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4075 out_str(T_CVS); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4076 screen_start(); // don't know where cursor is now |
7 | 4077 } |
4078 } | |
4079 | |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4080 // True if cursor is not visible |
7 | 4081 static int cursor_is_off = FALSE; |
4082 | |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4083 // True if cursor is not visible due to an ongoing cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4084 static int cursor_is_asleep = FALSE; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4085 |
7 | 4086 /* |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4087 * Enable the cursor without checking if it's already enabled. |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4088 */ |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4089 void |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4090 cursor_on_force(void) |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4091 { |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4092 out_str(T_VE); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4093 cursor_is_off = FALSE; |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4094 cursor_is_asleep = FALSE; |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4095 } |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4096 |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4097 /* |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4098 * Enable the cursor if it's currently off. |
7 | 4099 */ |
4100 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4101 cursor_on(void) |
7 | 4102 { |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4103 if (cursor_is_off && !cursor_is_asleep) |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
4104 cursor_on_force(); |
7 | 4105 } |
4106 | |
4107 /* | |
4108 * Disable the cursor. | |
4109 */ | |
4110 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4111 cursor_off(void) |
7 | 4112 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4113 if (full_screen && !cursor_is_off) |
7 | 4114 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4115 out_str(T_VI); // disable cursor |
7 | 4116 cursor_is_off = TRUE; |
4117 } | |
4118 } | |
4119 | |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
27004
diff
changeset
|
4120 #ifdef FEAT_GUI |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4121 /* |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4122 * Check whether the cursor is invisible due to an ongoing cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4123 */ |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4124 int |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4125 cursor_is_sleeping(void) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4126 { |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4127 return cursor_is_asleep; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4128 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
27004
diff
changeset
|
4129 #endif |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4130 |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4131 /* |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4132 * Disable the cursor and mark it disabled by cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4133 */ |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4134 void |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4135 cursor_sleep(void) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4136 { |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4137 cursor_is_asleep = TRUE; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4138 cursor_off(); |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4139 } |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4140 |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4141 /* |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4142 * Enable the cursor and mark it not disabled by cursor-less sleep |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4143 */ |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4144 void |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4145 cursor_unsleep(void) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4146 { |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4147 cursor_is_asleep = FALSE; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4148 cursor_on(); |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4149 } |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
24228
diff
changeset
|
4150 |
39 | 4151 #if defined(CURSOR_SHAPE) || defined(PROTO) |
7 | 4152 /* |
6727 | 4153 * Set cursor shape to match Insert or Replace mode. |
36 | 4154 */ |
4155 void | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4156 term_cursor_mode(int forced) |
36 | 4157 { |
12078
d21b8f31b296
patch 8.0.0919: cursor color isn't set on startup
Christian Brabandt <cb@256bit.org>
parents:
12076
diff
changeset
|
4158 static int showing_mode = -1; |
6727 | 4159 char_u *p; |
4160 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4161 // Only do something when redrawing the screen and we can restore the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4162 // mode. |
6727 | 4163 if (!full_screen || *T_CEI == NUL) |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4164 { |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
4165 # ifdef FEAT_TERMRESPONSE |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4166 if (forced && initial_cursor_shape > 0) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4167 // Restore to initial values. |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4168 term_cursor_shape(initial_cursor_shape, initial_cursor_blink); |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
4169 # endif |
36 | 4170 return; |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
4171 } |
36 | 4172 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4173 if ((State & MODE_REPLACE) == MODE_REPLACE) |
36 | 4174 { |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4175 if (forced || showing_mode != MODE_REPLACE) |
6727 | 4176 { |
4177 if (*T_CSR != NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4178 p = T_CSR; // Replace mode cursor |
6727 | 4179 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4180 p = T_CSI; // fall back to Insert mode cursor |
6727 | 4181 if (*p != NUL) |
4182 { | |
4183 out_str(p); | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4184 showing_mode = MODE_REPLACE; |
6727 | 4185 } |
4186 } | |
36 | 4187 } |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4188 else if (State & MODE_INSERT) |
36 | 4189 { |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4190 if ((forced || showing_mode != MODE_INSERT) && *T_CSI != NUL) |
6727 | 4191 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4192 out_str(T_CSI); // Insert mode cursor |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4193 showing_mode = MODE_INSERT; |
6727 | 4194 } |
4195 } | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4196 else if (forced || showing_mode != MODE_NORMAL) |
6727 | 4197 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4198 out_str(T_CEI); // non-Insert mode cursor |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
4199 showing_mode = MODE_NORMAL; |
36 | 4200 } |
4201 } | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4202 |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4203 # if defined(FEAT_TERMINAL) || defined(PROTO) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4204 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4205 term_cursor_color(char_u *color) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4206 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4207 if (*T_CSC != NUL) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4208 { |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
4209 out_str(T_CSC); // set cursor color start |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4210 out_str_nf(color); |
18430
0388e1991ec5
patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents:
18400
diff
changeset
|
4211 out_str(T_CEC); // set cursor color end |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4212 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4213 } |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4214 } |
12172
444793fce117
patch 8.0.0966: build failure without terminal feature
Christian Brabandt <cb@256bit.org>
parents:
12170
diff
changeset
|
4215 # endif |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4216 |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4217 int |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4218 blink_state_is_inverted() |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4219 { |
12261
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4220 #ifdef FEAT_TERMRESPONSE |
16936
73e6ed2f69a2
patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents:
16926
diff
changeset
|
4221 return rbm_status.tr_progress == STATUS_GOT |
73e6ed2f69a2
patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents:
16926
diff
changeset
|
4222 && rcs_status.tr_progress == STATUS_GOT |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4223 && initial_cursor_blink != initial_cursor_shape_blink; |
12261
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4224 #else |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4225 return FALSE; |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
4226 #endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4227 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4228 |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4229 /* |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4230 * "shape": 1 = block, 2 = underline, 3 = vertical bar |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4231 */ |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4232 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4233 term_cursor_shape(int shape, int blink) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4234 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4235 if (*T_CSH != NUL) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4236 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4237 OUT_STR(tgoto((char *)T_CSH, 0, shape * 2 - blink)); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4238 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4239 } |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4240 else |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4241 { |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4242 int do_blink = blink; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4243 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4244 // t_SH is empty: try setting just the blink state. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4245 // The blink flags are XORed together, if the initial blinking from |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4246 // style and shape differs, we need to invert the flag here. |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4247 if (blink_state_is_inverted()) |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4248 do_blink = !blink; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4249 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4250 if (do_blink && *T_VS != NUL) |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4251 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4252 out_str(T_VS); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4253 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4254 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4255 else if (!do_blink && *T_CVS != NUL) |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4256 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4257 out_str(T_CVS); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4258 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4259 } |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
4260 } |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
4261 } |
39 | 4262 #endif |
36 | 4263 |
4264 /* | |
7 | 4265 * Set scrolling region for window 'wp'. |
4266 * The region starts 'off' lines from the start of the window. | |
4267 * Also set the vertical scroll region for a vertically split window. Always | |
4268 * the full width of the window, excluding the vertical separator. | |
4269 */ | |
4270 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4271 scroll_region_set(win_T *wp, int off) |
7 | 4272 { |
4273 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1, | |
4274 W_WINROW(wp) + off)); | |
4275 if (*T_CSV != NUL && wp->w_width != Columns) | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12497
diff
changeset
|
4276 OUT_STR(tgoto((char *)T_CSV, wp->w_wincol + wp->w_width - 1, |
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12497
diff
changeset
|
4277 wp->w_wincol)); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4278 screen_start(); // don't know where cursor is now |
7 | 4279 } |
4280 | |
4281 /* | |
4282 * Reset scrolling region to the whole screen. | |
4283 */ | |
4284 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4285 scroll_region_reset(void) |
7 | 4286 { |
4287 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0)); | |
4288 if (*T_CSV != NUL) | |
4289 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0)); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4290 screen_start(); // don't know where cursor is now |
7 | 4291 } |
4292 | |
4293 | |
4294 /* | |
4295 * List of terminal codes that are currently recognized. | |
4296 */ | |
4297 | |
298 | 4298 static struct termcode |
7 | 4299 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4300 char_u name[2]; // termcap name of entry |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4301 char_u *code; // terminal code (in allocated memory) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4302 int len; // STRLEN(code) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4303 int modlen; // length of part before ";*~". |
7 | 4304 } *termcodes = NULL; |
4305 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4306 static int tc_max_len = 0; // number of entries that termcodes[] can hold |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4307 static int tc_len = 0; // current number of entries in termcodes[] |
7 | 4308 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
4309 static int termcode_star(char_u *code, int len); |
180 | 4310 |
7 | 4311 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4312 clear_termcodes(void) |
7 | 4313 { |
4314 while (tc_len > 0) | |
4315 vim_free(termcodes[--tc_len].code); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
4316 VIM_CLEAR(termcodes); |
7 | 4317 tc_max_len = 0; |
4318 | |
4319 #ifdef HAVE_TGETENT | |
4320 BC = (char *)empty_option; | |
4321 UP = (char *)empty_option; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4322 PC = NUL; // set pad character to NUL |
7 | 4323 ospeed = 0; |
4324 #endif | |
4325 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4326 need_gather = TRUE; // need to fill termleader[] |
7 | 4327 } |
4328 | |
180 | 4329 #define ATC_FROM_TERM 55 |
4330 | |
7 | 4331 /* |
4332 * Add a new entry to the list of terminal codes. | |
4333 * The list is kept alphabetical for ":set termcap" | |
180 | 4334 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired. |
4335 * "flags" can also be ATC_FROM_TERM for got_code_from_term(). | |
7 | 4336 */ |
4337 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4338 add_termcode(char_u *name, char_u *string, int flags) |
7 | 4339 { |
4340 struct termcode *new_tc; | |
4341 int i, j; | |
4342 char_u *s; | |
179 | 4343 int len; |
7 | 4344 |
4345 if (string == NULL || *string == NUL) | |
4346 { | |
4347 del_termcode(name); | |
4348 return; | |
4349 } | |
4350 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
4351 #if defined(MSWIN) && !defined(FEAT_GUI) |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20778
diff
changeset
|
4352 s = vim_strnsave(string, STRLEN(string) + 1); |
6047 | 4353 #else |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4354 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4355 if (!gui.in_use) |
20830
9064044fd4f6
patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
20778
diff
changeset
|
4356 s = vim_strnsave(string, STRLEN(string) + 1); |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4357 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4358 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4359 s = vim_strsave(string); |
6047 | 4360 #endif |
7 | 4361 if (s == NULL) |
4362 return; | |
4363 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4364 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. |
180 | 4365 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0) |
7 | 4366 { |
1623 | 4367 STRMOVE(s, s + 1); |
7 | 4368 s[0] = term_7to8bit(string); |
4369 } | |
6047 | 4370 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4371 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4372 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4373 if (!gui.in_use) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4374 # endif |
6047 | 4375 { |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4376 if (s[0] == K_NUL) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4377 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4378 STRMOVE(s + 1, s); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4379 s[1] = 3; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
4380 } |
6047 | 4381 } |
4382 #endif | |
4383 | |
179 | 4384 len = (int)STRLEN(s); |
7 | 4385 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4386 need_gather = TRUE; // need to fill termleader[] |
7 | 4387 |
4388 /* | |
4389 * need to make space for more entries | |
4390 */ | |
4391 if (tc_len == tc_max_len) | |
4392 { | |
4393 tc_max_len += 20; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
4394 new_tc = ALLOC_MULT(struct termcode, tc_max_len); |
7 | 4395 if (new_tc == NULL) |
4396 { | |
4397 tc_max_len -= 20; | |
24737
e97a14604f65
patch 8.2.2907: memory leak when running out of memory
Bram Moolenaar <Bram@vim.org>
parents:
24428
diff
changeset
|
4398 vim_free(s); |
7 | 4399 return; |
4400 } | |
4401 for (i = 0; i < tc_len; ++i) | |
4402 new_tc[i] = termcodes[i]; | |
4403 vim_free(termcodes); | |
4404 termcodes = new_tc; | |
4405 } | |
4406 | |
4407 /* | |
4408 * Look for existing entry with the same name, it is replaced. | |
4409 * Look for an existing entry that is alphabetical higher, the new entry | |
4410 * is inserted in front of it. | |
4411 */ | |
4412 for (i = 0; i < tc_len; ++i) | |
4413 { | |
4414 if (termcodes[i].name[0] < name[0]) | |
4415 continue; | |
4416 if (termcodes[i].name[0] == name[0]) | |
4417 { | |
4418 if (termcodes[i].name[1] < name[1]) | |
4419 continue; | |
4420 /* | |
180 | 4421 * Exact match: May replace old code. |
7 | 4422 */ |
4423 if (termcodes[i].name[1] == name[1]) | |
4424 { | |
180 | 4425 if (flags == ATC_FROM_TERM && (j = termcode_star( |
4426 termcodes[i].code, termcodes[i].len)) > 0) | |
179 | 4427 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4428 // Don't replace ESC[123;*X or ESC O*X with another when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4429 // invoked from got_code_from_term(). |
180 | 4430 if (len == termcodes[i].len - j |
179 | 4431 && STRNCMP(s, termcodes[i].code, len - 1) == 0 |
180 | 4432 && s[len - 1] |
4433 == termcodes[i].code[termcodes[i].len - 1]) | |
179 | 4434 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4435 // They are equal but for the ";*": don't add it. |
179 | 4436 vim_free(s); |
4437 return; | |
4438 } | |
4439 } | |
4440 else | |
4441 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4442 // Replace old code. |
179 | 4443 vim_free(termcodes[i].code); |
4444 --tc_len; | |
4445 break; | |
4446 } | |
7 | 4447 } |
4448 } | |
4449 /* | |
4450 * Found alphabetical larger entry, move rest to insert new entry | |
4451 */ | |
4452 for (j = tc_len; j > i; --j) | |
4453 termcodes[j] = termcodes[j - 1]; | |
4454 break; | |
4455 } | |
4456 | |
4457 termcodes[i].name[0] = name[0]; | |
4458 termcodes[i].name[1] = name[1]; | |
4459 termcodes[i].code = s; | |
179 | 4460 termcodes[i].len = len; |
180 | 4461 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4462 // For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4463 // accept modifiers. |
180 | 4464 termcodes[i].modlen = 0; |
4465 j = termcode_star(s, len); | |
4466 if (j > 0) | |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4467 { |
180 | 4468 termcodes[i].modlen = len - 1 - j; |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4469 // For "CSI[@;X" the "@" is not included in "modlen". |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4470 if (termcodes[i].code[termcodes[i].modlen - 1] == '@') |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4471 --termcodes[i].modlen; |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4472 } |
7 | 4473 ++tc_len; |
4474 } | |
4475 | |
180 | 4476 /* |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4477 * Check termcode "code[len]" for ending in ;*X or *X. |
180 | 4478 * The "X" can be any character. |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4479 * Return 0 if not found, 2 for ;*X and 1 for *X. |
180 | 4480 */ |
4481 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4482 termcode_star(char_u *code, int len) |
180 | 4483 { |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
4484 // Shortest is <M-O>*X. With ; shortest is <CSI>@;*X |
180 | 4485 if (len >= 3 && code[len - 2] == '*') |
4486 { | |
4487 if (len >= 5 && code[len - 3] == ';') | |
4488 return 2; | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4489 else |
180 | 4490 return 1; |
4491 } | |
4492 return 0; | |
4493 } | |
4494 | |
7 | 4495 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4496 find_termcode(char_u *name) |
7 | 4497 { |
4498 int i; | |
4499 | |
4500 for (i = 0; i < tc_len; ++i) | |
4501 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4502 return termcodes[i].code; | |
4503 return NULL; | |
4504 } | |
4505 | |
4506 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4507 get_termcode(int i) |
7 | 4508 { |
4509 if (i >= tc_len) | |
4510 return NULL; | |
4511 return &termcodes[i].name[0]; | |
4512 } | |
4513 | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4514 /* |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4515 * Returns the length of the terminal code at index 'idx'. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4516 */ |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4517 int |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4518 get_termcode_len(int idx) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4519 { |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4520 return termcodes[idx].len; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4521 } |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4522 |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4523 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4524 del_termcode(char_u *name) |
7 | 4525 { |
4526 int i; | |
4527 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4528 if (termcodes == NULL) // nothing there yet |
7 | 4529 return; |
4530 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4531 need_gather = TRUE; // need to fill termleader[] |
7 | 4532 |
4533 for (i = 0; i < tc_len; ++i) | |
4534 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4535 { | |
4536 del_termcode_idx(i); | |
4537 return; | |
4538 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4539 // not found. Give error message? |
7 | 4540 } |
4541 | |
4542 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4543 del_termcode_idx(int idx) |
7 | 4544 { |
4545 int i; | |
4546 | |
4547 vim_free(termcodes[idx].code); | |
4548 --tc_len; | |
4549 for (i = idx; i < tc_len; ++i) | |
4550 termcodes[i] = termcodes[i + 1]; | |
4551 } | |
4552 | |
4553 #ifdef FEAT_TERMRESPONSE | |
4554 /* | |
4555 * Called when detected that the terminal sends 8-bit codes. | |
4556 * Convert all 7-bit codes to their 8-bit equivalent. | |
4557 */ | |
4558 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4559 switch_to_8bit(void) |
7 | 4560 { |
4561 int i; | |
4562 int c; | |
4563 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4564 // Only need to do something when not already using 8-bit codes. |
7 | 4565 if (!term_is_8bit(T_NAME)) |
4566 { | |
4567 for (i = 0; i < tc_len; ++i) | |
4568 { | |
4569 c = term_7to8bit(termcodes[i].code); | |
4570 if (c != 0) | |
4571 { | |
1623 | 4572 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2); |
7 | 4573 termcodes[i].code[0] = c; |
4574 } | |
4575 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4576 need_gather = TRUE; // need to fill termleader[] |
7 | 4577 } |
4578 detected_8bit = TRUE; | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4579 LOG_TR(("Switching to 8 bit")); |
7 | 4580 } |
4581 #endif | |
4582 | |
4583 #ifdef CHECK_DOUBLE_CLICK | |
4584 static linenr_T orig_topline = 0; | |
4585 # ifdef FEAT_DIFF | |
4586 static int orig_topfill = 0; | |
4587 # endif | |
4588 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
4589 #if defined(CHECK_DOUBLE_CLICK) || defined(PROTO) |
7 | 4590 /* |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26670
diff
changeset
|
4591 * Checking for double-clicks ourselves. |
7 | 4592 * "orig_topline" is used to avoid detecting a double-click when the window |
4593 * contents scrolled (e.g., when 'scrolloff' is non-zero). | |
4594 */ | |
4595 /* | |
4596 * Set orig_topline. Used when jumping to another window, so that a double | |
4597 * click still works. | |
4598 */ | |
4599 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4600 set_mouse_topline(win_T *wp) |
7 | 4601 { |
4602 orig_topline = wp->w_topline; | |
4603 # ifdef FEAT_DIFF | |
4604 orig_topfill = wp->w_topfill; | |
4605 # endif | |
4606 } | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4607 |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4608 /* |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4609 * Returns TRUE if the top line and top fill of window 'wp' matches the saved |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4610 * topline and topfill. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4611 */ |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4612 int |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4613 is_mouse_topline(win_T *wp) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4614 { |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4615 return orig_topline == wp->w_topline |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4616 #ifdef FEAT_DIFF |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4617 && orig_topfill == wp->w_topfill |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4618 #endif |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4619 ; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4620 } |
7 | 4621 #endif |
4622 | |
4623 /* | |
28616
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4624 * If "buf" is NULL put "string[new_slen]" in typebuf; "buflen" is not used. |
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4625 * If "buf" is not NULL put "string[new_slen]" in "buf[bufsize]" and adjust |
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4626 * "buflen". |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4627 * Remove "slen" bytes. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4628 * Returns FAIL for error. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4629 */ |
20727
5ffe112b1afd
patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents:
20705
diff
changeset
|
4630 int |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4631 put_string_in_typebuf( |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4632 int offset, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4633 int slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4634 char_u *string, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4635 int new_slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4636 char_u *buf, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4637 int bufsize, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4638 int *buflen) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4639 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4640 int extra = new_slen - slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4641 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4642 string[new_slen] = NUL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4643 if (buf == NULL) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4644 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4645 if (extra < 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4646 // remove matched chars, taking care of noremap |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4647 del_typebuf(-extra, offset); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4648 else if (extra > 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4649 // insert the extra space we need |
28618
daad4c7b39be
patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents:
28616
diff
changeset
|
4650 if (ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE) |
daad4c7b39be
patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents:
28616
diff
changeset
|
4651 == FAIL) |
daad4c7b39be
patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents:
28616
diff
changeset
|
4652 return FAIL; |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4653 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4654 // Careful: del_typebuf() and ins_typebuf() may have reallocated |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4655 // typebuf.tb_buf[]! |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4656 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4657 (size_t)new_slen); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4658 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4659 else |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4660 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4661 if (extra < 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4662 // remove matched characters |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4663 mch_memmove(buf + offset, buf + offset - extra, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4664 (size_t)(*buflen + offset + extra)); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4665 else if (extra > 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4666 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4667 // Insert the extra space we need. If there is insufficient |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4668 // space return -1. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4669 if (*buflen + extra + new_slen >= bufsize) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4670 return FAIL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4671 mch_memmove(buf + offset + extra, buf + offset, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4672 (size_t)(*buflen - offset)); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4673 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4674 mch_memmove(buf + offset, string, (size_t)new_slen); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4675 *buflen = *buflen + extra + new_slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4676 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4677 return OK; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4678 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4679 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4680 /* |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4681 * Decode a modifier number as xterm provides it into MOD_MASK bits. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4682 */ |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4683 int |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4684 decode_modifiers(int n) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4685 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4686 int code = n - 1; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4687 int modifiers = 0; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4688 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4689 if (code & 1) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4690 modifiers |= MOD_MASK_SHIFT; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4691 if (code & 2) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4692 modifiers |= MOD_MASK_ALT; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4693 if (code & 4) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4694 modifiers |= MOD_MASK_CTRL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4695 if (code & 8) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4696 modifiers |= MOD_MASK_META; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4697 return modifiers; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4698 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4699 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4700 static int |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4701 modifiers2keycode(int modifiers, int *key, char_u *string) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4702 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4703 int new_slen = 0; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4704 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4705 if (modifiers != 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4706 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4707 // Some keys have the modifier included. Need to handle that here to |
22764
d03221aa54f3
patch 8.2.1930: wrong input if removing shift results in special key code
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
4708 // make mappings work. This may result in a special key, such as |
d03221aa54f3
patch 8.2.1930: wrong input if removing shift results in special key code
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
4709 // K_S_TAB. |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4710 *key = simplify_key(*key, &modifiers); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4711 if (modifiers != 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4712 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4713 string[new_slen++] = K_SPECIAL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4714 string[new_slen++] = (int)KS_MODIFIER; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4715 string[new_slen++] = modifiers; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4716 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4717 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4718 return new_slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4719 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4720 |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4721 #ifdef FEAT_TERMRESPONSE |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4722 /* |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4723 * Handle a cursor position report. |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4724 */ |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4725 static void |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4726 handle_u7_response(int *arg, char_u *tp UNUSED, int csi_len UNUSED) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4727 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4728 if (arg[0] == 2 && arg[1] >= 2) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4729 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4730 char *aw = NULL; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4731 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4732 LOG_TR(("Received U7 status: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4733 u7_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4734 did_cursorhold = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4735 if (arg[1] == 2) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4736 aw = "single"; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4737 else if (arg[1] == 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4738 aw = "double"; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4739 if (aw != NULL && STRCMP(aw, p_ambw) != 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4740 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4741 // Setting the option causes a screen redraw. Do |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4742 // that right away if possible, keeping any |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4743 // messages. |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
4744 set_option_value_give_err((char_u *)"ambw", 0L, (char_u *)aw, 0); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4745 # ifdef DEBUG_TERMRESPONSE |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4746 { |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4747 int r = redraw_asap(UPD_CLEAR); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4748 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4749 log_tr("set 'ambiwidth', redraw_asap(): %d", r); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4750 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4751 # else |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
4752 redraw_asap(UPD_CLEAR); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4753 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4754 # ifdef FEAT_EVAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4755 set_vim_var_string(VV_TERMU7RESP, tp, csi_len); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4756 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4757 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4758 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4759 else if (arg[0] == 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4760 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4761 int value; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4762 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4763 LOG_TR(("Received compatibility test result: %s", tp)); |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4764 xcc_status.tr_progress = STATUS_GOT; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4765 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4766 // Third row: xterm compatibility test. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4767 // If the cursor is on the first column then the terminal can handle |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4768 // the request for cursor style and blinking. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4769 value = arg[1] == 1 ? TPR_YES : TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4770 term_props[TPR_CURSOR_STYLE].tpr_status = value; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4771 term_props[TPR_CURSOR_BLINK].tpr_status = value; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4772 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4773 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4774 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4775 /* |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4776 * Handle a response to T_CRV: {lead}{first}{x};{vers};{y}c |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
22956
diff
changeset
|
4777 * Xterm and alike use '>' for {first}. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4778 * Rxvt sends "{lead}?1;2c". |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4779 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4780 static void |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4781 handle_version_response(int first, int *arg, int argc, char_u *tp) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4782 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4783 // The xterm version. It is set to zero when it can't be an actual xterm |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4784 // version. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4785 int version = arg[1]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4786 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4787 LOG_TR(("Received CRV response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4788 crv_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4789 did_cursorhold = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4790 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4791 // Reset terminal properties that are set based on the termresponse. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4792 // Mainly useful for tests that send the termresponse multiple times. |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20830
diff
changeset
|
4793 // For testing all props can be reset. |
20838
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4794 init_term_props( |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4795 #ifdef FEAT_EVAL |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4796 reset_term_props_on_termresponse |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4797 #else |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4798 FALSE |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4799 #endif |
020aec2e8de9
patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents:
20836
diff
changeset
|
4800 ); |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4801 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4802 // If this code starts with CSI, you can bet that the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4803 // terminal uses 8-bit codes. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4804 if (tp[0] == CSI) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4805 switch_to_8bit(); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4806 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4807 // Screen sends 40500. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4808 // rxvt sends its version number: "20703" is 2.7.3. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4809 // Ignore it for when the user has set 'term' to xterm, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4810 // even though it's an rxvt. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4811 if (version > 20000) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4812 version = 0; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4813 |
28616
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4814 // Figure out more if the response is CSI > 99 ; 99 ; 99 c |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4815 if (first == '>' && argc == 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4816 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4817 int need_flush = FALSE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4818 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4819 // mintty 2.9.5 sends 77;20905;0c. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4820 // (77 is ASCII 'M' for mintty.) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4821 if (arg[0] == 77) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4822 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4823 // mintty can do SGR mouse reporting |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4824 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4825 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4826 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4827 // If xterm version >= 141 try to get termcap codes. For other |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4828 // terminals the request should be ignored. |
26670
a77b661439f9
patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents:
26439
diff
changeset
|
4829 if (version >= 141 && p_xtermcodes) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4830 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4831 LOG_TR(("Enable checking for XT codes")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4832 check_for_codes = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4833 need_gather = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4834 req_codes_from_term(); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4835 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4836 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4837 // libvterm sends 0;100;0 |
29869
0eab537e9ccb
patch 9.0.0273: Konsole termresponse not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
4838 // Konsole sends 0;115;0 and works the same way |
0eab537e9ccb
patch 9.0.0273: Konsole termresponse not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29732
diff
changeset
|
4839 if ((version == 100 || version == 115) && arg[0] == 0 && arg[2] == 0) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4840 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4841 // If run from Vim $COLORS is set to the number of |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4842 // colors the terminal supports. Otherwise assume |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4843 // 256, libvterm supports even more. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4844 if (mch_getenv((char_u *)"COLORS") == NULL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4845 may_adjust_color_count(256); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4846 // Libvterm can handle SGR mouse reporting. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4847 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4848 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4849 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4850 if (version == 95) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4851 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4852 // Mac Terminal.app sends 1;95;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4853 if (arg[0] == 1 && arg[2] == 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4854 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4855 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4856 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4857 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4858 // iTerm2 sends 0;95;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4859 else if (arg[0] == 0 && arg[2] == 0) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4860 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4861 // iTerm2 can do SGR mouse reporting |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4862 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4863 } |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4864 // old iTerm2 sends 0;95; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4865 else if (arg[0] == 0 && arg[2] == -1) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4866 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4867 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4868 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4869 // screen sends 83;40500;0 83 is 'S' in ASCII. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4870 if (arg[0] == 83) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4871 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4872 // screen supports SGR mouse codes since 4.7.0 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4873 if (arg[1] >= 40700) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4874 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4875 else |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4876 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4877 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4878 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4879 // If no recognized terminal has set mouse behavior, assume xterm. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4880 if (term_props[TPR_MOUSE].tpr_status == TPR_UNKNOWN) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4881 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4882 // Xterm version 277 supports SGR. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4883 // Xterm version >= 95 supports mouse dragging. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4884 if (version >= 277) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4885 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4886 else if (version >= 95) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4887 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM2; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4888 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4889 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4890 // Detect terminals that set $TERM to something like |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4891 // "xterm-256color" but are not fully xterm compatible. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4892 // |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4893 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0. |
20850
bf7453768034
patch 8.2.0977: t_8u is made empty for the wrong terminals
Bram Moolenaar <Bram@vim.org>
parents:
20838
diff
changeset
|
4894 // Newer Gnome-terminal sends 65;6001;1. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4895 // xfce4-terminal sends 1;2802;0. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4896 // screen sends 83;40500;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4897 // Assuming any version number over 2500 is not an |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4898 // xterm (without the limit for rxvt and screen). |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4899 if (arg[1] >= 2500) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4900 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4901 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4902 else if (version == 136 && arg[2] == 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4903 { |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4904 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4905 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4906 // PuTTY sends 0;136;0 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4907 if (arg[0] == 0) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4908 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4909 // supports sgr-like mouse reporting. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4910 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4911 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4912 // vandyke SecureCRT sends 1;136;0 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4913 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4914 |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4915 // Konsole sends 0;115;0 - but t_u8 does not actually work, therefore |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4916 // commented out. |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4917 // else if (version == 115 && arg[0] == 0 && arg[2] == 0) |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4918 // term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4919 |
31111
f1cb6b4dbf72
patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents:
31031
diff
changeset
|
4920 // Kitty up to 9.x sends 1;400{version};{secondary-version} |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
4921 if (arg[0] == 1 && arg[1] >= 4000 && arg[1] <= 4009) |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
4922 { |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
4923 term_props[TPR_KITTY].tpr_status = TPR_YES; |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
4924 term_props[TPR_KITTY].tpr_set_by_termresponse = TRUE; |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
4925 } |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
4926 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4927 // GNU screen sends 83;30600;0, 83;40500;0, etc. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4928 // 30600/40500 is a version number of GNU screen. DA2 support is added |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4929 // on 3.6. DCS string has a special meaning to GNU screen, but xterm |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4930 // compatibility checking does not detect GNU screen. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4931 if (arg[0] == 83 && arg[1] >= 30600) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4932 { |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4933 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4934 term_props[TPR_CURSOR_BLINK].tpr_status = TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4935 } |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4936 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4937 // Xterm first responded to this request at patch level |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4938 // 95, so assume anything below 95 is not xterm and hopefully supports |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4939 // the underline RGB color sequence. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4940 if (version < 95) |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4941 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4942 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4943 // Getting the cursor style is only supported properly by xterm since |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4944 // version 279 (otherwise it returns 0x18). |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4945 if (version < 279) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4946 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO; |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4947 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4948 /* |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4949 * Take action on the detected properties. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4950 */ |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4951 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4952 // Unless the underline RGB color is expected to work, disable "t_8u". |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4953 // It does not work for the real Xterm, it resets the background color. |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4954 // This may cause some flicker. Alternative would be to set "t_8u" |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4955 // here if the terminal is expected to support it, but that might |
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4956 // conflict with what was set in the .vimrc. |
28548
a54564337e89
patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents:
28505
diff
changeset
|
4957 if (term_props[TPR_UNDERLINE_RGB].tpr_status != TPR_YES |
a54564337e89
patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents:
28505
diff
changeset
|
4958 && *T_8U != NUL |
a54564337e89
patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents:
28505
diff
changeset
|
4959 && !option_was_set((char_u *)"t_8u")) |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4960 { |
20854
bd56f4045f37
patch 8.2.0979: a couple of screendump tests fail
Bram Moolenaar <Bram@vim.org>
parents:
20852
diff
changeset
|
4961 set_string_option_direct((char_u *)"t_8u", -1, (char_u *)"", |
bd56f4045f37
patch 8.2.0979: a couple of screendump tests fail
Bram Moolenaar <Bram@vim.org>
parents:
20852
diff
changeset
|
4962 OPT_FREE, 0); |
28501
e1c6e1f3c1bb
patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents:
28497
diff
changeset
|
4963 } |
28505
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
4964 if (*T_8U != NUL && write_t_8u_state == MAYBE) |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
4965 // Did skip writing t_8u, a complete redraw is needed. |
8751e815864e
patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents:
28501
diff
changeset
|
4966 redraw_later_clear(); |
28616
6ff407067190
patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents:
28548
diff
changeset
|
4967 write_t_8u_state = OK; // can output t_8u now |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4968 |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4969 // Only set 'ttymouse' automatically if it was not set |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4970 // by the user already. |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4971 if (!option_was_set((char_u *)"ttym") |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4972 && (term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_XTERM2 |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4973 || term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR)) |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4974 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
4975 set_option_value_give_err((char_u *)"ttym", 0L, |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4976 term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4977 ? (char_u *)"sgr" : (char_u *)"xterm2", 0); |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4978 } |
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4979 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4980 // Only request the cursor style if t_SH and t_RS are |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4981 // set. Only supported properly by xterm since version |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4982 // 279 (otherwise it returns 0x18). |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4983 // Only when getting the cursor style was detected to work. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4984 // Not for Terminal.app, it can't handle t_RS, it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4985 // echoes the characters to the screen. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4986 if (rcs_status.tr_progress == STATUS_GET |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
4987 && term_props[TPR_CURSOR_STYLE].tpr_status == TPR_YES |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4988 && *T_CSH != NUL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4989 && *T_CRS != NUL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4990 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
4991 MAY_WANT_TO_LOG_THIS; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4992 LOG_TR(("Sending cursor style request")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4993 out_str(T_CRS); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4994 termrequest_sent(&rcs_status); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4995 need_flush = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4996 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4997 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4998 // Only request the cursor blink mode if t_RC set. Not |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4999 // for Gnome terminal, it can't handle t_RC, it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5000 // echoes the characters to the screen. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5001 // Only when getting the cursor style was detected to work. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5002 if (rbm_status.tr_progress == STATUS_GET |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5003 && term_props[TPR_CURSOR_BLINK].tpr_status == TPR_YES |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5004 && *T_CRC != NUL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5005 { |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
5006 MAY_WANT_TO_LOG_THIS; |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5007 LOG_TR(("Sending cursor blink mode request")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5008 out_str(T_CRC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5009 termrequest_sent(&rbm_status); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5010 need_flush = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5011 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5012 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5013 if (need_flush) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5014 out_flush(); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5015 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5016 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5017 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5018 /* |
30827
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5019 * Add "key" to "buf" and return the number of bytes used. |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5020 * Handles special keys and multi-byte characters. |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5021 */ |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5022 static int |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5023 add_key_to_buf(int key, char_u *buf) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5024 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5025 int idx = 0; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5026 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5027 if (IS_SPECIAL(key)) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5028 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5029 buf[idx++] = K_SPECIAL; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5030 buf[idx++] = KEY2TERMCAP0(key); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5031 buf[idx++] = KEY2TERMCAP1(key); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5032 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5033 else if (has_mbyte) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5034 idx += (*mb_char2bytes)(key, buf + idx); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5035 else |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5036 buf[idx++] = key; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5037 return idx; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5038 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5039 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5040 /* |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5041 * Handle a sequence with key and modifier, one of: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5042 * {lead}27;{modifier};{key}~ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5043 * {lead}{key};{modifier}u |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5044 * Returns the difference in length. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5045 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5046 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5047 handle_key_with_modifier( |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5048 int *arg, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5049 int trail, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5050 int csi_len, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5051 int offset, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5052 char_u *buf, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5053 int bufsize, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5054 int *buflen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5055 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5056 int key; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5057 int modifiers; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5058 char_u string[MAX_KEY_CODE_LEN + 1]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5059 |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5060 // Only set seenModifyOtherKeys for the "{lead}27;" code to avoid setting |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5061 // it for terminals using the kitty keyboard protocol. Xterm sends |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5062 // the form ending in "u" when the formatOtherKeys resource is set. We do |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5063 // not support this. |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5064 // |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5065 // Do not set seenModifyOtherKeys if there was a positive response at any |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5066 // time from requesting the kitty keyboard protocol state, these are not |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5067 // expected to support modifyOtherKeys level 2. |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5068 // |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5069 // Do not set seenModifyOtherKeys for kitty, it does send some sequences |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5070 // like this but does not have the modifyOtherKeys feature. |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5071 if (trail != 'u' |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5072 && (kitty_protocol_state == KKPS_INITIAL |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5073 || kitty_protocol_state == KKPS_OFF |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5074 || kitty_protocol_state == KKPS_AFTER_T_KE) |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5075 && term_props[TPR_KITTY].tpr_status != TPR_YES) |
30958
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5076 seenModifyOtherKeys = TRUE; |
122f883d7237
patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30934
diff
changeset
|
5077 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5078 if (trail == 'u') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5079 key = arg[0]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5080 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5081 key = arg[2]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5082 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5083 modifiers = decode_modifiers(arg[1]); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5084 |
22522
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
5085 // Some keys need adjustment when the Ctrl modifier is used. |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
5086 key = may_adjust_key_for_ctrl(modifiers, key); |
6c7e4db139a3
patch 8.2.1809: mapping some keys with Ctrl does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
5087 |
20935
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
5088 // May remove the shift modifier if it's already included in the key. |
d64520bfafa0
patch 8.2.1019: mapping <M-S-a> does not work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20927
diff
changeset
|
5089 modifiers = may_remove_shift_modifier(modifiers, key); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5090 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5091 // insert modifiers with KS_MODIFIER |
30827
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5092 int new_slen = modifiers2keycode(modifiers, &key, string); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5093 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5094 // add the bytes for the key |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5095 new_slen += add_key_to_buf(key, string + new_slen); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5096 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5097 if (put_string_in_typebuf(offset, csi_len, string, new_slen, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5098 buf, bufsize, buflen) == FAIL) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5099 return -1; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5100 return new_slen - csi_len + offset; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5101 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5102 |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5103 /* |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5104 * Handle a sequence with key without a modifier: |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5105 * {lead}{key}u |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5106 * Returns the difference in length. |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5107 */ |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5108 static int |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5109 handle_key_without_modifier( |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5110 int *arg, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5111 int csi_len, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5112 int offset, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5113 char_u *buf, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5114 int bufsize, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5115 int *buflen) |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5116 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5117 char_u string[MAX_KEY_CODE_LEN + 1]; |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5118 int new_slen = add_key_to_buf(arg[0], string); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5119 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5120 if (put_string_in_typebuf(offset, csi_len, string, new_slen, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5121 buf, bufsize, buflen) == FAIL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5122 return -1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5123 return new_slen - csi_len + offset; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5124 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5125 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5126 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5127 * Handle a CSI escape sequence. |
20778
6d5e233bac9c
patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents:
20776
diff
changeset
|
5128 * - Xterm version string. |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5129 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5130 * - Cursor position report: {lead}{row};{col}R |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5131 * The final byte must be 'R'. It is used for checking the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5132 * ambiguous-width character state. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5133 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5134 * - window position reply: {lead}3;{x};{y}t |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5135 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5136 * - key with modifiers when modifyOtherKeys is enabled: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5137 * {lead}27;{modifier};{key}~ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5138 * {lead}{key};{modifier}u |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5139 * Return 0 for no match, -1 for partial match, > 0 for full match. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5140 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5141 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5142 handle_csi( |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5143 char_u *tp, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5144 int len, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5145 char_u *argp, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5146 int offset, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5147 char_u *buf, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5148 int bufsize, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5149 int *buflen, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5150 char_u *key_name, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5151 int *slen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5152 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5153 int first = -1; // optional char right after {lead} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5154 int trail; // char that ends CSI sequence |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5155 int arg[3] = {-1, -1, -1}; // argument numbers |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5156 int argc; // number of arguments |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5157 char_u *ap = argp; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5158 int csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5159 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5160 // Check for non-digit after CSI. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5161 if (!VIM_ISDIGIT(*ap)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5162 first = *ap++; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5163 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5164 // Find up to three argument numbers. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5165 for (argc = 0; argc < 3; ) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5166 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5167 if (ap >= tp + len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5168 return -1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5169 if (*ap == ';') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5170 arg[argc++] = -1; // omitted number |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5171 else if (VIM_ISDIGIT(*ap)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5172 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5173 arg[argc] = 0; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5174 for (;;) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5175 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5176 if (ap >= tp + len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5177 return -1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5178 if (!VIM_ISDIGIT(*ap)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5179 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5180 arg[argc] = arg[argc] * 10 + (*ap - '0'); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5181 ++ap; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5182 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5183 ++argc; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5184 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5185 if (*ap == ';') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5186 ++ap; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5187 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5188 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5189 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5190 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5191 // mrxvt has been reported to have "+" in the version. Assume |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5192 // the escape sequence ends with a letter or one of "{|}~". |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5193 while (ap < tp + len |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5194 && !(*ap >= '{' && *ap <= '~') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5195 && !ASCII_ISALPHA(*ap)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5196 ++ap; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5197 if (ap >= tp + len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5198 return -1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5199 trail = *ap; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5200 csi_len = (int)(ap - tp) + 1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5201 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5202 // Cursor position report: Eat it when there are 2 arguments |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5203 // and it ends in 'R'. Also when u7_status is not "sent", it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5204 // may be from a previous Vim that just exited. But not for |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5205 // <S-F3>, it sends something similar, check for row and column |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5206 // to make sense. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5207 if (first == -1 && argc == 2 && trail == 'R') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5208 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5209 handle_u7_response(arg, tp, csi_len); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5210 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5211 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5212 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5213 *slen = csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5214 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5215 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5216 // Version string: Eat it when there is at least one digit and |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5217 // it ends in 'c' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5218 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5219 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5220 handle_version_response(first, arg, argc, tp); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5221 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5222 *slen = csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5223 # ifdef FEAT_EVAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5224 set_vim_var_string(VV_TERMRESPONSE, tp, *slen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5225 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5226 apply_autocmds(EVENT_TERMRESPONSE, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5227 NULL, NULL, FALSE, curbuf); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5228 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5229 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5230 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5231 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5232 // Check blinking cursor from xterm: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5233 // {lead}?12;1$y set |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5234 // {lead}?12;2$y not set |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5235 // |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5236 // {lead} can be <Esc>[ or CSI |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5237 else if (rbm_status.tr_progress == STATUS_SENT |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5238 && first == '?' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5239 && ap == argp + 6 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5240 && arg[0] == 12 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5241 && ap[-1] == '$' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5242 && trail == 'y') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5243 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5244 initial_cursor_blink = (arg[1] == '1'); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5245 rbm_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5246 LOG_TR(("Received cursor blinking mode response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5247 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5248 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5249 *slen = csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5250 # ifdef FEAT_EVAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5251 set_vim_var_string(VV_TERMBLINKRESP, tp, *slen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5252 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5253 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5254 |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5255 // Kitty keyboard protocol status response: CSI ? flags u |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5256 else if (first == '?' && argc == 1 && trail == 'u') |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5257 { |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5258 // The protocol has various "progressive enhancement flags" values, but |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5259 // we only check for zero and non-zero here. |
31211
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5260 if (arg[0] == '0') |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5261 { |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5262 kitty_protocol_state = KKPS_OFF; |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5263 } |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5264 else |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5265 { |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5266 kitty_protocol_state = KKPS_ENABLED; |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5267 |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5268 // Reset seenModifyOtherKeys just in case some key combination has |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5269 // been seen that set it before we get the status response. |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5270 seenModifyOtherKeys = FALSE; |
d6355c3af211
patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents:
31198
diff
changeset
|
5271 } |
31198
b4491e73d6d1
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents:
31194
diff
changeset
|
5272 |
b4491e73d6d1
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents:
31194
diff
changeset
|
5273 key_name[0] = (int)KS_EXTRA; |
b4491e73d6d1
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents:
31194
diff
changeset
|
5274 key_name[1] = (int)KE_IGNORE; |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5275 *slen = csi_len; |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5276 } |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31180
diff
changeset
|
5277 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5278 // Check for a window position response from the terminal: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5279 // {lead}3;{x};{y}t |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5280 else if (did_request_winpos && argc == 3 && arg[0] == 3 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5281 && trail == 't') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5282 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5283 winpos_x = arg[1]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5284 winpos_y = arg[2]; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5285 // got finished code: consume it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5286 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5287 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5288 *slen = csi_len; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5289 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5290 if (--did_request_winpos <= 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5291 winpos_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5292 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5293 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5294 // Key with modifier: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5295 // {lead}27;{modifier};{key}~ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5296 // {lead}{key};{modifier}u |
30934
a07193ed51cd
patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents:
30914
diff
changeset
|
5297 // Only handles four modifiers, this won't work if the modifier value is |
a07193ed51cd
patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents:
30914
diff
changeset
|
5298 // more than 16. |
a07193ed51cd
patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents:
30914
diff
changeset
|
5299 else if (((arg[0] == 27 && argc == 3 && trail == '~') |
a07193ed51cd
patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents:
30914
diff
changeset
|
5300 || (argc == 2 && trail == 'u')) |
a07193ed51cd
patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents:
30914
diff
changeset
|
5301 && arg[1] <= 16) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5302 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5303 return len + handle_key_with_modifier(arg, trail, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5304 csi_len, offset, buf, bufsize, buflen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5305 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5306 |
31168
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5307 // Key without modifier (Kitty sends this for Esc): |
30827
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5308 // {lead}{key}u |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5309 else if (argc == 1 && trail == 'u') |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5310 { |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5311 return len + handle_key_without_modifier(arg, |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5312 csi_len, offset, buf, bufsize, buflen); |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5313 } |
0c30130f8c94
patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents:
30641
diff
changeset
|
5314 |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5315 // else: Unknown CSI sequence. We could drop it, but then the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5316 // user can't create a map for it. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5317 return 0; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5318 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5319 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5320 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5321 * Handle an OSC sequence, fore/background color response from the terminal: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5322 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5323 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5324 * or {lead}{code};rgb:{rr}/{gg}/{bb}{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5325 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5326 * {code} is 10 for foreground, 11 for background |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5327 * {lead} can be <Esc>] or OSC |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5328 * {tail} can be '\007', <Esc>\ or STERM. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5329 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5330 * Consume any code that starts with "{lead}11;", it's also |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5331 * possible that "rgba" is following. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5332 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5333 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5334 handle_osc(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5335 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5336 int i, j; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5337 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5338 j = 1 + (tp[0] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5339 if (len >= j + 3 && (argp[0] != '1' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5340 || (argp[1] != '1' && argp[1] != '0') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5341 || argp[2] != ';')) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5342 i = 0; // no match |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5343 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5344 for (i = j; i < len; ++i) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5345 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5346 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\'))) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5347 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5348 int is_bg = argp[1] == '1'; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5349 int is_4digit = i - j >= 21 && tp[j + 11] == '/' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5350 && tp[j + 16] == '/'; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5351 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5352 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5353 && (is_4digit |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5354 || (tp[j + 9] == '/' && tp[i + 12 == '/']))) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5355 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5356 char_u *tp_r = tp + j + 7; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5357 char_u *tp_g = tp + j + (is_4digit ? 12 : 10); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5358 char_u *tp_b = tp + j + (is_4digit ? 17 : 13); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5359 # ifdef FEAT_TERMINAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5360 int rval, gval, bval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5361 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5362 rval = hexhex2nr(tp_r); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5363 gval = hexhex2nr(tp_b); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5364 bval = hexhex2nr(tp_g); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5365 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5366 if (is_bg) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5367 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5368 char *new_bg_val = (3 * '6' < *tp_r + *tp_g + |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5369 *tp_b) ? "light" : "dark"; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5370 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5371 LOG_TR(("Received RBG response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5372 rbg_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5373 # ifdef FEAT_TERMINAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5374 bg_r = rval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5375 bg_g = gval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5376 bg_b = bval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5377 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5378 if (!option_was_set((char_u *)"bg") |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5379 && STRCMP(p_bg, new_bg_val) != 0) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5380 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5381 // value differs, apply it |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
5382 set_option_value_give_err((char_u *)"bg", |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28453
diff
changeset
|
5383 0L, (char_u *)new_bg_val, 0); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5384 reset_option_was_set((char_u *)"bg"); |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29350
diff
changeset
|
5385 redraw_asap(UPD_CLEAR); |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5386 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5387 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5388 # ifdef FEAT_TERMINAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5389 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5390 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5391 LOG_TR(("Received RFG response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5392 rfg_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5393 fg_r = rval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5394 fg_g = gval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5395 fg_b = bval; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5396 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5397 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5398 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5399 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5400 // got finished code: consume it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5401 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5402 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5403 *slen = i + 1 + (tp[i] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5404 # ifdef FEAT_EVAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5405 set_vim_var_string(is_bg ? VV_TERMRBGRESP |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5406 : VV_TERMRFGRESP, tp, *slen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5407 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5408 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5409 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5410 if (i == len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5411 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5412 LOG_TR(("not enough characters for RB")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5413 return FAIL; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5414 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5415 return OK; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5416 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5417 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5418 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5419 * Check for key code response from xterm: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5420 * {lead}{flag}+r<hex bytes><{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5421 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5422 * {lead} can be <Esc>P or DCS |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5423 * {flag} can be '0' or '1' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5424 * {tail} can be Esc>\ or STERM |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5425 * |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5426 * Check for resource response from xterm (and drop it): |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5427 * {lead}{flag}+R<hex bytes>=<value>{tail} |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5428 * |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5429 * Check for cursor shape response from xterm: |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5430 * {lead}1$r<digit> q{tail} |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5431 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5432 * {lead} can be <Esc>P or DCS |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5433 * {tail} can be <Esc>\ or STERM |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5434 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5435 * Consume any code that starts with "{lead}.+r" or "{lead}.$r". |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5436 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5437 static int |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5438 handle_dcs(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5439 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5440 int i, j; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5441 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5442 j = 1 + (tp[0] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5443 if (len < j + 3) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5444 i = len; // need more chars |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5445 else if ((argp[1] != '+' && argp[1] != '$') |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5446 || (argp[2] != 'r' && argp[2] != 'R')) |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5447 i = 0; // no match |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5448 else if (argp[1] == '+') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5449 // key code response |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5450 for (i = j; i < len; ++i) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5451 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5452 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5453 || tp[i] == STERM) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5454 { |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5455 // handle a key code response, drop a resource response |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5456 if (i - j >= 3 && argp[2] == 'r') |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5457 got_code_from_term(tp + j, i); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5458 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5459 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5460 *slen = i + 1 + (tp[i] == ESC); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5461 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5462 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5463 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5464 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5465 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5466 // Probably the cursor shape response. Make sure that "i" |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5467 // is equal to "len" when there are not sufficient |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5468 // characters. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5469 for (i = j + 3; i < len; ++i) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5470 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5471 if (i - j == 3 && !isdigit(tp[i])) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5472 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5473 if (i - j == 4 && tp[i] != ' ') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5474 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5475 if (i - j == 5 && tp[i] != 'q') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5476 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5477 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5478 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5479 if ((i - j == 6 && tp[i] == STERM) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5480 || (i - j == 7 && tp[i] == '\\')) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5481 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5482 int number = argp[3] - '0'; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5483 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5484 // 0, 1 = block blink, 2 = block |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5485 // 3 = underline blink, 4 = underline |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5486 // 5 = vertical bar blink, 6 = vertical bar |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5487 number = number == 0 ? 1 : number; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5488 initial_cursor_shape = (number + 1) / 2; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5489 // The blink flag is actually inverted, compared to |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5490 // the value set with T_SH. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5491 initial_cursor_shape_blink = |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5492 (number & 1) ? FALSE : TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5493 rcs_status.tr_progress = STATUS_GOT; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5494 LOG_TR(("Received cursor shape response: %s", tp)); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5495 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5496 key_name[0] = (int)KS_EXTRA; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5497 key_name[1] = (int)KE_IGNORE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5498 *slen = i + 1; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5499 # ifdef FEAT_EVAL |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5500 set_vim_var_string(VV_TERMSTYLERESP, tp, *slen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5501 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5502 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5503 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5504 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5505 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5506 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5507 if (i == len) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5508 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5509 // These codes arrive many together, each code can be |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5510 // truncated at any point. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5511 LOG_TR(("not enough characters for XT")); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5512 return FAIL; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5513 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5514 return OK; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5515 } |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
5516 #endif // FEAT_TERMRESPONSE |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5517 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5518 /* |
7 | 5519 * Check if typebuf.tb_buf[] contains a terminal key code. |
5520 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off | |
20727
5ffe112b1afd
patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents:
20705
diff
changeset
|
5521 * + "max_offset"]. |
7 | 5522 * Return 0 for no match, -1 for partial match, > 0 for full match. |
2672 | 5523 * Return KEYLEN_REMOVED when a key code was deleted. |
7 | 5524 * With a match, the match is removed, the replacement code is inserted in |
5525 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is | |
5526 * returned. | |
3328 | 5527 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[]. |
5528 * "buflen" is then the length of the string in buf[] and is updated for | |
5529 * inserts and deletes. | |
7 | 5530 */ |
5531 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5532 check_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5533 int max_offset, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5534 char_u *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5535 int bufsize, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5536 int *buflen) |
7 | 5537 { |
5538 char_u *tp; | |
5539 char_u *p; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5540 int slen = 0; // init for GCC |
180 | 5541 int modslen; |
7 | 5542 int len; |
2672 | 5543 int retval = 0; |
7 | 5544 int offset; |
5545 char_u key_name[2]; | |
180 | 5546 int modifiers; |
11565
91519a14ec1f
patch 8.0.0665: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
11563
diff
changeset
|
5547 char_u *modifiers_start = NULL; |
180 | 5548 int key; |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5549 int new_slen; // Length of what will replace the termcode |
7 | 5550 char_u string[MAX_KEY_CODE_LEN + 1]; |
5551 int i, j; | |
5552 int idx = 0; | |
5553 int cpo_koffset; | |
5554 | |
5555 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL); | |
5556 | |
5557 /* | |
5558 * Speed up the checks for terminal codes by gathering all first bytes | |
5559 * used in termleader[]. Often this is just a single <Esc>. | |
5560 */ | |
5561 if (need_gather) | |
5562 gather_termleader(); | |
5563 | |
5564 /* | |
5565 * Check at several positions in typebuf.tb_buf[], to catch something like | |
5566 * "x<Up>" that can be mapped. Stop at max_offset, because characters | |
5567 * after that cannot be used for mapping, and with @r commands | |
4223 | 5568 * typebuf.tb_buf[] can become very long. |
7 | 5569 * This is used often, KEEP IT FAST! |
5570 */ | |
5571 for (offset = 0; offset < max_offset; ++offset) | |
5572 { | |
5573 if (buf == NULL) | |
5574 { | |
5575 if (offset >= typebuf.tb_len) | |
5576 break; | |
5577 tp = typebuf.tb_buf + typebuf.tb_off + offset; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5578 len = typebuf.tb_len - offset; // length of the input |
7 | 5579 } |
5580 else | |
5581 { | |
3328 | 5582 if (offset >= *buflen) |
7 | 5583 break; |
5584 tp = buf + offset; | |
3328 | 5585 len = *buflen - offset; |
7 | 5586 } |
5587 | |
5588 /* | |
5589 * Don't check characters after K_SPECIAL, those are already | |
5590 * translated terminal chars (avoid translating ~@^Hx). | |
5591 */ | |
5592 if (*tp == K_SPECIAL) | |
5593 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5594 offset += 2; // there are always 2 extra characters |
7 | 5595 continue; |
5596 } | |
5597 | |
5598 /* | |
5599 * Skip this position if the character does not appear as the first | |
5600 * character in term_strings. This speeds up a lot, since most | |
5601 * termcodes start with the same character (ESC or CSI). | |
5602 */ | |
5603 i = *tp; | |
5604 for (p = termleader; *p && *p != i; ++p) | |
5605 ; | |
5606 if (*p == NUL) | |
5607 continue; | |
5608 | |
5609 /* | |
5610 * Skip this position if p_ek is not set and tp[0] is an ESC and we | |
5611 * are in Insert mode. | |
5612 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28763
diff
changeset
|
5613 if (*tp == ESC && !p_ek && (State & MODE_INSERT)) |
7 | 5614 continue; |
5615 | |
29350
8a822186f1ab
patch 9.0.0018: going over the end of the typahead
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
5616 tp[len] = NUL; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5617 key_name[0] = NUL; // no key name found yet |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5618 key_name[1] = NUL; // no key name found yet |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5619 modifiers = 0; // no modifiers yet |
7 | 5620 |
5621 #ifdef FEAT_GUI | |
5622 if (gui.in_use) | |
5623 { | |
5624 /* | |
5625 * GUI special key codes are all of the form [CSI xx]. | |
5626 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5627 if (*tp == CSI) // Special key from GUI |
7 | 5628 { |
5629 if (len < 3) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5630 return -1; // Shouldn't happen |
7 | 5631 slen = 3; |
5632 key_name[0] = tp[1]; | |
5633 key_name[1] = tp[2]; | |
5634 } | |
5635 } | |
5636 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5637 #endif // FEAT_GUI |
31168
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5638 #ifdef MSWIN |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5639 if (len >= 3 && tp[0] == CSI && tp[1] == KS_EXTRA |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5640 && (tp[2] == KE_MOUSEUP |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5641 || tp[2] == KE_MOUSEDOWN |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5642 || tp[2] == KE_MOUSELEFT |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5643 || tp[2] == KE_MOUSERIGHT)) |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5644 { |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5645 // MS-Windows console sends mouse scroll events encoded: |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5646 // - CSI |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5647 // - KS_EXTRA |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5648 // - {KE_MOUSE[UP|DOWN|LEFT|RIGHT]} |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5649 slen = 3; |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5650 key_name[0] = tp[1]; |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5651 key_name[1] = tp[2]; |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5652 } |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5653 else |
25f6c7f77c70
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents:
31137
diff
changeset
|
5654 #endif |
7 | 5655 { |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5656 int mouse_index_found = -1; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5657 |
7 | 5658 for (idx = 0; idx < tc_len; ++idx) |
5659 { | |
5660 /* | |
5661 * Ignore the entry if we are not at the start of | |
5662 * typebuf.tb_buf[] | |
5663 * and there are not enough characters to make a match. | |
5664 * But only when the 'K' flag is in 'cpoptions'. | |
5665 */ | |
5666 slen = termcodes[idx].len; | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5667 modifiers_start = NULL; |
7 | 5668 if (cpo_koffset && offset && len < slen) |
5669 continue; | |
5670 if (STRNCMP(termcodes[idx].code, tp, | |
5671 (size_t)(slen > len ? len : slen)) == 0) | |
5672 { | |
26392
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5673 int looks_like_mouse_start = FALSE; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5674 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5675 if (len < slen) // got a partial sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5676 return -1; // need to get more chars |
7 | 5677 |
5678 /* | |
5679 * When found a keypad key, check if there is another key | |
5680 * that matches and use that one. This makes <Home> to be | |
5681 * found instead of <kHome> when they produce the same | |
5682 * key code. | |
5683 */ | |
5684 if (termcodes[idx].name[0] == 'K' | |
5685 && VIM_ISDIGIT(termcodes[idx].name[1])) | |
5686 { | |
5687 for (j = idx + 1; j < tc_len; ++j) | |
5688 if (termcodes[j].len == slen && | |
5689 STRNCMP(termcodes[idx].code, | |
5690 termcodes[j].code, slen) == 0) | |
5691 { | |
5692 idx = j; | |
5693 break; | |
5694 } | |
5695 } | |
5696 | |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5697 if (slen == 2 && len > 2 |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5698 && termcodes[idx].code[0] == ESC |
26392
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5699 && termcodes[idx].code[1] == '[') |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5700 { |
26392
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5701 // The mouse termcode "ESC [" is also the prefix of |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5702 // "ESC [ I" (focus gained) and other keys. Check some |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5703 // more bytes to find out. |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5704 if (!isdigit(tp[2])) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5705 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5706 // ESC [ without number following: Only use it when |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5707 // there is no other match. |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5708 looks_like_mouse_start = TRUE; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5709 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5710 else if (termcodes[idx].name[0] == KS_DEC_MOUSE) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5711 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5712 char_u *nr = tp + 2; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5713 int count = 0; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5714 |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5715 // If a digit is following it could be a key with |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5716 // modifier, e.g., ESC [ 1;2P. Can be confused |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5717 // with DEC_MOUSE, which requires four numbers |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5718 // following. If not then it can't be a DEC_MOUSE |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5719 // code. |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5720 for (;;) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5721 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5722 ++count; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5723 (void)getdigits(&nr); |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5724 if (nr >= tp + len) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5725 return -1; // partial sequence |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5726 if (*nr != ';') |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5727 break; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5728 ++nr; |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5729 if (nr >= tp + len) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5730 return -1; // partial sequence |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5731 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5732 if (count < 4) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5733 continue; // no match |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5734 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5735 } |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5736 if (looks_like_mouse_start) |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5737 { |
201243ceaa18
patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5738 // Only use it when there is no other match. |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5739 if (mouse_index_found < 0) |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5740 mouse_index_found = idx; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5741 } |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5742 else |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5743 { |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5744 key_name[0] = termcodes[idx].name[0]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5745 key_name[1] = termcodes[idx].name[1]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5746 break; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5747 } |
7 | 5748 } |
179 | 5749 |
5750 /* | |
5751 * Check for code with modifier, like xterm uses: | |
180 | 5752 * <Esc>[123;*X (modslen == slen - 3) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
5753 * <Esc>[@;*X (matches <Esc>[X and <Esc>[1;9X ) |
180 | 5754 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2). |
5755 * When there is a modifier the * matches a number. | |
5756 * When there is no modifier the ;* or * is omitted. | |
179 | 5757 */ |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5758 if (termcodes[idx].modlen > 0 && mouse_index_found < 0) |
179 | 5759 { |
180 | 5760 modslen = termcodes[idx].modlen; |
5761 if (cpo_koffset && offset && len < modslen) | |
179 | 5762 continue; |
5763 if (STRNCMP(termcodes[idx].code, tp, | |
180 | 5764 (size_t)(modslen > len ? len : modslen)) == 0) |
179 | 5765 { |
5766 int n; | |
180 | 5767 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5768 if (len <= modslen) // got a partial sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5769 return -1; // need to get more chars |
179 | 5770 |
180 | 5771 if (tp[modslen] == termcodes[idx].code[slen - 1]) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
5772 // no modifiers |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
5773 slen = modslen + 1; |
180 | 5774 else if (tp[modslen] != ';' && modslen == slen - 3) |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
5775 // no match for "code;*X" with "code;" |
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
5776 continue; |
30914
58cb6591ad12
patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents:
30827
diff
changeset
|
5777 else if (termcodes[idx].code[modslen] == '@' |
31111
f1cb6b4dbf72
patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents:
31031
diff
changeset
|
5778 && (tp[modslen] != '1' |
f1cb6b4dbf72
patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents:
31031
diff
changeset
|
5779 || tp[modslen + 1] != ';')) |
30984
a82629ff46c8
patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"
Bram Moolenaar <Bram@vim.org>
parents:
30958
diff
changeset
|
5780 // no match for "<Esc>[@" with "<Esc>[1;" |
23406
24ce202a7d68
patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
5781 continue; |
179 | 5782 else |
5783 { | |
16485
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
5784 // Skip over the digits, the final char must |
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
5785 // follow. URXVT can use a negative value, thus |
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
5786 // also accept '-'. |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
5787 for (j = slen - 2; j < len && (isdigit(tp[j]) |
16485
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
5788 || tp[j] == '-' || tp[j] == ';'); ++j) |
179 | 5789 ; |
5790 ++j; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5791 if (len < j) // got a partial sequence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5792 return -1; // need to get more chars |
180 | 5793 if (tp[j - 1] != termcodes[idx].code[slen - 1]) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5794 continue; // no match |
179 | 5795 |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5796 modifiers_start = tp + slen - 2; |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5797 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5798 // Match! Convert modifier bits. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5799 n = atoi((char *)modifiers_start); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5800 modifiers |= decode_modifiers(n); |
179 | 5801 |
5802 slen = j; | |
5803 } | |
5804 key_name[0] = termcodes[idx].name[0]; | |
5805 key_name[1] = termcodes[idx].name[1]; | |
5806 break; | |
5807 } | |
5808 } | |
7 | 5809 } |
23774
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5810 if (idx == tc_len && mouse_index_found >= 0) |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5811 { |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5812 key_name[0] = termcodes[mouse_index_found].name[0]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5813 key_name[1] = termcodes[mouse_index_found].name[1]; |
646ca2893d85
patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
5814 } |
7 | 5815 } |
5816 | |
5817 #ifdef FEAT_TERMRESPONSE | |
3166 | 5818 if (key_name[0] == NUL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5819 // Mouse codes of DEC and pterm start with <ESC>[. When |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5820 // detecting the start of these mouse codes they might as well be |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5821 // another key code or terminal response. |
6102 | 5822 # ifdef FEAT_MOUSE_DEC |
5823 || key_name[0] == KS_DEC_MOUSE | |
5824 # endif | |
5825 # ifdef FEAT_MOUSE_PTERM | |
5826 || key_name[0] == KS_PTERM_MOUSE | |
4223 | 5827 # endif |
6102 | 5828 ) |
7 | 5829 { |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5830 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1; |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5831 |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5832 /* |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5833 * Check for responses from the terminal starting with {lead}: |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5834 * "<Esc>[" or CSI followed by [0-9>?] |
4215 | 5835 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5836 * - Xterm version string: {lead}>{x};{vers};{y}c |
4215 | 5837 * Also eat other possible responses to t_RV, rxvt returns |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5838 * "{lead}?1;2c". |
4215 | 5839 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5840 * - Cursor position report: {lead}{row};{col}R |
6102 | 5841 * The final byte must be 'R'. It is used for checking the |
4215 | 5842 * ambiguous-width character state. |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
5843 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5844 * - window position reply: {lead}3;{x};{y}t |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5845 * |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5846 * - key with modifiers when modifyOtherKeys is enabled: |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5847 * {lead}27;{modifier};{key}~ |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5848 * {lead}{key};{modifier}u |
4215 | 5849 */ |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5850 if (((tp[0] == ESC && len >= 3 && tp[1] == '[') |
4395 | 5851 || (tp[0] == CSI && len >= 2)) |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5852 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?')) |
7 | 5853 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5854 int resp = handle_csi(tp, len, argp, offset, buf, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5855 bufsize, buflen, key_name, &slen); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5856 if (resp != 0) |
7 | 5857 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5858 # ifdef DEBUG_TERMRESPONSE |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5859 if (resp == -1) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5860 LOG_TR(("Not enough characters for CSI sequence")); |
7 | 5861 # endif |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5862 return resp; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
5863 } |
6901 | 5864 } |
5865 | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5866 // Check for fore/background color response from the terminal, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5867 // starting} with <Esc>] or OSC |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5868 else if ((*T_RBG != NUL || *T_RFG != NUL) |
6901 | 5869 && ((tp[0] == ESC && len >= 2 && tp[1] == ']') |
5870 || tp[0] == OSC)) | |
5871 { | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5872 if (handle_osc(tp, argp, len, key_name, &slen) == FAIL) |
6901 | 5873 return -1; |
7 | 5874 } |
5875 | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5876 // Check for key code response from xterm, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5877 // starting with <Esc>P or DCS |
31137
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5878 // It would only be needed with this condition: |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5879 // (check_for_codes || rcs_status.tr_progress == STATUS_SENT) |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5880 // Now this is always done so that DCS codes don't mess up things. |
548241980a27
patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents:
31129
diff
changeset
|
5881 else if ((tp[0] == ESC && len >= 2 && tp[1] == 'P') || tp[0] == DCS) |
7 | 5882 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5883 if (handle_dcs(tp, argp, len, key_name, &slen) == FAIL) |
6901 | 5884 return -1; |
7 | 5885 } |
5886 } | |
5887 #endif | |
5888 | |
5889 if (key_name[0] == NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5890 continue; // No match at this position, try next one |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5891 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5892 // We only get here when we have a complete termcode match |
7 | 5893 |
31194
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5894 #if defined(FEAT_GUI) || defined(MSWIN) |
7 | 5895 /* |
31194
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5896 * For scroll events from the GUI or MS-Windows console, fetch the |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5897 * pointer coordinates so that we know which window to scroll later. |
7 | 5898 */ |
31194
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5899 if (TRUE |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5900 # if defined(FEAT_GUI) && !defined(MSWIN) |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5901 && gui.in_use |
fa26d002eb2a
patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
5902 # endif |
7 | 5903 && key_name[0] == (int)KS_EXTRA |
5904 && (key_name[1] == (int)KE_X1MOUSE | |
5905 || key_name[1] == (int)KE_X2MOUSE | |
24850
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5906 || key_name[1] == (int)KE_MOUSEMOVE_XY |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
5907 || key_name[1] == (int)KE_MOUSELEFT |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
5908 || key_name[1] == (int)KE_MOUSERIGHT |
7 | 5909 || key_name[1] == (int)KE_MOUSEDOWN |
5910 || key_name[1] == (int)KE_MOUSEUP)) | |
5911 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5912 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5913 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5914 |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5915 if (num_bytes == -1) // not enough coordinates |
7 | 5916 return -1; |
5917 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; | |
5918 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1; | |
5919 slen += num_bytes; | |
24850
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5920 // equal to K_MOUSEMOVE |
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5921 if (key_name[1] == (int)KE_MOUSEMOVE_XY) |
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24768
diff
changeset
|
5922 key_name[1] = (int)KE_MOUSEMOVE; |
7 | 5923 } |
5924 else | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5925 #endif |
7 | 5926 /* |
5927 * If it is a mouse click, get the coordinates. | |
5928 */ | |
3746 | 5929 if (key_name[0] == KS_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5930 #ifdef FEAT_MOUSE_GPM |
16523
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16501
diff
changeset
|
5931 || key_name[0] == KS_GPM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5932 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5933 #ifdef FEAT_MOUSE_JSB |
3746 | 5934 || key_name[0] == KS_JSBTERM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5935 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5936 #ifdef FEAT_MOUSE_NET |
3746 | 5937 || key_name[0] == KS_NETTERM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5938 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5939 #ifdef FEAT_MOUSE_DEC |
3746 | 5940 || key_name[0] == KS_DEC_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5941 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5942 #ifdef FEAT_MOUSE_PTERM |
3746 | 5943 || key_name[0] == KS_PTERM_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5944 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5945 #ifdef FEAT_MOUSE_URXVT |
3746 | 5946 || key_name[0] == KS_URXVT_MOUSE |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5947 #endif |
3746 | 5948 || key_name[0] == KS_SGR_MOUSE |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
5949 || key_name[0] == KS_SGR_MOUSE_RELEASE) |
7 | 5950 { |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5951 if (check_termcode_mouse(tp, &slen, key_name, modifiers_start, idx, |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5952 &modifiers) == -1) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5953 return -1; |
7 | 5954 } |
5955 | |
5956 #ifdef FEAT_GUI | |
5957 /* | |
5958 * If using the GUI, then we get menu and scrollbar events. | |
5959 * | |
5960 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by | |
5961 * four bytes which are to be taken as a pointer to the vimmenu_T | |
5962 * structure. | |
5963 * | |
1221 | 5964 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr" |
685 | 5965 * is one byte with the tab index. |
5966 * | |
7 | 5967 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed |
5968 * by one byte representing the scrollbar number, and then four bytes | |
5969 * representing a long_u which is the new value of the scrollbar. | |
5970 * | |
5971 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR, | |
5972 * KE_FILLER followed by four bytes representing a long_u which is the | |
5973 * new value of the scrollbar. | |
5974 */ | |
5975 # ifdef FEAT_MENU | |
5976 else if (key_name[0] == (int)KS_MENU) | |
5977 { | |
5978 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5979 int num_bytes = get_long_from_buf(tp + slen, &val); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5980 |
7 | 5981 if (num_bytes == -1) |
5982 return -1; | |
5983 current_menu = (vimmenu_T *)val; | |
5984 slen += num_bytes; | |
936 | 5985 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5986 // The menu may have been deleted right after it was used, check |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5987 // for that. |
936 | 5988 if (check_menu_pointer(root_menu, current_menu) == FAIL) |
5989 { | |
5990 key_name[0] = KS_EXTRA; | |
5991 key_name[1] = (int)KE_IGNORE; | |
5992 } | |
7 | 5993 } |
5994 # endif | |
685 | 5995 # ifdef FEAT_GUI_TABLINE |
5996 else if (key_name[0] == (int)KS_TABLINE) | |
5997 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5998 // Selecting tabline tab or using its menu. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5999 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6000 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6001 |
685 | 6002 if (num_bytes == -1) |
6003 return -1; | |
6004 current_tab = (int)bytes[0]; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6005 if (current_tab == 255) // -1 in a byte gives 255 |
1394 | 6006 current_tab = -1; |
685 | 6007 slen += num_bytes; |
6008 } | |
688 | 6009 else if (key_name[0] == (int)KS_TABMENU) |
6010 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6011 // Selecting tabline tab or using its menu. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6012 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6013 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2); |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6014 |
688 | 6015 if (num_bytes == -1) |
6016 return -1; | |
6017 current_tab = (int)bytes[0]; | |
6018 current_tabmenu = (int)bytes[1]; | |
6019 slen += num_bytes; | |
6020 } | |
685 | 6021 # endif |
7 | 6022 # ifndef USE_ON_FLY_SCROLL |
6023 else if (key_name[0] == (int)KS_VER_SCROLLBAR) | |
6024 { | |
6025 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6026 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6027 int num_bytes; |
7 | 6028 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6029 // Get the last scrollbar event in the queue of the same type |
7 | 6030 j = 0; |
6031 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR | |
6032 && tp[j + 2] != NUL; ++i) | |
6033 { | |
6034 j += 3; | |
6035 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); | |
6036 if (num_bytes == -1) | |
6037 break; | |
6038 if (i == 0) | |
6039 current_scrollbar = (int)bytes[0]; | |
6040 else if (current_scrollbar != (int)bytes[0]) | |
6041 break; | |
6042 j += num_bytes; | |
6043 num_bytes = get_long_from_buf(tp + j, &val); | |
6044 if (num_bytes == -1) | |
6045 break; | |
6046 scrollbar_value = val; | |
6047 j += num_bytes; | |
6048 slen = j; | |
6049 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6050 if (i == 0) // not enough characters to make one |
7 | 6051 return -1; |
6052 } | |
6053 else if (key_name[0] == (int)KS_HOR_SCROLLBAR) | |
6054 { | |
6055 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
6056 int num_bytes; |
7 | 6057 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6058 // Get the last horiz. scrollbar event in the queue |
7 | 6059 j = 0; |
6060 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR | |
6061 && tp[j + 2] != NUL; ++i) | |
6062 { | |
6063 j += 3; | |
6064 num_bytes = get_long_from_buf(tp + j, &val); | |
6065 if (num_bytes == -1) | |
6066 break; | |
6067 scrollbar_value = val; | |
6068 j += num_bytes; | |
6069 slen = j; | |
6070 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6071 if (i == 0) // not enough characters to make one |
7 | 6072 return -1; |
6073 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6074 # endif // !USE_ON_FLY_SCROLL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6075 #endif // FEAT_GUI |
7 | 6076 |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6077 #if (defined(UNIX) || defined(VMS)) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6078 /* |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6079 * Handle FocusIn/FocusOut event sequences reported by XTerm. |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6080 * (CSI I/CSI O) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6081 */ |
27930
1a702abffaf3
patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents:
27684
diff
changeset
|
6082 if (key_name[0] == KS_EXTRA |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6083 # ifdef FEAT_GUI |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6084 && !gui.in_use |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6085 # endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6086 ) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6087 { |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6088 if (key_name[1] == KE_FOCUSGAINED) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6089 { |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6090 if (!focus_state) |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6091 { |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6092 ui_focus_change(TRUE); |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6093 did_cursorhold = TRUE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6094 focus_state = TRUE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6095 } |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6096 key_name[1] = (int)KE_IGNORE; |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6097 } |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6098 else if (key_name[1] == KE_FOCUSLOST) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6099 { |
23620
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6100 if (focus_state) |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6101 { |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6102 ui_focus_change(FALSE); |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6103 did_cursorhold = TRUE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6104 focus_state = FALSE; |
24beca855c59
patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents:
23612
diff
changeset
|
6105 } |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6106 key_name[1] = (int)KE_IGNORE; |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6107 } |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6108 } |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6109 #endif |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
23410
diff
changeset
|
6110 |
180 | 6111 /* |
6112 * Change <xHome> to <Home>, <xUp> to <Up>, etc. | |
6113 */ | |
6114 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1])); | |
6115 | |
6116 /* | |
6117 * Add any modifier codes to our string. | |
6118 */ | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6119 new_slen = modifiers2keycode(modifiers, &key, string); |
180 | 6120 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6121 // Finally, add the special key code to our string |
180 | 6122 key_name[0] = KEY2TERMCAP0(key); |
6123 key_name[1] = KEY2TERMCAP1(key); | |
7 | 6124 if (key_name[0] == KS_KEY) |
1787 | 6125 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6126 // from ":set <M-b>=xx" |
1787 | 6127 if (has_mbyte) |
6128 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen); | |
6129 else | |
6130 string[new_slen++] = key_name[1]; | |
6131 } | |
2672 | 6132 else if (new_slen == 0 && key_name[0] == KS_EXTRA |
6133 && key_name[1] == KE_IGNORE) | |
6134 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6135 // Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6136 // to indicate what happened. |
2672 | 6137 retval = KEYLEN_REMOVED; |
6138 } | |
7 | 6139 else |
6140 { | |
6141 string[new_slen++] = K_SPECIAL; | |
6142 string[new_slen++] = key_name[0]; | |
6143 string[new_slen++] = key_name[1]; | |
6144 } | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6145 if (put_string_in_typebuf(offset, slen, string, new_slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6146 buf, bufsize, buflen) == FAIL) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6147 return -1; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
6148 return retval == 0 ? (len + new_slen - slen + offset) : retval; |
7 | 6149 } |
6150 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
6151 #ifdef FEAT_TERMRESPONSE |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6152 LOG_TR(("normal character")); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
6153 #endif |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
6154 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6155 return 0; // no match found |
7 | 6156 } |
6157 | |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
6158 #if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6159 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6160 * Get the text foreground color, if known. |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6161 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6162 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
6163 term_get_fg_color(char_u *r, char_u *g, char_u *b) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6164 { |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
6165 if (rfg_status.tr_progress == STATUS_GOT) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6166 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6167 *r = fg_r; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6168 *g = fg_g; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6169 *b = fg_b; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6170 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6171 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6172 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6173 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6174 * Get the text background color, if known. |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6175 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6176 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
6177 term_get_bg_color(char_u *r, char_u *g, char_u *b) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6178 { |
16625
d4e74f9f7ae9
patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents:
16586
diff
changeset
|
6179 if (rbg_status.tr_progress == STATUS_GOT) |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6180 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6181 *r = bg_r; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6182 *g = bg_g; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6183 *b = bg_b; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6184 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6185 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6186 #endif |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
6187 |
7 | 6188 /* |
6189 * Replace any terminal code strings in from[] with the equivalent internal | |
6190 * vim representation. This is used for the "from" and "to" part of a | |
6191 * mapping, and the "to" part of a menu command. | |
6192 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains | |
6193 * '<'. | |
6194 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER. | |
6195 * | |
6196 * The replacement is done in result[] and finally copied into allocated | |
6197 * memory. If this all works well *bufp is set to the allocated memory and a | |
6198 * pointer to it is returned. If something fails *bufp is set to NULL and from | |
6199 * is returned. | |
6200 * | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6201 * CTRL-V characters are removed. When "flags" has REPTERM_FROM_PART, a |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6202 * trailing CTRL-V is included, otherwise it is removed (for ":map xx ^V", maps |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6203 * xx to nothing). When 'cpoptions' does not contain 'B', a backslash can be |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6204 * used instead of a CTRL-V. |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6205 * |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6206 * Flags: |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6207 * REPTERM_FROM_PART see above |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6208 * REPTERM_DO_LT also translate <lt> |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6209 * REPTERM_SPECIAL always accept <key> notation |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6210 * REPTERM_NO_SIMPLIFY do not simplify <C-H> to 0x08 and set 8th bit for <A-x> |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6211 * |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6212 * "did_simplify" is set when some <C-H> or <A-x> code was simplified, unless |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6213 * it is NULL. |
7 | 6214 */ |
859 | 6215 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6216 replace_termcodes( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6217 char_u *from, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6218 char_u **bufp, |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6219 int flags, |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6220 int *did_simplify) |
7 | 6221 { |
6222 int i; | |
6223 int slen; | |
6224 int key; | |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6225 size_t dlen = 0; |
7 | 6226 char_u *src; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6227 int do_backslash; // backslash is a special character |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6228 int do_special; // recognize <> key codes |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6229 int do_key_code; // recognize raw key codes |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6230 char_u *result; // buffer for resulting string |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6231 garray_T ga; |
7 | 6232 |
6233 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL); | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6234 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6235 || (flags & REPTERM_SPECIAL); |
7 | 6236 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6237 src = from; |
7 | 6238 |
6239 /* | |
6240 * Allocate space for the translation. Worst case a single character is | |
6241 * replaced by 6 bytes (shifted special key), plus a NUL at the end. | |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6242 * In the rare case more might be needed ga_grow() must be called again. |
7 | 6243 */ |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6244 ga_init2(&ga, 1L, 100); |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6245 if (ga_grow(&ga, (int)(STRLEN(src) * 6 + 1)) == FAIL) // out of memory |
7 | 6246 { |
6247 *bufp = NULL; | |
6248 return from; | |
6249 } | |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6250 result = ga.ga_data; |
7 | 6251 |
6252 /* | |
6253 * Check for #n at start only: function key n | |
6254 */ | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6255 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1])) |
7 | 6256 { |
6257 result[dlen++] = K_SPECIAL; | |
6258 result[dlen++] = 'k'; | |
6259 if (src[1] == '0') | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6260 result[dlen++] = ';'; // #0 is F10 is "k;" |
7 | 6261 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6262 result[dlen++] = src[1]; // #3 is F3 is "k3" |
7 | 6263 src += 2; |
6264 } | |
6265 | |
6266 /* | |
6267 * Copy each byte from *from to result[dlen] | |
6268 */ | |
6269 while (*src != NUL) | |
6270 { | |
6271 /* | |
6272 * 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
|
6273 * like "<C-S-LeftMouse>" |
7 | 6274 */ |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6275 if (do_special && ((flags & REPTERM_DO_LT) |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6276 || STRNCMP(src, "<lt>", 4) != 0)) |
7 | 6277 { |
6278 #ifdef FEAT_EVAL | |
6279 /* | |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6280 * Change <SID>Func to K_SNR <script-nr> _Func. This name is used |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6281 * for script-locla user functions. |
7 | 6282 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14) |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6283 * Also change <SID>name.Func to K_SNR <import-script-nr> _Func. |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6284 * Only if "name" is recognized as an import. |
7 | 6285 */ |
6286 if (STRNICMP(src, "<SID>", 5) == 0) | |
6287 { | |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
6288 if (current_sctx.sc_sid <= 0) |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26400
diff
changeset
|
6289 emsg(_(e_using_sid_not_in_script_context)); |
7 | 6290 else |
6291 { | |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6292 char_u *dot; |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6293 long sid = current_sctx.sc_sid; |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6294 |
7 | 6295 src += 5; |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6296 if (in_vim9script() |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6297 && (dot = vim_strchr(src, '.')) != NULL) |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6298 { |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6299 imported_T *imp = find_imported(src, dot - src, FALSE); |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6300 |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6301 if (imp != NULL) |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6302 { |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6303 scriptitem_T *si = SCRIPT_ITEM(imp->imp_sid); |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6304 size_t len; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6305 |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6306 src = dot + 1; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6307 if (si->sn_autoload_prefix != NULL) |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6308 { |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6309 // Turn "<SID>name.Func" |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6310 // into "scriptname#Func". |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6311 len = STRLEN(si->sn_autoload_prefix); |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6312 if (ga_grow(&ga, |
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6313 (int)(STRLEN(src) * 6 + len + 1)) == FAIL) |
28453
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6314 { |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6315 ga_clear(&ga); |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6316 *bufp = NULL; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6317 return from; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6318 } |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6319 result = ga.ga_data; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6320 STRCPY(result + dlen, si->sn_autoload_prefix); |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6321 dlen += len; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6322 continue; |
862068e9e2a7
patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents:
28447
diff
changeset
|
6323 } |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6324 sid = imp->imp_sid; |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6325 } |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6326 } |
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6327 |
7 | 6328 result[dlen++] = K_SPECIAL; |
6329 result[dlen++] = (int)KS_EXTRA; | |
6330 result[dlen++] = (int)KE_SNR; | |
28447
6f753a8125f0
patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents:
28013
diff
changeset
|
6331 sprintf((char *)result + dlen, "%ld", sid); |
28497
7c4a9e20c178
patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
6332 dlen += STRLEN(result + dlen); |
7 | 6333 result[dlen++] = '_'; |
6334 continue; | |
6335 } | |
6336 } | |
6337 #endif | |
20603
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
6338 slen = trans_special(&src, result + dlen, FSK_KEYCODE |
c2570baa2e4c
patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents:
20591
diff
changeset
|
6339 | ((flags & REPTERM_NO_SIMPLIFY) ? 0 : FSK_SIMPLIFY), |
28668
53c608c7ea9e
patch 8.2.4858: K_SPECIAL may be escaped twice
Bram Moolenaar <Bram@vim.org>
parents:
28660
diff
changeset
|
6340 TRUE, did_simplify); |
7 | 6341 if (slen) |
6342 { | |
6343 dlen += slen; | |
6344 continue; | |
6345 } | |
6346 } | |
6347 | |
6348 /* | |
6349 * If 'cpoptions' does not contain 'k', see if it's an actual key-code. | |
6350 * Note that this is also checked after replacing the <> form. | |
6351 * Single character codes are NOT replaced (e.g. ^H or DEL), because | |
6352 * it could be a character in the file. | |
6353 */ | |
6354 if (do_key_code) | |
6355 { | |
6356 i = find_term_bykeys(src); | |
6357 if (i >= 0) | |
6358 { | |
6359 result[dlen++] = K_SPECIAL; | |
6360 result[dlen++] = termcodes[i].name[0]; | |
6361 result[dlen++] = termcodes[i].name[1]; | |
6362 src += termcodes[i].len; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6363 // If terminal code matched, continue after it. |
7 | 6364 continue; |
6365 } | |
6366 } | |
6367 | |
6368 #ifdef FEAT_EVAL | |
6369 if (do_special) | |
6370 { | |
6371 char_u *p, *s, len; | |
6372 | |
6373 /* | |
6374 * Replace <Leader> by the value of "mapleader". | |
6375 * Replace <LocalLeader> by the value of "maplocalleader". | |
6376 * If "mapleader" or "maplocalleader" isn't set use a backslash. | |
6377 */ | |
6378 if (STRNICMP(src, "<Leader>", 8) == 0) | |
6379 { | |
6380 len = 8; | |
6381 p = get_var_value((char_u *)"g:mapleader"); | |
6382 } | |
6383 else if (STRNICMP(src, "<LocalLeader>", 13) == 0) | |
6384 { | |
6385 len = 13; | |
6386 p = get_var_value((char_u *)"g:maplocalleader"); | |
6387 } | |
6388 else | |
6389 { | |
6390 len = 0; | |
6391 p = NULL; | |
6392 } | |
6393 if (len != 0) | |
6394 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6395 // Allow up to 8 * 6 characters for "mapleader". |
7 | 6396 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6) |
6397 s = (char_u *)"\\"; | |
6398 else | |
6399 s = p; | |
6400 while (*s != NUL) | |
6401 result[dlen++] = *s++; | |
6402 src += len; | |
6403 continue; | |
6404 } | |
6405 } | |
6406 #endif | |
6407 | |
6408 /* | |
6409 * Remove CTRL-V and ignore the next character. | |
6410 * For "from" side the CTRL-V at the end is included, for the "to" | |
6411 * part it is removed. | |
6412 * If 'cpoptions' does not contain 'B', also accept a backslash. | |
6413 */ | |
6414 key = *src; | |
6415 if (key == Ctrl_V || (do_backslash && key == '\\')) | |
6416 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6417 ++src; // skip CTRL-V or backslash |
7 | 6418 if (*src == NUL) |
6419 { | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
6420 if (flags & REPTERM_FROM_PART) |
7 | 6421 result[dlen++] = key; |
6422 break; | |
6423 } | |
6424 } | |
6425 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6426 // skip multibyte char correctly |
474 | 6427 for (i = (*mb_ptr2len)(src); i > 0; --i) |
7 | 6428 { |
6429 /* | |
6430 * If the character is K_SPECIAL, replace it with K_SPECIAL | |
6431 * KS_SPECIAL KE_FILLER. | |
6432 * If compiled with the GUI replace CSI with K_CSI. | |
6433 */ | |
6434 if (*src == K_SPECIAL) | |
6435 { | |
6436 result[dlen++] = K_SPECIAL; | |
6437 result[dlen++] = KS_SPECIAL; | |
6438 result[dlen++] = KE_FILLER; | |
6439 } | |
6440 # ifdef FEAT_GUI | |
6441 else if (*src == CSI) | |
6442 { | |
6443 result[dlen++] = K_SPECIAL; | |
6444 result[dlen++] = KS_EXTRA; | |
6445 result[dlen++] = (int)KE_CSI; | |
6446 } | |
6447 # endif | |
6448 else | |
6449 result[dlen++] = *src; | |
6450 ++src; | |
6451 } | |
6452 } | |
6453 result[dlen] = NUL; | |
6454 | |
6455 /* | |
6456 * Copy the new string to allocated memory. | |
6457 * If this fails, just return from. | |
6458 */ | |
6459 if ((*bufp = vim_strsave(result)) != NULL) | |
6460 from = *bufp; | |
6461 vim_free(result); | |
6462 return from; | |
6463 } | |
6464 | |
6465 /* | |
6466 * Find a termcode with keys 'src' (must be NUL terminated). | |
6467 * Return the index in termcodes[], or -1 if not found. | |
6468 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
6469 static int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6470 find_term_bykeys(char_u *src) |
7 | 6471 { |
6472 int i; | |
3290 | 6473 int slen = (int)STRLEN(src); |
7 | 6474 |
6475 for (i = 0; i < tc_len; ++i) | |
6476 { | |
3273 | 6477 if (slen == termcodes[i].len |
6478 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0) | |
7 | 6479 return i; |
6480 } | |
6481 return -1; | |
6482 } | |
6483 | |
6484 /* | |
6485 * Gather the first characters in the terminal key codes into a string. | |
6486 * Used to speed up check_termcode(). | |
6487 */ | |
6488 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6489 gather_termleader(void) |
7 | 6490 { |
6491 int i; | |
6492 int len = 0; | |
6493 | |
6494 #ifdef FEAT_GUI | |
6495 if (gui.in_use) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6496 termleader[len++] = CSI; // the GUI codes are not in termcodes[] |
7 | 6497 #endif |
6498 #ifdef FEAT_TERMRESPONSE | |
12170
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
6499 if (check_for_codes || *T_CRS != NUL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6500 termleader[len++] = DCS; // the termcode response starts with DCS |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6501 // in 8-bit mode |
7 | 6502 #endif |
6503 termleader[len] = NUL; | |
6504 | |
6505 for (i = 0; i < tc_len; ++i) | |
6506 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL) | |
6507 { | |
6508 termleader[len++] = termcodes[i].code[0]; | |
6509 termleader[len] = NUL; | |
6510 } | |
6511 | |
6512 need_gather = FALSE; | |
6513 } | |
6514 | |
6515 /* | |
6516 * Show all termcodes (for ":set termcap") | |
6517 * This code looks a lot like showoptions(), but is different. | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6518 * "flags" can have OPT_ONECOLUMN. |
7 | 6519 */ |
6520 void | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6521 show_termcodes(int flags) |
7 | 6522 { |
6523 int col; | |
6524 int *items; | |
6525 int item_count; | |
6526 int run; | |
6527 int row, rows; | |
6528 int cols; | |
6529 int i; | |
6530 int len; | |
6531 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6532 #define INC3 27 // try to make three columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6533 #define INC2 40 // try to make two columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6534 #define GAP 2 // spaces between columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6535 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6536 if (tc_len == 0) // no terminal codes (must be GUI) |
7 | 6537 return; |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
6538 items = ALLOC_MULT(int, tc_len); |
7 | 6539 if (items == NULL) |
6540 return; | |
6541 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6542 // Highlight title |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6543 msg_puts_title(_("\n--- Terminal keys ---")); |
7 | 6544 |
6545 /* | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6546 * Do the loop three times: |
7 | 6547 * 1. display the short items (non-strings and short strings) |
180 | 6548 * 2. display the medium items (medium length strings) |
6549 * 3. display the long items (remaining strings) | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6550 * When "flags" has OPT_ONECOLUMN do everything in 3. |
7 | 6551 */ |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6552 for (run = (flags & OPT_ONECOLUMN) ? 3 : 1; run <= 3 && !got_int; ++run) |
7 | 6553 { |
6554 /* | |
6555 * collect the items in items[] | |
6556 */ | |
6557 item_count = 0; | |
6558 for (i = 0; i < tc_len; i++) | |
6559 { | |
6560 len = show_one_termcode(termcodes[i].name, | |
6561 termcodes[i].code, FALSE); | |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6562 if ((flags & OPT_ONECOLUMN) || |
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6563 (len <= INC3 - GAP ? run == 1 |
180 | 6564 : len <= INC2 - GAP ? run == 2 |
26400
d26bab4f6aca
patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents:
26392
diff
changeset
|
6565 : run == 3)) |
7 | 6566 items[item_count++] = i; |
6567 } | |
6568 | |
6569 /* | |
6570 * display the items | |
6571 */ | |
180 | 6572 if (run <= 2) |
7 | 6573 { |
180 | 6574 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2); |
7 | 6575 if (cols == 0) |
6576 cols = 1; | |
6577 rows = (item_count + cols - 1) / cols; | |
6578 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6579 else // run == 3 |
7 | 6580 rows = item_count; |
6581 for (row = 0; row < rows && !got_int; ++row) | |
6582 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6583 msg_putchar('\n'); // go to next line |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6584 if (got_int) // 'q' typed in more |
7 | 6585 break; |
6586 col = 0; | |
6587 for (i = row; i < item_count; i += rows) | |
6588 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6589 msg_col = col; // make columns |
7 | 6590 show_one_termcode(termcodes[items[i]].name, |
6591 termcodes[items[i]].code, TRUE); | |
180 | 6592 if (run == 2) |
6593 col += INC2; | |
6594 else | |
6595 col += INC3; | |
7 | 6596 } |
6597 out_flush(); | |
6598 ui_breakcheck(); | |
6599 } | |
6600 } | |
6601 vim_free(items); | |
6602 } | |
6603 | |
6604 /* | |
6605 * Show one termcode entry. | |
6606 * Output goes into IObuff[] | |
6607 */ | |
6608 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6609 show_one_termcode(char_u *name, char_u *code, int printit) |
7 | 6610 { |
6611 char_u *p; | |
6612 int len; | |
6613 | |
6614 if (name[0] > '~') | |
6615 { | |
6616 IObuff[0] = ' '; | |
6617 IObuff[1] = ' '; | |
6618 IObuff[2] = ' '; | |
6619 IObuff[3] = ' '; | |
6620 } | |
6621 else | |
6622 { | |
6623 IObuff[0] = 't'; | |
6624 IObuff[1] = '_'; | |
6625 IObuff[2] = name[0]; | |
6626 IObuff[3] = name[1]; | |
6627 } | |
6628 IObuff[4] = ' '; | |
6629 | |
6630 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0); | |
6631 if (p[1] != 't') | |
6632 STRCPY(IObuff + 5, p); | |
6633 else | |
6634 IObuff[5] = NUL; | |
6635 len = (int)STRLEN(IObuff); | |
6636 do | |
6637 IObuff[len++] = ' '; | |
6638 while (len < 17); | |
6639 IObuff[len] = NUL; | |
6640 if (code == NULL) | |
6641 len += 4; | |
6642 else | |
6643 len += vim_strsize(code); | |
6644 | |
6645 if (printit) | |
6646 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6647 msg_puts((char *)IObuff); |
7 | 6648 if (code == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6649 msg_puts("NULL"); |
7 | 6650 else |
6651 msg_outtrans(code); | |
6652 } | |
6653 return len; | |
6654 } | |
6655 | |
6656 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) | |
6657 /* | |
6658 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used | |
6659 * termcap codes from the terminal itself. | |
6660 * We get them one by one to avoid a very long response string. | |
6661 */ | |
6102 | 6662 static int xt_index_in = 0; |
6663 static int xt_index_out = 0; | |
6664 | |
7 | 6665 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6666 req_codes_from_term(void) |
7 | 6667 { |
6668 xt_index_out = 0; | |
6669 xt_index_in = 0; | |
6670 req_more_codes_from_term(); | |
6671 } | |
6672 | |
6673 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6674 req_more_codes_from_term(void) |
7 | 6675 { |
28013
dbf6d5ea7a1f
patch 8.2.4531: LGTM warnings for condition and buffer size
Bram Moolenaar <Bram@vim.org>
parents:
27996
diff
changeset
|
6676 char buf[23]; // extra size to shut up LGTM |
7 | 6677 int old_idx = xt_index_out; |
6678 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6679 // Don't do anything when going to exit. |
7 | 6680 if (exiting) |
6681 return; | |
6682 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6683 // Send up to 10 more requests out than we received. Avoid sending too |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6684 // many, there can be a buffer overflow somewhere. |
7 | 6685 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL) |
6686 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6687 char *key_name = key_names[xt_index_out]; |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6688 |
29069
be6c32395444
patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents:
28919
diff
changeset
|
6689 MAY_WANT_TO_LOG_THIS; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6690 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name)); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6691 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]); |
7 | 6692 out_str_nf((char_u *)buf); |
6693 ++xt_index_out; | |
6694 } | |
6695 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6696 // Send the codes out right away. |
7 | 6697 if (xt_index_out != old_idx) |
6698 out_flush(); | |
6699 } | |
6700 | |
6701 /* | |
6702 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'. | |
6703 * A "0" instead of the "1" indicates a code that isn't supported. | |
6704 * Both <name> and <string> are encoded in hex. | |
6705 * "code" points to the "0" or "1". | |
6706 */ | |
6707 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6708 got_code_from_term(char_u *code, int len) |
7 | 6709 { |
6710 #define XT_LEN 100 | |
6711 char_u name[3]; | |
6712 char_u str[XT_LEN]; | |
6713 int i; | |
6714 int j = 0; | |
6715 int c; | |
6716 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6717 // A '1' means the code is supported, a '0' means it isn't. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6718 // When half the length is > XT_LEN we can't use it. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6719 // Our names are currently all 2 characters. |
7 | 6720 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN) |
6721 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6722 // Get the name from the response and find it in the table. |
7 | 6723 name[0] = hexhex2nr(code + 3); |
6724 name[1] = hexhex2nr(code + 5); | |
6725 name[2] = NUL; | |
6726 for (i = 0; key_names[i] != NULL; ++i) | |
6727 { | |
6728 if (STRCMP(key_names[i], name) == 0) | |
6729 { | |
6730 xt_index_in = i; | |
6731 break; | |
6732 } | |
6733 } | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6734 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6735 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name)); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6736 |
7 | 6737 if (key_names[i] != NULL) |
6738 { | |
6739 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2) | |
6740 str[j++] = c; | |
6741 str[j] = NUL; | |
6742 if (name[0] == 'C' && name[1] == 'o') | |
6743 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6744 // Color count is not a key code. |
26670
a77b661439f9
patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents:
26439
diff
changeset
|
6745 may_adjust_color_count(atoi((char *)str)); |
7 | 6746 } |
6747 else | |
6748 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6749 // First delete any existing entry with the same code. |
7 | 6750 i = find_term_bykeys(str); |
6751 if (i >= 0) | |
6752 del_termcode_idx(i); | |
180 | 6753 add_termcode(name, str, ATC_FROM_TERM); |
7 | 6754 } |
6755 } | |
6756 } | |
6757 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6758 // May request more codes now that we received one. |
7 | 6759 ++xt_index_in; |
6760 req_more_codes_from_term(); | |
6761 } | |
6762 | |
6763 /* | |
6764 * Check if there are any unanswered requests and deal with them. | |
6765 * This is called before starting an external program or getting direct | |
6766 * keyboard input. We don't want responses to be send to that program or | |
6767 * handled as typed text. | |
6768 */ | |
6769 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6770 check_for_codes_from_term(void) |
7 | 6771 { |
6772 int c; | |
6773 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6774 // If no codes requested or all are answered, no need to wait. |
7 | 6775 if (xt_index_out == 0 || xt_index_out == xt_index_in) |
6776 return; | |
6777 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6778 // Vgetc() will check for and handle any response. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6779 // Keep calling vpeekc() until we don't get any responses. |
7 | 6780 ++no_mapping; |
6781 ++allow_keys; | |
6782 for (;;) | |
6783 { | |
6784 c = vpeekc(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6785 if (c == NUL) // nothing available |
7 | 6786 break; |
6787 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6788 // If a response is recognized it's replaced with K_IGNORE, must read |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6789 // it from the input stream. If there is no K_IGNORE we can't do |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6790 // anything, break here (there might be some responses further on, but |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6791 // we don't want to throw away any typed chars). |
7 | 6792 if (c != K_SPECIAL && c != K_IGNORE) |
6793 break; | |
6794 c = vgetc(); | |
6795 if (c != K_IGNORE) | |
6796 { | |
6797 vungetc(c); | |
6798 break; | |
6799 } | |
6800 } | |
6801 --no_mapping; | |
6802 --allow_keys; | |
6803 } | |
6804 #endif | |
6805 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
6806 #if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO) |
7 | 6807 static char ksme_str[20]; |
6808 static char ksmr_str[20]; | |
6809 static char ksmd_str[20]; | |
6810 | |
6811 /* | |
6812 * For Win32 console: update termcap codes for existing console attributes. | |
6813 */ | |
6814 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6815 update_tcap(int attr) |
7 | 6816 { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
6817 sprintf(ksme_str, "\033|%dm", attr); |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
6818 sprintf(ksmd_str, "\033|%dm", attr | 0x08); // FOREGROUND_INTENSITY |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
6819 sprintf(ksmr_str, "\033|%dm", ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4)); |
7 | 6820 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6821 tcap_entry_T *p = find_builtin_term(DEFAULT_TERM); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6822 if (p == NULL) // did not find it |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6823 return; |
7 | 6824 while (p->bt_string != NULL) |
6825 { | |
6826 if (p->bt_entry == (int)KS_ME) | |
6827 p->bt_string = &ksme_str[0]; | |
6828 else if (p->bt_entry == (int)KS_MR) | |
6829 p->bt_string = &ksmr_str[0]; | |
6830 else if (p->bt_entry == (int)KS_MD) | |
6831 p->bt_string = &ksmd_str[0]; | |
6832 ++p; | |
6833 } | |
6834 } | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6835 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6836 # ifdef FEAT_TERMGUICOLORS |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6837 # define KSSIZE 20 |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6838 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6839 typedef enum |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6840 { |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6841 CMODE_INDEXED = 0, // Use cmd.exe 4bit palette. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6842 CMODE_RGB, // Use 24bit RGB colors using VTP. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6843 CMODE_256COL, // Emulate xterm's 256-color palette using VTP. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6844 CMODE_LAST, |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6845 } cmode_T; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6846 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6847 struct ks_tbl_S |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6848 { |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6849 int code; // value of KS_ |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6850 char *vtp; // code in RGB mode |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6851 char *vtp2; // code in 256color mode |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6852 char buf[CMODE_LAST][KSSIZE]; // real buffer |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6853 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6854 |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6855 static struct ks_tbl_S ks_tbl[] = |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6856 { |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6857 {(int)KS_ME, "\033|0m", "\033|0m", {""}}, // normal |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6858 {(int)KS_MR, "\033|7m", "\033|7m", {""}}, // reverse |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6859 {(int)KS_MD, "\033|1m", "\033|1m", {""}}, // bold |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6860 {(int)KS_SO, "\033|91m", "\033|91m", {""}}, // standout: bright red text |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6861 {(int)KS_SE, "\033|39m", "\033|39m", {""}}, // standout end: default color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6862 {(int)KS_CZH, "\033|3m", "\033|3m", {""}}, // italic |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6863 {(int)KS_CZR, "\033|0m", "\033|0m", {""}}, // italic end |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6864 {(int)KS_US, "\033|4m", "\033|4m", {""}}, // underscore |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6865 {(int)KS_UE, "\033|24m", "\033|24m", {""}}, // underscore end |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6866 # ifdef TERMINFO |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6867 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm", {""}}, // set background color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6868 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm", {""}}, // set foreground color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6869 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR", {""}}, |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6870 {(int)KS_CSV, "\033|%p1%d;%p2%dV", "\033|%p1%d;%p2%dV", {""}}, |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6871 # else |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6872 {(int)KS_CAB, "\033|%db", "\033|4%dm", {""}}, // set background color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6873 {(int)KS_CAF, "\033|%df", "\033|3%dm", {""}}, // set foreground color |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6874 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR", {""}}, |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6875 {(int)KS_CSV, "\033|%d;%dV", "\033|%d;%dV", {""}}, |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6876 # endif |
29105
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6877 {(int)KS_CCO, "256", "256", {""}}, // colors |
faf7fcd1c8d5
patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents:
29069
diff
changeset
|
6878 {(int)KS_NAME, NULL, NULL, {""}} // terminator |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6879 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6880 |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6881 /* |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6882 * Find the first entry for "code" in the builtin termcap for "name". |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6883 * Returns NULL when not found. |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6884 */ |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6885 static tcap_entry_T * |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6886 find_first_tcap( |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6887 char_u *name, |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6888 int code) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6889 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6890 tcap_entry_T *p = find_builtin_term(name); |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6891 if (p != NULL) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6892 { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6893 while (p->bt_string != NULL) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6894 { |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6895 if (p->bt_entry == code) |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6896 return p; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6897 ++p; |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6898 } |
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6899 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6900 return NULL; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6901 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6902 # endif |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6903 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6904 /* |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6905 * For Win32 console: replace the sequence immediately after termguicolors. |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6906 */ |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6907 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6908 swap_tcap(void) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6909 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6910 # ifdef FEAT_TERMGUICOLORS |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6911 static int init_done = FALSE; |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6912 static cmode_T curr_mode; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6913 struct ks_tbl_S *ks; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6914 cmode_T mode; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6915 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6916 if (!init_done) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6917 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6918 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6919 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6920 tcap_entry_T *bt = find_first_tcap(DEFAULT_TERM, ks->code); |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6921 if (bt != NULL) |
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6922 { |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6923 // Preserve the original value. |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6924 STRNCPY(ks->buf[CMODE_INDEXED], bt->bt_string, KSSIZE); |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6925 STRNCPY(ks->buf[CMODE_RGB], ks->vtp, KSSIZE); |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6926 STRNCPY(ks->buf[CMODE_256COL], ks->vtp2, KSSIZE); |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6927 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6928 bt->bt_string = ks->buf[CMODE_INDEXED]; |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6929 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6930 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6931 init_done = TRUE; |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6932 curr_mode = CMODE_INDEXED; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6933 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6934 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6935 if (p_tgc) |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6936 mode = CMODE_RGB; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6937 else if (t_colors >= 256) |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6938 mode = CMODE_256COL; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6939 else |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6940 mode = CMODE_INDEXED; |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6941 |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6942 if (mode == curr_mode) |
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6943 return; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6944 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6945 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6946 { |
31129
9cc7b2cec8ad
patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents:
31111
diff
changeset
|
6947 tcap_entry_T *bt = find_first_tcap(DEFAULT_TERM, ks->code); |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6948 if (bt != NULL) |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6949 bt->bt_string = ks->buf[mode]; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6950 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6951 |
28739
40b087823dc7
patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents:
28704
diff
changeset
|
6952 curr_mode = mode; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6953 # endif |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6954 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6955 |
7 | 6956 #endif |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6957 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6958 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16387
diff
changeset
|
6959 #if (defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))) || defined(FEAT_TERMINAL) \ |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6960 || defined(PROTO) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6961 static int cube_value[] = { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6962 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6963 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6964 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6965 static int grey_ramp[] = { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6966 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76, |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6967 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6968 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6969 |
28919
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
6970 static const char_u ansi_table[16][3] = { |
28656
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6971 // R G B |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6972 { 0, 0, 0}, // black |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6973 {224, 0, 0}, // dark red |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6974 { 0, 224, 0}, // dark green |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6975 {224, 224, 0}, // dark yellow / brown |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6976 { 0, 0, 224}, // dark blue |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6977 {224, 0, 224}, // dark magenta |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6978 { 0, 224, 224}, // dark cyan |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6979 {224, 224, 224}, // light grey |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6980 |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6981 {128, 128, 128}, // dark grey |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6982 {255, 64, 64}, // light red |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6983 { 64, 255, 64}, // light green |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6984 {255, 255, 64}, // yellow |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6985 { 64, 64, 255}, // light blue |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6986 {255, 64, 255}, // light magenta |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6987 { 64, 255, 255}, // light cyan |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6988 {255, 255, 255}, // white |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6989 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6990 |
28656
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6991 #if defined(MSWIN) |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6992 // Mapping between cterm indices < 16 and their counterpart in the ANSI palette. |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6993 static const char_u cterm_ansi_idx[] = { |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6994 0, 4, 2, 6, 1, 5, 3, 7, 8, 12, 10, 14, 9, 13, 11, 15 |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6995 }; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6996 #endif |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
6997 |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
6998 #define ANSI_INDEX_NONE 0 |
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
6999 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7000 void |
28919
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7001 ansi_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx) |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7002 { |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7003 if (nr < 16) |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7004 { |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7005 *r = ansi_table[nr][0]; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7006 *g = ansi_table[nr][1]; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7007 *b = ansi_table[nr][2]; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7008 *ansi_idx = nr; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7009 } |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7010 else |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7011 { |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7012 *r = 0; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7013 *g = 0; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7014 *b = 0; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7015 *ansi_idx = ANSI_INDEX_NONE; |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7016 } |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7017 } |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7018 |
99c1356f4210
patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
7019 void |
13839
ca8953d36264
patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13827
diff
changeset
|
7020 cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx) |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7021 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7022 int idx; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7023 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7024 if (nr < 16) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7025 { |
28656
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7026 #if defined(MSWIN) |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7027 idx = cterm_ansi_idx[nr]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7028 #else |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7029 idx = nr; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7030 #endif |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7031 *r = ansi_table[idx][0]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7032 *g = ansi_table[idx][1]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7033 *b = ansi_table[idx][2]; |
3f4e1326a003
patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents:
28618
diff
changeset
|
7034 *ansi_idx = idx + 1; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7035 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7036 else if (nr < 232) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7037 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7038 // 216 color cube |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7039 idx = nr - 16; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7040 *r = cube_value[idx / 36 % 6]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7041 *g = cube_value[idx / 6 % 6]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7042 *b = cube_value[idx % 6]; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7043 *ansi_idx = ANSI_INDEX_NONE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7044 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7045 else if (nr < 256) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7046 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
7047 // 24 grey scale ramp |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7048 idx = nr - 232; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7049 *r = grey_ramp[idx]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7050 *g = grey_ramp[idx]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7051 *b = grey_ramp[idx]; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7052 *ansi_idx = ANSI_INDEX_NONE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7053 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7054 else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7055 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7056 *r = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7057 *g = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7058 *b = 0; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
7059 *ansi_idx = ANSI_INDEX_NONE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7060 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7061 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7062 #endif |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
7063 |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7064 /* |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7065 * Replace K_BS by <BS> and K_DEL by <DEL>. |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7066 * Include any modifiers into the key and drop them. |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7067 * Returns "len" adjusted for replaced codes. |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7068 */ |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7069 int |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7070 term_replace_keycodes(char_u *ta_buf, int ta_len, int len_arg) |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7071 { |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7072 int len = len_arg; |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7073 int i; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7074 int c; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7075 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7076 for (i = ta_len; i < ta_len + len; ++i) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7077 { |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7078 if (ta_buf[i] == CSI && len - i > 3 && ta_buf[i + 1] == KS_MODIFIER) |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7079 { |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7080 int modifiers = ta_buf[i + 2]; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7081 int key = ta_buf[i + 3]; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7082 |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7083 // Try to use the modifier to modify the key. In any case drop the |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7084 // modifier. |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7085 mch_memmove(ta_buf + i + 1, ta_buf + i + 4, (size_t)(len - i - 3)); |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7086 len -= 3; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7087 if (key < 0x80) |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7088 key = merge_modifyOtherKeys(key, &modifiers); |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7089 ta_buf[i] = key; |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7090 } |
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7091 else if (ta_buf[i] == CSI && len - i > 2) |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7092 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7093 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7094 if (c == K_DEL || c == K_KDEL || c == K_BS) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7095 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7096 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, |
30641
1207b6d6cf9e
patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
30637
diff
changeset
|
7097 (size_t)(len - i - 2)); |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7098 if (c == K_DEL || c == K_KDEL) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7099 ta_buf[i] = DEL; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7100 else |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7101 ta_buf[i] = Ctrl_H; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7102 len -= 2; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7103 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7104 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7105 else if (ta_buf[i] == '\r') |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7106 ta_buf[i] = '\n'; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7107 if (has_mbyte) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7108 i += (*mb_ptr2len_len)(ta_buf + i, ta_len + len - i) - 1; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7109 } |
30637
ae1113e53ce3
patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents:
30602
diff
changeset
|
7110 return len; |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
7111 } |