Mercurial > vim
annotate src/term.c @ 20776:7728e309e013 v8.2.0940
patch 8.2.0940: build failure with tiny features
Commit: https://github.com/vim/vim/commit/0ca8b5ba7ba72d739ee15d0d6534aa20f863f3c3
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 9 21:35:36 2020 +0200
patch 8.2.0940: build failure with tiny features
Problem: Build failure with tiny features.
Solution: Add #ifdef. Add UNUSED. A bit more cleaning up.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 09 Jun 2020 21:45:03 +0200 |
parents | 10535993e913 |
children | 6d5e233bac9c |
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 */ | |
40 # ifdef VMS | |
41 # define TPUTSFUNCAST | |
42 # else | |
43 # ifdef HAVE_OUTFUNTYPE | |
44 # define TPUTSFUNCAST (outfuntype) | |
45 # else | |
46 # define TPUTSFUNCAST (int (*)()) | |
47 # endif | |
48 # endif | |
49 #endif | |
50 | |
51 #undef tgetstr | |
52 | |
53 /* | |
54 * Here are the builtin termcap entries. They are not stored as complete | |
2823 | 55 * structures with all entries, as such a structure is too big. |
7 | 56 * |
57 * The entries are compact, therefore they normally are included even when | |
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries | |
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc. | |
60 * | |
61 * Each termcap is a list of builtin_term structures. It always starts with | |
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all | |
63 * details. | |
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code. | |
65 * | |
66 * Entries marked with "guessed" may be wrong. | |
67 */ | |
68 struct builtin_term | |
69 { | |
70 int bt_entry; | |
71 char *bt_string; | |
72 }; | |
73 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
74 // start of keys that are not directly used by Vim but can be mapped |
7 | 75 #define BT_EXTRA_KEYS 0x101 |
76 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
77 static 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
|
78 static void gather_termleader(void); |
7 | 79 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
80 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
|
81 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
|
82 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
|
83 static void check_for_codes_from_term(void); |
7 | 84 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
85 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
|
86 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
|
87 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
|
88 static int term_7to8bit(char_u *p); |
7 | 89 |
90 #ifdef HAVE_TGETENT | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
91 static char *tgetent_error(char_u *, char_u *); |
7 | 92 |
93 /* | |
94 * Here is our own prototype for tgetstr(), any prototypes from the include | |
95 * files have been disabled by the define at the start of this file. | |
96 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
97 char *tgetstr(char *, char **); |
7 | 98 |
99 # ifdef FEAT_TERMRESPONSE | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
100 // 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
|
101 # if 0 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
102 # define DEBUG_TERMRESPONSE |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
103 static void log_tr(const char *fmt, ...); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
104 # define LOG_TR(msg) log_tr msg |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
105 # else |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
106 # define LOG_TR(msg) do { /**/ } while (0) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
107 # 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
|
108 |
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
|
109 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
|
110 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
|
111 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
|
112 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
|
113 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
|
114 } 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
|
115 |
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
|
116 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
|
117 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
|
118 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
|
119 } 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
|
120 |
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
|
121 # 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
|
122 |
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 // 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
|
124 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
|
125 |
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 // 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
|
127 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
|
128 |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
129 // 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
|
130 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
|
131 |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
132 # 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
|
133 // 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
|
134 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
|
135 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
|
136 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
|
137 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
|
138 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
|
139 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
|
140 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
|
141 # 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
|
142 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
143 // 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
|
144 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
|
145 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
146 // 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
|
147 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
|
148 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
149 // 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
|
150 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
|
151 |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19178
diff
changeset
|
152 // 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
|
153 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
|
154 |
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
|
155 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
|
156 &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
|
157 &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
|
158 &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
|
159 # 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
|
160 &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
|
161 # 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
|
162 &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
|
163 &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
|
164 &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
|
165 &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
|
166 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
|
167 }; |
7 | 168 # endif |
169 | |
170 /* | |
171 * Don't declare these variables if termcap.h contains them. | |
172 * Autoconf checks if these variables should be declared extern (not all | |
173 * systems have them). | |
174 * Some versions define ospeed to be speed_t, but that is incompatible with | |
175 * BSD, where ospeed is short and speed_t is long. | |
176 */ | |
177 # ifndef HAVE_OSPEED | |
178 # ifdef OSPEED_EXTERN | |
179 extern short ospeed; | |
180 # else | |
181 short ospeed; | |
182 # endif | |
183 # endif | |
184 # ifndef HAVE_UP_BC_PC | |
185 # ifdef UP_BC_PC_EXTERN | |
186 extern char *UP, *BC, PC; | |
187 # else | |
188 char *UP, *BC, PC; | |
189 # endif | |
190 # endif | |
191 | |
192 # define TGETSTR(s, p) vim_tgetstr((s), (p)) | |
193 # 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
|
194 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
|
195 #endif // HAVE_TGETENT |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
196 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
197 static int detected_8bit = FALSE; // detected 8-bit terminal |
7 | 198 |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
199 #ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
200 // 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
|
201 // 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
|
202 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
|
203 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
204 // 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
|
205 // 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
|
206 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
|
207 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
208 // 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
|
209 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
|
210 #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
|
211 |
298 | 212 static struct builtin_term builtin_termcaps[] = |
7 | 213 { |
214 | |
215 #if defined(FEAT_GUI) | |
216 /* | |
217 * GUI pseudo term-cap. | |
218 */ | |
219 {(int)KS_NAME, "gui"}, | |
220 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")}, | |
221 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")}, | |
222 # ifdef TERMINFO | |
223 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")}, | |
224 # else | |
225 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")}, | |
226 # endif | |
227 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")}, | |
228 # ifdef TERMINFO | |
229 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")}, | |
230 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")}, | |
231 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")}, | |
232 # else | |
233 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")}, | |
234 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")}, | |
235 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")}, | |
236 # endif | |
237 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
238 // attributes switched on with 'h', off with * 'H' |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
239 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, // HL_ALL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
240 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, // HL_INVERSE |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
241 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, // HL_BOLD |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
242 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, // HL_STANDOUT |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
243 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, // HL_STANDOUT |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
244 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, // HL_UNDERLINE |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
245 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, // HL_UNDERLINE |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
246 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, // HL_UNDERCURL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
247 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, // HL_UNDERCURL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
248 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, // HL_STRIKETHROUGH |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
249 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, // HL_STRIKETHROUGH |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
250 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, // HL_ITALIC |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
251 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, // HL_ITALIC |
7 | 252 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")}, |
253 {(int)KS_MS, "y"}, | |
254 {(int)KS_UT, "y"}, | |
6602 | 255 {(int)KS_XN, "y"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
256 {(int)KS_LE, "\b"}, // cursor-left = BS |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
257 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L |
7 | 258 # ifdef TERMINFO |
259 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")}, | |
260 # else | |
261 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")}, | |
262 # endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
263 // there are no key sequences here, the GUI sequences are recognized |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
264 // in check_termcode() |
7 | 265 #endif |
266 | |
267 #ifndef NO_BUILTIN_TCAPS | |
268 | |
269 # if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS) | |
270 /* | |
271 * Amiga console window, default for Amiga | |
272 */ | |
273 {(int)KS_NAME, "amiga"}, | |
274 {(int)KS_CE, "\033[K"}, | |
275 {(int)KS_CD, "\033[J"}, | |
276 {(int)KS_AL, "\033[L"}, | |
277 # ifdef TERMINFO | |
278 {(int)KS_CAL, "\033[%p1%dL"}, | |
279 # else | |
280 {(int)KS_CAL, "\033[%dL"}, | |
281 # endif | |
282 {(int)KS_DL, "\033[M"}, | |
283 # ifdef TERMINFO | |
284 {(int)KS_CDL, "\033[%p1%dM"}, | |
285 # else | |
286 {(int)KS_CDL, "\033[%dM"}, | |
287 # endif | |
288 {(int)KS_CL, "\014"}, | |
289 {(int)KS_VI, "\033[0 p"}, | |
290 {(int)KS_VE, "\033[1 p"}, | |
291 {(int)KS_ME, "\033[0m"}, | |
292 {(int)KS_MR, "\033[7m"}, | |
293 {(int)KS_MD, "\033[1m"}, | |
294 {(int)KS_SE, "\033[0m"}, | |
295 {(int)KS_SO, "\033[33m"}, | |
296 {(int)KS_US, "\033[4m"}, | |
297 {(int)KS_UE, "\033[0m"}, | |
298 {(int)KS_CZH, "\033[3m"}, | |
299 {(int)KS_CZR, "\033[0m"}, | |
300 #if defined(__MORPHOS__) || defined(__AROS__) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
301 {(int)KS_CCO, "8"}, // allow 8 colors |
7 | 302 # ifdef TERMINFO |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
303 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
304 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
7 | 305 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
306 {(int)KS_CAB, "\033[4%dm"}, // set background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
307 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
7 | 308 # endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
309 {(int)KS_OP, "\033[m"}, // reset colors |
7 | 310 #endif |
311 {(int)KS_MS, "y"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
312 {(int)KS_UT, "y"}, // guessed |
7 | 313 {(int)KS_LE, "\b"}, |
314 # ifdef TERMINFO | |
315 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
316 # else | |
317 {(int)KS_CM, "\033[%i%d;%dH"}, | |
318 # endif | |
319 #if defined(__MORPHOS__) | |
320 {(int)KS_SR, "\033M"}, | |
321 #endif | |
322 # ifdef TERMINFO | |
323 {(int)KS_CRI, "\033[%p1%dC"}, | |
324 # else | |
325 {(int)KS_CRI, "\033[%dC"}, | |
326 # endif | |
327 {K_UP, "\233A"}, | |
328 {K_DOWN, "\233B"}, | |
329 {K_LEFT, "\233D"}, | |
330 {K_RIGHT, "\233C"}, | |
331 {K_S_UP, "\233T"}, | |
332 {K_S_DOWN, "\233S"}, | |
333 {K_S_LEFT, "\233 A"}, | |
334 {K_S_RIGHT, "\233 @"}, | |
335 {K_S_TAB, "\233Z"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
336 {K_F1, "\233\060~"},// some compilers don't dig "\2330" |
7 | 337 {K_F2, "\233\061~"}, |
338 {K_F3, "\233\062~"}, | |
339 {K_F4, "\233\063~"}, | |
340 {K_F5, "\233\064~"}, | |
341 {K_F6, "\233\065~"}, | |
342 {K_F7, "\233\066~"}, | |
343 {K_F8, "\233\067~"}, | |
344 {K_F9, "\233\070~"}, | |
345 {K_F10, "\233\071~"}, | |
346 {K_S_F1, "\233\061\060~"}, | |
347 {K_S_F2, "\233\061\061~"}, | |
348 {K_S_F3, "\233\061\062~"}, | |
349 {K_S_F4, "\233\061\063~"}, | |
350 {K_S_F5, "\233\061\064~"}, | |
351 {K_S_F6, "\233\061\065~"}, | |
352 {K_S_F7, "\233\061\066~"}, | |
353 {K_S_F8, "\233\061\067~"}, | |
354 {K_S_F9, "\233\061\070~"}, | |
355 {K_S_F10, "\233\061\071~"}, | |
356 {K_HELP, "\233?~"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
357 {K_INS, "\233\064\060~"}, // 101 key keyboard |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
358 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
359 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
360 {K_HOME, "\233\064\064~"}, // 101 key keyboard |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
361 {K_END, "\233\064\065~"}, // 101 key keyboard |
7 | 362 |
363 {BT_EXTRA_KEYS, ""}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
364 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
365 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
366 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key |
7 | 367 # endif |
368 | |
20591
4411c2b96af9
patch 8.2.0849: BeOS code is not maintained and probably unused
Bram Moolenaar <Bram@vim.org>
parents:
20589
diff
changeset
|
369 # ifdef ALL_BUILTIN_TCAPS |
7 | 370 /* |
20591
4411c2b96af9
patch 8.2.0849: BeOS code is not maintained and probably unused
Bram Moolenaar <Bram@vim.org>
parents:
20589
diff
changeset
|
371 * almost standard ANSI terminal |
7 | 372 */ |
373 {(int)KS_CE, "\033[K"}, | |
374 {(int)KS_CD, "\033[J"}, | |
375 {(int)KS_AL, "\033[L"}, | |
376 # ifdef TERMINFO | |
377 {(int)KS_CAL, "\033[%p1%dL"}, | |
378 # else | |
379 {(int)KS_CAL, "\033[%dL"}, | |
380 # endif | |
381 {(int)KS_DL, "\033[M"}, | |
382 # ifdef TERMINFO | |
383 {(int)KS_CDL, "\033[%p1%dM"}, | |
384 # else | |
385 {(int)KS_CDL, "\033[%dM"}, | |
386 # endif | |
387 {(int)KS_CL, "\033[H\033[2J"}, | |
388 #ifdef notyet | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
389 {(int)KS_VI, "[VI]"}, // cursor invisible, VT320: CSI ? 25 l |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
390 {(int)KS_VE, "[VE]"}, // cursor visible, VT320: CSI ? 25 h |
7 | 391 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
392 {(int)KS_ME, "\033[m"}, // normal mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
393 {(int)KS_MR, "\033[7m"}, // reverse |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
394 {(int)KS_MD, "\033[1m"}, // bold |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
395 {(int)KS_SO, "\033[31m"}, // standout mode: red |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
396 {(int)KS_SE, "\033[m"}, // standout end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
397 {(int)KS_CZH, "\033[35m"}, // italic: purple |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
398 {(int)KS_CZR, "\033[m"}, // italic end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
399 {(int)KS_US, "\033[4m"}, // underscore mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
400 {(int)KS_UE, "\033[m"}, // underscore end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
401 {(int)KS_CCO, "8"}, // allow 8 colors |
7 | 402 # ifdef TERMINFO |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
403 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
404 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
7 | 405 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
406 {(int)KS_CAB, "\033[4%dm"}, // set background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
407 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
7 | 408 # endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
409 {(int)KS_OP, "\033[m"}, // reset colors |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
410 {(int)KS_MS, "y"}, // safe to move cur in reverse mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
411 {(int)KS_UT, "y"}, // guessed |
7 | 412 {(int)KS_LE, "\b"}, |
413 # ifdef TERMINFO | |
414 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
415 # else | |
416 {(int)KS_CM, "\033[%i%d;%dH"}, | |
417 # endif | |
418 {(int)KS_SR, "\033M"}, | |
419 # ifdef TERMINFO | |
420 {(int)KS_CRI, "\033[%p1%dC"}, | |
421 # else | |
422 {(int)KS_CRI, "\033[%dC"}, | |
423 # endif | |
424 | |
425 {K_UP, "\033[A"}, | |
426 {K_DOWN, "\033[B"}, | |
427 {K_LEFT, "\033[D"}, | |
428 {K_RIGHT, "\033[C"}, | |
429 # endif | |
430 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
431 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) |
7 | 432 /* |
433 * standard ANSI terminal, default for unix | |
434 */ | |
435 {(int)KS_NAME, "ansi"}, | |
436 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, | |
437 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
438 # ifdef TERMINFO | |
439 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
440 # else | |
441 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
442 # endif | |
443 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
444 # ifdef TERMINFO | |
445 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
446 # else | |
447 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
448 # endif | |
449 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
450 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")}, | |
451 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
452 {(int)KS_MS, "y"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
453 {(int)KS_UT, "y"}, // guessed |
7 | 454 {(int)KS_LE, "\b"}, |
455 # ifdef TERMINFO | |
456 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")}, | |
457 # else | |
458 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
459 # endif | |
460 # ifdef TERMINFO | |
461 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
462 # else | |
463 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
464 # endif | |
465 # endif | |
466 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
467 # if defined(ALL_BUILTIN_TCAPS) |
7 | 468 /* |
469 * These codes are valid when nansi.sys or equivalent has been installed. | |
470 * Function keys on a PC are preceded with a NUL. These are converted into | |
471 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes. | |
472 * CTRL-arrow is used instead of SHIFT-arrow. | |
473 */ | |
474 {(int)KS_NAME, "pcansi"}, | |
475 {(int)KS_DL, "\033[M"}, | |
476 {(int)KS_AL, "\033[L"}, | |
477 {(int)KS_CE, "\033[K"}, | |
478 {(int)KS_CL, "\033[2J"}, | |
479 {(int)KS_ME, "\033[0m"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
480 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
481 {(int)KS_MD, "\033[1m"}, // bold: white text |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
482 {(int)KS_SE, "\033[0m"}, // standout end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
483 {(int)KS_SO, "\033[31m"}, // standout: white on blue |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
484 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
485 {(int)KS_CZR, "\033[0m"}, // italic mode end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
486 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
487 {(int)KS_UE, "\033[0m"}, // underscore mode end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
488 {(int)KS_CCO, "8"}, // allow 8 colors |
7 | 489 # ifdef TERMINFO |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
490 {(int)KS_CAB, "\033[4%p1%dm"},// set background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
491 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color |
7 | 492 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
493 {(int)KS_CAB, "\033[4%dm"}, // set background color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
494 {(int)KS_CAF, "\033[3%dm"}, // set foreground color |
7 | 495 # endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
496 {(int)KS_OP, "\033[0m"}, // reset colors |
7 | 497 {(int)KS_MS, "y"}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
498 {(int)KS_UT, "y"}, // guessed |
7 | 499 {(int)KS_LE, "\b"}, |
500 # ifdef TERMINFO | |
501 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
502 # else | |
503 {(int)KS_CM, "\033[%i%d;%dH"}, | |
504 # endif | |
505 # ifdef TERMINFO | |
506 {(int)KS_CRI, "\033[%p1%dC"}, | |
507 # else | |
508 {(int)KS_CRI, "\033[%dC"}, | |
509 # endif | |
510 {K_UP, "\316H"}, | |
511 {K_DOWN, "\316P"}, | |
512 {K_LEFT, "\316K"}, | |
513 {K_RIGHT, "\316M"}, | |
514 {K_S_LEFT, "\316s"}, | |
515 {K_S_RIGHT, "\316t"}, | |
516 {K_F1, "\316;"}, | |
517 {K_F2, "\316<"}, | |
518 {K_F3, "\316="}, | |
519 {K_F4, "\316>"}, | |
520 {K_F5, "\316?"}, | |
521 {K_F6, "\316@"}, | |
522 {K_F7, "\316A"}, | |
523 {K_F8, "\316B"}, | |
524 {K_F9, "\316C"}, | |
525 {K_F10, "\316D"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
526 {K_F11, "\316\205"}, // guessed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
527 {K_F12, "\316\206"}, // guessed |
7 | 528 {K_S_F1, "\316T"}, |
529 {K_S_F2, "\316U"}, | |
530 {K_S_F3, "\316V"}, | |
531 {K_S_F4, "\316W"}, | |
532 {K_S_F5, "\316X"}, | |
533 {K_S_F6, "\316Y"}, | |
534 {K_S_F7, "\316Z"}, | |
535 {K_S_F8, "\316["}, | |
536 {K_S_F9, "\316\\"}, | |
537 {K_S_F10, "\316]"}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
538 {K_S_F11, "\316\207"}, // guessed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
539 {K_S_F12, "\316\210"}, // guessed |
7 | 540 {K_INS, "\316R"}, |
541 {K_DEL, "\316S"}, | |
542 {K_HOME, "\316G"}, | |
543 {K_END, "\316O"}, | |
544 {K_PAGEDOWN, "\316Q"}, | |
545 {K_PAGEUP, "\316I"}, | |
546 # endif | |
547 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
548 # if defined(MSWIN) || defined(ALL_BUILTIN_TCAPS) |
7 | 549 /* |
550 * These codes are valid for the Win32 Console . The entries that start with | |
551 * ESC | are translated into console calls in os_win32.c. The function keys | |
552 * are also translated in os_win32.c. | |
553 */ | |
554 {(int)KS_NAME, "win32"}, | |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
555 {(int)KS_CE, "\033|K"}, // clear to end of line |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
556 {(int)KS_AL, "\033|L"}, // add new blank line |
7 | 557 # ifdef TERMINFO |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
558 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines |
7 | 559 # else |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
560 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines |
7 | 561 # endif |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
562 {(int)KS_DL, "\033|M"}, // delete line |
7 | 563 # ifdef TERMINFO |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
564 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
565 {(int)KS_CSV, "\033|%p1%d;%p2%dV"}, |
7 | 566 # else |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
567 {(int)KS_CDL, "\033|%dM"}, // delete number of lines |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
568 {(int)KS_CSV, "\033|%d;%dV"}, |
7 | 569 # endif |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
570 {(int)KS_CL, "\033|J"}, // clear screen |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
571 {(int)KS_CD, "\033|j"}, // clear to end of display |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
572 {(int)KS_VI, "\033|v"}, // cursor invisible |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
573 {(int)KS_VE, "\033|V"}, // cursor visible |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
574 |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
575 {(int)KS_ME, "\033|0m"}, // normal |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
576 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
577 {(int)KS_MD, "\033|15m"}, // bold: white on black |
7 | 578 #if 1 |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
579 {(int)KS_SO, "\033|31m"}, // standout: white on blue |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
580 {(int)KS_SE, "\033|0m"}, // standout end |
7 | 581 #else |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
582 {(int)KS_SO, "\033|F"}, // standout: high intensity |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
583 {(int)KS_SE, "\033|f"}, // standout end |
7 | 584 #endif |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
585 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
586 {(int)KS_CZR, "\033|0m"}, // italic end |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
587 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
588 {(int)KS_UE, "\033|0m"}, // underscore end |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
589 {(int)KS_CCO, "16"}, // allow 16 colors |
7 | 590 # ifdef TERMINFO |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
591 {(int)KS_CAB, "\033|%p1%db"}, // set background color |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
592 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color |
7 | 593 # else |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
594 {(int)KS_CAB, "\033|%db"}, // set background color |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
595 {(int)KS_CAF, "\033|%df"}, // set foreground color |
7 | 596 # endif |
597 | |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
598 {(int)KS_MS, "y"}, // save to move cur in reverse mode |
7 | 599 {(int)KS_UT, "y"}, |
6602 | 600 {(int)KS_XN, "y"}, |
7 | 601 {(int)KS_LE, "\b"}, |
602 # ifdef TERMINFO | |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
603 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion |
7 | 604 # else |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
605 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion |
7 | 606 # endif |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
607 {(int)KS_VB, "\033|B"}, // visual bell |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
608 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
609 {(int)KS_TE, "\033|E"}, // out of termcap mode |
7 | 610 # ifdef TERMINFO |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
611 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region |
7 | 612 # else |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
613 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region |
7 | 614 # 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
|
615 # ifdef FEAT_TERMGUICOLORS |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
616 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"}, |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
617 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"}, |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
618 # endif |
7 | 619 |
620 {K_UP, "\316H"}, | |
621 {K_DOWN, "\316P"}, | |
622 {K_LEFT, "\316K"}, | |
623 {K_RIGHT, "\316M"}, | |
624 {K_S_UP, "\316\304"}, | |
625 {K_S_DOWN, "\316\317"}, | |
626 {K_S_LEFT, "\316\311"}, | |
627 {K_C_LEFT, "\316s"}, | |
628 {K_S_RIGHT, "\316\313"}, | |
629 {K_C_RIGHT, "\316t"}, | |
630 {K_S_TAB, "\316\017"}, | |
631 {K_F1, "\316;"}, | |
632 {K_F2, "\316<"}, | |
633 {K_F3, "\316="}, | |
634 {K_F4, "\316>"}, | |
635 {K_F5, "\316?"}, | |
636 {K_F6, "\316@"}, | |
637 {K_F7, "\316A"}, | |
638 {K_F8, "\316B"}, | |
639 {K_F9, "\316C"}, | |
640 {K_F10, "\316D"}, | |
641 {K_F11, "\316\205"}, | |
642 {K_F12, "\316\206"}, | |
643 {K_S_F1, "\316T"}, | |
644 {K_S_F2, "\316U"}, | |
645 {K_S_F3, "\316V"}, | |
646 {K_S_F4, "\316W"}, | |
647 {K_S_F5, "\316X"}, | |
648 {K_S_F6, "\316Y"}, | |
649 {K_S_F7, "\316Z"}, | |
650 {K_S_F8, "\316["}, | |
651 {K_S_F9, "\316\\"}, | |
652 {K_S_F10, "\316]"}, | |
653 {K_S_F11, "\316\207"}, | |
654 {K_S_F12, "\316\210"}, | |
655 {K_INS, "\316R"}, | |
656 {K_DEL, "\316S"}, | |
657 {K_HOME, "\316G"}, | |
658 {K_S_HOME, "\316\302"}, | |
659 {K_C_HOME, "\316w"}, | |
660 {K_END, "\316O"}, | |
661 {K_S_END, "\316\315"}, | |
662 {K_C_END, "\316u"}, | |
663 {K_PAGEDOWN, "\316Q"}, | |
664 {K_PAGEUP, "\316I"}, | |
665 {K_KPLUS, "\316N"}, | |
666 {K_KMINUS, "\316J"}, | |
667 {K_KMULTIPLY, "\316\067"}, | |
668 {K_K0, "\316\332"}, | |
669 {K_K1, "\316\336"}, | |
670 {K_K2, "\316\342"}, | |
671 {K_K3, "\316\346"}, | |
672 {K_K4, "\316\352"}, | |
673 {K_K5, "\316\356"}, | |
674 {K_K6, "\316\362"}, | |
675 {K_K7, "\316\366"}, | |
676 {K_K8, "\316\372"}, | |
677 {K_K9, "\316\376"}, | |
16182
bed0d7200635
patch 8.1.1096: MS-Windows: cannot distinguish BS and CTRL-H
Bram Moolenaar <Bram@vim.org>
parents:
16058
diff
changeset
|
678 {K_BS, "\316x"}, |
7 | 679 # endif |
680 | |
681 # if defined(VMS) || defined(ALL_BUILTIN_TCAPS) | |
682 /* | |
683 * VT320 is working as an ANSI terminal compatible DEC terminal. | |
684 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well) | |
685 * TODO:- rewrite ESC[ codes to CSI | |
686 * - keyboard languages (CSI ? 26 n) | |
687 */ | |
688 {(int)KS_NAME, "vt320"}, | |
689 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, | |
690 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
691 # ifdef TERMINFO | |
692 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
693 # else | |
694 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
695 # endif | |
696 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
697 # ifdef TERMINFO | |
698 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
699 # else | |
700 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
701 # endif | |
702 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
22 | 703 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
704 {(int)KS_CCO, "8"}, // allow 8 colors |
7 | 705 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")}, |
706 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
707 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, // bold mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
708 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},// normal mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
709 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},// exit underscore mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
710 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, // underscore mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
711 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, // italic mode: blue text on yellow |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
712 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, // italic mode end |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
713 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[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
|
714 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[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
|
715 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[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
|
716 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, // set screen foreground color |
7 | 717 {(int)KS_MS, "y"}, |
718 {(int)KS_UT, "y"}, | |
6602 | 719 {(int)KS_XN, "y"}, |
7 | 720 {(int)KS_LE, "\b"}, |
721 # ifdef TERMINFO | |
722 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
723 ESC_STR "[%i%p1%d;%p2%dH")}, | |
724 # else | |
725 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
726 # endif | |
727 # ifdef TERMINFO | |
728 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
729 # else | |
730 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
731 # endif | |
732 {K_UP, IF_EB("\033[A", ESC_STR "[A")}, | |
733 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")}, | |
734 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")}, | |
735 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")}, | |
14252
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
736 // 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
|
737 // because they interfere with typed commands: <Esc>OA. |
344 | 738 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")}, |
739 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")}, | |
740 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")}, | |
741 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")}, | |
742 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")}, | |
7 | 743 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")}, |
744 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")}, | |
745 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")}, | |
746 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")}, | |
747 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")}, | |
344 | 748 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")}, |
7 | 749 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")}, |
750 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")}, | |
751 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
752 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, // Help |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
753 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, // Select |
7 | 754 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")}, |
755 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")}, | |
756 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")}, | |
757 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")}, | |
758 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")}, | |
759 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")}, | |
760 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")}, | |
761 {K_END, IF_EB("\033[4~", ESC_STR "[4~")}, | |
762 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")}, | |
763 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")}, | |
14252
b557af8dedab
patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents:
14224
diff
changeset
|
764 // 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
|
765 // is typing. Remove these if that bothers you. |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
766 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, // keypad plus |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
767 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, // keypad minus |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
768 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, // keypad / |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
769 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, // keypad * |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
770 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, // keypad Enter |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
771 {K_K0, IF_EB("\033Op", ESC_STR "Op")}, // keypad 0 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
772 {K_K1, IF_EB("\033Oq", ESC_STR "Oq")}, // keypad 1 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
773 {K_K2, IF_EB("\033Or", ESC_STR "Or")}, // keypad 2 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
774 {K_K3, IF_EB("\033Os", ESC_STR "Os")}, // keypad 3 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
775 {K_K4, IF_EB("\033Ot", ESC_STR "Ot")}, // keypad 4 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
776 {K_K5, IF_EB("\033Ou", ESC_STR "Ou")}, // keypad 5 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
777 {K_K6, IF_EB("\033Ov", ESC_STR "Ov")}, // keypad 6 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
778 {K_K7, IF_EB("\033Ow", ESC_STR "Ow")}, // keypad 7 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
779 {K_K8, IF_EB("\033Ox", ESC_STR "Ox")}, // keypad 8 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
780 {K_K9, IF_EB("\033Oy", ESC_STR "Oy")}, // keypad 9 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
781 {K_BS, "\x7f"}, // for some reason 0177 doesn't work |
7 | 782 # endif |
783 | |
784 # if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__) | |
785 /* | |
786 * Ordinary vt52 | |
787 */ | |
788 {(int)KS_NAME, "vt52"}, | |
789 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")}, | |
790 {(int)KS_CD, IF_EB("\033J", ESC_STR "J")}, | |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
791 # ifdef TERMINFO |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
792 {(int)KS_CM, IF_EB("\033Y%p1%' '%+%c%p2%' '%+%c", |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
793 ESC_STR "Y%p1%' '%+%c%p2%' '%+%c")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
794 # else |
7 | 795 {(int)KS_CM, IF_EB("\033Y%+ %+ ", ESC_STR "Y%+ %+ ")}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
796 # endif |
7 | 797 {(int)KS_LE, "\b"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
798 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")}, |
7 | 799 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")}, |
800 {(int)KS_DL, IF_EB("\033M", ESC_STR "M")}, | |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
801 {K_UP, IF_EB("\033A", ESC_STR "A")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
802 {K_DOWN, IF_EB("\033B", ESC_STR "B")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
803 {K_LEFT, IF_EB("\033D", ESC_STR "D")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
804 {K_RIGHT, IF_EB("\033C", ESC_STR "C")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
805 {K_F1, IF_EB("\033P", ESC_STR "P")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
806 {K_F2, IF_EB("\033Q", ESC_STR "Q")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
807 {K_F3, IF_EB("\033R", ESC_STR "R")}, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
808 # ifdef __MINT__ |
7 | 809 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")}, |
810 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")}, | |
811 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")}, | |
812 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")}, | |
813 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")}, | |
814 {K_S_UP, IF_EB("\033a", ESC_STR "a")}, | |
815 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")}, | |
816 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")}, | |
817 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")}, | |
818 {K_F4, IF_EB("\033S", ESC_STR "S")}, | |
819 {K_F5, IF_EB("\033T", ESC_STR "T")}, | |
820 {K_F6, IF_EB("\033U", ESC_STR "U")}, | |
821 {K_F7, IF_EB("\033V", ESC_STR "V")}, | |
822 {K_F8, IF_EB("\033W", ESC_STR "W")}, | |
823 {K_F9, IF_EB("\033X", ESC_STR "X")}, | |
824 {K_F10, IF_EB("\033Y", ESC_STR "Y")}, | |
825 {K_S_F1, IF_EB("\033p", ESC_STR "p")}, | |
826 {K_S_F2, IF_EB("\033q", ESC_STR "q")}, | |
827 {K_S_F3, IF_EB("\033r", ESC_STR "r")}, | |
828 {K_S_F4, IF_EB("\033s", ESC_STR "s")}, | |
829 {K_S_F5, IF_EB("\033t", ESC_STR "t")}, | |
830 {K_S_F6, IF_EB("\033u", ESC_STR "u")}, | |
831 {K_S_F7, IF_EB("\033v", ESC_STR "v")}, | |
832 {K_S_F8, IF_EB("\033w", ESC_STR "w")}, | |
833 {K_S_F9, IF_EB("\033x", ESC_STR "x")}, | |
834 {K_S_F10, IF_EB("\033y", ESC_STR "y")}, | |
835 {K_INS, IF_EB("\033I", ESC_STR "I")}, | |
836 {K_HOME, IF_EB("\033E", ESC_STR "E")}, | |
837 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")}, | |
838 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")}, | |
839 # else | |
840 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")}, | |
841 {(int)KS_MS, "y"}, | |
842 # endif | |
843 # endif | |
844 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
845 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
846 {(int)KS_NAME, "xterm"}, |
7 | 847 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, |
848 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
849 # ifdef TERMINFO | |
850 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
851 # else | |
852 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
853 # endif | |
854 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
855 # ifdef TERMINFO | |
856 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
857 # else | |
858 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
859 # endif | |
860 # ifdef TERMINFO | |
861 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr", | |
862 ESC_STR "[%i%p1%d;%p2%dr")}, | |
863 # else | |
864 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")}, | |
865 # endif | |
866 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
867 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")}, | |
868 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")}, | |
869 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
870 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, | |
871 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")}, | |
872 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
873 {(int)KS_STE, IF_EB("\033[29m", ESC_STR "[29m")}, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
874 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")}, |
7 | 875 {(int)KS_MS, "y"}, |
876 {(int)KS_UT, "y"}, | |
877 {(int)KS_LE, "\b"}, | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
878 {(int)KS_VI, IF_EB("\033[?25l", ESC_STR "[?25l")}, |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
879 {(int)KS_VE, IF_EB("\033[?25h", ESC_STR "[?25h")}, |
12174
c314cd883fcc
patch 8.0.0967: using a terminal may cause the cursor to blink
Christian Brabandt <cb@256bit.org>
parents:
12172
diff
changeset
|
880 {(int)KS_VS, IF_EB("\033[?12h", ESC_STR "[?12h")}, |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
881 {(int)KS_CVS, IF_EB("\033[?12l", ESC_STR "[?12l")}, |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
882 # ifdef TERMINFO |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
883 {(int)KS_CSH, IF_EB("\033[%p1%d q", ESC_STR "[%p1%d q")}, |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
884 # else |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
885 {(int)KS_CSH, IF_EB("\033[%d q", ESC_STR "[%d q")}, |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
886 # endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
887 {(int)KS_CRC, IF_EB("\033[?12$p", ESC_STR "[?12$p")}, |
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
|
888 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")}, |
7 | 889 # ifdef TERMINFO |
890 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
891 ESC_STR "[%i%p1%d;%p2%dH")}, | |
892 # else | |
893 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
894 # endif | |
895 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")}, | |
896 # ifdef TERMINFO | |
897 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
898 # else | |
899 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
900 # endif | |
901 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")}, | |
902 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")}, | |
903 # ifdef FEAT_XTERM_SAVE | |
904 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")}, | |
19346
0dd8d1291439
patch 8.2.0231: silent system command may clear the screen
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
905 {(int)KS_TE, IF_EB("\033[?47l\0338", |
0dd8d1291439
patch 8.2.0231: silent system command may clear the screen
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
906 ESC_STR_nc "[?47l" ESC_STR_nc "8")}, |
7 | 907 # endif |
18400
f66fee58e7e2
patch 8.1.2194: modifyOtherKeys is not enabled by default
Bram Moolenaar <Bram@vim.org>
parents:
18360
diff
changeset
|
908 {(int)KS_CTI, IF_EB("\033[>4;2m", ESC_STR_nc "[>4;2m")}, |
f66fee58e7e2
patch 8.1.2194: modifyOtherKeys is not enabled by default
Bram Moolenaar <Bram@vim.org>
parents:
18360
diff
changeset
|
909 {(int)KS_CTE, IF_EB("\033[>4;m", ESC_STR_nc "[>4;m")}, |
7 | 910 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")}, |
911 {(int)KS_CIE, "\007"}, | |
912 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")}, | |
913 {(int)KS_FS, "\007"}, | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
914 {(int)KS_CSC, IF_EB("\033]12;", ESC_STR "]12;")}, |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
915 {(int)KS_CEC, "\007"}, |
7 | 916 # ifdef TERMINFO |
917 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt", | |
918 ESC_STR "[8;%p1%d;%p2%dt")}, | |
919 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt", | |
920 ESC_STR "[3;%p1%d;%p2%dt")}, | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
921 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")}, |
7 | 922 # else |
923 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")}, | |
924 {(int)KS_CWP, IF_EB("\033[3;%d;%dt", ESC_STR "[3;%d;%dt")}, | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
925 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")}, |
7 | 926 # endif |
927 {(int)KS_CRV, IF_EB("\033[>c", ESC_STR "[>c")}, | |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
928 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")}, |
6874 | 929 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")}, |
4215 | 930 {(int)KS_U7, IF_EB("\033[6n", ESC_STR "[6n")}, |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
931 # ifdef FEAT_TERMGUICOLORS |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
932 // These are printf strings, not terminal codes. |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
933 {(int)KS_8F, IF_EB("\033[38;2;%lu;%lu;%lum", ESC_STR "[38;2;%lu;%lu;%lum")}, |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
934 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")}, |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
935 {(int)KS_8U, IF_EB("\033[58;2;%lu;%lu;%lum", ESC_STR "[58;2;%lu;%lu;%lum")}, |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
936 # endif |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
937 {(int)KS_CAU, IF_EB("\033[58;5;%dm", ESC_STR "[58;5;%dm")}, |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
938 {(int)KS_CBE, IF_EB("\033[?2004h", ESC_STR "[?2004h")}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
939 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")}, |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
940 {(int)KS_CST, IF_EB("\033[22;2t", ESC_STR "[22;2t")}, |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
941 {(int)KS_CRT, IF_EB("\033[23;2t", ESC_STR "[23;2t")}, |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
942 {(int)KS_SSI, IF_EB("\033[22;1t", ESC_STR "[22;1t")}, |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
943 {(int)KS_SRI, IF_EB("\033[23;1t", ESC_STR "[23;1t")}, |
180 | 944 |
945 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")}, | |
946 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")}, | |
947 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")}, | |
948 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
949 // An extra set of cursor keys for vt100 mode |
180 | 950 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")}, |
951 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")}, | |
952 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")}, | |
953 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
954 // An extra set of function keys for vt100 mode |
180 | 955 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")}, |
956 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")}, | |
957 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")}, | |
958 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")}, | |
179 | 959 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")}, |
960 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")}, | |
961 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")}, | |
962 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")}, | |
963 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")}, | |
964 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")}, | |
965 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")}, | |
966 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")}, | |
967 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")}, | |
968 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")}, | |
969 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")}, | |
970 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")}, | |
7 | 971 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")}, |
179 | 972 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")}, |
973 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")}, | |
974 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")}, | |
975 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
976 // {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
977 // {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, |
230 | 978 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
979 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, // other Home |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
980 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, // other Home |
179 | 981 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
982 // {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
983 // {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, |
179 | 984 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
985 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, // other End |
230 | 986 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")}, |
179 | 987 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")}, |
988 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
989 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, // keypad plus |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
990 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, // keypad minus |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
991 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, // keypad / |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
992 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, // keypad * |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
993 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, // keypad Enter |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
994 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, // keypad . |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
995 {K_K0, IF_EB("\033O*p", ESC_STR "O*p")}, // keypad 0 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
996 {K_K1, IF_EB("\033O*q", ESC_STR "O*q")}, // keypad 1 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
997 {K_K2, IF_EB("\033O*r", ESC_STR "O*r")}, // keypad 2 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
998 {K_K3, IF_EB("\033O*s", ESC_STR "O*s")}, // keypad 3 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
999 {K_K4, IF_EB("\033O*t", ESC_STR "O*t")}, // keypad 4 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1000 {K_K5, IF_EB("\033O*u", ESC_STR "O*u")}, // keypad 5 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1001 {K_K6, IF_EB("\033O*v", ESC_STR "O*v")}, // keypad 6 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1002 {K_K7, IF_EB("\033O*w", ESC_STR "O*w")}, // keypad 7 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1003 {K_K8, IF_EB("\033O*x", ESC_STR "O*x")}, // keypad 8 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1004 {K_K9, IF_EB("\033O*y", ESC_STR "O*y")}, // keypad 9 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1005 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, // keypad Del |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1006 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, // paste start |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1007 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, // paste end |
7 | 1008 |
1009 {BT_EXTRA_KEYS, ""}, | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1010 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, // F0 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1011 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, // F13 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1012 // 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
|
1013 // and help key, although they don't work on all keyboards. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1014 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, // F16 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1015 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, // F17 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1016 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, // F18 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1017 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, // F19 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1018 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, // F20 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1019 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1020 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, // F21 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1021 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, // F22 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1022 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, // F23 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1023 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, // F24 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1024 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, // F25 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1025 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, // F26 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1026 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, // F27 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1027 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, // F28 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1028 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, // F29 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1029 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, // F30 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1030 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1031 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, // F31 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1032 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, // F32 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1033 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, // F33 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1034 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, // F34 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1035 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, // F35 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1036 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, // F36 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1037 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, // F37 |
7 | 1038 # endif |
1039 | |
1040 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) | |
1041 /* | |
1042 * iris-ansi for Silicon Graphics machines. | |
1043 */ | |
1044 {(int)KS_NAME, "iris-ansi"}, | |
1045 {(int)KS_CE, "\033[K"}, | |
1046 {(int)KS_CD, "\033[J"}, | |
1047 {(int)KS_AL, "\033[L"}, | |
1048 # ifdef TERMINFO | |
1049 {(int)KS_CAL, "\033[%p1%dL"}, | |
1050 # else | |
1051 {(int)KS_CAL, "\033[%dL"}, | |
1052 # endif | |
1053 {(int)KS_DL, "\033[M"}, | |
1054 # ifdef TERMINFO | |
1055 {(int)KS_CDL, "\033[%p1%dM"}, | |
1056 # else | |
1057 {(int)KS_CDL, "\033[%dM"}, | |
1058 # endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1059 #if 0 // The scroll region is not working as Vim expects. |
7 | 1060 # ifdef TERMINFO |
1061 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
1062 # else | |
1063 {(int)KS_CS, "\033[%i%d;%dr"}, | |
1064 # endif | |
1065 #endif | |
1066 {(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
|
1067 {(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
|
1068 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, // These aren't documented |
7 | 1069 {(int)KS_TI, "\033[=6h"}, |
1070 {(int)KS_TE, "\033[=6l"}, | |
1071 {(int)KS_SE, "\033[21;27m"}, | |
1072 {(int)KS_SO, "\033[1;7m"}, | |
1073 {(int)KS_ME, "\033[m"}, | |
1074 {(int)KS_MR, "\033[7m"}, | |
1075 {(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
|
1076 {(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
|
1077 {(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
|
1078 {(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
|
1079 {(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
|
1080 {(int)KS_UE, "\033[24m"}, // underline off |
7 | 1081 # ifdef TERMINFO |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1082 {(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
|
1083 {(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
|
1084 {(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
|
1085 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color |
7 | 1086 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1087 {(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
|
1088 {(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
|
1089 {(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
|
1090 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color |
7 | 1091 # endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1092 {(int)KS_MS, "y"}, // guessed |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1093 {(int)KS_UT, "y"}, // guessed |
7 | 1094 {(int)KS_LE, "\b"}, |
1095 # ifdef TERMINFO | |
1096 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
1097 # else | |
1098 {(int)KS_CM, "\033[%i%d;%dH"}, | |
1099 # endif | |
1100 {(int)KS_SR, "\033M"}, | |
1101 # ifdef TERMINFO | |
1102 {(int)KS_CRI, "\033[%p1%dC"}, | |
1103 # else | |
1104 {(int)KS_CRI, "\033[%dC"}, | |
1105 # endif | |
1106 {(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
|
1107 {(int)KS_CIE, "\234"}, // ST "String Terminator" |
7 | 1108 {(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
|
1109 {(int)KS_FS, "\234"}, // ST "String Terminator" |
7 | 1110 # ifdef TERMINFO |
1111 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"}, | |
1112 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"}, | |
1113 # else | |
1114 {(int)KS_CWS, "\033[203;%d;%d/y"}, | |
1115 {(int)KS_CWP, "\033[205;%d;%d/y"}, | |
1116 # endif | |
1117 {K_UP, "\033[A"}, | |
1118 {K_DOWN, "\033[B"}, | |
1119 {K_LEFT, "\033[D"}, | |
1120 {K_RIGHT, "\033[C"}, | |
1121 {K_S_UP, "\033[161q"}, | |
1122 {K_S_DOWN, "\033[164q"}, | |
1123 {K_S_LEFT, "\033[158q"}, | |
1124 {K_S_RIGHT, "\033[167q"}, | |
1125 {K_F1, "\033[001q"}, | |
1126 {K_F2, "\033[002q"}, | |
1127 {K_F3, "\033[003q"}, | |
1128 {K_F4, "\033[004q"}, | |
1129 {K_F5, "\033[005q"}, | |
1130 {K_F6, "\033[006q"}, | |
1131 {K_F7, "\033[007q"}, | |
1132 {K_F8, "\033[008q"}, | |
1133 {K_F9, "\033[009q"}, | |
1134 {K_F10, "\033[010q"}, | |
1135 {K_F11, "\033[011q"}, | |
1136 {K_F12, "\033[012q"}, | |
1137 {K_S_F1, "\033[013q"}, | |
1138 {K_S_F2, "\033[014q"}, | |
1139 {K_S_F3, "\033[015q"}, | |
1140 {K_S_F4, "\033[016q"}, | |
1141 {K_S_F5, "\033[017q"}, | |
1142 {K_S_F6, "\033[018q"}, | |
1143 {K_S_F7, "\033[019q"}, | |
1144 {K_S_F8, "\033[020q"}, | |
1145 {K_S_F9, "\033[021q"}, | |
1146 {K_S_F10, "\033[022q"}, | |
1147 {K_S_F11, "\033[023q"}, | |
1148 {K_S_F12, "\033[024q"}, | |
1149 {K_INS, "\033[139q"}, | |
1150 {K_HOME, "\033[H"}, | |
1151 {K_END, "\033[146q"}, | |
1152 {K_PAGEUP, "\033[150q"}, | |
1153 {K_PAGEDOWN, "\033[154q"}, | |
1154 # endif | |
1155 | |
1156 # if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS) | |
1157 /* | |
1158 * for debugging | |
1159 */ | |
1160 {(int)KS_NAME, "debug"}, | |
1161 {(int)KS_CE, "[CE]"}, | |
1162 {(int)KS_CD, "[CD]"}, | |
1163 {(int)KS_AL, "[AL]"}, | |
1164 # ifdef TERMINFO | |
1165 {(int)KS_CAL, "[CAL%p1%d]"}, | |
1166 # else | |
1167 {(int)KS_CAL, "[CAL%d]"}, | |
1168 # endif | |
1169 {(int)KS_DL, "[DL]"}, | |
1170 # ifdef TERMINFO | |
1171 {(int)KS_CDL, "[CDL%p1%d]"}, | |
1172 # else | |
1173 {(int)KS_CDL, "[CDL%d]"}, | |
1174 # endif | |
1175 # ifdef TERMINFO | |
1176 {(int)KS_CS, "[%p1%dCS%p2%d]"}, | |
1177 # else | |
1178 {(int)KS_CS, "[%dCS%d]"}, | |
1179 # endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
1180 # ifdef TERMINFO |
7 | 1181 {(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
|
1182 # else |
7 | 1183 {(int)KS_CSV, "[%dCSV%d]"}, |
1184 # endif | |
1185 # ifdef TERMINFO | |
1186 {(int)KS_CAB, "[CAB%p1%d]"}, | |
1187 {(int)KS_CAF, "[CAF%p1%d]"}, | |
1188 {(int)KS_CSB, "[CSB%p1%d]"}, | |
1189 {(int)KS_CSF, "[CSF%p1%d]"}, | |
1190 # else | |
1191 {(int)KS_CAB, "[CAB%d]"}, | |
1192 {(int)KS_CAF, "[CAF%d]"}, | |
1193 {(int)KS_CSB, "[CSB%d]"}, | |
1194 {(int)KS_CSF, "[CSF%d]"}, | |
1195 # endif | |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
1196 {(int)KS_CAU, "[CAU%d]"}, |
7 | 1197 {(int)KS_OP, "[OP]"}, |
1198 {(int)KS_LE, "[LE]"}, | |
1199 {(int)KS_CL, "[CL]"}, | |
1200 {(int)KS_VI, "[VI]"}, | |
1201 {(int)KS_VE, "[VE]"}, | |
1202 {(int)KS_VS, "[VS]"}, | |
1203 {(int)KS_ME, "[ME]"}, | |
1204 {(int)KS_MR, "[MR]"}, | |
1205 {(int)KS_MB, "[MB]"}, | |
1206 {(int)KS_MD, "[MD]"}, | |
1207 {(int)KS_SE, "[SE]"}, | |
1208 {(int)KS_SO, "[SO]"}, | |
1209 {(int)KS_UE, "[UE]"}, | |
1210 {(int)KS_US, "[US]"}, | |
205 | 1211 {(int)KS_UCE, "[UCE]"}, |
1212 {(int)KS_UCS, "[UCS]"}, | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1213 {(int)KS_STE, "[STE]"}, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1214 {(int)KS_STS, "[STS]"}, |
7 | 1215 {(int)KS_MS, "[MS]"}, |
1216 {(int)KS_UT, "[UT]"}, | |
6602 | 1217 {(int)KS_XN, "[XN]"}, |
7 | 1218 # ifdef TERMINFO |
1219 {(int)KS_CM, "[%p1%dCM%p2%d]"}, | |
1220 # else | |
1221 {(int)KS_CM, "[%dCM%d]"}, | |
1222 # endif | |
1223 {(int)KS_SR, "[SR]"}, | |
1224 # ifdef TERMINFO | |
1225 {(int)KS_CRI, "[CRI%p1%d]"}, | |
1226 # else | |
1227 {(int)KS_CRI, "[CRI%d]"}, | |
1228 # endif | |
1229 {(int)KS_VB, "[VB]"}, | |
1230 {(int)KS_KS, "[KS]"}, | |
1231 {(int)KS_KE, "[KE]"}, | |
1232 {(int)KS_TI, "[TI]"}, | |
1233 {(int)KS_TE, "[TE]"}, | |
1234 {(int)KS_CIS, "[CIS]"}, | |
1235 {(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
|
1236 {(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
|
1237 {(int)KS_CEC, "[CEC]"}, |
7 | 1238 {(int)KS_TS, "[TS]"}, |
1239 {(int)KS_FS, "[FS]"}, | |
1240 # ifdef TERMINFO | |
1241 {(int)KS_CWS, "[%p1%dCWS%p2%d]"}, | |
1242 {(int)KS_CWP, "[%p1%dCWP%p2%d]"}, | |
1243 # else | |
1244 {(int)KS_CWS, "[%dCWS%d]"}, | |
1245 {(int)KS_CWP, "[%dCWP%d]"}, | |
1246 # endif | |
1247 {(int)KS_CRV, "[CRV]"}, | |
4215 | 1248 {(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
|
1249 {(int)KS_RFG, "[RFG]"}, |
6874 | 1250 {(int)KS_RBG, "[RBG]"}, |
7 | 1251 {K_UP, "[KU]"}, |
1252 {K_DOWN, "[KD]"}, | |
1253 {K_LEFT, "[KL]"}, | |
1254 {K_RIGHT, "[KR]"}, | |
180 | 1255 {K_XUP, "[xKU]"}, |
1256 {K_XDOWN, "[xKD]"}, | |
1257 {K_XLEFT, "[xKL]"}, | |
1258 {K_XRIGHT, "[xKR]"}, | |
7 | 1259 {K_S_UP, "[S-KU]"}, |
1260 {K_S_DOWN, "[S-KD]"}, | |
1261 {K_S_LEFT, "[S-KL]"}, | |
1262 {K_C_LEFT, "[C-KL]"}, | |
1263 {K_S_RIGHT, "[S-KR]"}, | |
1264 {K_C_RIGHT, "[C-KR]"}, | |
1265 {K_F1, "[F1]"}, | |
1266 {K_XF1, "[xF1]"}, | |
1267 {K_F2, "[F2]"}, | |
1268 {K_XF2, "[xF2]"}, | |
1269 {K_F3, "[F3]"}, | |
1270 {K_XF3, "[xF3]"}, | |
1271 {K_F4, "[F4]"}, | |
1272 {K_XF4, "[xF4]"}, | |
1273 {K_F5, "[F5]"}, | |
1274 {K_F6, "[F6]"}, | |
1275 {K_F7, "[F7]"}, | |
1276 {K_F8, "[F8]"}, | |
1277 {K_F9, "[F9]"}, | |
1278 {K_F10, "[F10]"}, | |
1279 {K_F11, "[F11]"}, | |
1280 {K_F12, "[F12]"}, | |
1281 {K_S_F1, "[S-F1]"}, | |
1282 {K_S_XF1, "[S-xF1]"}, | |
1283 {K_S_F2, "[S-F2]"}, | |
1284 {K_S_XF2, "[S-xF2]"}, | |
1285 {K_S_F3, "[S-F3]"}, | |
1286 {K_S_XF3, "[S-xF3]"}, | |
1287 {K_S_F4, "[S-F4]"}, | |
1288 {K_S_XF4, "[S-xF4]"}, | |
1289 {K_S_F5, "[S-F5]"}, | |
1290 {K_S_F6, "[S-F6]"}, | |
1291 {K_S_F7, "[S-F7]"}, | |
1292 {K_S_F8, "[S-F8]"}, | |
1293 {K_S_F9, "[S-F9]"}, | |
1294 {K_S_F10, "[S-F10]"}, | |
1295 {K_S_F11, "[S-F11]"}, | |
1296 {K_S_F12, "[S-F12]"}, | |
1297 {K_HELP, "[HELP]"}, | |
1298 {K_UNDO, "[UNDO]"}, | |
1299 {K_BS, "[BS]"}, | |
1300 {K_INS, "[INS]"}, | |
1301 {K_KINS, "[KINS]"}, | |
1302 {K_DEL, "[DEL]"}, | |
1303 {K_KDEL, "[KDEL]"}, | |
1304 {K_HOME, "[HOME]"}, | |
1305 {K_S_HOME, "[C-HOME]"}, | |
1306 {K_C_HOME, "[C-HOME]"}, | |
1307 {K_KHOME, "[KHOME]"}, | |
1308 {K_XHOME, "[XHOME]"}, | |
230 | 1309 {K_ZHOME, "[ZHOME]"}, |
7 | 1310 {K_END, "[END]"}, |
1311 {K_S_END, "[C-END]"}, | |
1312 {K_C_END, "[C-END]"}, | |
1313 {K_KEND, "[KEND]"}, | |
1314 {K_XEND, "[XEND]"}, | |
230 | 1315 {K_ZEND, "[ZEND]"}, |
7 | 1316 {K_PAGEUP, "[PAGEUP]"}, |
1317 {K_PAGEDOWN, "[PAGEDOWN]"}, | |
1318 {K_KPAGEUP, "[KPAGEUP]"}, | |
1319 {K_KPAGEDOWN, "[KPAGEDOWN]"}, | |
1320 {K_MOUSE, "[MOUSE]"}, | |
1321 {K_KPLUS, "[KPLUS]"}, | |
1322 {K_KMINUS, "[KMINUS]"}, | |
1323 {K_KDIVIDE, "[KDIVIDE]"}, | |
1324 {K_KMULTIPLY, "[KMULTIPLY]"}, | |
1325 {K_KENTER, "[KENTER]"}, | |
1326 {K_KPOINT, "[KPOINT]"}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1327 {K_PS, "[PASTE-START]"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1328 {K_PE, "[PASTE-END]"}, |
7 | 1329 {K_K0, "[K0]"}, |
1330 {K_K1, "[K1]"}, | |
1331 {K_K2, "[K2]"}, | |
1332 {K_K3, "[K3]"}, | |
1333 {K_K4, "[K4]"}, | |
1334 {K_K5, "[K5]"}, | |
1335 {K_K6, "[K6]"}, | |
1336 {K_K7, "[K7]"}, | |
1337 {K_K8, "[K8]"}, | |
1338 {K_K9, "[K9]"}, | |
1339 # endif | |
1340 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1341 #endif // NO_BUILTIN_TCAPS |
7 | 1342 |
1343 /* | |
1344 * The most minimal terminal: only clear screen and cursor positioning | |
1345 * Always included. | |
1346 */ | |
1347 {(int)KS_NAME, "dumb"}, | |
1348 {(int)KS_CL, "\014"}, | |
1349 #ifdef TERMINFO | |
1350 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
1351 ESC_STR "[%i%p1%d;%p2%dH")}, | |
1352 #else | |
1353 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
1354 #endif | |
1355 | |
1356 /* | |
1357 * end marker | |
1358 */ | |
1359 {(int)KS_NAME, NULL} | |
1360 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1361 }; // end of builtin_termcaps |
7 | 1362 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1363 #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
|
1364 static guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1365 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
|
1366 { |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
1367 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
|
1368 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1369 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1370 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1371 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
|
1372 { |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1373 guicolor_T t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1374 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1375 if (*name == NUL) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1376 return INVALCOLOR; |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1377 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
|
1378 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1379 if (t == INVALCOLOR) |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1380 semsg(_(e_alloc_color), name); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1381 return t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1382 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1383 |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1384 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1385 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
|
1386 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1387 return color; |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1388 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1389 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1390 |
7 | 1391 /* |
1392 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM. | |
1393 */ | |
1394 #ifdef AMIGA | |
1395 # define DEFAULT_TERM (char_u *)"amiga" | |
1396 #endif | |
1397 | |
1398 #ifdef MSWIN | |
1399 # define DEFAULT_TERM (char_u *)"win32" | |
1400 #endif | |
1401 | |
1402 #if defined(UNIX) && !defined(__MINT__) | |
1403 # define DEFAULT_TERM (char_u *)"ansi" | |
1404 #endif | |
1405 | |
1406 #ifdef __MINT__ | |
1407 # define DEFAULT_TERM (char_u *)"vt52" | |
1408 #endif | |
1409 | |
1410 #ifdef VMS | |
1411 # define DEFAULT_TERM (char_u *)"vt320" | |
1412 #endif | |
1413 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1414 #ifdef __HAIKU__ |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1415 # undef DEFAULT_TERM |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1416 # define DEFAULT_TERM (char_u *)"xterm" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1417 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19489
diff
changeset
|
1418 |
7 | 1419 #ifndef DEFAULT_TERM |
1420 # define DEFAULT_TERM (char_u *)"dumb" | |
1421 #endif | |
1422 | |
1423 /* | |
1424 * Term_strings contains currently used terminal output strings. | |
1425 * It is initialized with the default values by parse_builtin_tcap(). | |
1426 * The values can be changed by setting the option with the same name. | |
1427 */ | |
1428 char_u *(term_strings[(int)KS_LAST + 1]); | |
1429 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1430 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
|
1431 static char_u termleader[256 + 1]; // for check_termcode() |
7 | 1432 #ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1433 static int check_for_codes = FALSE; // check for key code response |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1434 static int is_not_xterm = FALSE; // recognized not-really-xterm |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
1435 static int xcc_test_failed = FALSE; // xcc_status check failed |
7 | 1436 #endif |
1437 | |
1438 static struct builtin_term * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1439 find_builtin_term(char_u *term) |
7 | 1440 { |
1441 struct builtin_term *p; | |
1442 | |
1443 p = builtin_termcaps; | |
1444 while (p->bt_string != NULL) | |
1445 { | |
1446 if (p->bt_entry == (int)KS_NAME) | |
1447 { | |
1448 #ifdef UNIX | |
1449 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term)) | |
1450 return p; | |
1451 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term)) | |
1452 return p; | |
1453 else | |
1454 #endif | |
1455 #ifdef VMS | |
1456 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term)) | |
1457 return p; | |
1458 else | |
1459 #endif | |
1460 if (STRCMP(term, p->bt_string) == 0) | |
1461 return p; | |
1462 } | |
1463 ++p; | |
1464 } | |
1465 return p; | |
1466 } | |
1467 | |
1468 /* | |
1469 * Parsing of the builtin termcap entries. | |
1470 * Caller should check if 'name' is a valid builtin term. | |
1471 * The terminal's name is not set, as this is already done in termcapinit(). | |
1472 */ | |
1473 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1474 parse_builtin_tcap(char_u *term) |
7 | 1475 { |
1476 struct builtin_term *p; | |
1477 char_u name[2]; | |
1478 int term_8bit; | |
1479 | |
1480 p = find_builtin_term(term); | |
1481 term_8bit = term_is_8bit(term); | |
1482 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1483 // Do not parse if builtin term not found |
7 | 1484 if (p->bt_string == NULL) |
1485 return; | |
1486 | |
1487 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p) | |
1488 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1489 if ((int)p->bt_entry >= 0) // KS_xx entry |
7 | 1490 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1491 // Only set the value if it wasn't set yet. |
7 | 1492 if (term_strings[p->bt_entry] == NULL |
1493 || term_strings[p->bt_entry] == empty_option) | |
1494 { | |
14867
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1495 #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
|
1496 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
|
1497 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1498 // 8bit terminal: use CSI instead of <Esc>[ |
7 | 1499 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0) |
1500 { | |
1501 char_u *s, *t; | |
1502 | |
1503 s = vim_strsave((char_u *)p->bt_string); | |
1504 if (s != NULL) | |
1505 { | |
1506 for (t = s; *t; ++t) | |
1507 if (term_7to8bit(t)) | |
1508 { | |
1509 *t = term_7to8bit(t); | |
14321
6bcac243b9de
patch 8.1.0176: overlapping string argument for strcpy()
Christian Brabandt <cb@256bit.org>
parents:
14282
diff
changeset
|
1510 STRMOVE(t + 1, t + 2); |
7 | 1511 } |
1512 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
|
1513 #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
|
1514 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
|
1515 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1516 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
|
1517 &term_strings[p->bt_entry]); |
7 | 1518 } |
1519 } | |
1520 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
|
1521 { |
7 | 1522 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
|
1523 #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
|
1524 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
|
1525 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1526 } |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1527 #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
|
1528 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
|
1529 #endif |
7 | 1530 } |
1531 } | |
1532 else | |
1533 { | |
1534 name[0] = KEY2TERMCAP0((int)p->bt_entry); | |
1535 name[1] = KEY2TERMCAP1((int)p->bt_entry); | |
1536 if (find_termcode(name) == NULL) | |
1537 add_termcode(name, (char_u *)p->bt_string, term_8bit); | |
1538 } | |
1539 } | |
1540 } | |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1541 |
7 | 1542 /* |
1543 * Set number of colors. | |
1544 * Store it as a number in t_colors. | |
1545 * Store it as a string in T_CCO (using nr_colors[]). | |
1546 */ | |
19997
3d1de9093c01
patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
1547 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1548 set_color_count(int nr) |
7 | 1549 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1550 char_u nr_colors[20]; // string for number of colors |
7 | 1551 |
1552 t_colors = nr; | |
1553 if (t_colors > 1) | |
1554 sprintf((char *)nr_colors, "%d", t_colors); | |
1555 else | |
1556 *nr_colors = NUL; | |
694 | 1557 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0); |
7 | 1558 } |
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
|
1559 |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1560 #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
|
1561 /* |
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
|
1562 * 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
|
1563 */ |
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
|
1564 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
|
1565 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
|
1566 { |
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
|
1567 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
|
1568 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1569 // 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
|
1570 // 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
|
1571 // 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
|
1572 // 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
|
1573 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
|
1574 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
|
1575 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
|
1576 # 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
|
1577 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1578 int r = redraw_asap(CLEAR); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1579 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1580 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
|
1581 } |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1582 # else |
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
|
1583 redraw_asap(CLEAR); |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1584 # 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
|
1585 } |
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
|
1586 } |
7 | 1587 #endif |
1588 | |
1589 #ifdef HAVE_TGETENT | |
1590 static char *(key_names[]) = | |
1591 { | |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1592 # ifdef FEAT_TERMRESPONSE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1593 // Do this one first, it may cause a screen redraw. |
7 | 1594 "Co", |
20524
bed30e6b5a09
patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents:
20500
diff
changeset
|
1595 # endif |
7 | 1596 "ku", "kd", "kr", "kl", |
1597 "#2", "#4", "%i", "*7", | |
1598 "k1", "k2", "k3", "k4", "k5", "k6", | |
1599 "k7", "k8", "k9", "k;", "F1", "F2", | |
1600 "%1", "&8", "kb", "kI", "kD", "kh", | |
1601 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB", | |
1602 NULL | |
1603 }; | |
1604 #endif | |
1605 | |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1606 #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
|
1607 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1608 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
|
1609 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1610 static struct { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1611 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
|
1612 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
|
1613 } string_names[] = |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1614 { {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
|
1615 {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
|
1616 {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
|
1617 {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
|
1618 {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
|
1619 {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
|
1620 {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
|
1621 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1622 {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
|
1623 {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
|
1624 {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
|
1625 {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
|
1626 {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
|
1627 {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
|
1628 {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
|
1629 {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
|
1630 {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
|
1631 {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
|
1632 {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
|
1633 {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
|
1634 {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
|
1635 {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
|
1636 {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
|
1637 {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
|
1638 {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
|
1639 {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
|
1640 {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
|
1641 {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
|
1642 {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
|
1643 {(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
|
1644 }; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1645 int i; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1646 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
|
1647 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
|
1648 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
|
1649 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1650 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1651 * 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
|
1652 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1653 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
|
1654 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1655 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
|
1656 || 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
|
1657 { |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1658 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
|
1659 #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
|
1660 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
|
1661 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1662 } |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1663 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1664 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1665 // 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
|
1666 // 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
|
1667 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
|
1668 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
|
1669 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
|
1670 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
|
1671 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
|
1672 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
|
1673 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
|
1674 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
|
1675 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
|
1676 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
|
1677 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
|
1678 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
|
1679 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1680 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1681 * 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
|
1682 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1683 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
|
1684 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
|
1685 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1686 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
|
1687 // 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
|
1688 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
|
1689 && (*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
|
1690 || 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
|
1691 || 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
|
1692 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
|
1693 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1694 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1695 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
|
1696 *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
|
1697 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
|
1698 *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
|
1699 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1700 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1701 * 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
|
1702 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1703 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
|
1704 { |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1705 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
|
1706 #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
|
1707 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
|
1708 #endif |
cf4d6489c9eb
patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents:
14862
diff
changeset
|
1709 } |
13872
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 # ifndef hpux |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1712 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
|
1713 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
|
1714 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
|
1715 if (p) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1716 PC = *p; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1717 # endif |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1718 } |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1719 #endif |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1720 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1721 static void |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1722 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
|
1723 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1724 struct builtin_term *termp; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1725 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1726 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
|
1727 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
|
1728 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
1729 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
|
1730 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
|
1731 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1732 mch_errmsg("'"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1733 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
|
1734 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
|
1735 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
|
1736 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; ++termp) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1737 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1738 if (termp->bt_entry == (int)KS_NAME) |
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 #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
|
1741 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
|
1742 #else |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1743 mch_errmsg(" "); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1744 #endif |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1745 mch_errmsg(termp->bt_string); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1746 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
|
1747 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1748 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1749 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1750 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1751 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1752 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
|
1753 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1754 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
|
1755 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
|
1756 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
|
1757 if (emsg_silent == 0) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1758 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1759 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
|
1760 out_flush(); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1761 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
|
1762 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
|
1763 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1764 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1765 |
7 | 1766 /* |
1767 * Set terminal options for terminal "term". | |
1768 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise. | |
1769 * | |
1770 * While doing this, until ttest(), some options may be NULL, be careful. | |
1771 */ | |
1772 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1773 set_termname(char_u *term) |
7 | 1774 { |
1775 struct builtin_term *termp; | |
1776 #ifdef HAVE_TGETENT | |
1777 int builtin_first = p_tbi; | |
1778 int try; | |
1779 int termcap_cleared = FALSE; | |
1780 #endif | |
1781 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
|
1782 char *error_msg = NULL; |
7 | 1783 char_u *bs_p, *del_p; |
1784 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1785 // In silect mode (ex -s) we don't use the 'term' option. |
168 | 1786 if (silent_mode) |
1787 return OK; | |
1788 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1789 detected_8bit = FALSE; // reset 8-bit detection |
7 | 1790 |
1791 if (term_is_builtin(term)) | |
1792 { | |
1793 term += 8; | |
1794 #ifdef HAVE_TGETENT | |
1795 builtin_first = 1; | |
1796 #endif | |
1797 } | |
1798 | |
1799 /* | |
1800 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise: | |
1801 * If builtin_first is TRUE: | |
1802 * 0. try builtin termcap | |
1803 * 1. try external termcap | |
1804 * 2. if both fail default to a builtin terminal | |
1805 * If builtin_first is FALSE: | |
1806 * 1. try external termcap | |
1807 * 2. try builtin termcap, if both fail default to a builtin terminal | |
1808 */ | |
1809 #ifdef HAVE_TGETENT | |
1810 for (try = builtin_first ? 0 : 1; try < 3; ++try) | |
1811 { | |
1812 /* | |
1813 * Use external termcap | |
1814 */ | |
1815 if (try == 1) | |
1816 { | |
1817 char_u tbuf[TBUFSZ]; | |
1818 | |
1819 /* | |
1820 * If the external termcap does not have a matching entry, try the | |
1821 * builtin ones. | |
1822 */ | |
1823 if ((error_msg = tgetent_error(tbuf, term)) == NULL) | |
1824 { | |
1825 if (!termcap_cleared) | |
1826 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1827 clear_termoptions(); // clear old options |
7 | 1828 termcap_cleared = TRUE; |
1829 } | |
1830 | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1831 get_term_entries(&height, &width); |
7 | 1832 } |
1833 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1834 else // try == 0 || try == 2 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1835 #endif // HAVE_TGETENT |
7 | 1836 /* |
1837 * Use builtin termcap | |
1838 */ | |
1839 { | |
1840 #ifdef HAVE_TGETENT | |
1841 /* | |
1842 * If builtin termcap was already used, there is no need to search | |
1843 * for the builtin termcap again, quit now. | |
1844 */ | |
1845 if (try == 2 && builtin_first && termcap_cleared) | |
1846 break; | |
1847 #endif | |
1848 /* | |
1849 * search for 'term' in builtin_termcaps[] | |
1850 */ | |
1851 termp = find_builtin_term(term); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1852 if (termp->bt_string == NULL) // did not find it |
7 | 1853 { |
1854 #ifdef HAVE_TGETENT | |
1855 /* | |
1856 * If try == 0, first try the external termcap. If that is not | |
1857 * found we'll get back here with try == 2. | |
1858 * If termcap_cleared is set we used the external termcap, | |
1859 * don't complain about not finding the term in the builtin | |
1860 * termcap. | |
1861 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1862 if (try == 0) // try external one |
7 | 1863 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1864 if (termcap_cleared) // found in external termcap |
7 | 1865 break; |
1866 #endif | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1867 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
|
1868 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1869 // when user typed :set term=xxx, quit here |
7 | 1870 if (starting != NO_SCREEN) |
1871 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1872 screen_start(); // don't know where cursor is now |
7 | 1873 wait_return(TRUE); |
1874 return FAIL; | |
1875 } | |
1876 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
|
1877 report_default_term(term); |
694 | 1878 set_string_option_direct((char_u *)"term", -1, term, |
1879 OPT_FREE, 0); | |
7 | 1880 display_errors(); |
1881 } | |
1882 out_flush(); | |
1883 #ifdef HAVE_TGETENT | |
1884 if (!termcap_cleared) | |
1885 { | |
1886 #endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1887 clear_termoptions(); // clear old options |
7 | 1888 #ifdef HAVE_TGETENT |
1889 termcap_cleared = TRUE; | |
1890 } | |
1891 #endif | |
1892 parse_builtin_tcap(term); | |
1893 #ifdef FEAT_GUI | |
1894 if (term_is_gui(term)) | |
1895 { | |
1896 out_flush(); | |
1897 gui_init(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1898 // 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
|
1899 // things for this terminal |
7 | 1900 if (!gui.in_use) |
1901 return FAIL; | |
1902 #ifdef HAVE_TGETENT | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1903 break; // don't try using external termcap |
7 | 1904 #endif |
1905 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1906 #endif // FEAT_GUI |
7 | 1907 } |
1908 #ifdef HAVE_TGETENT | |
1909 } | |
1910 #endif | |
1911 | |
1912 /* | |
1913 * special: There is no info in the termcap about whether the cursor | |
1914 * positioning is relative to the start of the screen or to the start of the | |
1915 * scrolling region. We just guess here. Only msdos pcterm is known to do it | |
1916 * relative. | |
1917 */ | |
1918 if (STRCMP(term, "pcterm") == 0) | |
1919 T_CCS = (char_u *)"yes"; | |
1920 else | |
1921 T_CCS = empty_option; | |
1922 | |
1923 #ifdef UNIX | |
1924 /* | |
1925 * Any "stty" settings override the default for t_kb from the termcap. | |
1926 * This is in os_unix.c, because it depends a lot on the version of unix that | |
1927 * is being used. | |
1928 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly. | |
1929 */ | |
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
|
1930 # ifdef FEAT_GUI |
7 | 1931 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
|
1932 # endif |
7 | 1933 get_stty(); |
1934 #endif | |
1935 | |
1936 /* | |
1937 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also | |
1938 * didn't work, use the default CTRL-H | |
1939 * The default for t_kD is DEL, unless t_kb is DEL. | |
1940 * The vim_strsave'd strings are probably lost forever, well it's only two | |
1941 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD" | |
1942 * directly. | |
1943 */ | |
1944 #ifdef FEAT_GUI | |
1945 if (!gui.in_use) | |
1946 #endif | |
1947 { | |
1948 bs_p = find_termcode((char_u *)"kb"); | |
1949 del_p = find_termcode((char_u *)"kD"); | |
1950 if (bs_p == NULL || *bs_p == NUL) | |
1951 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE); | |
1952 if ((del_p == NULL || *del_p == NUL) && | |
1953 (bs_p == NULL || *bs_p != DEL)) | |
1954 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE); | |
1955 } | |
1956 | |
1957 #if defined(UNIX) || defined(VMS) | |
1958 term_is_xterm = vim_is_xterm(term); | |
1959 #endif | |
18352
94e1a49b879e
patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
18350
diff
changeset
|
1960 #ifdef FEAT_TERMRESPONSE |
18350
b1796f1b28fa
patch 8.1.2169: terminal flags are never reset
Bram Moolenaar <Bram@vim.org>
parents:
18301
diff
changeset
|
1961 is_not_xterm = FALSE; |
b1796f1b28fa
patch 8.1.2169: terminal flags are never reset
Bram Moolenaar <Bram@vim.org>
parents:
18301
diff
changeset
|
1962 is_mac_terminal = FALSE; |
18352
94e1a49b879e
patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents:
18350
diff
changeset
|
1963 #endif |
7 | 1964 |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
1965 #if defined(UNIX) || defined(VMS) |
7 | 1966 /* |
1967 * For Unix, set the 'ttymouse' option to the type of mouse to be used. | |
1968 * The termcode for the mouse is added as a side effect in option.c. | |
1969 */ | |
1970 { | |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
1971 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
|
1972 |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
1973 # ifdef FEAT_MOUSE_XTERM |
1623 | 1974 if (use_xterm_like_mouse(term)) |
7 | 1975 { |
1976 if (use_xterm_mouse()) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1977 p = NULL; // keep existing value, might be "xterm2" |
7 | 1978 else |
1979 p = (char_u *)"xterm"; | |
1980 } | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
1981 # endif |
7 | 1982 if (p != NULL) |
3980 | 1983 { |
7 | 1984 set_option_value((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
|
1985 // 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
|
1986 // "xterm2" in check_termcode(). |
3980 | 1987 reset_option_was_set((char_u *)"ttym"); |
1988 } | |
7 | 1989 if (p == NULL |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
1990 # ifdef FEAT_GUI |
7 | 1991 || gui.in_use |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
1992 # endif |
7 | 1993 ) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1994 check_mouse_termcode(); // set mouse termcode anyway |
7 | 1995 } |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
1996 #else |
7 | 1997 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
|
1998 #endif |
7 | 1999 |
2000 #ifdef USE_TERM_CONSOLE | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2001 // DEFAULT_TERM indicates that it is the machine console. |
7 | 2002 if (STRCMP(term, DEFAULT_TERM) != 0) |
2003 term_console = FALSE; | |
2004 else | |
2005 { | |
2006 term_console = TRUE; | |
2007 # ifdef AMIGA | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2008 win_resize_on(); // enable window resizing reports |
7 | 2009 # endif |
2010 } | |
2011 #endif | |
2012 | |
2013 #if defined(UNIX) || defined(VMS) | |
2014 /* | |
2015 * 'ttyfast' is default on for xterm, iris-ansi and a few others. | |
2016 */ | |
2017 if (vim_is_fastterm(term)) | |
2018 p_tf = TRUE; | |
2019 #endif | |
2020 #ifdef USE_TERM_CONSOLE | |
2021 /* | |
2022 * 'ttyfast' is default on consoles | |
2023 */ | |
2024 if (term_console) | |
2025 p_tf = TRUE; | |
2026 #endif | |
2027 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2028 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
|
2029 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2030 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
|
2031 set_term_defaults(); // use current values as defaults |
7 | 2032 #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
|
2033 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
|
2034 crv_status.tr_progress = STATUS_GET; // Get terminal version later |
7 | 2035 #endif |
2036 | |
2037 /* | |
2038 * Initialize the terminal with the appropriate termcap codes. | |
2039 * Set the mouse and window title if possible. | |
2040 * Don't do this when starting, need to parse the .vimrc first, because it | |
2041 * may redefine t_TI etc. | |
2042 */ | |
2043 if (starting != NO_SCREEN) | |
2044 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2045 starttermcap(); // may change terminal mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2046 setmouse(); // may start using the mouse |
7 | 2047 #ifdef FEAT_TITLE |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2048 maketitle(); // may display window title |
7 | 2049 #endif |
2050 } | |
2051 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2052 // display initial screen after ttest() checking. jw. |
7 | 2053 if (width <= 0 || height <= 0) |
2054 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2055 // termcap failed to report size |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2056 // set defaults, in case ui_get_shellsize() also fails |
7 | 2057 width = 80; |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
2058 #if defined(MSWIN) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2059 height = 25; // console is often 25 lines |
7 | 2060 #else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2061 height = 24; // most terminals are 24 lines |
7 | 2062 #endif |
2063 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2064 set_shellsize(width, height, FALSE); // may change Rows |
7 | 2065 if (starting != NO_SCREEN) |
2066 { | |
2067 if (scroll_region) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2068 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
|
2069 check_map_keycodes(); // check mappings for terminal codes used |
7 | 2070 |
2071 { | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2072 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
|
2073 aco_save_T aco; |
7 | 2074 |
2075 /* | |
2076 * Execute the TermChanged autocommands for each buffer that is | |
2077 * loaded. | |
2078 */ | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2079 FOR_ALL_BUFFERS(buf) |
7 | 2080 { |
2081 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
|
2082 { |
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2083 aucmd_prepbuf(&aco, buf); |
7 | 2084 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE, |
2085 curbuf); | |
19489
31ac050a29a7
patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19405
diff
changeset
|
2086 // 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
|
2087 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
|
2088 } |
7 | 2089 } |
2090 } | |
2091 } | |
2092 | |
2093 #ifdef FEAT_TERMRESPONSE | |
2094 may_req_termresponse(); | |
2095 #endif | |
2096 | |
2097 return OK; | |
2098 } | |
2099 | |
2100 #ifdef HAVE_TGETENT | |
2101 /* | |
2102 * Call tgetent() | |
2103 * Return error message if it fails, NULL if it's OK. | |
2104 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2105 static char * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2106 tgetent_error(char_u *tbuf, char_u *term) |
7 | 2107 { |
2108 int i; | |
2109 | |
18838
8dabdfc7c799
patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
2110 // 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
|
2111 // buffer around that we can't ever free. |
7 | 2112 i = TGETENT(tbuf, term); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2113 if (i < 0 // -1 is always an error |
7 | 2114 # ifdef TGETENT_ZERO_ERR |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2115 || i == 0 // sometimes zero is also an error |
7 | 2116 # endif |
2117 ) | |
2118 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2119 // 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
|
2120 // 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
|
2121 // hang. |
7 | 2122 (void)TGETENT(tbuf, "dumb"); |
2123 | |
2124 if (i < 0) | |
2125 # ifdef TGETENT_ZERO_ERR | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2126 return _("E557: Cannot open termcap file"); |
7 | 2127 if (i == 0) |
2128 # endif | |
2129 #ifdef TERMINFO | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2130 return _("E558: Terminal entry not found in terminfo"); |
7 | 2131 #else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2132 return _("E559: Terminal entry not found in termcap"); |
7 | 2133 #endif |
2134 } | |
2135 return NULL; | |
2136 } | |
2137 | |
2138 /* | |
2139 * Some versions of tgetstr() have been reported to return -1 instead of NULL. | |
2140 * Fix that here. | |
2141 */ | |
2142 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2143 vim_tgetstr(char *s, char_u **pp) |
7 | 2144 { |
2145 char *p; | |
2146 | |
2147 p = tgetstr(s, (char **)pp); | |
2148 if (p == (char *)-1) | |
2149 p = NULL; | |
2150 return (char_u *)p; | |
2151 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2152 #endif // HAVE_TGETENT |
7 | 2153 |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2154 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X)) |
7 | 2155 /* |
2156 * Get Columns and Rows from the termcap. Used after a window signal if the | |
2157 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co" | |
2158 * and "li" entries never change. But on some systems this works. | |
2159 * Errors while getting the entries are ignored. | |
2160 */ | |
2161 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2162 getlinecol( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2163 long *cp, // pointer to columns |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2164 long *rp) // pointer to rows |
7 | 2165 { |
2166 char_u tbuf[TBUFSZ]; | |
2167 | |
2168 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL) | |
2169 { | |
2170 if (*cp == 0) | |
2171 *cp = tgetnum("co"); | |
2172 if (*rp == 0) | |
2173 *rp = tgetnum("li"); | |
2174 } | |
2175 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2176 #endif // defined(HAVE_TGETENT) && defined(UNIX) |
7 | 2177 |
2178 /* | |
2179 * Get a string entry from the termcap and add it to the list of termcodes. | |
2180 * Used for <t_xx> special keys. | |
2181 * Give an error message for failure when not sourcing. | |
2182 * If force given, replace an existing entry. | |
2183 * Return FAIL if the entry was not found, OK if the entry was added. | |
2184 */ | |
2185 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2186 add_termcap_entry(char_u *name, int force) |
7 | 2187 { |
2188 char_u *term; | |
2189 int key; | |
2190 struct builtin_term *termp; | |
2191 #ifdef HAVE_TGETENT | |
2192 char_u *string; | |
2193 int i; | |
2194 int builtin_first; | |
2195 char_u tbuf[TBUFSZ]; | |
2196 char_u tstrbuf[TBUFSZ]; | |
2197 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
|
2198 char *error_msg = NULL; |
7 | 2199 #endif |
2200 | |
2201 /* | |
2202 * If the GUI is running or will start in a moment, we only support the keys | |
2203 * that the GUI can produce. | |
2204 */ | |
2205 #ifdef FEAT_GUI | |
2206 if (gui.in_use || gui.starting) | |
2207 return gui_mch_haskey(name); | |
2208 #endif | |
2209 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2210 if (!force && find_termcode(name) != NULL) // it's already there |
7 | 2211 return OK; |
2212 | |
2213 term = T_NAME; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2214 if (term == NULL || *term == NUL) // 'term' not defined yet |
7 | 2215 return FAIL; |
2216 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2217 if (term_is_builtin(term)) // name starts with "builtin_" |
7 | 2218 { |
2219 term += 8; | |
2220 #ifdef HAVE_TGETENT | |
2221 builtin_first = TRUE; | |
2222 #endif | |
2223 } | |
2224 #ifdef HAVE_TGETENT | |
2225 else | |
2226 builtin_first = p_tbi; | |
2227 #endif | |
2228 | |
2229 #ifdef HAVE_TGETENT | |
2230 /* | |
2231 * We can get the entry from the builtin termcap and from the external one. | |
2232 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try | |
2233 * builtin termcap first. | |
2234 * If 'ttybuiltin' is off, try external termcap first. | |
2235 */ | |
2236 for (i = 0; i < 2; ++i) | |
2237 { | |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
6901
diff
changeset
|
2238 if ((!builtin_first) == i) |
7 | 2239 #endif |
2240 /* | |
2241 * Search in builtin termcap | |
2242 */ | |
2243 { | |
2244 termp = find_builtin_term(term); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2245 if (termp->bt_string != NULL) // found it |
7 | 2246 { |
2247 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
|
2248 ++termp; |
7 | 2249 while (termp->bt_entry != (int)KS_NAME) |
2250 { | |
2251 if ((int)termp->bt_entry == key) | |
2252 { | |
2253 add_termcode(name, (char_u *)termp->bt_string, | |
2254 term_is_8bit(term)); | |
2255 return OK; | |
2256 } | |
2257 ++termp; | |
2258 } | |
2259 } | |
2260 } | |
2261 #ifdef HAVE_TGETENT | |
2262 else | |
2263 /* | |
2264 * Search in external termcap | |
2265 */ | |
2266 { | |
2267 error_msg = tgetent_error(tbuf, term); | |
2268 if (error_msg == NULL) | |
2269 { | |
2270 string = TGETSTR((char *)name, &tp); | |
2271 if (string != NULL && *string != NUL) | |
2272 { | |
2273 add_termcode(name, string, FALSE); | |
2274 return OK; | |
2275 } | |
2276 } | |
2277 } | |
2278 } | |
2279 #endif | |
2280 | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18838
diff
changeset
|
2281 if (SOURCING_NAME == NULL) |
7 | 2282 { |
2283 #ifdef HAVE_TGETENT | |
2284 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
|
2285 emsg(error_msg); |
7 | 2286 else |
2287 #endif | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
2288 semsg(_("E436: No \"%s\" entry in termcap"), name); |
7 | 2289 } |
2290 return FAIL; | |
2291 } | |
2292 | |
2293 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2294 term_is_builtin(char_u *name) |
7 | 2295 { |
2296 return (STRNCMP(name, "builtin_", (size_t)8) == 0); | |
2297 } | |
2298 | |
2299 /* | |
2300 * Return TRUE if terminal "name" uses CSI instead of <Esc>[. | |
2301 * Assume that the terminal is using 8-bit controls when the name contains | |
2302 * "8bit", like in "xterm-8bit". | |
2303 */ | |
2304 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2305 term_is_8bit(char_u *name) |
7 | 2306 { |
2307 return (detected_8bit || strstr((char *)name, "8bit") != NULL); | |
2308 } | |
2309 | |
2310 /* | |
2311 * 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
|
2312 * <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
|
2313 * <Esc>] -> OSC <M-C-]> |
7 | 2314 * <Esc>O -> <M-C-O> |
2315 */ | |
2316 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2317 term_7to8bit(char_u *p) |
7 | 2318 { |
2319 if (*p == ESC) | |
2320 { | |
2321 if (p[1] == '[') | |
2322 return CSI; | |
2323 if (p[1] == ']') | |
6901 | 2324 return OSC; |
7 | 2325 if (p[1] == 'O') |
2326 return 0x8f; | |
2327 } | |
2328 return 0; | |
2329 } | |
2330 | |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13573
diff
changeset
|
2331 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 2332 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2333 term_is_gui(char_u *name) |
7 | 2334 { |
2335 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0); | |
2336 } | |
2337 #endif | |
2338 | |
2339 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO) | |
2340 | |
2341 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2342 tltoa(unsigned long i) |
7 | 2343 { |
2344 static char_u buf[16]; | |
2345 char_u *p; | |
2346 | |
2347 p = buf + 15; | |
2348 *p = '\0'; | |
2349 do | |
2350 { | |
2351 --p; | |
2352 *p = (char_u) (i % 10 + '0'); | |
2353 i /= 10; | |
2354 } | |
2355 while (i > 0 && p > buf); | |
2356 return p; | |
2357 } | |
2358 #endif | |
2359 | |
2360 #ifndef HAVE_TGETENT | |
2361 | |
2362 /* | |
2363 * minimal tgoto() implementation. | |
2364 * no padding and we only parse for %i %d and %+char | |
2365 */ | |
298 | 2366 static char * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2367 tgoto(char *cm, int x, int y) |
7 | 2368 { |
2369 static char buf[30]; | |
2370 char *p, *s, *e; | |
2371 | |
2372 if (!cm) | |
2373 return "OOPS"; | |
2374 e = buf + 29; | |
2375 for (s = buf; s < e && *cm; cm++) | |
2376 { | |
2377 if (*cm != '%') | |
2378 { | |
2379 *s++ = *cm; | |
2380 continue; | |
2381 } | |
2382 switch (*++cm) | |
2383 { | |
2384 case 'd': | |
2385 p = (char *)tltoa((unsigned long)y); | |
2386 y = x; | |
2387 while (*p) | |
2388 *s++ = *p++; | |
2389 break; | |
2390 case 'i': | |
2391 x++; | |
2392 y++; | |
2393 break; | |
2394 case '+': | |
2395 *s++ = (char)(*++cm + y); | |
2396 y = x; | |
2397 break; | |
2398 case '%': | |
2399 *s++ = *cm; | |
2400 break; | |
2401 default: | |
2402 return "OOPS"; | |
2403 } | |
2404 } | |
2405 *s = '\0'; | |
2406 return buf; | |
2407 } | |
2408 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2409 #endif // HAVE_TGETENT |
7 | 2410 |
2411 /* | |
2412 * Set the terminal name and initialize the terminal options. | |
2413 * If "name" is NULL or empty, get the terminal name from the environment. | |
2414 * If that fails, use the default terminal name. | |
2415 */ | |
2416 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2417 termcapinit(char_u *name) |
7 | 2418 { |
2419 char_u *term; | |
2420 | |
2421 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
|
2422 name = NULL; // empty name is equal to no name |
7 | 2423 term = name; |
2424 | |
2425 #ifndef MSWIN | |
2426 if (term == NULL) | |
2427 term = mch_getenv((char_u *)"TERM"); | |
2428 #endif | |
2429 if (term == NULL || *term == NUL) | |
2430 term = DEFAULT_TERM; | |
694 | 2431 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0); |
7 | 2432 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2433 // Set the default terminal name. |
7 | 2434 set_string_default("term", term); |
2435 set_string_default("ttytype", term); | |
2436 | |
2437 /* | |
2438 * Avoid using "term" here, because the next mch_getenv() may overwrite it. | |
2439 */ | |
2440 set_termname(T_NAME != NULL ? T_NAME : term); | |
2441 } | |
2442 | |
2443 /* | |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2444 * The number of calls to ui_write is reduced by using "out_buf". |
7 | 2445 */ |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2446 #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
|
2447 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2448 // add one to allow mch_write() in os_win32.c to append a NUL |
7 | 2449 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
|
2450 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2451 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
|
2452 |
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2453 // 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
|
2454 // 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
|
2455 #define MAX_ESC_SEQ_LEN 80 |
7 | 2456 |
2457 /* | |
2458 * out_flush(): flush the output buffer | |
2459 */ | |
2460 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2461 out_flush(void) |
7 | 2462 { |
2463 int len; | |
2464 | |
2465 if (out_pos != 0) | |
2466 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2467 // set out_pos to 0 before ui_write, to avoid recursiveness |
7 | 2468 len = out_pos; |
2469 out_pos = 0; | |
2470 ui_write(out_buf, len); | |
2471 } | |
2472 } | |
2473 | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2474 /* |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2475 * 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
|
2476 * 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
|
2477 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2478 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2479 out_flush_cursor( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2480 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
|
2481 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
|
2482 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2483 mch_disable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2484 out_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2485 mch_enable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2486 #ifdef FEAT_GUI |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2487 if (gui.in_use) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2488 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2489 gui_update_cursor(force, clear_selection); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2490 gui_may_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2491 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2492 #endif |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2493 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2494 |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2495 |
7 | 2496 /* |
2497 * Sometimes a byte out of a multi-byte character is written with out_char(). | |
2498 * To avoid flushing half of the character, call this function first. | |
2499 */ | |
2500 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2501 out_flush_check(void) |
7 | 2502 { |
2503 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES) | |
2504 out_flush(); | |
2505 } | |
2506 | |
2507 #ifdef FEAT_GUI | |
2508 /* | |
2509 * out_trash(): Throw away the contents of the output buffer | |
2510 */ | |
2511 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2512 out_trash(void) |
7 | 2513 { |
2514 out_pos = 0; | |
2515 } | |
2516 #endif | |
2517 | |
2518 /* | |
2519 * out_char(c): put a byte into the output buffer. | |
2520 * Flush it if it becomes full. | |
2521 * This should not be used for outputting text on the screen (use functions | |
2522 * like msg_puts() and screen_putchar() for that). | |
2523 */ | |
2524 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2525 out_char(unsigned c) |
7 | 2526 { |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12640
diff
changeset
|
2527 #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
|
2528 if (c == '\n') // turn LF into CR-LF (CRMOD doesn't seem to do this) |
7 | 2529 out_char('\r'); |
2530 #endif | |
2531 | |
2532 out_buf[out_pos++] = c; | |
2533 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2534 // For testing we flush each time. |
7 | 2535 if (out_pos >= OUT_SIZE || p_wd) |
2536 out_flush(); | |
2537 } | |
2538 | |
2539 /* | |
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
|
2540 * Output "c" like out_char(), but don't flush when p_wd is set. |
7 | 2541 */ |
2542 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2543 out_char_nf(unsigned c) |
7 | 2544 { |
2545 out_buf[out_pos++] = c; | |
2546 | |
2547 if (out_pos >= OUT_SIZE) | |
2548 out_flush(); | |
2549 } | |
2550 | |
2551 /* | |
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
|
2552 * 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
|
2553 * 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
|
2554 * tputs() above is harmless, but tputs() from the termcap library |
7 | 2555 * is likely to strip off leading digits, that it mistakes for padding |
2556 * information, and "%i", "%d", etc. | |
2557 * This should only be used for writing terminal codes, not for outputting | |
2558 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2559 */ | |
2560 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2561 out_str_nf(char_u *s) |
7 | 2562 { |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2563 // 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
|
2564 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
7 | 2565 out_flush(); |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2566 |
7 | 2567 while (*s) |
2568 out_char_nf(*s++); | |
2569 | |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2570 // For testing we write one string at a time. |
7 | 2571 if (p_wd) |
2572 out_flush(); | |
2573 } | |
2574 | |
2575 /* | |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2576 * 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
|
2577 * 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
|
2578 * it at the wrong time. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2579 * Note: Only for terminal strings. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2580 */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2581 void |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2582 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
|
2583 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2584 if (s != NULL && *s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2585 { |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2586 #ifdef HAVE_TGETENT |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2587 char_u *p; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2588 #endif |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2589 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2590 #ifdef FEAT_GUI |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2591 // 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
|
2592 if (gui.in_use) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2593 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2594 out_str_nf(s); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2595 return; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2596 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2597 #endif |
16200
ce6de8dab779
patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents:
16182
diff
changeset
|
2598 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
|
2599 out_flush(); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2600 #ifdef HAVE_TGETENT |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2601 for (p = s; *s; ++s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2602 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2603 // 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
|
2604 if (*s == '$' && *(s + 1) == '<') |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2605 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2606 char_u save_c = *s; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2607 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
|
2608 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2609 *s = NUL; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2610 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
|
2611 *s = save_c; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2612 out_flush(); |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2613 # ifdef ELAPSED_FUNC |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2614 // 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
|
2615 // vim_beep(). |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2616 p = vim_strchr(s, '>'); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2617 if (p == NULL || duration <= 0) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2618 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2619 // 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
|
2620 p = s; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2621 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2622 else |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2623 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2624 ++p; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2625 do_sleep(duration); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2626 } |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2627 # else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2628 // 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
|
2629 p = s; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2630 # endif |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2631 break; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2632 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2633 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2634 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
|
2635 #else |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2636 while (*s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2637 out_char_nf(*s++); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2638 #endif |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2639 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2640 // 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
|
2641 if (p_wd) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2642 out_flush(); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2643 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2644 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2645 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2646 /* |
7 | 2647 * 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
|
2648 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw) |
7 | 2649 * This should only be used for writing terminal codes, not for outputting |
2650 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2651 */ | |
2652 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2653 out_str(char_u *s) |
7 | 2654 { |
2655 if (s != NULL && *s) | |
2656 { | |
2657 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2658 // Don't use tputs() when GUI is used, ncurses crashes. |
7 | 2659 if (gui.in_use) |
2660 { | |
2661 out_str_nf(s); | |
2662 return; | |
2663 } | |
2664 #endif | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2665 // 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
|
2666 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN) |
7 | 2667 out_flush(); |
2668 #ifdef HAVE_TGETENT | |
2669 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf); | |
2670 #else | |
2671 while (*s) | |
2672 out_char_nf(*s++); | |
2673 #endif | |
2674 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2675 // For testing we write one string at a time. |
7 | 2676 if (p_wd) |
2677 out_flush(); | |
2678 } | |
2679 } | |
2680 | |
2681 /* | |
2682 * cursor positioning using termcap parser. (jw) | |
2683 */ | |
2684 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2685 term_windgoto(int row, int col) |
7 | 2686 { |
2687 OUT_STR(tgoto((char *)T_CM, col, row)); | |
2688 } | |
2689 | |
2690 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2691 term_cursor_right(int i) |
7 | 2692 { |
2693 OUT_STR(tgoto((char *)T_CRI, 0, i)); | |
2694 } | |
2695 | |
2696 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2697 term_append_lines(int line_count) |
7 | 2698 { |
2699 OUT_STR(tgoto((char *)T_CAL, 0, line_count)); | |
2700 } | |
2701 | |
2702 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2703 term_delete_lines(int line_count) |
7 | 2704 { |
2705 OUT_STR(tgoto((char *)T_CDL, 0, line_count)); | |
2706 } | |
2707 | |
2708 #if defined(HAVE_TGETENT) || defined(PROTO) | |
2709 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2710 term_set_winpos(int x, int y) |
7 | 2711 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2712 // Can't handle a negative value here |
7 | 2713 if (x < 0) |
2714 x = 0; | |
2715 if (y < 0) | |
2716 y = 0; | |
2717 OUT_STR(tgoto((char *)T_CWP, y, x)); | |
2718 } | |
2719 | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2720 # 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
|
2721 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2722 * 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
|
2723 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2724 static int |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2725 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
|
2726 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2727 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
|
2728 && 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
|
2729 # 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
|
2730 && (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
|
2731 # endif |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2732 && p_ek; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2733 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2734 |
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
|
2735 /* |
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
|
2736 * 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
|
2737 */ |
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
|
2738 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
|
2739 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
|
2740 { |
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
|
2741 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
|
2742 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
|
2743 } |
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
|
2744 |
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
|
2745 /* |
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
|
2746 * 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
|
2747 */ |
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
|
2748 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
|
2749 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
|
2750 { |
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
|
2751 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
|
2752 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
|
2753 |
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
|
2754 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
|
2755 { |
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
|
2756 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
|
2757 { |
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
|
2758 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
|
2759 && 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
|
2760 // 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
|
2761 // 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
|
2762 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
|
2763 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
|
2764 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
|
2765 } |
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
|
2766 } |
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
|
2767 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
|
2768 } |
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
|
2769 |
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
|
2770 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
|
2771 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
|
2772 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
|
2773 |
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
|
2774 # 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
|
2775 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2776 * 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
|
2777 * 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
|
2778 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2779 int |
13379
0f9dd1b43244
patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents:
13365
diff
changeset
|
2780 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
|
2781 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2782 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
|
2783 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
|
2784 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
|
2785 |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2786 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
|
2787 return FAIL; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2788 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
|
2789 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
|
2790 ++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
|
2791 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
|
2792 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
|
2793 out_flush(); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2794 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2795 // 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
|
2796 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
|
2797 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2798 (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
|
2799 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
|
2800 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2801 *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
|
2802 *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
|
2803 return OK; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2804 } |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18430
diff
changeset
|
2805 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
|
2806 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2807 // 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
|
2808 // 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
|
2809 |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2810 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
|
2811 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
|
2812 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
|
2813 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2814 // 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
|
2815 *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
|
2816 *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
|
2817 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
|
2818 } |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2819 |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2820 return FALSE; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2821 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2822 # endif |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2823 # endif |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2824 |
7 | 2825 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
|
2826 term_set_winsize(int height, int width) |
7 | 2827 { |
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
|
2828 OUT_STR(tgoto((char *)T_CWS, width, height)); |
7 | 2829 } |
2830 #endif | |
2831 | |
2832 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2833 term_color(char_u *s, int n) |
7 | 2834 { |
2835 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
|
2836 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
|
2837 // 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
|
2838 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2839 // 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
|
2840 // 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
|
2841 // Also accept CSI instead of <Esc>[ |
7 | 2842 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
|
2843 && ((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
|
2844 #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
|
2845 || (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
|
2846 #endif |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
2847 || (s[0] == CSI && (i = 1) == 1)) |
7 | 2848 && s[i] != NUL |
2849 && (STRCMP(s + i + 1, "%p1%dm") == 0 | |
2850 || STRCMP(s + i + 1, "%dm") == 0) | |
2851 && (s[i] == '3' || s[i] == '4')) | |
2852 { | |
2853 #ifdef TERMINFO | |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2854 char *format = "%s%s%%p1%%dm"; |
7 | 2855 #else |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2856 char *format = "%s%s%%dm"; |
7 | 2857 #endif |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2858 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
|
2859 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2860 s[1] == '|' ? IF_EB("\033|", ESC_STR "|") : |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
2861 #endif |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2862 IF_EB("\033[", ESC_STR "[")) : "\233"; |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2863 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
|
2864 : (n >= 16 ? "48;5;" : "10"); |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2865 |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2866 sprintf(buf, format, lead, tail); |
7 | 2867 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8)); |
2868 } | |
2869 else | |
2870 OUT_STR(tgoto((char *)s, 0, n)); | |
2871 } | |
2872 | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2873 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2874 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
|
2875 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2876 // 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
|
2877 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
|
2878 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
|
2879 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
|
2880 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
|
2881 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2882 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2883 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2884 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
|
2885 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2886 // 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
|
2887 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
|
2888 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
|
2889 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
|
2890 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
|
2891 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2892 |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2893 void |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2894 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
|
2895 { |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2896 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
|
2897 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
|
2898 } |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2899 |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2900 /* |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2901 * 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
|
2902 * 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
|
2903 * "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
|
2904 * "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
|
2905 * "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
|
2906 * "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
|
2907 * 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
|
2908 * 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
|
2909 * 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
|
2910 * 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
|
2911 */ |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2912 char_u * |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2913 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
|
2914 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2915 #if defined(MSWIN) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2916 // 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
|
2917 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
|
2918 #else |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2919 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
|
2920 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2921 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
|
2922 || 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
|
2923 || 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
|
2924 || 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
|
2925 || ((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
|
2926 && (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
|
2927 && ((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
|
2928 && 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
|
2929 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
|
2930 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
|
2931 #endif |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2932 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2933 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
2934 #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
|
2935 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2936 #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
|
2937 #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
|
2938 #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
|
2939 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2940 static void |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2941 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
|
2942 { |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2943 #define MAX_COLOR_STR_LEN 100 |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2944 char buf[MAX_COLOR_STR_LEN]; |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2945 |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2946 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
|
2947 (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
|
2948 #ifdef FEAT_VTP |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
2949 if (use_wt()) |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
2950 { |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
2951 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
|
2952 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
|
2953 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
|
2954 } |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
2955 else |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
2956 #endif |
ecaceb5c5644
patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents:
20524
diff
changeset
|
2957 OUT_STR(buf); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2958 } |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2959 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2960 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2961 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
|
2962 { |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2963 term_rgb_color(T_8F, rgb); |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2964 } |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2965 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2966 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2967 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
|
2968 { |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2969 term_rgb_color(T_8B, rgb); |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2970 } |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2971 |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2972 void |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2973 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
|
2974 { |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2975 term_rgb_color(T_8U, rgb); |
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20603
diff
changeset
|
2976 } |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2977 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2978 |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2979 #if (defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) \ |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2980 || defined(MACOS_X))) || defined(PROTO) |
7 | 2981 /* |
2982 * Generic function to set window title, using t_ts and t_fs. | |
2983 */ | |
2984 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2985 term_settitle(char_u *title) |
7 | 2986 { |
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
|
2987 // 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
|
2988 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start |
7 | 2989 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
|
2990 out_str(T_FS); // set title end |
7 | 2991 out_flush(); |
2992 } | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2993 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2994 /* |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2995 * 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
|
2996 * 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
|
2997 */ |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2998 void |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2999 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
|
3000 { |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3001 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
|
3002 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3003 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
|
3004 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
|
3005 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3006 |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3007 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
|
3008 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3009 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
|
3010 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
|
3011 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3012 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3013 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3014 /* |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3015 * 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
|
3016 */ |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3017 void |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3018 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
|
3019 { |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3020 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
|
3021 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3022 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
|
3023 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
|
3024 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3025 |
16586
5ebb2c87d1f5
patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
3026 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
|
3027 { |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3028 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
|
3029 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
|
3030 } |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3031 } |
7 | 3032 #endif |
3033 | |
3034 /* | |
3035 * Make sure we have a valid set or terminal options. | |
3036 * Replace all entries that are NULL by empty_option | |
3037 */ | |
3038 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3039 ttest(int pairs) |
7 | 3040 { |
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
|
3041 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
|
3042 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3043 check_options(); // make sure no options are NULL |
7 | 3044 |
3045 /* | |
3046 * MUST have "cm": cursor motion. | |
3047 */ | |
3048 if (*T_CM == NUL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
3049 emsg(_("E437: terminal capability \"cm\" required")); |
7 | 3050 |
3051 /* | |
3052 * if "cs" defined, use a scroll region, it's faster. | |
3053 */ | |
3054 if (*T_CS != NUL) | |
3055 scroll_region = TRUE; | |
3056 else | |
3057 scroll_region = FALSE; | |
3058 | |
3059 if (pairs) | |
3060 { | |
3061 /* | |
3062 * optional pairs | |
3063 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3064 // TP goes to normal mode for TI (invert) and TB (bold) |
7 | 3065 if (*T_ME == NUL) |
3066 T_ME = T_MR = T_MD = T_MB = empty_option; | |
3067 if (*T_SO == NUL || *T_SE == NUL) | |
3068 T_SO = T_SE = empty_option; | |
3069 if (*T_US == NUL || *T_UE == NUL) | |
3070 T_US = T_UE = empty_option; | |
3071 if (*T_CZH == NUL || *T_CZR == NUL) | |
3072 T_CZH = T_CZR = empty_option; | |
3073 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3074 // T_VE is needed even though T_VI is not defined |
7 | 3075 if (*T_VE == NUL) |
3076 T_VI = empty_option; | |
3077 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3078 // if 'mr' or 'me' is not defined use 'so' and 'se' |
7 | 3079 if (*T_ME == NUL) |
3080 { | |
3081 T_ME = T_SE; | |
3082 T_MR = T_SO; | |
3083 T_MD = T_SO; | |
3084 } | |
3085 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3086 // if 'so' or 'se' is not defined use 'mr' and 'me' |
7 | 3087 if (*T_SO == NUL) |
3088 { | |
3089 T_SE = T_ME; | |
3090 if (*T_MR == NUL) | |
3091 T_SO = T_MD; | |
3092 else | |
3093 T_SO = T_MR; | |
3094 } | |
3095 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3096 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me' |
7 | 3097 if (*T_CZH == NUL) |
3098 { | |
3099 T_CZR = T_ME; | |
3100 if (*T_MR == NUL) | |
3101 T_CZH = T_MD; | |
3102 else | |
3103 T_CZH = T_MR; | |
3104 } | |
3105 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3106 // "Sb" and "Sf" come in pairs |
7 | 3107 if (*T_CSB == NUL || *T_CSF == NUL) |
3108 { | |
3109 T_CSB = empty_option; | |
3110 T_CSF = empty_option; | |
3111 } | |
3112 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3113 // "AB" and "AF" come in pairs |
7 | 3114 if (*T_CAB == NUL || *T_CAF == NUL) |
3115 { | |
3116 T_CAB = empty_option; | |
3117 T_CAF = empty_option; | |
3118 } | |
3119 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3120 // if 'Sb' and 'AB' are not defined, reset "Co" |
7 | 3121 if (*T_CSB == NUL && *T_CAB == NUL) |
1941 | 3122 free_one_termoption(T_CCO); |
7 | 3123 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3124 // Set 'weirdinvert' according to value of 't_xs' |
7 | 3125 p_wiv = (*T_XS != NUL); |
3126 } | |
3127 need_gather = TRUE; | |
3128 | |
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
|
3129 // 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
|
3130 // GUI. |
7 | 3131 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
|
3132 #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
|
3133 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
|
3134 #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
|
3135 { |
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
|
3136 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
|
3137 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
|
3138 { |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3139 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
|
3140 |
0ab9d7469ce7
patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20065
diff
changeset
|
3141 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
|
3142 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
|
3143 } |
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
|
3144 } |
7 | 3145 } |
3146 | |
3147 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \ | |
3148 || defined(PROTO) | |
3149 /* | |
3150 * Represent the given long_u as individual bytes, with the most significant | |
3151 * byte first, and store them in dst. | |
3152 */ | |
3153 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3154 add_long_to_buf(long_u val, char_u *dst) |
7 | 3155 { |
3156 int i; | |
3157 int shift; | |
3158 | |
1883 | 3159 for (i = 1; i <= (int)sizeof(long_u); i++) |
7 | 3160 { |
3161 shift = 8 * (sizeof(long_u) - i); | |
3162 dst[i - 1] = (char_u) ((val >> shift) & 0xff); | |
3163 } | |
3164 } | |
3165 | |
3166 /* | |
3167 * Interpret the next string of bytes in buf as a long integer, with the most | |
3168 * significant byte first. Note that it is assumed that buf has been through | |
3169 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each. | |
3170 * Puts result in val, and returns the number of bytes read from buf | |
3171 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes | |
3172 * were present. | |
3173 */ | |
3174 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3175 get_long_from_buf(char_u *buf, long_u *val) |
7 | 3176 { |
3177 int len; | |
3178 char_u bytes[sizeof(long_u)]; | |
3179 int i; | |
3180 int shift; | |
3181 | |
3182 *val = 0; | |
3183 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u)); | |
3184 if (len != -1) | |
3185 { | |
1883 | 3186 for (i = 0; i < (int)sizeof(long_u); i++) |
7 | 3187 { |
3188 shift = 8 * (sizeof(long_u) - 1 - i); | |
3189 *val += (long_u)bytes[i] << shift; | |
3190 } | |
3191 } | |
3192 return len; | |
3193 } | |
3194 #endif | |
3195 | |
3196 /* | |
3197 * Read the next num_bytes bytes from buf, and store them in bytes. Assume | |
3198 * that buf has been through inchar(). Returns the actual number of bytes used | |
3199 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were | |
3200 * available. | |
3201 */ | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
3202 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3203 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) |
7 | 3204 { |
3205 int len = 0; | |
3206 int i; | |
3207 char_u c; | |
3208 | |
3209 for (i = 0; i < num_bytes; i++) | |
3210 { | |
3211 if ((c = buf[len++]) == NUL) | |
3212 return -1; | |
3213 if (c == K_SPECIAL) | |
3214 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3215 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen? |
7 | 3216 return -1; |
3217 if (buf[len++] == (int)KS_ZERO) | |
3218 c = NUL; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3219 // 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
|
3220 // 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
|
3221 if (buf[len++] == (int)KE_CSI) |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3222 c = CSI; |
7 | 3223 } |
1160 | 3224 else if (c == CSI && buf[len] == KS_EXTRA |
3225 && 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
|
3226 // 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
|
3227 // the start of a special key, see add_to_input_buf_csi(). |
667 | 3228 len += 2; |
7 | 3229 bytes[i] = c; |
3230 } | |
3231 return len; | |
3232 } | |
3233 | |
3234 /* | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3235 * 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
|
3236 * too big. |
7 | 3237 */ |
3238 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3239 check_shellsize(void) |
7 | 3240 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3241 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
|
3242 Rows = min_rows(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3243 limit_screen_size(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3244 } |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3245 |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3246 /* |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3247 * 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
|
3248 */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3249 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3250 limit_screen_size(void) |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3251 { |
7 | 3252 if (Columns < MIN_COLUMNS) |
3253 Columns = MIN_COLUMNS; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3254 else if (Columns > 10000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3255 Columns = 10000; |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3256 if (Rows > 1000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3257 Rows = 1000; |
7 | 3258 } |
3259 | |
41 | 3260 /* |
3261 * Invoked just before the screen structures are going to be (re)allocated. | |
3262 */ | |
7 | 3263 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3264 win_new_shellsize(void) |
7 | 3265 { |
3266 static int old_Rows = 0; | |
3267 static int old_Columns = 0; | |
3268 | |
3269 if (old_Rows != Rows || old_Columns != Columns) | |
3270 ui_new_shellsize(); | |
3271 if (old_Rows != Rows) | |
3272 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3273 // if 'window' uses the whole screen, keep it using that |
179 | 3274 if (p_window == old_Rows - 1 || old_Rows == 0) |
164 | 3275 p_window = Rows - 1; |
7 | 3276 old_Rows = Rows; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3277 shell_new_rows(); // update window sizes |
7 | 3278 } |
3279 if (old_Columns != Columns) | |
3280 { | |
3281 old_Columns = Columns; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3282 shell_new_columns(); // update window sizes |
7 | 3283 } |
3284 } | |
3285 | |
3286 /* | |
3287 * Call this function when the Vim shell has been resized in any way. | |
3288 * Will obtain the current size and redraw (also when size didn't change). | |
3289 */ | |
3290 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3291 shell_resized(void) |
7 | 3292 { |
3293 set_shellsize(0, 0, FALSE); | |
3294 } | |
3295 | |
3296 /* | |
3297 * Check if the shell size changed. Handle a resize. | |
3298 * When the size didn't change, nothing happens. | |
3299 */ | |
3300 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3301 shell_resized_check(void) |
7 | 3302 { |
3303 int old_Rows = Rows; | |
3304 int old_Columns = Columns; | |
3305 | |
3770 | 3306 if (!exiting |
3307 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3308 // 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
|
3309 // startup. |
3770 | 3310 && !gui.starting |
3311 #endif | |
3312 ) | |
2673 | 3313 { |
3314 (void)ui_get_shellsize(); | |
3315 check_shellsize(); | |
3316 if (old_Rows != Rows || old_Columns != Columns) | |
3317 shell_resized(); | |
3318 } | |
7 | 3319 } |
3320 | |
3321 /* | |
3322 * Set size of the Vim shell. | |
3323 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real | |
3324 * window size (this is used for the :win command). | |
3325 * If 'mustset' is FALSE, we may try to get the real window size and if | |
3326 * it fails use 'width' and 'height'. | |
3327 */ | |
3328 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3329 set_shellsize(int width, int height, int mustset) |
7 | 3330 { |
3331 static int busy = FALSE; | |
3332 | |
3333 /* | |
3334 * Avoid recursiveness, can happen when setting the window size causes | |
3335 * another window-changed signal. | |
3336 */ | |
3337 if (busy) | |
3338 return; | |
3339 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3340 if (width < 0 || height < 0) // just checking... |
7 | 3341 return; |
3342 | |
3068 | 3343 if (State == HITRETURN || State == SETWSIZE) |
7 | 3344 { |
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
|
3345 // postpone the resizing |
7 | 3346 State = SETWSIZE; |
3347 return; | |
3348 } | |
3349 | |
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
|
3350 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
|
3351 // 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
|
3352 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
|
3353 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3354 // curwin->w_buffer can be NULL when we are closing a window and the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3355 // buffer has already been closed and removing a scrollbar causes a resize |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3356 // event. Don't resize then, it will happen after entering another buffer. |
3068 | 3357 if (curwin->w_buffer == NULL) |
3358 return; | |
3359 | |
7 | 3360 ++busy; |
3361 | |
3362 #ifdef AMIGA | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3363 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
|
3364 // some obscure reason |
7 | 3365 #endif |
3366 | |
3367 if (mustset || (ui_get_shellsize() == FAIL && height != 0)) | |
3368 { | |
3369 Rows = height; | |
3370 Columns = width; | |
3371 check_shellsize(); | |
3372 ui_set_shellsize(mustset); | |
3373 } | |
3374 else | |
3375 check_shellsize(); | |
3376 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3377 // 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
|
3378 // 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
|
3379 // "busy" check above may skip this, but not screenalloc(). |
7 | 3380 |
3381 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM) | |
3382 screenclear(); | |
3383 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3384 screen_start(); // don't know where cursor is now |
7 | 3385 |
3386 if (starting != NO_SCREEN) | |
3387 { | |
3388 #ifdef FEAT_TITLE | |
3389 maketitle(); | |
3390 #endif | |
3391 changed_line_abv_curs(); | |
3392 invalidate_botline(); | |
3393 | |
3394 /* | |
3395 * We only redraw when it's needed: | |
3396 * - While at the more prompt or executing an external command, don't | |
3397 * redraw, but position the cursor. | |
3398 * - While editing the command line, only redraw that. | |
3399 * - in Ex mode, don't redraw anything. | |
3400 * - Otherwise, redraw right now, and position the cursor. | |
3401 * Always need to call update_screen() or screenalloc(), to make | |
3402 * sure Rows/Columns and the size of ScreenLines[] is correct! | |
3403 */ | |
3404 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM | |
3405 || exmode_active) | |
3406 { | |
3407 screenalloc(FALSE); | |
3408 repeat_message(); | |
3409 } | |
3410 else | |
3411 { | |
1024 | 3412 if (curwin->w_p_scb) |
3413 do_check_scrollbind(TRUE); | |
3414 if (State & CMDLINE) | |
648 | 3415 { |
1024 | 3416 update_screen(NOT_VALID); |
3417 redrawcmdline(); | |
648 | 3418 } |
3419 else | |
1024 | 3420 { |
3421 update_topline(); | |
3422 if (pum_visible()) | |
3423 { | |
3424 redraw_later(NOT_VALID); | |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
3425 ins_compl_show_pum(); |
1024 | 3426 } |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
3427 update_screen(NOT_VALID); |
1024 | 3428 if (redrawing()) |
3429 setcursor(); | |
3430 } | |
7 | 3431 } |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3432 cursor_on(); // redrawing may have switched it off |
7 | 3433 } |
3434 out_flush(); | |
3435 --busy; | |
3436 } | |
3437 | |
3438 /* | |
3439 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external | |
3440 * commands and Ex mode). | |
3441 */ | |
3442 void | |
20450
d5d89c24eec7
patch 8.2.0779: tmode_T not used everywhere
Bram Moolenaar <Bram@vim.org>
parents:
20439
diff
changeset
|
3443 settmode(tmode_T tmode) |
7 | 3444 { |
3445 #ifdef FEAT_GUI | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3446 // don't set the term where gvim was started to any mode |
7 | 3447 if (gui.in_use) |
3448 return; | |
3449 #endif | |
3450 | |
3451 if (full_screen) | |
3452 { | |
3453 /* | |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3454 * 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
|
3455 * 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
|
3456 * because the shell program may have reset the terminal mode. |
7 | 3457 * When we think the terminal is normal, don't try to set it to |
3458 * normal again, because that causes problems (logout!) on some | |
3459 * machines. | |
3460 */ | |
20437
3bb4dea4a164
patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents:
20425
diff
changeset
|
3461 if (tmode != cur_tmode) |
7 | 3462 { |
3463 #ifdef FEAT_TERMRESPONSE | |
1691 | 3464 # ifdef FEAT_GUI |
3465 if (!gui.in_use && !gui.starting) | |
3466 # endif | |
3467 { | |
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
|
3468 // 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
|
3469 // 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
|
3470 // 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
|
3471 if (tmode != TMODE_RAW && termrequest_any_pending()) |
1691 | 3472 (void)vpeekc_nomap(); |
3473 check_for_codes_from_term(); | |
3474 } | |
7 | 3475 #endif |
3476 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
|
3477 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
|
3478 |
d4b2a8675b78
patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents:
20437
diff
changeset
|
3479 // 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
|
3480 // 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
|
3481 // 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
|
3482 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
|
3483 && 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
|
3484 { |
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3485 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
|
3486 { |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3487 out_str(T_BD); // disable bracketed paste mode |
20425
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3488 out_str(T_CTE); // possibly disables modifyOtherKeys |
426ef48be465
patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents:
20181
diff
changeset
|
3489 } |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3490 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
|
3491 { |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3492 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
|
3493 // 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
|
3494 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
|
3495 } |
16387
12d57853ddb2
patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents:
16378
diff
changeset
|
3496 } |
7 | 3497 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
|
3498 mch_settmode(tmode); // machine specific function |
7 | 3499 cur_tmode = tmode; |
3500 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
|
3501 setmouse(); // may switch mouse on |
7 | 3502 out_flush(); |
3503 } | |
3504 #ifdef FEAT_TERMRESPONSE | |
3505 may_req_termresponse(); | |
3506 #endif | |
3507 } | |
3508 } | |
3509 | |
3510 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3511 starttermcap(void) |
7 | 3512 { |
3513 if (full_screen && !termcap_active) | |
3514 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3515 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
|
3516 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
|
3517 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
|
3518 out_str(T_BE); // enable bracketed paste mode |
7 | 3519 out_flush(); |
3520 termcap_active = TRUE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3521 screen_start(); // don't know where cursor is now |
7 | 3522 #ifdef FEAT_TERMRESPONSE |
1691 | 3523 # ifdef FEAT_GUI |
3524 if (!gui.in_use && !gui.starting) | |
3525 # endif | |
3526 { | |
3527 may_req_termresponse(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3528 // 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
|
3529 // 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
|
3530 if (crv_status.tr_progress == STATUS_SENT) |
1691 | 3531 check_for_codes_from_term(); |
3532 } | |
7 | 3533 #endif |
3534 } | |
3535 } | |
3536 | |
3537 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3538 stoptermcap(void) |
7 | 3539 { |
3540 screen_stop_highlight(); | |
3541 reset_cterm_colors(); | |
3542 if (termcap_active) | |
3543 { | |
3544 #ifdef FEAT_TERMRESPONSE | |
1691 | 3545 # ifdef FEAT_GUI |
3546 if (!gui.in_use && !gui.starting) | |
3547 # endif | |
3548 { | |
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
|
3549 // 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
|
3550 if (termrequest_any_pending()) |
4391 | 3551 { |
3552 # 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
|
3553 // Give the terminal a chance to respond. |
4391 | 3554 mch_delay(100L, FALSE); |
3555 # endif | |
3556 # 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
|
3557 // Discard data received but not read. |
4391 | 3558 if (exiting) |
3559 tcflush(fileno(stdin), TCIFLUSH); | |
3560 # endif | |
3561 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3562 // 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
|
3563 // get them. |
1691 | 3564 check_for_codes_from_term(); |
3565 } | |
7 | 3566 #endif |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3567 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
|
3568 out_str(T_KE); // stop "keypad transmit" mode |
7 | 3569 out_flush(); |
3570 termcap_active = FALSE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3571 cursor_on(); // just in case it is still off |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3572 out_str(T_CTE); // stop "raw" mode |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3573 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
|
3574 screen_start(); // don't know where cursor is now |
7 | 3575 out_flush(); |
3576 } | |
3577 } | |
3578 | |
5932 | 3579 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 3580 /* |
3581 * Request version string (for xterm) when needed. | |
3582 * Only do this after switching to raw mode, otherwise the result will be | |
3583 * echoed. | |
626 | 3584 * Only do this after startup has finished, to avoid that the response comes |
1221 | 3585 * while executing "-c !cmd" or even after "-c quit". |
7 | 3586 * Only do this after termcap mode has been started, otherwise the codes for |
3587 * the cursor keys may be wrong. | |
620 | 3588 * Only do this when 'esckeys' is on, otherwise the response causes trouble in |
3589 * Insert mode. | |
164 | 3590 * On Unix only do it when both output and input are a tty (avoid writing |
3591 * request to terminal while reading from a file). | |
7 | 3592 * The result is caught in check_termcode(). |
3593 */ | |
626 | 3594 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3595 may_req_termresponse(void) |
7 | 3596 { |
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
|
3597 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
|
3598 && can_get_termresponse() |
626 | 3599 && starting == 0 |
7 | 3600 && *T_CRV != NUL) |
3601 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3602 LOG_TR(("Sending CRV request")); |
7 | 3603 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
|
3604 termrequest_sent(&crv_status); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3605 // 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
|
3606 // get_keystroke() |
7 | 3607 out_flush(); |
3608 (void)vpeekc_nomap(); | |
3609 } | |
3610 } | |
4215 | 3611 |
3612 /* | |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3613 * 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
|
3614 * find out properties of the terminal. |
4215 | 3615 */ |
3616 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
|
3617 check_terminal_behavior(void) |
4215 | 3618 { |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3619 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
|
3620 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3621 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
|
3622 return; |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3623 |
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
|
3624 if (u7_status.tr_progress == STATUS_GET |
4215 | 3625 && !option_was_set((char_u *)"ambiwidth")) |
3626 { | |
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
|
3627 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
|
3628 |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3629 // 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
|
3630 // 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
|
3631 // 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
|
3632 // 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
|
3633 // 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
|
3634 // 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
|
3635 // 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
|
3636 // 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
|
3637 // entering termcap mode. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3638 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
|
3639 // 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
|
3640 // 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
|
3641 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
|
3642 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
|
3643 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
|
3644 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
|
3645 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
|
3646 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
|
3647 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
|
3648 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3649 // 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
|
3650 // 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
|
3651 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
|
3652 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
|
3653 out_str((char_u *)" "); |
20768
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3654 } |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3655 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3656 if (xcc_status.tr_progress == STATUS_GET) |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3657 { |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3658 // 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
|
3659 // 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
|
3660 // 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
|
3661 // 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
|
3662 // 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
|
3663 // 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
|
3664 // the cursor does move. |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3665 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
|
3666 // Do this in the third row. Second row is used by ambiguous |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3667 // chararacter 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
|
3668 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
|
3669 // 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
|
3670 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
|
3671 // 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
|
3672 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
|
3673 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
|
3674 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
|
3675 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
|
3676 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
|
3677 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3678 // 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
|
3679 // 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
|
3680 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
|
3681 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
|
3682 out_str((char_u *)" "); |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3683 } |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3684 |
1e2e81dbb958
patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
3685 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
|
3686 { |
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
|
3687 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
|
3688 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3689 // 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
|
3690 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
|
3691 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3692 // 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
|
3693 // 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
|
3694 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
|
3695 (void)vpeekc_nomap(); |
4215 | 3696 } |
3697 } | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3698 |
6874 | 3699 /* |
6885 | 3700 * Similar to requesting the version string: Request the terminal background |
3701 * color when it is the right moment. | |
6874 | 3702 */ |
3703 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3704 may_req_bg_color(void) |
6874 | 3705 { |
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
|
3706 if (can_get_termresponse() && starting == 0) |
6874 | 3707 { |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3708 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
|
3709 |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
3710 # ifdef FEAT_TERMINAL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3711 // 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
|
3712 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
|
3713 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3714 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
|
3715 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
|
3716 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
|
3717 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
|
3718 } |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
3719 # 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
|
3720 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3721 // 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
|
3722 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
|
3723 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3724 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
|
3725 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
|
3726 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
|
3727 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
|
3728 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3729 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3730 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
|
3731 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3732 // 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
|
3733 // 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
|
3734 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
|
3735 (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
|
3736 } |
6874 | 3737 } |
3738 } | |
3739 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3740 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3741 static void |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3742 log_tr(const char *fmt, ...) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3743 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3744 static FILE *fd_tr = NULL; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3745 static proftime_T start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3746 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
|
3747 va_list ap; |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3748 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3749 if (fd_tr == NULL) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3750 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3751 fd_tr = fopen("termresponse.log", "w"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3752 profile_start(&start); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3753 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3754 now = start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3755 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
|
3756 fprintf(fd_tr, "%s: %s ", profile_msg(&now), |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3757 must_redraw == NOT_VALID ? "NV" |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3758 : must_redraw == CLEAR ? "CL" : " "); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3759 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
|
3760 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
|
3761 va_end(ap); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3762 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
|
3763 fflush(fd_tr); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3764 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3765 # endif |
7 | 3766 #endif |
3767 | |
3768 /* | |
3769 * Return TRUE when saving and restoring the screen. | |
3770 */ | |
3771 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3772 swapping_screen(void) |
7 | 3773 { |
3774 return (full_screen && *T_TI != NUL); | |
3775 } | |
3776 | |
3777 /* | |
3778 * By outputting the 'cursor very visible' termcap code, for some windowed | |
3779 * terminals this makes the screen scrolled to the correct position. | |
3780 * Used when starting Vim or returning from a shell. | |
3781 */ | |
3782 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3783 scroll_start(void) |
7 | 3784 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3785 if (*T_VS != NUL && *T_CVS != NUL) |
7 | 3786 { |
3787 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
|
3788 out_str(T_CVS); |
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 } |
3791 } | |
3792 | |
3793 static int cursor_is_off = FALSE; | |
3794 | |
3795 /* | |
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
|
3796 * 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
|
3797 */ |
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
|
3798 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
|
3799 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
|
3800 { |
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
|
3801 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
|
3802 cursor_is_off = FALSE; |
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
|
3803 } |
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
|
3804 |
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
|
3805 /* |
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
|
3806 * Enable the cursor if it's currently off. |
7 | 3807 */ |
3808 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3809 cursor_on(void) |
7 | 3810 { |
3811 if (cursor_is_off) | |
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
|
3812 cursor_on_force(); |
7 | 3813 } |
3814 | |
3815 /* | |
3816 * Disable the cursor. | |
3817 */ | |
3818 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3819 cursor_off(void) |
7 | 3820 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3821 if (full_screen && !cursor_is_off) |
7 | 3822 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3823 out_str(T_VI); // disable cursor |
7 | 3824 cursor_is_off = TRUE; |
3825 } | |
3826 } | |
3827 | |
39 | 3828 #if defined(CURSOR_SHAPE) || defined(PROTO) |
7 | 3829 /* |
6727 | 3830 * Set cursor shape to match Insert or Replace mode. |
36 | 3831 */ |
3832 void | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3833 term_cursor_mode(int forced) |
36 | 3834 { |
12078
d21b8f31b296
patch 8.0.0919: cursor color isn't set on startup
Christian Brabandt <cb@256bit.org>
parents:
12076
diff
changeset
|
3835 static int showing_mode = -1; |
6727 | 3836 char_u *p; |
3837 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3838 // 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
|
3839 // mode. |
6727 | 3840 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
|
3841 { |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
3842 # 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
|
3843 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
|
3844 // 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
|
3845 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
|
3846 # endif |
36 | 3847 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
|
3848 } |
36 | 3849 |
6727 | 3850 if ((State & REPLACE) == REPLACE) |
36 | 3851 { |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3852 if (forced || showing_mode != REPLACE) |
6727 | 3853 { |
3854 if (*T_CSR != NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3855 p = T_CSR; // Replace mode cursor |
6727 | 3856 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3857 p = T_CSI; // fall back to Insert mode cursor |
6727 | 3858 if (*p != NUL) |
3859 { | |
3860 out_str(p); | |
3861 showing_mode = REPLACE; | |
3862 } | |
3863 } | |
36 | 3864 } |
6727 | 3865 else if (State & INSERT) |
36 | 3866 { |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3867 if ((forced || showing_mode != INSERT) && *T_CSI != NUL) |
6727 | 3868 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3869 out_str(T_CSI); // Insert mode cursor |
6727 | 3870 showing_mode = INSERT; |
3871 } | |
3872 } | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3873 else if (forced || showing_mode != NORMAL) |
6727 | 3874 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3875 out_str(T_CEI); // non-Insert mode cursor |
6727 | 3876 showing_mode = NORMAL; |
36 | 3877 } |
3878 } | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3879 |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3880 # 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
|
3881 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3882 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
|
3883 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3884 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
|
3885 { |
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
|
3886 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
|
3887 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
|
3888 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
|
3889 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3890 } |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3891 } |
12172
444793fce117
patch 8.0.0966: build failure without terminal feature
Christian Brabandt <cb@256bit.org>
parents:
12170
diff
changeset
|
3892 # endif |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3893 |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3894 int |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3895 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
|
3896 { |
12261
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3897 #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
|
3898 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
|
3899 && 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
|
3900 && 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
|
3901 #else |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3902 return FALSE; |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3903 #endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3904 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3905 |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3906 /* |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3907 * "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
|
3908 */ |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3909 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3910 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
|
3911 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3912 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
|
3913 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3914 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
|
3915 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3916 } |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3917 else |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3918 { |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3919 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
|
3920 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3921 // 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
|
3922 // 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
|
3923 // 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
|
3924 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
|
3925 do_blink = !blink; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3926 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3927 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
|
3928 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3929 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
|
3930 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3931 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3932 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
|
3933 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3934 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
|
3935 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3936 } |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3937 } |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3938 } |
39 | 3939 #endif |
36 | 3940 |
3941 /* | |
7 | 3942 * Set scrolling region for window 'wp'. |
3943 * The region starts 'off' lines from the start of the window. | |
3944 * Also set the vertical scroll region for a vertically split window. Always | |
3945 * the full width of the window, excluding the vertical separator. | |
3946 */ | |
3947 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3948 scroll_region_set(win_T *wp, int off) |
7 | 3949 { |
3950 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1, | |
3951 W_WINROW(wp) + off)); | |
3952 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
|
3953 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
|
3954 wp->w_wincol)); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3955 screen_start(); // don't know where cursor is now |
7 | 3956 } |
3957 | |
3958 /* | |
3959 * Reset scrolling region to the whole screen. | |
3960 */ | |
3961 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3962 scroll_region_reset(void) |
7 | 3963 { |
3964 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0)); | |
3965 if (*T_CSV != NUL) | |
3966 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
|
3967 screen_start(); // don't know where cursor is now |
7 | 3968 } |
3969 | |
3970 | |
3971 /* | |
3972 * List of terminal codes that are currently recognized. | |
3973 */ | |
3974 | |
298 | 3975 static struct termcode |
7 | 3976 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3977 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
|
3978 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
|
3979 int len; // STRLEN(code) |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3980 int modlen; // length of part before ";*~". |
7 | 3981 } *termcodes = NULL; |
3982 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3983 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
|
3984 static int tc_len = 0; // current number of entries in termcodes[] |
7 | 3985 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
3986 static int termcode_star(char_u *code, int len); |
180 | 3987 |
7 | 3988 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3989 clear_termcodes(void) |
7 | 3990 { |
3991 while (tc_len > 0) | |
3992 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
|
3993 VIM_CLEAR(termcodes); |
7 | 3994 tc_max_len = 0; |
3995 | |
3996 #ifdef HAVE_TGETENT | |
3997 BC = (char *)empty_option; | |
3998 UP = (char *)empty_option; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3999 PC = NUL; // set pad character to NUL |
7 | 4000 ospeed = 0; |
4001 #endif | |
4002 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4003 need_gather = TRUE; // need to fill termleader[] |
7 | 4004 } |
4005 | |
180 | 4006 #define ATC_FROM_TERM 55 |
4007 | |
7 | 4008 /* |
4009 * Add a new entry to the list of terminal codes. | |
4010 * The list is kept alphabetical for ":set termcap" | |
180 | 4011 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired. |
4012 * "flags" can also be ATC_FROM_TERM for got_code_from_term(). | |
7 | 4013 */ |
4014 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4015 add_termcode(char_u *name, char_u *string, int flags) |
7 | 4016 { |
4017 struct termcode *new_tc; | |
4018 int i, j; | |
4019 char_u *s; | |
179 | 4020 int len; |
7 | 4021 |
4022 if (string == NULL || *string == NUL) | |
4023 { | |
4024 del_termcode(name); | |
4025 return; | |
4026 } | |
4027 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
4028 #if defined(MSWIN) && !defined(FEAT_GUI) |
6047 | 4029 s = vim_strnsave(string, (int)STRLEN(string) + 1); |
4030 #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
|
4031 # 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
|
4032 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
|
4033 s = vim_strnsave(string, (int)STRLEN(string) + 1); |
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
|
4034 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
|
4035 # 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
|
4036 s = vim_strsave(string); |
6047 | 4037 #endif |
7 | 4038 if (s == NULL) |
4039 return; | |
4040 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4041 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. |
180 | 4042 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0) |
7 | 4043 { |
1623 | 4044 STRMOVE(s, s + 1); |
7 | 4045 s[0] = term_7to8bit(string); |
4046 } | |
6047 | 4047 |
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
|
4048 #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
|
4049 # 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
|
4050 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
|
4051 # endif |
6047 | 4052 { |
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
|
4053 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
|
4054 { |
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
|
4055 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
|
4056 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
|
4057 } |
6047 | 4058 } |
4059 #endif | |
4060 | |
179 | 4061 len = (int)STRLEN(s); |
7 | 4062 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4063 need_gather = TRUE; // need to fill termleader[] |
7 | 4064 |
4065 /* | |
4066 * need to make space for more entries | |
4067 */ | |
4068 if (tc_len == tc_max_len) | |
4069 { | |
4070 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
|
4071 new_tc = ALLOC_MULT(struct termcode, tc_max_len); |
7 | 4072 if (new_tc == NULL) |
4073 { | |
4074 tc_max_len -= 20; | |
4075 return; | |
4076 } | |
4077 for (i = 0; i < tc_len; ++i) | |
4078 new_tc[i] = termcodes[i]; | |
4079 vim_free(termcodes); | |
4080 termcodes = new_tc; | |
4081 } | |
4082 | |
4083 /* | |
4084 * Look for existing entry with the same name, it is replaced. | |
4085 * Look for an existing entry that is alphabetical higher, the new entry | |
4086 * is inserted in front of it. | |
4087 */ | |
4088 for (i = 0; i < tc_len; ++i) | |
4089 { | |
4090 if (termcodes[i].name[0] < name[0]) | |
4091 continue; | |
4092 if (termcodes[i].name[0] == name[0]) | |
4093 { | |
4094 if (termcodes[i].name[1] < name[1]) | |
4095 continue; | |
4096 /* | |
180 | 4097 * Exact match: May replace old code. |
7 | 4098 */ |
4099 if (termcodes[i].name[1] == name[1]) | |
4100 { | |
180 | 4101 if (flags == ATC_FROM_TERM && (j = termcode_star( |
4102 termcodes[i].code, termcodes[i].len)) > 0) | |
179 | 4103 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4104 // 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
|
4105 // invoked from got_code_from_term(). |
180 | 4106 if (len == termcodes[i].len - j |
179 | 4107 && STRNCMP(s, termcodes[i].code, len - 1) == 0 |
180 | 4108 && s[len - 1] |
4109 == termcodes[i].code[termcodes[i].len - 1]) | |
179 | 4110 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4111 // They are equal but for the ";*": don't add it. |
179 | 4112 vim_free(s); |
4113 return; | |
4114 } | |
4115 } | |
4116 else | |
4117 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4118 // Replace old code. |
179 | 4119 vim_free(termcodes[i].code); |
4120 --tc_len; | |
4121 break; | |
4122 } | |
7 | 4123 } |
4124 } | |
4125 /* | |
4126 * Found alphabetical larger entry, move rest to insert new entry | |
4127 */ | |
4128 for (j = tc_len; j > i; --j) | |
4129 termcodes[j] = termcodes[j - 1]; | |
4130 break; | |
4131 } | |
4132 | |
4133 termcodes[i].name[0] = name[0]; | |
4134 termcodes[i].name[1] = name[1]; | |
4135 termcodes[i].code = s; | |
179 | 4136 termcodes[i].len = len; |
180 | 4137 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4138 // 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
|
4139 // accept modifiers. |
180 | 4140 termcodes[i].modlen = 0; |
4141 j = termcode_star(s, len); | |
4142 if (j > 0) | |
4143 termcodes[i].modlen = len - 1 - j; | |
7 | 4144 ++tc_len; |
4145 } | |
4146 | |
180 | 4147 /* |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4148 * Check termcode "code[len]" for ending in ;*X or *X. |
180 | 4149 * 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
|
4150 * Return 0 if not found, 2 for ;*X and 1 for *X. |
180 | 4151 */ |
4152 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4153 termcode_star(char_u *code, int len) |
180 | 4154 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4155 // Shortest is <M-O>*X. With ; shortest is <CSI>1;*X |
180 | 4156 if (len >= 3 && code[len - 2] == '*') |
4157 { | |
4158 if (len >= 5 && code[len - 3] == ';') | |
4159 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
|
4160 else |
180 | 4161 return 1; |
4162 } | |
4163 return 0; | |
4164 } | |
4165 | |
7 | 4166 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4167 find_termcode(char_u *name) |
7 | 4168 { |
4169 int i; | |
4170 | |
4171 for (i = 0; i < tc_len; ++i) | |
4172 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4173 return termcodes[i].code; | |
4174 return NULL; | |
4175 } | |
4176 | |
4177 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4178 get_termcode(int i) |
7 | 4179 { |
4180 if (i >= tc_len) | |
4181 return NULL; | |
4182 return &termcodes[i].name[0]; | |
4183 } | |
4184 | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4185 /* |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4186 * 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
|
4187 */ |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4188 int |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4189 get_termcode_len(int idx) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4190 { |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4191 return termcodes[idx].len; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4192 } |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4193 |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4194 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4195 del_termcode(char_u *name) |
7 | 4196 { |
4197 int i; | |
4198 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4199 if (termcodes == NULL) // nothing there yet |
7 | 4200 return; |
4201 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4202 need_gather = TRUE; // need to fill termleader[] |
7 | 4203 |
4204 for (i = 0; i < tc_len; ++i) | |
4205 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4206 { | |
4207 del_termcode_idx(i); | |
4208 return; | |
4209 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4210 // not found. Give error message? |
7 | 4211 } |
4212 | |
4213 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4214 del_termcode_idx(int idx) |
7 | 4215 { |
4216 int i; | |
4217 | |
4218 vim_free(termcodes[idx].code); | |
4219 --tc_len; | |
4220 for (i = idx; i < tc_len; ++i) | |
4221 termcodes[i] = termcodes[i + 1]; | |
4222 } | |
4223 | |
4224 #ifdef FEAT_TERMRESPONSE | |
4225 /* | |
4226 * Called when detected that the terminal sends 8-bit codes. | |
4227 * Convert all 7-bit codes to their 8-bit equivalent. | |
4228 */ | |
4229 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4230 switch_to_8bit(void) |
7 | 4231 { |
4232 int i; | |
4233 int c; | |
4234 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4235 // Only need to do something when not already using 8-bit codes. |
7 | 4236 if (!term_is_8bit(T_NAME)) |
4237 { | |
4238 for (i = 0; i < tc_len; ++i) | |
4239 { | |
4240 c = term_7to8bit(termcodes[i].code); | |
4241 if (c != 0) | |
4242 { | |
1623 | 4243 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2); |
7 | 4244 termcodes[i].code[0] = c; |
4245 } | |
4246 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4247 need_gather = TRUE; // need to fill termleader[] |
7 | 4248 } |
4249 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
|
4250 LOG_TR(("Switching to 8 bit")); |
7 | 4251 } |
4252 #endif | |
4253 | |
4254 #ifdef CHECK_DOUBLE_CLICK | |
4255 static linenr_T orig_topline = 0; | |
4256 # ifdef FEAT_DIFF | |
4257 static int orig_topfill = 0; | |
4258 # endif | |
4259 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
4260 #if defined(CHECK_DOUBLE_CLICK) || defined(PROTO) |
7 | 4261 /* |
4262 * Checking for double clicks ourselves. | |
4263 * "orig_topline" is used to avoid detecting a double-click when the window | |
4264 * contents scrolled (e.g., when 'scrolloff' is non-zero). | |
4265 */ | |
4266 /* | |
4267 * Set orig_topline. Used when jumping to another window, so that a double | |
4268 * click still works. | |
4269 */ | |
4270 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4271 set_mouse_topline(win_T *wp) |
7 | 4272 { |
4273 orig_topline = wp->w_topline; | |
4274 # ifdef FEAT_DIFF | |
4275 orig_topfill = wp->w_topfill; | |
4276 # endif | |
4277 } | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4278 |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4279 /* |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4280 * 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
|
4281 * topline and topfill. |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4282 */ |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4283 int |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4284 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
|
4285 { |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4286 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
|
4287 #ifdef FEAT_DIFF |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4288 && orig_topfill == wp->w_topfill |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4289 #endif |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4290 ; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
4291 } |
7 | 4292 #endif |
4293 | |
4294 /* | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4295 * Put "string[new_slen]" in typebuf, or in "buf[bufsize]" if "buf" is not NULL. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4296 * Remove "slen" bytes. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4297 * Returns FAIL for error. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4298 */ |
20727
5ffe112b1afd
patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents:
20705
diff
changeset
|
4299 int |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4300 put_string_in_typebuf( |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4301 int offset, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4302 int slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4303 char_u *string, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4304 int new_slen, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4305 char_u *buf, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4306 int bufsize, |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4307 int *buflen) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4308 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4309 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
|
4310 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4311 string[new_slen] = NUL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4312 if (buf == NULL) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4313 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4314 if (extra < 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4315 // 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
|
4316 del_typebuf(-extra, offset); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4317 else if (extra > 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4318 // insert the extra space we need |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4319 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4320 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4321 // 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
|
4322 // typebuf.tb_buf[]! |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4323 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
|
4324 (size_t)new_slen); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4325 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4326 else |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4327 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4328 if (extra < 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4329 // remove matched characters |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4330 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
|
4331 (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
|
4332 else if (extra > 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4333 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4334 // 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
|
4335 // space return -1. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4336 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
|
4337 return FAIL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4338 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
|
4339 (size_t)(*buflen - offset)); |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4340 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4341 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
|
4342 *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
|
4343 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4344 return OK; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4345 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4346 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4347 /* |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4348 * 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
|
4349 */ |
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
|
4350 int |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4351 decode_modifiers(int n) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4352 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4353 int code = n - 1; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4354 int modifiers = 0; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4355 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4356 if (code & 1) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4357 modifiers |= MOD_MASK_SHIFT; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4358 if (code & 2) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4359 modifiers |= MOD_MASK_ALT; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4360 if (code & 4) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4361 modifiers |= MOD_MASK_CTRL; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4362 if (code & 8) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4363 modifiers |= MOD_MASK_META; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4364 return modifiers; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4365 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4366 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4367 static int |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4368 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
|
4369 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4370 int new_slen = 0; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4371 |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4372 if (modifiers != 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4373 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4374 // Some keys have the modifier included. Need to handle that here to |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4375 // make mappings work. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4376 *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
|
4377 if (modifiers != 0) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4378 { |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4379 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
|
4380 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
|
4381 string[new_slen++] = modifiers; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4382 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4383 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4384 return new_slen; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4385 } |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
4386 |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4387 #ifdef FEAT_TERMRESPONSE |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4388 /* |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4389 * Handle a cursor position report. |
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4390 */ |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4391 static void |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4392 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
|
4393 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4394 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
|
4395 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4396 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
|
4397 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4398 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
|
4399 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
|
4400 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
|
4401 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
|
4402 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
|
4403 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
|
4404 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
|
4405 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
|
4406 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4407 // 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
|
4408 // 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
|
4409 // messages. |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
4410 set_option_value((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
|
4411 # 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
|
4412 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4413 int r = redraw_asap(CLEAR); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4414 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4415 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
|
4416 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4417 # else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4418 redraw_asap(CLEAR); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4419 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4420 # 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
|
4421 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
|
4422 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4423 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4424 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4425 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
|
4426 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4427 LOG_TR(("Received compatibility test result: %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
|
4428 // Third row: xterm compatibility test. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4429 // If the cursor is not on the first column 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
|
4430 // terminal is not xterm compatible. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4431 if (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
|
4432 xcc_test_failed = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4433 xcc_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
|
4434 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4435 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4436 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4437 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4438 * Handle a response to T_CRV. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4439 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4440 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
|
4441 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
|
4442 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4443 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
|
4444 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4445 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
|
4446 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
|
4447 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
|
4448 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4449 // 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
|
4450 // 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
|
4451 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
|
4452 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
|
4453 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4454 // 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
|
4455 // 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
|
4456 // 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
|
4457 // 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
|
4458 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
|
4459 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
|
4460 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4461 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
|
4462 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4463 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
|
4464 int is_iterm2 = FALSE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4465 int is_mintty = FALSE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4466 int is_screen = FALSE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4467 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4468 // 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
|
4469 // (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
|
4470 if (arg[0] == 77) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4471 is_mintty = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4472 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4473 // if xterm version >= 141 try to get termcap codes |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4474 if (version >= 141) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4475 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4476 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
|
4477 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
|
4478 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
|
4479 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
|
4480 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4481 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4482 // libvterm sends 0;100;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4483 if (version == 100 && arg[0] == 0 && 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
|
4484 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4485 // 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
|
4486 // 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
|
4487 // 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
|
4488 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
|
4489 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
|
4490 // Libvterm can handle SGR mouse reporting. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4491 if (!option_was_set((char_u *)"ttym")) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4492 set_option_value((char_u *)"ttym", 0L, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4493 (char_u *)"sgr", 0); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4494 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4495 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4496 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
|
4497 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4498 // 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
|
4499 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
|
4500 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4501 is_not_xterm = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4502 is_mac_terminal = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4503 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4504 // 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
|
4505 else if (arg[0] == 0 && 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
|
4506 is_iterm2 = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4507 // 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
|
4508 else if (arg[0] == 0 && arg[2] == -1) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4509 is_not_xterm = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4510 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4511 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4512 // 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
|
4513 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
|
4514 is_screen = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4515 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4516 // Only set 'ttymouse' automatically if it was 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
|
4517 // by the user already. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4518 if (!option_was_set((char_u *)"ttym")) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4519 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4520 // Xterm version 277 supports SGR. Also support |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4521 // Terminal.app, iTerm2, mintty, and screen 4.7+. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4522 if ((!is_screen && version >= 277) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4523 || is_iterm2 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4524 || is_mac_terminal |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4525 || is_mintty |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4526 || (is_screen && arg[1] >= 40700)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4527 set_option_value((char_u *)"ttym", 0L, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4528 (char_u *)"sgr", 0); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4529 // For xterm version >= 95 mouse dragging works. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4530 else 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
|
4531 set_option_value((char_u *)"ttym", 0L, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4532 (char_u *)"xterm2", 0); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4533 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4534 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4535 // 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
|
4536 // "xterm-256color" but are not fully xterm compatible. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4537 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4538 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4539 // 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
|
4540 // 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
|
4541 // 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
|
4542 // 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
|
4543 if (arg[1] >= 2500) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4544 is_not_xterm = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4545 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4546 // PuTTY sends 0;136;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4547 // vandyke SecureCRT sends 1;136;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4548 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
|
4549 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4550 is_not_xterm = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4551 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4552 // PuTTY supports sgr-like mouse reporting, but |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4553 // only set 'ttymouse' if it was not set by the |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4554 // user already. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4555 if (arg[0] == 0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4556 && !option_was_set((char_u *)"ttym")) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4557 set_option_value((char_u *)"ttym", 0L, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4558 (char_u *)"sgr", 0); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4559 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4560 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4561 // Konsole sends 0;115;0 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4562 else if (version == 115 && arg[0] == 0 && 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
|
4563 is_not_xterm = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4564 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4565 // GNU screen sends 83;30600;0, 83;40500;0, etc. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4566 // 30600/40500 is a version number of GNU screen. DA2 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4567 // support is added on 3.6. DCS string has a special |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4568 // meaning to GNU screen, but xterm compatibility |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4569 // checking does not detect GNU screen. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4570 if (version >= 30600 && 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
|
4571 xcc_test_failed = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4572 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4573 // Xterm first responded to this request at patch level |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4574 // 95, so assume anything below 95 is not xterm. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4575 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
|
4576 is_not_xterm = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4577 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4578 // With the real Xterm setting the underline RGB color |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4579 // clears the background color, disable "t_8u". |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4580 if (!is_not_xterm && *T_8U != NUL) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4581 T_8U = empty_option; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4582 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4583 // 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
|
4584 // 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
|
4585 // 279 (otherwise it returns 0x18). |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4586 // Only when the xcc_status was set, the test finished, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4587 // and xcc_test_failed is FALSE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4588 // 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
|
4589 // 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
|
4590 if (rcs_status.tr_progress == STATUS_GET |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4591 && xcc_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
|
4592 && !xcc_test_failed |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4593 && version >= 279 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4594 && *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
|
4595 && *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
|
4596 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4597 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
|
4598 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
|
4599 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
|
4600 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
|
4601 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4602 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4603 // 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
|
4604 // 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
|
4605 // 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
|
4606 // Only when the xcc_status was set, the test finished, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4607 // and xcc_test_failed is FALSE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4608 if (rbm_status.tr_progress == STATUS_GET |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4609 && xcc_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
|
4610 && !xcc_test_failed |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4611 && *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
|
4612 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4613 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
|
4614 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
|
4615 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
|
4616 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
|
4617 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4618 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4619 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
|
4620 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
|
4621 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4622 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4623 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4624 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4625 * 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
|
4626 * {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
|
4627 * {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
|
4628 * 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
|
4629 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4630 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
|
4631 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
|
4632 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
|
4633 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
|
4634 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
|
4635 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
|
4636 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
|
4637 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
|
4638 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
|
4639 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4640 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
|
4641 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
|
4642 int 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
|
4643 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
|
4644 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4645 seenModifyOtherKeys = TRUE; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4646 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
|
4647 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
|
4648 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4649 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
|
4650 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4651 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
|
4652 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4653 // Some keys already have Shift included, pass them as |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4654 // normal keys. Not when Ctrl is also used, because <C-H> |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4655 // and <C-S-H> are different. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4656 if (modifiers == MOD_MASK_SHIFT |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4657 && ((key >= '@' && key <= 'Z') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4658 || key == '^' || key == '_' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4659 || (key >= '{' && key <= '~'))) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4660 modifiers = 0; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4661 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4662 // When used with Ctrl we always make a letter upper case, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4663 // so that mapping <C-H> and <C-h> are the same. Typing |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4664 // <C-S-H> also uses "H" but modifier is different. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4665 if ((modifiers & MOD_MASK_CTRL) && ASCII_ISALPHA(key)) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4666 key = TOUPPER_ASC(key); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4667 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4668 // insert modifiers with KS_MODIFIER |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4669 new_slen = modifiers2keycode(modifiers, &key, string); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4670 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4671 if (has_mbyte) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4672 new_slen += (*mb_char2bytes)(key, 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
|
4673 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4674 string[new_slen++] = key; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4675 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4676 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
|
4677 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
|
4678 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
|
4679 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
|
4680 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4681 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4682 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4683 * Handle a CSI escape sequence. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4684 * - Xterm version string: {lead}>{x};{vers};{y}c |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4685 * Also eat other possible responses to t_RV, rxvt returns |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4686 * "{lead}?1;2c". |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4687 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4688 * - 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
|
4689 * 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
|
4690 * 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
|
4691 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4692 * - 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
|
4693 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4694 * - 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
|
4695 * {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
|
4696 * {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
|
4697 * 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
|
4698 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4699 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
|
4700 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
|
4701 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
|
4702 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
|
4703 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
|
4704 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
|
4705 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
|
4706 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
|
4707 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
|
4708 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
|
4709 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
|
4710 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4711 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
|
4712 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
|
4713 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
|
4714 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
|
4715 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
|
4716 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
|
4717 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4718 // 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
|
4719 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
|
4720 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
|
4721 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4722 // 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
|
4723 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
|
4724 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4725 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
|
4726 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
|
4727 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
|
4728 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
|
4729 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
|
4730 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4731 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
|
4732 for (;;) |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4733 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4734 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
|
4735 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
|
4736 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
|
4737 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4738 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
|
4739 ++ap; |
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 ++argc; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4742 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4743 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
|
4744 ++ap; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4745 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4746 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4747 } |
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 // 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
|
4750 // 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
|
4751 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
|
4752 && !(*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
|
4753 && !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
|
4754 ++ap; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4755 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
|
4756 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
|
4757 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
|
4758 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
|
4759 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4760 // 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
|
4761 // 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
|
4762 // 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
|
4763 // <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
|
4764 // 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
|
4765 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
|
4766 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4767 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
|
4768 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4769 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
|
4770 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
|
4771 *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
|
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 // 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
|
4775 // 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
|
4776 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
|
4777 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4778 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
|
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 *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
|
4781 # 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
|
4782 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
|
4783 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4784 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
|
4785 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
|
4786 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
|
4787 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
|
4788 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4789 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4790 // 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
|
4791 // {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
|
4792 // {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
|
4793 // |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4794 // {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
|
4795 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
|
4796 && first == '?' |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4797 && 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
|
4798 && 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
|
4799 && 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
|
4800 && 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
|
4801 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4802 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
|
4803 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
|
4804 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
|
4805 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
|
4806 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
|
4807 *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
|
4808 # 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
|
4809 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
|
4810 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4811 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4812 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4813 // 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
|
4814 // {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
|
4815 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
|
4816 && 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
|
4817 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4818 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
|
4819 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
|
4820 // 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
|
4821 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
|
4822 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
|
4823 *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
|
4824 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4825 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
|
4826 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
|
4827 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4828 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4829 // 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
|
4830 // {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
|
4831 // {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
|
4832 else if ((arg[0] == 27 && argc == 3 && trail == '~') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4833 || (argc == 2 && 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
|
4834 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4835 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
|
4836 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
|
4837 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4838 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4839 // 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
|
4840 // 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
|
4841 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
|
4842 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4843 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4844 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4845 * 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
|
4846 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4847 * {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
|
4848 * 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
|
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 * {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
|
4851 * {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
|
4852 * {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
|
4853 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4854 * 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
|
4855 * 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
|
4856 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4857 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
|
4858 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
|
4859 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4860 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
|
4861 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4862 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
|
4863 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
|
4864 || (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
|
4865 || 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
|
4866 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
|
4867 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4868 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
|
4869 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
|
4870 : (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
|
4871 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4872 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
|
4873 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
|
4874 && 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
|
4875 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4876 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
|
4877 && (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
|
4878 || (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
|
4879 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4880 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
|
4881 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
|
4882 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
|
4883 # 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
|
4884 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
|
4885 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4886 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
|
4887 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
|
4888 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
|
4889 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4890 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
|
4891 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4892 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
|
4893 *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
|
4894 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4895 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
|
4896 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
|
4897 # 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
|
4898 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
|
4899 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
|
4900 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
|
4901 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4902 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
|
4903 && 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
|
4904 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4905 // value differs, apply it |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4906 set_option_value((char_u *)"bg", 0L, |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4907 (char_u *)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
|
4908 reset_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
|
4909 redraw_asap(CLEAR); |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4910 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4911 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4912 # 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
|
4913 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4914 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4915 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
|
4916 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
|
4917 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
|
4918 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
|
4919 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
|
4920 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4921 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4922 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4923 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4924 // 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
|
4925 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
|
4926 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
|
4927 *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
|
4928 # 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
|
4929 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
|
4930 : 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
|
4931 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4932 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4933 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4934 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
|
4935 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4936 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
|
4937 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
|
4938 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4939 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
|
4940 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4941 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4942 /* |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4943 * 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
|
4944 * {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
|
4945 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4946 * {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
|
4947 * {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
|
4948 * {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
|
4949 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4950 * 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
|
4951 * {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
|
4952 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4953 * {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
|
4954 * {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
|
4955 * |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4956 * 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
|
4957 */ |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4958 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
|
4959 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
|
4960 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4961 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
|
4962 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4963 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
|
4964 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
|
4965 i = len; // need more chars |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4966 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r') |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4967 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
|
4968 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
|
4969 // 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
|
4970 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
|
4971 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4972 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
|
4973 || 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
|
4974 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4975 if (i - 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
|
4976 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
|
4977 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
|
4978 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
|
4979 *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
|
4980 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4981 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4982 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4983 else |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4984 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4985 // 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
|
4986 // 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
|
4987 // characters. |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4988 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
|
4989 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4990 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
|
4991 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4992 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
|
4993 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4994 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
|
4995 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4996 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
|
4997 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
4998 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
|
4999 || (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
|
5000 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5001 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
|
5002 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5003 // 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
|
5004 // 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
|
5005 // 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
|
5006 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
|
5007 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
|
5008 // 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
|
5009 // 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
|
5010 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
|
5011 (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
|
5012 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
|
5013 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
|
5014 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5015 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
|
5016 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
|
5017 *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
|
5018 # 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
|
5019 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
|
5020 # endif |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5021 break; |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5022 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5023 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5024 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5025 |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5026 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
|
5027 { |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5028 // 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
|
5029 // 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
|
5030 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
|
5031 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
|
5032 } |
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5033 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
|
5034 } |
20776
7728e309e013
patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
20774
diff
changeset
|
5035 #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
|
5036 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5037 /* |
7 | 5038 * Check if typebuf.tb_buf[] contains a terminal key code. |
5039 * 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
|
5040 * + "max_offset"]. |
7 | 5041 * Return 0 for no match, -1 for partial match, > 0 for full match. |
2672 | 5042 * Return KEYLEN_REMOVED when a key code was deleted. |
7 | 5043 * With a match, the match is removed, the replacement code is inserted in |
5044 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is | |
5045 * returned. | |
3328 | 5046 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[]. |
5047 * "buflen" is then the length of the string in buf[] and is updated for | |
5048 * inserts and deletes. | |
7 | 5049 */ |
5050 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5051 check_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5052 int max_offset, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5053 char_u *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5054 int bufsize, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5055 int *buflen) |
7 | 5056 { |
5057 char_u *tp; | |
5058 char_u *p; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5059 int slen = 0; // init for GCC |
180 | 5060 int modslen; |
7 | 5061 int len; |
2672 | 5062 int retval = 0; |
7 | 5063 int offset; |
5064 char_u key_name[2]; | |
180 | 5065 int modifiers; |
11565
91519a14ec1f
patch 8.0.0665: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
11563
diff
changeset
|
5066 char_u *modifiers_start = NULL; |
180 | 5067 int key; |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5068 int new_slen; // Length of what will replace the termcode |
7 | 5069 char_u string[MAX_KEY_CODE_LEN + 1]; |
5070 int i, j; | |
5071 int idx = 0; | |
5072 int cpo_koffset; | |
5073 | |
5074 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL); | |
5075 | |
5076 /* | |
5077 * Speed up the checks for terminal codes by gathering all first bytes | |
5078 * used in termleader[]. Often this is just a single <Esc>. | |
5079 */ | |
5080 if (need_gather) | |
5081 gather_termleader(); | |
5082 | |
5083 /* | |
5084 * Check at several positions in typebuf.tb_buf[], to catch something like | |
5085 * "x<Up>" that can be mapped. Stop at max_offset, because characters | |
5086 * after that cannot be used for mapping, and with @r commands | |
4223 | 5087 * typebuf.tb_buf[] can become very long. |
7 | 5088 * This is used often, KEEP IT FAST! |
5089 */ | |
5090 for (offset = 0; offset < max_offset; ++offset) | |
5091 { | |
5092 if (buf == NULL) | |
5093 { | |
5094 if (offset >= typebuf.tb_len) | |
5095 break; | |
5096 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
|
5097 len = typebuf.tb_len - offset; // length of the input |
7 | 5098 } |
5099 else | |
5100 { | |
3328 | 5101 if (offset >= *buflen) |
7 | 5102 break; |
5103 tp = buf + offset; | |
3328 | 5104 len = *buflen - offset; |
7 | 5105 } |
5106 | |
5107 /* | |
5108 * Don't check characters after K_SPECIAL, those are already | |
5109 * translated terminal chars (avoid translating ~@^Hx). | |
5110 */ | |
5111 if (*tp == K_SPECIAL) | |
5112 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5113 offset += 2; // there are always 2 extra characters |
7 | 5114 continue; |
5115 } | |
5116 | |
5117 /* | |
5118 * Skip this position if the character does not appear as the first | |
5119 * character in term_strings. This speeds up a lot, since most | |
5120 * termcodes start with the same character (ESC or CSI). | |
5121 */ | |
5122 i = *tp; | |
5123 for (p = termleader; *p && *p != i; ++p) | |
5124 ; | |
5125 if (*p == NUL) | |
5126 continue; | |
5127 | |
5128 /* | |
5129 * Skip this position if p_ek is not set and tp[0] is an ESC and we | |
5130 * are in Insert mode. | |
5131 */ | |
5132 if (*tp == ESC && !p_ek && (State & INSERT)) | |
5133 continue; | |
5134 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5135 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
|
5136 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
|
5137 modifiers = 0; // no modifiers yet |
7 | 5138 |
5139 #ifdef FEAT_GUI | |
5140 if (gui.in_use) | |
5141 { | |
5142 /* | |
5143 * GUI special key codes are all of the form [CSI xx]. | |
5144 */ | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5145 if (*tp == CSI) // Special key from GUI |
7 | 5146 { |
5147 if (len < 3) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5148 return -1; // Shouldn't happen |
7 | 5149 slen = 3; |
5150 key_name[0] = tp[1]; | |
5151 key_name[1] = tp[2]; | |
5152 } | |
5153 } | |
5154 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5155 #endif // FEAT_GUI |
7 | 5156 { |
5157 for (idx = 0; idx < tc_len; ++idx) | |
5158 { | |
5159 /* | |
5160 * Ignore the entry if we are not at the start of | |
5161 * typebuf.tb_buf[] | |
5162 * and there are not enough characters to make a match. | |
5163 * But only when the 'K' flag is in 'cpoptions'. | |
5164 */ | |
5165 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
|
5166 modifiers_start = NULL; |
7 | 5167 if (cpo_koffset && offset && len < slen) |
5168 continue; | |
5169 if (STRNCMP(termcodes[idx].code, tp, | |
5170 (size_t)(slen > len ? len : slen)) == 0) | |
5171 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5172 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
|
5173 return -1; // need to get more chars |
7 | 5174 |
5175 /* | |
5176 * When found a keypad key, check if there is another key | |
5177 * that matches and use that one. This makes <Home> to be | |
5178 * found instead of <kHome> when they produce the same | |
5179 * key code. | |
5180 */ | |
5181 if (termcodes[idx].name[0] == 'K' | |
5182 && VIM_ISDIGIT(termcodes[idx].name[1])) | |
5183 { | |
5184 for (j = idx + 1; j < tc_len; ++j) | |
5185 if (termcodes[j].len == slen && | |
5186 STRNCMP(termcodes[idx].code, | |
5187 termcodes[j].code, slen) == 0) | |
5188 { | |
5189 idx = j; | |
5190 break; | |
5191 } | |
5192 } | |
5193 | |
5194 key_name[0] = termcodes[idx].name[0]; | |
5195 key_name[1] = termcodes[idx].name[1]; | |
5196 break; | |
5197 } | |
179 | 5198 |
5199 /* | |
5200 * Check for code with modifier, like xterm uses: | |
180 | 5201 * <Esc>[123;*X (modslen == slen - 3) |
5202 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2). | |
5203 * When there is a modifier the * matches a number. | |
5204 * When there is no modifier the ;* or * is omitted. | |
179 | 5205 */ |
5206 if (termcodes[idx].modlen > 0) | |
5207 { | |
180 | 5208 modslen = termcodes[idx].modlen; |
5209 if (cpo_koffset && offset && len < modslen) | |
179 | 5210 continue; |
5211 if (STRNCMP(termcodes[idx].code, tp, | |
180 | 5212 (size_t)(modslen > len ? len : modslen)) == 0) |
179 | 5213 { |
5214 int n; | |
180 | 5215 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5216 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
|
5217 return -1; // need to get more chars |
179 | 5218 |
180 | 5219 if (tp[modslen] == 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
|
5220 slen = modslen + 1; // no modifiers |
180 | 5221 else if (tp[modslen] != ';' && modslen == slen - 3) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5222 continue; // no match |
179 | 5223 else |
5224 { | |
16485
b870146e09e1
patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
5225 // 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
|
5226 // 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
|
5227 // 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
|
5228 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
|
5229 || tp[j] == '-' || tp[j] == ';'); ++j) |
179 | 5230 ; |
5231 ++j; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5232 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
|
5233 return -1; // need to get more chars |
180 | 5234 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
|
5235 continue; // no match |
179 | 5236 |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5237 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
|
5238 |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5239 // Match! Convert modifier bits. |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5240 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
|
5241 modifiers |= decode_modifiers(n); |
179 | 5242 |
5243 slen = j; | |
5244 } | |
5245 key_name[0] = termcodes[idx].name[0]; | |
5246 key_name[1] = termcodes[idx].name[1]; | |
5247 break; | |
5248 } | |
5249 } | |
7 | 5250 } |
5251 } | |
5252 | |
5253 #ifdef FEAT_TERMRESPONSE | |
3166 | 5254 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
|
5255 // 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
|
5256 // 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
|
5257 // another key code or terminal response. |
6102 | 5258 # ifdef FEAT_MOUSE_DEC |
5259 || key_name[0] == KS_DEC_MOUSE | |
5260 # endif | |
5261 # ifdef FEAT_MOUSE_PTERM | |
5262 || key_name[0] == KS_PTERM_MOUSE | |
4223 | 5263 # endif |
6102 | 5264 ) |
7 | 5265 { |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5266 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
|
5267 |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5268 /* |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5269 * 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
|
5270 * "<Esc>[" or CSI followed by [0-9>?] |
4215 | 5271 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5272 * - Xterm version string: {lead}>{x};{vers};{y}c |
4215 | 5273 * 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
|
5274 * "{lead}?1;2c". |
4215 | 5275 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5276 * - Cursor position report: {lead}{row};{col}R |
6102 | 5277 * The final byte must be 'R'. It is used for checking the |
4215 | 5278 * 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
|
5279 * |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5280 * - 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
|
5281 * |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5282 * - 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
|
5283 * {lead}27;{modifier};{key}~ |
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5284 * {lead}{key};{modifier}u |
4215 | 5285 */ |
18257
f5a6c8261f64
patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents:
18150
diff
changeset
|
5286 if (((tp[0] == ESC && len >= 3 && tp[1] == '[') |
4395 | 5287 || (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
|
5288 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?')) |
7 | 5289 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5290 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
|
5291 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
|
5292 if (resp != 0) |
7 | 5293 { |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5294 # 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
|
5295 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
|
5296 LOG_TR(("Not enough characters for CSI sequence")); |
7 | 5297 # 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
|
5298 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
|
5299 } |
6901 | 5300 } |
5301 | |
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 // 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
|
5303 // 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
|
5304 else if ((*T_RBG != NUL || *T_RFG != NUL) |
6901 | 5305 && ((tp[0] == ESC && len >= 2 && tp[1] == ']') |
5306 || tp[0] == OSC)) | |
5307 { | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5308 if (handle_osc(tp, argp, len, key_name, &slen) == FAIL) |
6901 | 5309 return -1; |
7 | 5310 } |
5311 | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5312 // 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
|
5313 // starting with <Esc>P or DCS |
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
|
5314 else if ((check_for_codes || rcs_status.tr_progress == STATUS_SENT) |
6901 | 5315 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P') |
7 | 5316 || tp[0] == DCS)) |
5317 { | |
20774
10535993e913
patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5318 if (handle_dcs(tp, argp, len, key_name, &slen) == FAIL) |
6901 | 5319 return -1; |
7 | 5320 } |
5321 } | |
5322 #endif | |
5323 | |
5324 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
|
5325 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
|
5326 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5327 // We only get here when we have a complete termcode match |
7 | 5328 |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5329 #ifdef FEAT_GUI |
7 | 5330 /* |
5331 * Only in the GUI: Fetch the pointer coordinates of the scroll event | |
5332 * so that we know which window to scroll later. | |
5333 */ | |
5334 if (gui.in_use | |
5335 && key_name[0] == (int)KS_EXTRA | |
5336 && (key_name[1] == (int)KE_X1MOUSE | |
5337 || key_name[1] == (int)KE_X2MOUSE | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
5338 || key_name[1] == (int)KE_MOUSELEFT |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
5339 || key_name[1] == (int)KE_MOUSERIGHT |
7 | 5340 || key_name[1] == (int)KE_MOUSEDOWN |
5341 || key_name[1] == (int)KE_MOUSEUP)) | |
5342 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5343 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5344 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
|
5345 |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5346 if (num_bytes == -1) // not enough coordinates |
7 | 5347 return -1; |
5348 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; | |
5349 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1; | |
5350 slen += num_bytes; | |
5351 } | |
5352 else | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5353 #endif |
7 | 5354 /* |
5355 * If it is a mouse click, get the coordinates. | |
5356 */ | |
3746 | 5357 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
|
5358 #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
|
5359 || 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
|
5360 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5361 #ifdef FEAT_MOUSE_JSB |
3746 | 5362 || 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
|
5363 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5364 #ifdef FEAT_MOUSE_NET |
3746 | 5365 || 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
|
5366 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5367 #ifdef FEAT_MOUSE_DEC |
3746 | 5368 || 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
|
5369 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5370 #ifdef FEAT_MOUSE_PTERM |
3746 | 5371 || 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
|
5372 #endif |
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18352
diff
changeset
|
5373 #ifdef FEAT_MOUSE_URXVT |
3746 | 5374 || 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
|
5375 #endif |
3746 | 5376 || key_name[0] == KS_SGR_MOUSE |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
5377 || key_name[0] == KS_SGR_MOUSE_RELEASE) |
7 | 5378 { |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5379 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
|
5380 &modifiers) == -1) |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5381 return -1; |
7 | 5382 } |
5383 | |
5384 #ifdef FEAT_GUI | |
5385 /* | |
5386 * If using the GUI, then we get menu and scrollbar events. | |
5387 * | |
5388 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by | |
5389 * four bytes which are to be taken as a pointer to the vimmenu_T | |
5390 * structure. | |
5391 * | |
1221 | 5392 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr" |
685 | 5393 * is one byte with the tab index. |
5394 * | |
7 | 5395 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed |
5396 * by one byte representing the scrollbar number, and then four bytes | |
5397 * representing a long_u which is the new value of the scrollbar. | |
5398 * | |
5399 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR, | |
5400 * KE_FILLER followed by four bytes representing a long_u which is the | |
5401 * new value of the scrollbar. | |
5402 */ | |
5403 # ifdef FEAT_MENU | |
5404 else if (key_name[0] == (int)KS_MENU) | |
5405 { | |
5406 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5407 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
|
5408 |
7 | 5409 if (num_bytes == -1) |
5410 return -1; | |
5411 current_menu = (vimmenu_T *)val; | |
5412 slen += num_bytes; | |
936 | 5413 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5414 // 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
|
5415 // for that. |
936 | 5416 if (check_menu_pointer(root_menu, current_menu) == FAIL) |
5417 { | |
5418 key_name[0] = KS_EXTRA; | |
5419 key_name[1] = (int)KE_IGNORE; | |
5420 } | |
7 | 5421 } |
5422 # endif | |
685 | 5423 # ifdef FEAT_GUI_TABLINE |
5424 else if (key_name[0] == (int)KS_TABLINE) | |
5425 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5426 // 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
|
5427 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5428 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
|
5429 |
685 | 5430 if (num_bytes == -1) |
5431 return -1; | |
5432 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
|
5433 if (current_tab == 255) // -1 in a byte gives 255 |
1394 | 5434 current_tab = -1; |
685 | 5435 slen += num_bytes; |
5436 } | |
688 | 5437 else if (key_name[0] == (int)KS_TABMENU) |
5438 { | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5439 // 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
|
5440 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5441 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
|
5442 |
688 | 5443 if (num_bytes == -1) |
5444 return -1; | |
5445 current_tab = (int)bytes[0]; | |
5446 current_tabmenu = (int)bytes[1]; | |
5447 slen += num_bytes; | |
5448 } | |
685 | 5449 # endif |
7 | 5450 # ifndef USE_ON_FLY_SCROLL |
5451 else if (key_name[0] == (int)KS_VER_SCROLLBAR) | |
5452 { | |
5453 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5454 char_u bytes[6]; |
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5455 int num_bytes; |
7 | 5456 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5457 // Get the last scrollbar event in the queue of the same type |
7 | 5458 j = 0; |
5459 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR | |
5460 && tp[j + 2] != NUL; ++i) | |
5461 { | |
5462 j += 3; | |
5463 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); | |
5464 if (num_bytes == -1) | |
5465 break; | |
5466 if (i == 0) | |
5467 current_scrollbar = (int)bytes[0]; | |
5468 else if (current_scrollbar != (int)bytes[0]) | |
5469 break; | |
5470 j += num_bytes; | |
5471 num_bytes = get_long_from_buf(tp + j, &val); | |
5472 if (num_bytes == -1) | |
5473 break; | |
5474 scrollbar_value = val; | |
5475 j += num_bytes; | |
5476 slen = j; | |
5477 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5478 if (i == 0) // not enough characters to make one |
7 | 5479 return -1; |
5480 } | |
5481 else if (key_name[0] == (int)KS_HOR_SCROLLBAR) | |
5482 { | |
5483 long_u val; | |
18150
0ec6521e9d80
patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5484 int num_bytes; |
7 | 5485 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5486 // Get the last horiz. scrollbar event in the queue |
7 | 5487 j = 0; |
5488 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR | |
5489 && tp[j + 2] != NUL; ++i) | |
5490 { | |
5491 j += 3; | |
5492 num_bytes = get_long_from_buf(tp + j, &val); | |
5493 if (num_bytes == -1) | |
5494 break; | |
5495 scrollbar_value = val; | |
5496 j += num_bytes; | |
5497 slen = j; | |
5498 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5499 if (i == 0) // not enough characters to make one |
7 | 5500 return -1; |
5501 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5502 # endif // !USE_ON_FLY_SCROLL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5503 #endif // FEAT_GUI |
7 | 5504 |
180 | 5505 /* |
5506 * Change <xHome> to <Home>, <xUp> to <Up>, etc. | |
5507 */ | |
5508 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1])); | |
5509 | |
5510 /* | |
5511 * Add any modifier codes to our string. | |
5512 */ | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5513 new_slen = modifiers2keycode(modifiers, &key, string); |
180 | 5514 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5515 // Finally, add the special key code to our string |
180 | 5516 key_name[0] = KEY2TERMCAP0(key); |
5517 key_name[1] = KEY2TERMCAP1(key); | |
7 | 5518 if (key_name[0] == KS_KEY) |
1787 | 5519 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5520 // from ":set <M-b>=xx" |
1787 | 5521 if (has_mbyte) |
5522 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen); | |
5523 else | |
5524 string[new_slen++] = key_name[1]; | |
5525 } | |
2672 | 5526 else if (new_slen == 0 && key_name[0] == KS_EXTRA |
5527 && key_name[1] == KE_IGNORE) | |
5528 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5529 // 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
|
5530 // to indicate what happened. |
2672 | 5531 retval = KEYLEN_REMOVED; |
5532 } | |
7 | 5533 else |
5534 { | |
5535 string[new_slen++] = K_SPECIAL; | |
5536 string[new_slen++] = key_name[0]; | |
5537 string[new_slen++] = key_name[1]; | |
5538 } | |
18279
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5539 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
|
5540 buf, bufsize, buflen) == FAIL) |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5541 return -1; |
e8d1f3209dcd
patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents:
18257
diff
changeset
|
5542 return retval == 0 ? (len + new_slen - slen + offset) : retval; |
7 | 5543 } |
5544 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5545 #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
|
5546 LOG_TR(("normal character")); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5547 #endif |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5548 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5549 return 0; // no match found |
7 | 5550 } |
5551 | |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
5552 #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
|
5553 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5554 * 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
|
5555 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5556 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
5557 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
|
5558 { |
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
|
5559 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
|
5560 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5561 *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
|
5562 *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
|
5563 *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
|
5564 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5565 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5566 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5567 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5568 * 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
|
5569 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5570 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
5571 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
|
5572 { |
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
|
5573 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
|
5574 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5575 *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
|
5576 *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
|
5577 *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
|
5578 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5579 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5580 #endif |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5581 |
7 | 5582 /* |
5583 * Replace any terminal code strings in from[] with the equivalent internal | |
5584 * vim representation. This is used for the "from" and "to" part of a | |
5585 * mapping, and the "to" part of a menu command. | |
5586 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains | |
5587 * '<'. | |
5588 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER. | |
5589 * | |
5590 * The replacement is done in result[] and finally copied into allocated | |
5591 * memory. If this all works well *bufp is set to the allocated memory and a | |
5592 * pointer to it is returned. If something fails *bufp is set to NULL and from | |
5593 * is returned. | |
5594 * | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5595 * 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
|
5596 * 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
|
5597 * 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
|
5598 * 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
|
5599 * |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5600 * Flags: |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5601 * 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
|
5602 * 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
|
5603 * 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
|
5604 * 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
|
5605 * |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5606 * "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
|
5607 * it is NULL. |
7 | 5608 */ |
859 | 5609 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5610 replace_termcodes( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5611 char_u *from, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5612 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
|
5613 int flags, |
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5614 int *did_simplify) |
7 | 5615 { |
5616 int i; | |
5617 int slen; | |
5618 int key; | |
5619 int dlen = 0; | |
5620 char_u *src; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5621 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
|
5622 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
|
5623 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
|
5624 char_u *result; // buffer for resulting string |
7 | 5625 |
5626 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
|
5627 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
|
5628 || (flags & REPTERM_SPECIAL); |
7 | 5629 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); |
5630 | |
5631 /* | |
5632 * Allocate space for the translation. Worst case a single character is | |
5633 * replaced by 6 bytes (shifted special key), plus a NUL at the end. | |
5634 */ | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16642
diff
changeset
|
5635 result = alloc(STRLEN(from) * 6 + 1); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5636 if (result == NULL) // out of memory |
7 | 5637 { |
5638 *bufp = NULL; | |
5639 return from; | |
5640 } | |
5641 | |
5642 src = from; | |
5643 | |
5644 /* | |
5645 * Check for #n at start only: function key n | |
5646 */ | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5647 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1])) |
7 | 5648 { |
5649 result[dlen++] = K_SPECIAL; | |
5650 result[dlen++] = 'k'; | |
5651 if (src[1] == '0') | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5652 result[dlen++] = ';'; // #0 is F10 is "k;" |
7 | 5653 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5654 result[dlen++] = src[1]; // #3 is F3 is "k3" |
7 | 5655 src += 2; |
5656 } | |
5657 | |
5658 /* | |
5659 * Copy each byte from *from to result[dlen] | |
5660 */ | |
5661 while (*src != NUL) | |
5662 { | |
5663 /* | |
5664 * 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
|
5665 * like "<C-S-LeftMouse>" |
7 | 5666 */ |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5667 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
|
5668 || STRNCMP(src, "<lt>", 4) != 0)) |
7 | 5669 { |
5670 #ifdef FEAT_EVAL | |
5671 /* | |
5672 * Replace <SID> by K_SNR <script-nr> _. | |
5673 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14) | |
5674 */ | |
5675 if (STRNICMP(src, "<SID>", 5) == 0) | |
5676 { | |
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
|
5677 if (current_sctx.sc_sid <= 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15111
diff
changeset
|
5678 emsg(_(e_usingsid)); |
7 | 5679 else |
5680 { | |
5681 src += 5; | |
5682 result[dlen++] = K_SPECIAL; | |
5683 result[dlen++] = (int)KS_EXTRA; | |
5684 result[dlen++] = (int)KE_SNR; | |
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
|
5685 sprintf((char *)result + dlen, "%ld", |
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
5686 (long)current_sctx.sc_sid); |
7 | 5687 dlen += (int)STRLEN(result + dlen); |
5688 result[dlen++] = '_'; | |
5689 continue; | |
5690 } | |
5691 } | |
5692 #endif | |
5693 | |
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
|
5694 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
|
5695 | ((flags & REPTERM_NO_SIMPLIFY) ? 0 : FSK_SIMPLIFY), |
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
|
5696 did_simplify); |
7 | 5697 if (slen) |
5698 { | |
5699 dlen += slen; | |
5700 continue; | |
5701 } | |
5702 } | |
5703 | |
5704 /* | |
5705 * If 'cpoptions' does not contain 'k', see if it's an actual key-code. | |
5706 * Note that this is also checked after replacing the <> form. | |
5707 * Single character codes are NOT replaced (e.g. ^H or DEL), because | |
5708 * it could be a character in the file. | |
5709 */ | |
5710 if (do_key_code) | |
5711 { | |
5712 i = find_term_bykeys(src); | |
5713 if (i >= 0) | |
5714 { | |
5715 result[dlen++] = K_SPECIAL; | |
5716 result[dlen++] = termcodes[i].name[0]; | |
5717 result[dlen++] = termcodes[i].name[1]; | |
5718 src += termcodes[i].len; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5719 // If terminal code matched, continue after it. |
7 | 5720 continue; |
5721 } | |
5722 } | |
5723 | |
5724 #ifdef FEAT_EVAL | |
5725 if (do_special) | |
5726 { | |
5727 char_u *p, *s, len; | |
5728 | |
5729 /* | |
5730 * Replace <Leader> by the value of "mapleader". | |
5731 * Replace <LocalLeader> by the value of "maplocalleader". | |
5732 * If "mapleader" or "maplocalleader" isn't set use a backslash. | |
5733 */ | |
5734 if (STRNICMP(src, "<Leader>", 8) == 0) | |
5735 { | |
5736 len = 8; | |
5737 p = get_var_value((char_u *)"g:mapleader"); | |
5738 } | |
5739 else if (STRNICMP(src, "<LocalLeader>", 13) == 0) | |
5740 { | |
5741 len = 13; | |
5742 p = get_var_value((char_u *)"g:maplocalleader"); | |
5743 } | |
5744 else | |
5745 { | |
5746 len = 0; | |
5747 p = NULL; | |
5748 } | |
5749 if (len != 0) | |
5750 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5751 // Allow up to 8 * 6 characters for "mapleader". |
7 | 5752 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6) |
5753 s = (char_u *)"\\"; | |
5754 else | |
5755 s = p; | |
5756 while (*s != NUL) | |
5757 result[dlen++] = *s++; | |
5758 src += len; | |
5759 continue; | |
5760 } | |
5761 } | |
5762 #endif | |
5763 | |
5764 /* | |
5765 * Remove CTRL-V and ignore the next character. | |
5766 * For "from" side the CTRL-V at the end is included, for the "to" | |
5767 * part it is removed. | |
5768 * If 'cpoptions' does not contain 'B', also accept a backslash. | |
5769 */ | |
5770 key = *src; | |
5771 if (key == Ctrl_V || (do_backslash && key == '\\')) | |
5772 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5773 ++src; // skip CTRL-V or backslash |
7 | 5774 if (*src == NUL) |
5775 { | |
18301
506bf60a30a0
patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
5776 if (flags & REPTERM_FROM_PART) |
7 | 5777 result[dlen++] = key; |
5778 break; | |
5779 } | |
5780 } | |
5781 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5782 // skip multibyte char correctly |
474 | 5783 for (i = (*mb_ptr2len)(src); i > 0; --i) |
7 | 5784 { |
5785 /* | |
5786 * If the character is K_SPECIAL, replace it with K_SPECIAL | |
5787 * KS_SPECIAL KE_FILLER. | |
5788 * If compiled with the GUI replace CSI with K_CSI. | |
5789 */ | |
5790 if (*src == K_SPECIAL) | |
5791 { | |
5792 result[dlen++] = K_SPECIAL; | |
5793 result[dlen++] = KS_SPECIAL; | |
5794 result[dlen++] = KE_FILLER; | |
5795 } | |
5796 # ifdef FEAT_GUI | |
5797 else if (*src == CSI) | |
5798 { | |
5799 result[dlen++] = K_SPECIAL; | |
5800 result[dlen++] = KS_EXTRA; | |
5801 result[dlen++] = (int)KE_CSI; | |
5802 } | |
5803 # endif | |
5804 else | |
5805 result[dlen++] = *src; | |
5806 ++src; | |
5807 } | |
5808 } | |
5809 result[dlen] = NUL; | |
5810 | |
5811 /* | |
5812 * Copy the new string to allocated memory. | |
5813 * If this fails, just return from. | |
5814 */ | |
5815 if ((*bufp = vim_strsave(result)) != NULL) | |
5816 from = *bufp; | |
5817 vim_free(result); | |
5818 return from; | |
5819 } | |
5820 | |
5821 /* | |
5822 * Find a termcode with keys 'src' (must be NUL terminated). | |
5823 * Return the index in termcodes[], or -1 if not found. | |
5824 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17781
diff
changeset
|
5825 static int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5826 find_term_bykeys(char_u *src) |
7 | 5827 { |
5828 int i; | |
3290 | 5829 int slen = (int)STRLEN(src); |
7 | 5830 |
5831 for (i = 0; i < tc_len; ++i) | |
5832 { | |
3273 | 5833 if (slen == termcodes[i].len |
5834 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0) | |
7 | 5835 return i; |
5836 } | |
5837 return -1; | |
5838 } | |
5839 | |
5840 /* | |
5841 * Gather the first characters in the terminal key codes into a string. | |
5842 * Used to speed up check_termcode(). | |
5843 */ | |
5844 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5845 gather_termleader(void) |
7 | 5846 { |
5847 int i; | |
5848 int len = 0; | |
5849 | |
5850 #ifdef FEAT_GUI | |
5851 if (gui.in_use) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5852 termleader[len++] = CSI; // the GUI codes are not in termcodes[] |
7 | 5853 #endif |
5854 #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
|
5855 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
|
5856 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
|
5857 // in 8-bit mode |
7 | 5858 #endif |
5859 termleader[len] = NUL; | |
5860 | |
5861 for (i = 0; i < tc_len; ++i) | |
5862 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL) | |
5863 { | |
5864 termleader[len++] = termcodes[i].code[0]; | |
5865 termleader[len] = NUL; | |
5866 } | |
5867 | |
5868 need_gather = FALSE; | |
5869 } | |
5870 | |
5871 /* | |
5872 * Show all termcodes (for ":set termcap") | |
5873 * This code looks a lot like showoptions(), but is different. | |
5874 */ | |
5875 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5876 show_termcodes(void) |
7 | 5877 { |
5878 int col; | |
5879 int *items; | |
5880 int item_count; | |
5881 int run; | |
5882 int row, rows; | |
5883 int cols; | |
5884 int i; | |
5885 int len; | |
5886 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5887 #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
|
5888 #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
|
5889 #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
|
5890 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5891 if (tc_len == 0) // no terminal codes (must be GUI) |
7 | 5892 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
|
5893 items = ALLOC_MULT(int, tc_len); |
7 | 5894 if (items == NULL) |
5895 return; | |
5896 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5897 // Highlight title |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5898 msg_puts_title(_("\n--- Terminal keys ---")); |
7 | 5899 |
5900 /* | |
5901 * do the loop two times: | |
5902 * 1. display the short items (non-strings and short strings) | |
180 | 5903 * 2. display the medium items (medium length strings) |
5904 * 3. display the long items (remaining strings) | |
7 | 5905 */ |
180 | 5906 for (run = 1; run <= 3 && !got_int; ++run) |
7 | 5907 { |
5908 /* | |
5909 * collect the items in items[] | |
5910 */ | |
5911 item_count = 0; | |
5912 for (i = 0; i < tc_len; i++) | |
5913 { | |
5914 len = show_one_termcode(termcodes[i].name, | |
5915 termcodes[i].code, FALSE); | |
180 | 5916 if (len <= INC3 - GAP ? run == 1 |
5917 : len <= INC2 - GAP ? run == 2 | |
5918 : run == 3) | |
7 | 5919 items[item_count++] = i; |
5920 } | |
5921 | |
5922 /* | |
5923 * display the items | |
5924 */ | |
180 | 5925 if (run <= 2) |
7 | 5926 { |
180 | 5927 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2); |
7 | 5928 if (cols == 0) |
5929 cols = 1; | |
5930 rows = (item_count + cols - 1) / cols; | |
5931 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5932 else // run == 3 |
7 | 5933 rows = item_count; |
5934 for (row = 0; row < rows && !got_int; ++row) | |
5935 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5936 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
|
5937 if (got_int) // 'q' typed in more |
7 | 5938 break; |
5939 col = 0; | |
5940 for (i = row; i < item_count; i += rows) | |
5941 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
5942 msg_col = col; // make columns |
7 | 5943 show_one_termcode(termcodes[items[i]].name, |
5944 termcodes[items[i]].code, TRUE); | |
180 | 5945 if (run == 2) |
5946 col += INC2; | |
5947 else | |
5948 col += INC3; | |
7 | 5949 } |
5950 out_flush(); | |
5951 ui_breakcheck(); | |
5952 } | |
5953 } | |
5954 vim_free(items); | |
5955 } | |
5956 | |
5957 /* | |
5958 * Show one termcode entry. | |
5959 * Output goes into IObuff[] | |
5960 */ | |
5961 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5962 show_one_termcode(char_u *name, char_u *code, int printit) |
7 | 5963 { |
5964 char_u *p; | |
5965 int len; | |
5966 | |
5967 if (name[0] > '~') | |
5968 { | |
5969 IObuff[0] = ' '; | |
5970 IObuff[1] = ' '; | |
5971 IObuff[2] = ' '; | |
5972 IObuff[3] = ' '; | |
5973 } | |
5974 else | |
5975 { | |
5976 IObuff[0] = 't'; | |
5977 IObuff[1] = '_'; | |
5978 IObuff[2] = name[0]; | |
5979 IObuff[3] = name[1]; | |
5980 } | |
5981 IObuff[4] = ' '; | |
5982 | |
5983 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0); | |
5984 if (p[1] != 't') | |
5985 STRCPY(IObuff + 5, p); | |
5986 else | |
5987 IObuff[5] = NUL; | |
5988 len = (int)STRLEN(IObuff); | |
5989 do | |
5990 IObuff[len++] = ' '; | |
5991 while (len < 17); | |
5992 IObuff[len] = NUL; | |
5993 if (code == NULL) | |
5994 len += 4; | |
5995 else | |
5996 len += vim_strsize(code); | |
5997 | |
5998 if (printit) | |
5999 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6000 msg_puts((char *)IObuff); |
7 | 6001 if (code == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6002 msg_puts("NULL"); |
7 | 6003 else |
6004 msg_outtrans(code); | |
6005 } | |
6006 return len; | |
6007 } | |
6008 | |
6009 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) | |
6010 /* | |
6011 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used | |
6012 * termcap codes from the terminal itself. | |
6013 * We get them one by one to avoid a very long response string. | |
6014 */ | |
6102 | 6015 static int xt_index_in = 0; |
6016 static int xt_index_out = 0; | |
6017 | |
7 | 6018 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6019 req_codes_from_term(void) |
7 | 6020 { |
6021 xt_index_out = 0; | |
6022 xt_index_in = 0; | |
6023 req_more_codes_from_term(); | |
6024 } | |
6025 | |
6026 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6027 req_more_codes_from_term(void) |
7 | 6028 { |
6029 char buf[11]; | |
6030 int old_idx = xt_index_out; | |
6031 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6032 // Don't do anything when going to exit. |
7 | 6033 if (exiting) |
6034 return; | |
6035 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6036 // 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
|
6037 // many, there can be a buffer overflow somewhere. |
7 | 6038 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL) |
6039 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6040 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
|
6041 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6042 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
|
6043 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]); |
7 | 6044 out_str_nf((char_u *)buf); |
6045 ++xt_index_out; | |
6046 } | |
6047 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6048 // Send the codes out right away. |
7 | 6049 if (xt_index_out != old_idx) |
6050 out_flush(); | |
6051 } | |
6052 | |
6053 /* | |
6054 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'. | |
6055 * A "0" instead of the "1" indicates a code that isn't supported. | |
6056 * Both <name> and <string> are encoded in hex. | |
6057 * "code" points to the "0" or "1". | |
6058 */ | |
6059 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6060 got_code_from_term(char_u *code, int len) |
7 | 6061 { |
6062 #define XT_LEN 100 | |
6063 char_u name[3]; | |
6064 char_u str[XT_LEN]; | |
6065 int i; | |
6066 int j = 0; | |
6067 int c; | |
6068 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6069 // 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
|
6070 // 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
|
6071 // Our names are currently all 2 characters. |
7 | 6072 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN) |
6073 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6074 // Get the name from the response and find it in the table. |
7 | 6075 name[0] = hexhex2nr(code + 3); |
6076 name[1] = hexhex2nr(code + 5); | |
6077 name[2] = NUL; | |
6078 for (i = 0; key_names[i] != NULL; ++i) | |
6079 { | |
6080 if (STRCMP(key_names[i], name) == 0) | |
6081 { | |
6082 xt_index_in = i; | |
6083 break; | |
6084 } | |
6085 } | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6086 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6087 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
|
6088 |
7 | 6089 if (key_names[i] != NULL) |
6090 { | |
6091 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2) | |
6092 str[j++] = c; | |
6093 str[j] = NUL; | |
6094 if (name[0] == 'C' && name[1] == 'o') | |
6095 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6096 // Color count is not a key code. |
7 | 6097 i = atoi((char *)str); |
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
|
6098 may_adjust_color_count(i); |
7 | 6099 } |
6100 else | |
6101 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6102 // First delete any existing entry with the same code. |
7 | 6103 i = find_term_bykeys(str); |
6104 if (i >= 0) | |
6105 del_termcode_idx(i); | |
180 | 6106 add_termcode(name, str, ATC_FROM_TERM); |
7 | 6107 } |
6108 } | |
6109 } | |
6110 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6111 // May request more codes now that we received one. |
7 | 6112 ++xt_index_in; |
6113 req_more_codes_from_term(); | |
6114 } | |
6115 | |
6116 /* | |
6117 * Check if there are any unanswered requests and deal with them. | |
6118 * This is called before starting an external program or getting direct | |
6119 * keyboard input. We don't want responses to be send to that program or | |
6120 * handled as typed text. | |
6121 */ | |
6122 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6123 check_for_codes_from_term(void) |
7 | 6124 { |
6125 int c; | |
6126 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6127 // If no codes requested or all are answered, no need to wait. |
7 | 6128 if (xt_index_out == 0 || xt_index_out == xt_index_in) |
6129 return; | |
6130 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6131 // 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
|
6132 // Keep calling vpeekc() until we don't get any responses. |
7 | 6133 ++no_mapping; |
6134 ++allow_keys; | |
6135 for (;;) | |
6136 { | |
6137 c = vpeekc(); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6138 if (c == NUL) // nothing available |
7 | 6139 break; |
6140 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6141 // 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
|
6142 // 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
|
6143 // 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
|
6144 // we don't want to throw away any typed chars). |
7 | 6145 if (c != K_SPECIAL && c != K_IGNORE) |
6146 break; | |
6147 c = vgetc(); | |
6148 if (c != K_IGNORE) | |
6149 { | |
6150 vungetc(c); | |
6151 break; | |
6152 } | |
6153 } | |
6154 --no_mapping; | |
6155 --allow_keys; | |
6156 } | |
6157 #endif | |
6158 | |
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
|
6159 #if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO) |
7 | 6160 static char ksme_str[20]; |
6161 static char ksmr_str[20]; | |
6162 static char ksmd_str[20]; | |
6163 | |
6164 /* | |
6165 * For Win32 console: update termcap codes for existing console attributes. | |
6166 */ | |
6167 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6168 update_tcap(int attr) |
7 | 6169 { |
6170 struct builtin_term *p; | |
6171 | |
6172 p = find_builtin_term(DEFAULT_TERM); | |
6173 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr); | |
6174 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"), | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6175 attr | 0x08); // FOREGROUND_INTENSITY |
7 | 6176 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"), |
6177 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4)); | |
6178 | |
6179 while (p->bt_string != NULL) | |
6180 { | |
6181 if (p->bt_entry == (int)KS_ME) | |
6182 p->bt_string = &ksme_str[0]; | |
6183 else if (p->bt_entry == (int)KS_MR) | |
6184 p->bt_string = &ksmr_str[0]; | |
6185 else if (p->bt_entry == (int)KS_MD) | |
6186 p->bt_string = &ksmd_str[0]; | |
6187 ++p; | |
6188 } | |
6189 } | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6190 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6191 # 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
|
6192 # define KSSIZE 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
|
6193 struct ks_tbl_s |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6194 { |
14806
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6195 int code; // value of KS_ |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6196 char *vtp; // code in vtp mode |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6197 char *vtp2; // code in vtp2 mode |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6198 char buf[KSSIZE]; // save buffer in non-vtp mode |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6199 char vbuf[KSSIZE]; // save buffer in vtp mode |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6200 char v2buf[KSSIZE]; // save buffer in vtp2 mode |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6201 char arr[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
|
6202 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6203 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6204 static struct ks_tbl_s ks_tbl[] = |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6205 { |
14806
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6206 {(int)KS_ME, "\033|0m", "\033|0m"}, // normal |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6207 {(int)KS_MR, "\033|7m", "\033|7m"}, // reverse |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6208 {(int)KS_MD, "\033|1m", "\033|1m"}, // bold |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6209 {(int)KS_SO, "\033|91m", "\033|91m"}, // standout: bright red text |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6210 {(int)KS_SE, "\033|39m", "\033|39m"}, // standout end: default color |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6211 {(int)KS_CZH, "\033|95m", "\033|95m"}, // italic: bright magenta text |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6212 {(int)KS_CZR, "\033|0m", "\033|0m"}, // italic end |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6213 {(int)KS_US, "\033|4m", "\033|4m"}, // underscore |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6214 {(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
|
6215 # ifdef TERMINFO |
14806
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6216 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, // set background color |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6217 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, // set foreground color |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
6218 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR"}, |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
6219 {(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
|
6220 # else |
14806
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6221 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, // set background color |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6222 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, // set foreground color |
15852
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
6223 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR"}, |
acd4fc05422b
patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents:
15782
diff
changeset
|
6224 {(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
|
6225 # endif |
14806
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6226 {(int)KS_CCO, "256", "256"}, // colors |
7cc2d28778ac
patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
6227 {(int)KS_NAME} // 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
|
6228 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6229 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6230 static struct builtin_term * |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6231 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
|
6232 char_u *name, |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6233 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
|
6234 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6235 struct builtin_term *p; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6236 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6237 for (p = find_builtin_term(name); p->bt_string != NULL; ++p) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6238 if (p->bt_entry == code) |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6239 return p; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6240 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
|
6241 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6242 # 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
|
6243 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6244 /* |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6245 * 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
|
6246 */ |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6247 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6248 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
|
6249 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6250 # ifdef FEAT_TERMGUICOLORS |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6251 static int init_done = FALSE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6252 static int curr_mode; |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6253 struct ks_tbl_s *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
|
6254 struct builtin_term *bt; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6255 int mode; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6256 enum |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6257 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6258 CMODEINDEX, |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6259 CMODE24, |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6260 CMODE256 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6261 }; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6262 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6263 // buffer initialization |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6264 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
|
6265 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6266 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
|
6267 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6268 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
|
6269 if (bt != NULL) |
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6270 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6271 STRNCPY(ks->buf, bt->bt_string, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6272 STRNCPY(ks->vbuf, ks->vtp, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6273 STRNCPY(ks->v2buf, ks->vtp2, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6274 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6275 STRNCPY(ks->arr, bt->bt_string, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6276 bt->bt_string = &ks->arr[0]; |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6277 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6278 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6279 init_done = TRUE; |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6280 curr_mode = CMODEINDEX; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6281 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6282 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6283 if (p_tgc) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6284 mode = CMODE24; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6285 else if (t_colors >= 256) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6286 mode = CMODE256; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6287 else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6288 mode = CMODEINDEX; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6289 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6290 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
|
6291 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6292 bt = find_first_tcap(DEFAULT_TERM, ks->code); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6293 if (bt != NULL) |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6294 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6295 switch (curr_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
|
6296 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6297 case CMODEINDEX: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6298 STRNCPY(&ks->buf[0], bt->bt_string, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6299 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6300 case CMODE24: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6301 STRNCPY(&ks->vbuf[0], bt->bt_string, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6302 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6303 default: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6304 STRNCPY(&ks->v2buf[0], bt->bt_string, KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6305 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6306 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6307 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6308 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6309 if (mode != curr_mode) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6310 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6311 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6312 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6313 bt = find_first_tcap(DEFAULT_TERM, ks->code); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6314 if (bt != NULL) |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6315 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6316 switch (mode) |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6317 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6318 case CMODEINDEX: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6319 STRNCPY(bt->bt_string, &ks->buf[0], KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6320 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6321 case CMODE24: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6322 STRNCPY(bt->bt_string, &ks->vbuf[0], KSSIZE); |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6323 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6324 default: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6325 STRNCPY(bt->bt_string, &ks->v2buf[0], KSSIZE); |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6326 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6327 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6328 } |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6329 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6330 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
|
6331 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6332 # endif |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6333 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6334 |
7 | 6335 #endif |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6336 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
6337 #if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6338 static int |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6339 hex_digit(int c) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6340 { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6341 if (isdigit(c)) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6342 return c - '0'; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6343 c = TOLOWER_ASC(c); |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6344 if (c >= 'a' && c <= 'f') |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6345 return c - 'a' + 10; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6346 return 0x1ffffff; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6347 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6348 |
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
|
6349 # 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
|
6350 static guicolor_T |
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
|
6351 gui_adjust_rgb(guicolor_T c) |
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
|
6352 { |
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
|
6353 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
|
6354 return c; |
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
|
6355 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
|
6356 return ((c & 0xff) << 16) | (c & 0x00ff00) | ((c >> 16) & 0xff); |
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
|
6357 } |
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
|
6358 # 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
|
6359 # define gui_adjust_rgb(c) (c) |
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
|
6360 # 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
|
6361 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6362 guicolor_T |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6363 gui_get_color_cmn(char_u *name) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6364 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6365 // On MS-Windows an RGB macro is available and it produces 0x00bbggrr color |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6366 // values as used by the MS-Windows GDI api. It should be used only for |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6367 // MS-Windows GDI builds. |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
6368 # if defined(RGB) && defined(MSWIN) && !defined(FEAT_GUI) |
10512
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6369 # undef RGB |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6370 # endif |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6371 # ifndef RGB |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6372 # define RGB(r, g, b) ((r<<16) | (g<<8) | (b)) |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6373 # endif |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6374 # define LINE_LEN 100 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6375 FILE *fd; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6376 char line[LINE_LEN]; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6377 char_u *fname; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6378 int r, g, b, i; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6379 guicolor_T color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6380 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6381 struct rgbcolor_table_S { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6382 char_u *color_name; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6383 guicolor_T color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6384 }; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6385 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6386 // Only non X11 colors (not present in rgb.txt) and colors in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6387 // color_names[], useful when $VIMRUNTIME is not found,. |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6388 static struct rgbcolor_table_S rgb_table[] = { |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6389 {(char_u *)"black", RGB(0x00, 0x00, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6390 {(char_u *)"blue", RGB(0x00, 0x00, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6391 {(char_u *)"brown", RGB(0xA5, 0x2A, 0x2A)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6392 {(char_u *)"cyan", RGB(0x00, 0xFF, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6393 {(char_u *)"darkblue", RGB(0x00, 0x00, 0x8B)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6394 {(char_u *)"darkcyan", RGB(0x00, 0x8B, 0x8B)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6395 {(char_u *)"darkgray", RGB(0xA9, 0xA9, 0xA9)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6396 {(char_u *)"darkgreen", RGB(0x00, 0x64, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6397 {(char_u *)"darkgrey", RGB(0xA9, 0xA9, 0xA9)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6398 {(char_u *)"darkmagenta", RGB(0x8B, 0x00, 0x8B)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6399 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6400 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, // No X11 |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6401 {(char_u *)"gray", RGB(0xBE, 0xBE, 0xBE)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6402 {(char_u *)"green", RGB(0x00, 0xFF, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6403 {(char_u *)"grey", RGB(0xBE, 0xBE, 0xBE)}, |
9814
045937335095
commit https://github.com/vim/vim/commit/2147746cf816fad00e301c6638df28a4287c9aae
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
6404 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)}, |
13489
24e8f9044bed
patch 8.0.1618: color Grey50 is missing in the compiled-in table
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
6405 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)}, |
9601
9cc49b86f613
commit https://github.com/vim/vim/commit/ca8942c6e331a69ddd533dd78931f399f7dcaa79
Christian Brabandt <cb@256bit.org>
parents:
9591
diff
changeset
|
6406 {(char_u *)"grey90", RGB(0xE5, 0xE5, 0xE5)}, |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6407 {(char_u *)"lightblue", RGB(0xAD, 0xD8, 0xE6)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6408 {(char_u *)"lightcyan", RGB(0xE0, 0xFF, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6409 {(char_u *)"lightgray", RGB(0xD3, 0xD3, 0xD3)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6410 {(char_u *)"lightgreen", RGB(0x90, 0xEE, 0x90)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6411 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)}, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6412 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, // No X11 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6413 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, // No X11 |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6414 {(char_u *)"lightyellow", RGB(0xFF, 0xFF, 0xE0)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6415 {(char_u *)"magenta", RGB(0xFF, 0x00, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6416 {(char_u *)"red", RGB(0xFF, 0x00, 0x00)}, |
9601
9cc49b86f613
commit https://github.com/vim/vim/commit/ca8942c6e331a69ddd533dd78931f399f7dcaa79
Christian Brabandt <cb@256bit.org>
parents:
9591
diff
changeset
|
6417 {(char_u *)"seagreen", RGB(0x2E, 0x8B, 0x57)}, |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6418 {(char_u *)"white", RGB(0xFF, 0xFF, 0xFF)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6419 {(char_u *)"yellow", RGB(0xFF, 0xFF, 0x00)}, |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6420 }; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6421 |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6422 static struct rgbcolor_table_S *colornames_table; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6423 static int size = 0; |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6424 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6425 if (name[0] == '#' && STRLEN(name) == 7) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6426 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6427 // Name is in "#rrggbb" format |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6428 color = RGB(((hex_digit(name[1]) << 4) + hex_digit(name[2])), |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6429 ((hex_digit(name[3]) << 4) + hex_digit(name[4])), |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6430 ((hex_digit(name[5]) << 4) + hex_digit(name[6]))); |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6431 if (color > 0xffffff) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6432 return INVALCOLOR; |
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
|
6433 return gui_adjust_rgb(color); |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6434 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6435 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6436 // Check if the name is one of the colors we know |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6437 for (i = 0; i < (int)(sizeof(rgb_table) / sizeof(rgb_table[0])); i++) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6438 if (STRICMP(name, rgb_table[i].color_name) == 0) |
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
|
6439 return gui_adjust_rgb(rgb_table[i].color); |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6440 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6441 /* |
15782
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6442 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt". |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6443 */ |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6444 if (size == 0) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6445 { |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6446 int counting; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6447 |
15782
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6448 // colornames_table not yet initialized |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6449 fname = expand_env_save((char_u *)"$VIMRUNTIME/rgb.txt"); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6450 if (fname == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6451 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6452 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6453 fd = fopen((char *)fname, "rt"); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6454 vim_free(fname); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6455 if (fd == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6456 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6457 if (p_verbose > 1) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6458 verb_msg(_("Cannot open $VIMRUNTIME/rgb.txt")); |
15782
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6459 size = -1; // don't try again |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6460 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6461 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6462 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6463 for (counting = 1; counting >= 0; --counting) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6464 { |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6465 if (!counting) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6466 { |
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
|
6467 colornames_table = ALLOC_MULT(struct rgbcolor_table_S, size); |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6468 if (colornames_table == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6469 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6470 fclose(fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6471 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6472 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6473 rewind(fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6474 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6475 size = 0; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6476 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6477 while (!feof(fd)) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6478 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6479 size_t len; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6480 int pos; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6481 |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14700
diff
changeset
|
6482 vim_ignoredp = fgets(line, LINE_LEN, fd); |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6483 len = strlen(line); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6484 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6485 if (len <= 1 || line[len - 1] != '\n') |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6486 continue; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6487 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6488 line[len - 1] = '\0'; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6489 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6490 i = sscanf(line, "%d %d %d %n", &r, &g, &b, &pos); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6491 if (i != 3) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6492 continue; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6493 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6494 if (!counting) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6495 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6496 char_u *s = vim_strsave((char_u *)line + pos); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6497 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6498 if (s == NULL) |
9628
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6499 { |
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6500 fclose(fd); |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6501 return INVALCOLOR; |
9628
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6502 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6503 colornames_table[size].color_name = s; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6504 colornames_table[size].color = (guicolor_T)RGB(r, g, b); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6505 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6506 size++; |
15782
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6507 |
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6508 // The distributed rgb.txt has less than 1000 entries. Limit to |
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6509 // 10000, just in case the file was messed up. |
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6510 if (size == 10000) |
5de143c7cd76
patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents:
15605
diff
changeset
|
6511 break; |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6512 } |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6513 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6514 fclose(fd); |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6515 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6516 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6517 for (i = 0; i < size; i++) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6518 if (STRICMP(name, colornames_table[i].color_name) == 0) |
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
|
6519 return gui_adjust_rgb(colornames_table[i].color); |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6520 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6521 return INVALCOLOR; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6522 } |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6523 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6524 guicolor_T |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6525 gui_get_rgb_color_cmn(int r, int g, int b) |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6526 { |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6527 guicolor_T color = RGB(r, g, b); |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6528 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6529 if (color > 0xffffff) |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6530 return INVALCOLOR; |
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
|
6531 return gui_adjust_rgb(color); |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6532 } |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6533 #endif |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6534 |
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
|
6535 #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
|
6536 || 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
|
6537 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
|
6538 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
|
6539 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6540 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6541 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
|
6542 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
|
6543 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
|
6544 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6545 |
13839
ca8953d36264
patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13827
diff
changeset
|
6546 static char_u ansi_table[16][4] = { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6547 // R G B idx |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6548 { 0, 0, 0, 1}, // black |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6549 {224, 0, 0, 2}, // dark red |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6550 { 0, 224, 0, 3}, // dark green |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6551 {224, 224, 0, 4}, // dark yellow / brown |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6552 { 0, 0, 224, 5}, // dark blue |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6553 {224, 0, 224, 6}, // dark magenta |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6554 { 0, 224, 224, 7}, // dark cyan |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6555 {224, 224, 224, 8}, // light grey |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6556 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6557 {128, 128, 128, 9}, // dark grey |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6558 {255, 64, 64, 10}, // light red |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6559 { 64, 255, 64, 11}, // light green |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6560 {255, 255, 64, 12}, // yellow |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6561 { 64, 64, 255, 13}, // light blue |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6562 {255, 64, 255, 14}, // light magenta |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6563 { 64, 255, 255, 15}, // light cyan |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6564 {255, 255, 255, 16}, // white |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6565 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6566 |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
6567 #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
|
6568 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6569 void |
13839
ca8953d36264
patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13827
diff
changeset
|
6570 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
|
6571 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6572 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
|
6573 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6574 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
|
6575 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6576 *r = ansi_table[nr][0]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6577 *g = ansi_table[nr][1]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6578 *b = ansi_table[nr][2]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6579 *ansi_idx = ansi_table[nr][3]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6580 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6581 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
|
6582 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6583 // 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
|
6584 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
|
6585 *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
|
6586 *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
|
6587 *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
|
6588 *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
|
6589 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6590 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
|
6591 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
6592 // 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
|
6593 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
|
6594 *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
|
6595 *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
|
6596 *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
|
6597 *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
|
6598 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6599 else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6600 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6601 *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
|
6602 *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
|
6603 *b = 0; |
20500
03826c672315
patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents:
20450
diff
changeset
|
6604 *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
|
6605 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6606 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6607 #endif |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15852
diff
changeset
|
6608 |
19405
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6609 /* |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6610 * Replace K_BS by <BS> and K_DEL by <DEL> |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6611 */ |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6612 void |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6613 term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6614 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6615 int i; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6616 int c; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6617 |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6618 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
|
6619 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6620 if (ta_buf[i] == CSI && len - i > 2) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6621 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6622 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
|
6623 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
|
6624 { |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6625 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6626 (size_t)(len - i - 2)); |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6627 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
|
6628 ta_buf[i] = DEL; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6629 else |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6630 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
|
6631 len -= 2; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6632 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6633 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6634 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
|
6635 ta_buf[i] = '\n'; |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6636 if (has_mbyte) |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6637 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
|
6638 } |
08f4dc2ba716
patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents:
19346
diff
changeset
|
6639 } |