Mercurial > vim
annotate src/term.c @ 14140:752fc522d342
Added tag v8.1.0087 for changeset 4d3f6bf86bec2e1a0e8316830e148511c91fa322
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Jun 2018 20:00:09 +0200 |
parents | 5d6e8dedfc73 |
children | 85e0442b7a04 |
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 | |
25 #define tgetstr tgetstr_defined_wrong | |
26 #include "vim.h" | |
27 | |
28 #ifdef HAVE_TGETENT | |
29 # ifdef HAVE_TERMIOS_H | |
30 # include <termios.h> /* seems to be required for some Linux */ | |
31 # endif | |
32 # ifdef HAVE_TERMCAP_H | |
33 # include <termcap.h> | |
34 # endif | |
35 | |
36 /* | |
37 * A few linux systems define outfuntype in termcap.h to be used as the third | |
38 * argument for tputs(). | |
39 */ | |
40 # ifdef VMS | |
41 # define TPUTSFUNCAST | |
42 # else | |
43 # ifdef HAVE_OUTFUNTYPE | |
44 # define TPUTSFUNCAST (outfuntype) | |
45 # else | |
46 # define TPUTSFUNCAST (int (*)()) | |
47 # endif | |
48 # endif | |
49 #endif | |
50 | |
51 #undef tgetstr | |
52 | |
53 /* | |
54 * Here are the builtin termcap entries. They are not stored as complete | |
2823 | 55 * structures with all entries, as such a structure is too big. |
7 | 56 * |
57 * The entries are compact, therefore they normally are included even when | |
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries | |
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc. | |
60 * | |
61 * Each termcap is a list of builtin_term structures. It always starts with | |
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all | |
63 * details. | |
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code. | |
65 * | |
66 * Entries marked with "guessed" may be wrong. | |
67 */ | |
68 struct builtin_term | |
69 { | |
70 int bt_entry; | |
71 char *bt_string; | |
72 }; | |
73 | |
74 /* start of keys that are not directly used by Vim but can be mapped */ | |
75 #define BT_EXTRA_KEYS 0x101 | |
76 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
77 static struct builtin_term *find_builtin_term(char_u *name); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
78 static void parse_builtin_tcap(char_u *s); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
79 static void gather_termleader(void); |
7 | 80 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
81 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
|
82 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
|
83 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
|
84 static void check_for_codes_from_term(void); |
7 | 85 #endif |
86 #if defined(FEAT_GUI) \ | |
1623 | 87 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \ |
88 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE))) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
89 static int get_bytes_from_buf(char_u *, char_u *, int); |
7 | 90 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
91 static void del_termcode_idx(int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
92 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
|
93 static int term_7to8bit(char_u *p); |
7 | 94 #ifdef FEAT_TERMRESPONSE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
95 static void switch_to_8bit(void); |
7 | 96 #endif |
97 | |
98 #ifdef HAVE_TGETENT | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
99 static char_u *tgetent_error(char_u *, char_u *); |
7 | 100 |
101 /* | |
102 * Here is our own prototype for tgetstr(), any prototypes from the include | |
103 * files have been disabled by the define at the start of this file. | |
104 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
105 char *tgetstr(char *, char **); |
7 | 106 |
107 # ifdef FEAT_TERMRESPONSE | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
108 /* Change this to "if 1" to debug what happens with termresponse. */ |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
109 # if 0 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
110 # 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
|
111 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
|
112 # define LOG_TR(msg) log_tr msg |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
113 # else |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
114 # define LOG_TR(msg) do { /**/ } while (0) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
115 # 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
|
116 |
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
|
117 # define STATUS_GET 1 /* send request when switching to RAW mode */ |
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
|
118 # define STATUS_SENT 2 /* did send request, waiting for response */ |
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
|
119 # define STATUS_GOT 3 /* received response */ |
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
|
120 |
7 | 121 /* Request Terminal Version status: */ |
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
|
122 static int crv_status = STATUS_GET; |
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
|
123 |
4215 | 124 /* Request Cursor position report: */ |
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
|
125 static int u7_status = STATUS_GET; |
1345621ecdfb
patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12078
diff
changeset
|
126 |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
127 # ifdef FEAT_TERMINAL |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
128 /* Request foreground color report: */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
129 static int rfg_status = STATUS_GET; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
130 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
|
131 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
|
132 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
|
133 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
|
134 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
|
135 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
|
136 # 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
|
137 |
6874 | 138 /* Request background color report: */ |
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
|
139 static int rbg_status = STATUS_GET; |
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
|
140 |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
141 /* Request cursor blinking mode report: */ |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
142 static int rbm_status = STATUS_GET; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
143 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
144 /* Request cursor style report: */ |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
145 static int rcs_status = STATUS_GET; |
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
|
146 |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
147 /* Request windos position report: */ |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
148 static int winpos_status = STATUS_GET; |
7 | 149 # endif |
150 | |
151 /* | |
152 * Don't declare these variables if termcap.h contains them. | |
153 * Autoconf checks if these variables should be declared extern (not all | |
154 * systems have them). | |
155 * Some versions define ospeed to be speed_t, but that is incompatible with | |
156 * BSD, where ospeed is short and speed_t is long. | |
157 */ | |
158 # ifndef HAVE_OSPEED | |
159 # ifdef OSPEED_EXTERN | |
160 extern short ospeed; | |
161 # else | |
162 short ospeed; | |
163 # endif | |
164 # endif | |
165 # ifndef HAVE_UP_BC_PC | |
166 # ifdef UP_BC_PC_EXTERN | |
167 extern char *UP, *BC, PC; | |
168 # else | |
169 char *UP, *BC, PC; | |
170 # endif | |
171 # endif | |
172 | |
173 # define TGETSTR(s, p) vim_tgetstr((s), (p)) | |
174 # 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
|
175 static char_u *vim_tgetstr(char *s, char_u **pp); |
7 | 176 #endif /* HAVE_TGETENT */ |
177 | |
178 static int detected_8bit = FALSE; /* detected 8-bit terminal */ | |
179 | |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
180 #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
|
181 /* When the cursor shape was detected these values are used: |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
182 * 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
|
183 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
|
184 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
185 /* The blink flag from the style response may be inverted from the actual |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
186 * blinking state, xterm XORs the flags. */ |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
187 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
|
188 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
189 /* 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
|
190 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
|
191 #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
|
192 |
298 | 193 static struct builtin_term builtin_termcaps[] = |
7 | 194 { |
195 | |
196 #if defined(FEAT_GUI) | |
197 /* | |
198 * GUI pseudo term-cap. | |
199 */ | |
200 {(int)KS_NAME, "gui"}, | |
201 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")}, | |
202 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")}, | |
203 # ifdef TERMINFO | |
204 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")}, | |
205 # else | |
206 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")}, | |
207 # endif | |
208 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")}, | |
209 # ifdef TERMINFO | |
210 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")}, | |
211 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")}, | |
212 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")}, | |
213 # else | |
214 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")}, | |
215 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")}, | |
216 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")}, | |
217 # endif | |
218 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")}, | |
219 /* attributes switched on with 'h', off with * 'H' */ | |
220 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, /* HL_ALL */ | |
221 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, /* HL_INVERSE */ | |
222 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, /* HL_BOLD */ | |
223 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, /* HL_STANDOUT */ | |
224 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, /* HL_STANDOUT */ | |
225 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, /* HL_UNDERLINE */ | |
226 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, /* HL_UNDERLINE */ | |
205 | 227 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, /* HL_UNDERCURL */ |
228 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, /* HL_UNDERCURL */ | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
229 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, /* HL_STRIKETHROUGH */ |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
230 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, /* HL_STRIKETHROUGH */ |
7 | 231 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, /* HL_ITALIC */ |
232 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, /* HL_ITALIC */ | |
233 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")}, | |
234 {(int)KS_MS, "y"}, | |
235 {(int)KS_UT, "y"}, | |
6602 | 236 {(int)KS_XN, "y"}, |
7 | 237 {(int)KS_LE, "\b"}, /* cursor-left = BS */ |
238 {(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */ | |
239 # ifdef TERMINFO | |
240 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")}, | |
241 # else | |
242 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")}, | |
243 # endif | |
244 /* there are no key sequences here, the GUI sequences are recognized | |
205 | 245 * in check_termcode() */ |
7 | 246 #endif |
247 | |
248 #ifndef NO_BUILTIN_TCAPS | |
249 | |
250 # if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS) | |
251 /* | |
252 * Amiga console window, default for Amiga | |
253 */ | |
254 {(int)KS_NAME, "amiga"}, | |
255 {(int)KS_CE, "\033[K"}, | |
256 {(int)KS_CD, "\033[J"}, | |
257 {(int)KS_AL, "\033[L"}, | |
258 # ifdef TERMINFO | |
259 {(int)KS_CAL, "\033[%p1%dL"}, | |
260 # else | |
261 {(int)KS_CAL, "\033[%dL"}, | |
262 # endif | |
263 {(int)KS_DL, "\033[M"}, | |
264 # ifdef TERMINFO | |
265 {(int)KS_CDL, "\033[%p1%dM"}, | |
266 # else | |
267 {(int)KS_CDL, "\033[%dM"}, | |
268 # endif | |
269 {(int)KS_CL, "\014"}, | |
270 {(int)KS_VI, "\033[0 p"}, | |
271 {(int)KS_VE, "\033[1 p"}, | |
272 {(int)KS_ME, "\033[0m"}, | |
273 {(int)KS_MR, "\033[7m"}, | |
274 {(int)KS_MD, "\033[1m"}, | |
275 {(int)KS_SE, "\033[0m"}, | |
276 {(int)KS_SO, "\033[33m"}, | |
277 {(int)KS_US, "\033[4m"}, | |
278 {(int)KS_UE, "\033[0m"}, | |
279 {(int)KS_CZH, "\033[3m"}, | |
280 {(int)KS_CZR, "\033[0m"}, | |
281 #if defined(__MORPHOS__) || defined(__AROS__) | |
282 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
283 # ifdef TERMINFO | |
284 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */ | |
285 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */ | |
286 # else | |
287 {(int)KS_CAB, "\033[4%dm"}, /* set background color */ | |
288 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */ | |
289 # endif | |
290 {(int)KS_OP, "\033[m"}, /* reset colors */ | |
291 #endif | |
292 {(int)KS_MS, "y"}, | |
293 {(int)KS_UT, "y"}, /* guessed */ | |
294 {(int)KS_LE, "\b"}, | |
295 # ifdef TERMINFO | |
296 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
297 # else | |
298 {(int)KS_CM, "\033[%i%d;%dH"}, | |
299 # endif | |
300 #if defined(__MORPHOS__) | |
301 {(int)KS_SR, "\033M"}, | |
302 #endif | |
303 # ifdef TERMINFO | |
304 {(int)KS_CRI, "\033[%p1%dC"}, | |
305 # else | |
306 {(int)KS_CRI, "\033[%dC"}, | |
307 # endif | |
308 {K_UP, "\233A"}, | |
309 {K_DOWN, "\233B"}, | |
310 {K_LEFT, "\233D"}, | |
311 {K_RIGHT, "\233C"}, | |
312 {K_S_UP, "\233T"}, | |
313 {K_S_DOWN, "\233S"}, | |
314 {K_S_LEFT, "\233 A"}, | |
315 {K_S_RIGHT, "\233 @"}, | |
316 {K_S_TAB, "\233Z"}, | |
317 {K_F1, "\233\060~"},/* some compilers don't dig "\2330" */ | |
318 {K_F2, "\233\061~"}, | |
319 {K_F3, "\233\062~"}, | |
320 {K_F4, "\233\063~"}, | |
321 {K_F5, "\233\064~"}, | |
322 {K_F6, "\233\065~"}, | |
323 {K_F7, "\233\066~"}, | |
324 {K_F8, "\233\067~"}, | |
325 {K_F9, "\233\070~"}, | |
326 {K_F10, "\233\071~"}, | |
327 {K_S_F1, "\233\061\060~"}, | |
328 {K_S_F2, "\233\061\061~"}, | |
329 {K_S_F3, "\233\061\062~"}, | |
330 {K_S_F4, "\233\061\063~"}, | |
331 {K_S_F5, "\233\061\064~"}, | |
332 {K_S_F6, "\233\061\065~"}, | |
333 {K_S_F7, "\233\061\066~"}, | |
334 {K_S_F8, "\233\061\067~"}, | |
335 {K_S_F9, "\233\061\070~"}, | |
336 {K_S_F10, "\233\061\071~"}, | |
337 {K_HELP, "\233?~"}, | |
338 {K_INS, "\233\064\060~"}, /* 101 key keyboard */ | |
339 {K_PAGEUP, "\233\064\061~"}, /* 101 key keyboard */ | |
340 {K_PAGEDOWN, "\233\064\062~"}, /* 101 key keyboard */ | |
341 {K_HOME, "\233\064\064~"}, /* 101 key keyboard */ | |
342 {K_END, "\233\064\065~"}, /* 101 key keyboard */ | |
343 | |
344 {BT_EXTRA_KEYS, ""}, | |
345 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, /* shifted home key */ | |
346 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, /* shifted insert key */ | |
347 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, /* shifted end key */ | |
348 # endif | |
349 | |
350 # if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS) | |
351 /* | |
352 * almost standard ANSI terminal, default for bebox | |
353 */ | |
354 {(int)KS_NAME, "beos-ansi"}, | |
355 {(int)KS_CE, "\033[K"}, | |
356 {(int)KS_CD, "\033[J"}, | |
357 {(int)KS_AL, "\033[L"}, | |
358 # ifdef TERMINFO | |
359 {(int)KS_CAL, "\033[%p1%dL"}, | |
360 # else | |
361 {(int)KS_CAL, "\033[%dL"}, | |
362 # endif | |
363 {(int)KS_DL, "\033[M"}, | |
364 # ifdef TERMINFO | |
365 {(int)KS_CDL, "\033[%p1%dM"}, | |
366 # else | |
367 {(int)KS_CDL, "\033[%dM"}, | |
368 # endif | |
369 #ifdef BEOS_PR_OR_BETTER | |
370 # ifdef TERMINFO | |
371 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
372 # else | |
373 {(int)KS_CS, "\033[%i%d;%dr"}, /* scroll region */ | |
374 # endif | |
375 #endif | |
376 {(int)KS_CL, "\033[H\033[2J"}, | |
377 #ifdef notyet | |
378 {(int)KS_VI, "[VI]"}, /* cursor invisible, VT320: CSI ? 25 l */ | |
379 {(int)KS_VE, "[VE]"}, /* cursor visible, VT320: CSI ? 25 h */ | |
380 #endif | |
381 {(int)KS_ME, "\033[m"}, /* normal mode */ | |
382 {(int)KS_MR, "\033[7m"}, /* reverse */ | |
383 {(int)KS_MD, "\033[1m"}, /* bold */ | |
384 {(int)KS_SO, "\033[31m"}, /* standout mode: red */ | |
385 {(int)KS_SE, "\033[m"}, /* standout end */ | |
386 {(int)KS_CZH, "\033[35m"}, /* italic: purple */ | |
387 {(int)KS_CZR, "\033[m"}, /* italic end */ | |
388 {(int)KS_US, "\033[4m"}, /* underscore mode */ | |
389 {(int)KS_UE, "\033[m"}, /* underscore end */ | |
390 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
391 # ifdef TERMINFO | |
392 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */ | |
393 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */ | |
394 # else | |
395 {(int)KS_CAB, "\033[4%dm"}, /* set background color */ | |
396 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */ | |
397 # endif | |
398 {(int)KS_OP, "\033[m"}, /* reset colors */ | |
399 {(int)KS_MS, "y"}, /* safe to move cur in reverse mode */ | |
400 {(int)KS_UT, "y"}, /* guessed */ | |
401 {(int)KS_LE, "\b"}, | |
402 # ifdef TERMINFO | |
403 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
404 # else | |
405 {(int)KS_CM, "\033[%i%d;%dH"}, | |
406 # endif | |
407 {(int)KS_SR, "\033M"}, | |
408 # ifdef TERMINFO | |
409 {(int)KS_CRI, "\033[%p1%dC"}, | |
410 # else | |
411 {(int)KS_CRI, "\033[%dC"}, | |
412 # endif | |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
413 # if defined(BEOS_DR8) |
7 | 414 {(int)KS_DB, ""}, /* hack! see screen.c */ |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
415 # endif |
7 | 416 |
417 {K_UP, "\033[A"}, | |
418 {K_DOWN, "\033[B"}, | |
419 {K_LEFT, "\033[D"}, | |
420 {K_RIGHT, "\033[C"}, | |
421 # endif | |
422 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
423 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS) |
7 | 424 /* |
425 * standard ANSI terminal, default for unix | |
426 */ | |
427 {(int)KS_NAME, "ansi"}, | |
428 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, | |
429 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
430 # ifdef TERMINFO | |
431 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
432 # else | |
433 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
434 # endif | |
435 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
436 # ifdef TERMINFO | |
437 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
438 # else | |
439 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
440 # endif | |
441 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
442 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")}, | |
443 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
444 {(int)KS_MS, "y"}, | |
445 {(int)KS_UT, "y"}, /* guessed */ | |
446 {(int)KS_LE, "\b"}, | |
447 # ifdef TERMINFO | |
448 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")}, | |
449 # else | |
450 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
451 # endif | |
452 # ifdef TERMINFO | |
453 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
454 # else | |
455 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
456 # endif | |
457 # endif | |
458 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
459 # if defined(ALL_BUILTIN_TCAPS) |
7 | 460 /* |
461 * These codes are valid when nansi.sys or equivalent has been installed. | |
462 * Function keys on a PC are preceded with a NUL. These are converted into | |
463 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes. | |
464 * CTRL-arrow is used instead of SHIFT-arrow. | |
465 */ | |
466 {(int)KS_NAME, "pcansi"}, | |
467 {(int)KS_DL, "\033[M"}, | |
468 {(int)KS_AL, "\033[L"}, | |
469 {(int)KS_CE, "\033[K"}, | |
470 {(int)KS_CL, "\033[2J"}, | |
471 {(int)KS_ME, "\033[0m"}, | |
472 {(int)KS_MR, "\033[5m"}, /* reverse: black on lightgrey */ | |
473 {(int)KS_MD, "\033[1m"}, /* bold: white text */ | |
474 {(int)KS_SE, "\033[0m"}, /* standout end */ | |
475 {(int)KS_SO, "\033[31m"}, /* standout: white on blue */ | |
476 {(int)KS_CZH, "\033[34;43m"}, /* italic mode: blue text on yellow */ | |
477 {(int)KS_CZR, "\033[0m"}, /* italic mode end */ | |
478 {(int)KS_US, "\033[36;41m"}, /* underscore mode: cyan text on red */ | |
479 {(int)KS_UE, "\033[0m"}, /* underscore mode end */ | |
480 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
481 # ifdef TERMINFO | |
482 {(int)KS_CAB, "\033[4%p1%dm"},/* set background color */ | |
483 {(int)KS_CAF, "\033[3%p1%dm"},/* set foreground color */ | |
484 # else | |
485 {(int)KS_CAB, "\033[4%dm"}, /* set background color */ | |
486 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color */ | |
487 # endif | |
488 {(int)KS_OP, "\033[0m"}, /* reset colors */ | |
489 {(int)KS_MS, "y"}, | |
490 {(int)KS_UT, "y"}, /* guessed */ | |
491 {(int)KS_LE, "\b"}, | |
492 # ifdef TERMINFO | |
493 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
494 # else | |
495 {(int)KS_CM, "\033[%i%d;%dH"}, | |
496 # endif | |
497 # ifdef TERMINFO | |
498 {(int)KS_CRI, "\033[%p1%dC"}, | |
499 # else | |
500 {(int)KS_CRI, "\033[%dC"}, | |
501 # endif | |
502 {K_UP, "\316H"}, | |
503 {K_DOWN, "\316P"}, | |
504 {K_LEFT, "\316K"}, | |
505 {K_RIGHT, "\316M"}, | |
506 {K_S_LEFT, "\316s"}, | |
507 {K_S_RIGHT, "\316t"}, | |
508 {K_F1, "\316;"}, | |
509 {K_F2, "\316<"}, | |
510 {K_F3, "\316="}, | |
511 {K_F4, "\316>"}, | |
512 {K_F5, "\316?"}, | |
513 {K_F6, "\316@"}, | |
514 {K_F7, "\316A"}, | |
515 {K_F8, "\316B"}, | |
516 {K_F9, "\316C"}, | |
517 {K_F10, "\316D"}, | |
518 {K_F11, "\316\205"}, /* guessed */ | |
519 {K_F12, "\316\206"}, /* guessed */ | |
520 {K_S_F1, "\316T"}, | |
521 {K_S_F2, "\316U"}, | |
522 {K_S_F3, "\316V"}, | |
523 {K_S_F4, "\316W"}, | |
524 {K_S_F5, "\316X"}, | |
525 {K_S_F6, "\316Y"}, | |
526 {K_S_F7, "\316Z"}, | |
527 {K_S_F8, "\316["}, | |
528 {K_S_F9, "\316\\"}, | |
529 {K_S_F10, "\316]"}, | |
530 {K_S_F11, "\316\207"}, /* guessed */ | |
531 {K_S_F12, "\316\210"}, /* guessed */ | |
532 {K_INS, "\316R"}, | |
533 {K_DEL, "\316S"}, | |
534 {K_HOME, "\316G"}, | |
535 {K_END, "\316O"}, | |
536 {K_PAGEDOWN, "\316Q"}, | |
537 {K_PAGEUP, "\316I"}, | |
538 # endif | |
539 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
540 # if defined(WIN3264) || defined(ALL_BUILTIN_TCAPS) |
7 | 541 /* |
542 * These codes are valid for the Win32 Console . The entries that start with | |
543 * ESC | are translated into console calls in os_win32.c. The function keys | |
544 * are also translated in os_win32.c. | |
545 */ | |
546 {(int)KS_NAME, "win32"}, | |
547 {(int)KS_CE, "\033|K"}, /* clear to end of line */ | |
548 {(int)KS_AL, "\033|L"}, /* add new blank line */ | |
549 # ifdef TERMINFO | |
550 {(int)KS_CAL, "\033|%p1%dL"}, /* add number of new blank lines */ | |
551 # else | |
552 {(int)KS_CAL, "\033|%dL"}, /* add number of new blank lines */ | |
553 # endif | |
554 {(int)KS_DL, "\033|M"}, /* delete line */ | |
555 # ifdef TERMINFO | |
556 {(int)KS_CDL, "\033|%p1%dM"}, /* delete number of lines */ | |
557 # else | |
558 {(int)KS_CDL, "\033|%dM"}, /* delete number of lines */ | |
559 # endif | |
560 {(int)KS_CL, "\033|J"}, /* clear screen */ | |
561 {(int)KS_CD, "\033|j"}, /* clear to end of display */ | |
562 {(int)KS_VI, "\033|v"}, /* cursor invisible */ | |
563 {(int)KS_VE, "\033|V"}, /* cursor visible */ | |
564 | |
565 {(int)KS_ME, "\033|0m"}, /* normal */ | |
566 {(int)KS_MR, "\033|112m"}, /* reverse: black on lightgray */ | |
567 {(int)KS_MD, "\033|15m"}, /* bold: white on black */ | |
568 #if 1 | |
569 {(int)KS_SO, "\033|31m"}, /* standout: white on blue */ | |
570 {(int)KS_SE, "\033|0m"}, /* standout end */ | |
571 #else | |
572 {(int)KS_SO, "\033|F"}, /* standout: high intensity */ | |
573 {(int)KS_SE, "\033|f"}, /* standout end */ | |
574 #endif | |
575 {(int)KS_CZH, "\033|225m"}, /* italic: blue text on yellow */ | |
576 {(int)KS_CZR, "\033|0m"}, /* italic end */ | |
577 {(int)KS_US, "\033|67m"}, /* underscore: cyan text on red */ | |
578 {(int)KS_UE, "\033|0m"}, /* underscore end */ | |
579 {(int)KS_CCO, "16"}, /* allow 16 colors */ | |
580 # ifdef TERMINFO | |
581 {(int)KS_CAB, "\033|%p1%db"}, /* set background color */ | |
582 {(int)KS_CAF, "\033|%p1%df"}, /* set foreground color */ | |
583 # else | |
584 {(int)KS_CAB, "\033|%db"}, /* set background color */ | |
585 {(int)KS_CAF, "\033|%df"}, /* set foreground color */ | |
586 # endif | |
587 | |
588 {(int)KS_MS, "y"}, /* save to move cur in reverse mode */ | |
589 {(int)KS_UT, "y"}, | |
6602 | 590 {(int)KS_XN, "y"}, |
7 | 591 {(int)KS_LE, "\b"}, |
592 # ifdef TERMINFO | |
593 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */ | |
594 # else | |
595 {(int)KS_CM, "\033|%i%d;%dH"},/* cursor motion */ | |
596 # endif | |
597 {(int)KS_VB, "\033|B"}, /* visual bell */ | |
598 {(int)KS_TI, "\033|S"}, /* put terminal in termcap mode */ | |
599 {(int)KS_TE, "\033|E"}, /* out of termcap mode */ | |
600 # ifdef TERMINFO | |
601 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"},/* scroll region */ | |
602 # else | |
603 {(int)KS_CS, "\033|%i%d;%dr"},/* scroll region */ | |
604 # 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
|
605 # 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
|
606 {(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
|
607 {(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
|
608 # endif |
7 | 609 |
610 {K_UP, "\316H"}, | |
611 {K_DOWN, "\316P"}, | |
612 {K_LEFT, "\316K"}, | |
613 {K_RIGHT, "\316M"}, | |
614 {K_S_UP, "\316\304"}, | |
615 {K_S_DOWN, "\316\317"}, | |
616 {K_S_LEFT, "\316\311"}, | |
617 {K_C_LEFT, "\316s"}, | |
618 {K_S_RIGHT, "\316\313"}, | |
619 {K_C_RIGHT, "\316t"}, | |
620 {K_S_TAB, "\316\017"}, | |
621 {K_F1, "\316;"}, | |
622 {K_F2, "\316<"}, | |
623 {K_F3, "\316="}, | |
624 {K_F4, "\316>"}, | |
625 {K_F5, "\316?"}, | |
626 {K_F6, "\316@"}, | |
627 {K_F7, "\316A"}, | |
628 {K_F8, "\316B"}, | |
629 {K_F9, "\316C"}, | |
630 {K_F10, "\316D"}, | |
631 {K_F11, "\316\205"}, | |
632 {K_F12, "\316\206"}, | |
633 {K_S_F1, "\316T"}, | |
634 {K_S_F2, "\316U"}, | |
635 {K_S_F3, "\316V"}, | |
636 {K_S_F4, "\316W"}, | |
637 {K_S_F5, "\316X"}, | |
638 {K_S_F6, "\316Y"}, | |
639 {K_S_F7, "\316Z"}, | |
640 {K_S_F8, "\316["}, | |
641 {K_S_F9, "\316\\"}, | |
642 {K_S_F10, "\316]"}, | |
643 {K_S_F11, "\316\207"}, | |
644 {K_S_F12, "\316\210"}, | |
645 {K_INS, "\316R"}, | |
646 {K_DEL, "\316S"}, | |
647 {K_HOME, "\316G"}, | |
648 {K_S_HOME, "\316\302"}, | |
649 {K_C_HOME, "\316w"}, | |
650 {K_END, "\316O"}, | |
651 {K_S_END, "\316\315"}, | |
652 {K_C_END, "\316u"}, | |
653 {K_PAGEDOWN, "\316Q"}, | |
654 {K_PAGEUP, "\316I"}, | |
655 {K_KPLUS, "\316N"}, | |
656 {K_KMINUS, "\316J"}, | |
657 {K_KMULTIPLY, "\316\067"}, | |
658 {K_K0, "\316\332"}, | |
659 {K_K1, "\316\336"}, | |
660 {K_K2, "\316\342"}, | |
661 {K_K3, "\316\346"}, | |
662 {K_K4, "\316\352"}, | |
663 {K_K5, "\316\356"}, | |
664 {K_K6, "\316\362"}, | |
665 {K_K7, "\316\366"}, | |
666 {K_K8, "\316\372"}, | |
667 {K_K9, "\316\376"}, | |
668 # endif | |
669 | |
670 # if defined(VMS) || defined(ALL_BUILTIN_TCAPS) | |
671 /* | |
672 * VT320 is working as an ANSI terminal compatible DEC terminal. | |
673 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well) | |
674 * Note: K_F1...K_F5 are for internal use, should not be defined. | |
675 * TODO:- rewrite ESC[ codes to CSI | |
676 * - keyboard languages (CSI ? 26 n) | |
677 */ | |
678 {(int)KS_NAME, "vt320"}, | |
679 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, | |
680 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
681 # ifdef TERMINFO | |
682 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
683 # else | |
684 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
685 # endif | |
686 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
687 # ifdef TERMINFO | |
688 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
689 # else | |
690 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
691 # endif | |
692 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
22 | 693 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")}, |
694 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
7 | 695 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")}, |
696 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
344 | 697 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, /* bold mode */ |
698 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},/* normal mode */ | |
699 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},/* exit underscore mode */ | |
700 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, /* underscore mode */ | |
701 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, /* italic mode: blue text on yellow */ | |
702 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, /* italic mode end */ | |
703 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, /* set background color (ANSI) */ | |
704 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, /* set foreground color (ANSI) */ | |
705 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, /* set screen background color */ | |
706 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */ | |
7 | 707 {(int)KS_MS, "y"}, |
708 {(int)KS_UT, "y"}, | |
6602 | 709 {(int)KS_XN, "y"}, |
7 | 710 {(int)KS_LE, "\b"}, |
711 # ifdef TERMINFO | |
712 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
713 ESC_STR "[%i%p1%d;%p2%dH")}, | |
714 # else | |
715 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
716 # endif | |
717 # ifdef TERMINFO | |
718 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
719 # else | |
720 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
721 # endif | |
722 {K_UP, IF_EB("\033[A", ESC_STR "[A")}, | |
723 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")}, | |
724 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")}, | |
725 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")}, | |
344 | 726 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")}, |
727 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")}, | |
728 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")}, | |
729 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")}, | |
730 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")}, | |
7 | 731 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")}, |
732 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")}, | |
733 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")}, | |
734 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")}, | |
735 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")}, | |
344 | 736 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")}, |
7 | 737 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")}, |
738 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")}, | |
739 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")}, | |
740 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, /* Help */ | |
741 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, /* Select */ | |
742 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")}, | |
743 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")}, | |
744 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")}, | |
745 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")}, | |
746 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")}, | |
747 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")}, | |
748 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")}, | |
749 {K_END, IF_EB("\033[4~", ESC_STR "[4~")}, | |
750 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")}, | |
751 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")}, | |
752 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, /* keypad plus */ | |
753 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, /* keypad minus */ | |
754 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, /* keypad / */ | |
755 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, /* keypad * */ | |
756 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, /* keypad Enter */ | |
757 {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */ | |
758 # endif | |
759 | |
760 # if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__) | |
761 /* | |
762 * Ordinary vt52 | |
763 */ | |
764 {(int)KS_NAME, "vt52"}, | |
765 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")}, | |
766 {(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
|
767 # ifdef TERMINFO |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
768 {(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
|
769 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
|
770 # else |
7 | 771 {(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
|
772 # endif |
7 | 773 {(int)KS_LE, "\b"}, |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
774 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")}, |
7 | 775 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")}, |
776 {(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
|
777 {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
|
778 {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
|
779 {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
|
780 {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
|
781 {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
|
782 {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
|
783 {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
|
784 # ifdef __MINT__ |
7 | 785 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")}, |
786 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")}, | |
787 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")}, | |
788 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")}, | |
789 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")}, | |
790 {K_S_UP, IF_EB("\033a", ESC_STR "a")}, | |
791 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")}, | |
792 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")}, | |
793 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")}, | |
794 {K_F4, IF_EB("\033S", ESC_STR "S")}, | |
795 {K_F5, IF_EB("\033T", ESC_STR "T")}, | |
796 {K_F6, IF_EB("\033U", ESC_STR "U")}, | |
797 {K_F7, IF_EB("\033V", ESC_STR "V")}, | |
798 {K_F8, IF_EB("\033W", ESC_STR "W")}, | |
799 {K_F9, IF_EB("\033X", ESC_STR "X")}, | |
800 {K_F10, IF_EB("\033Y", ESC_STR "Y")}, | |
801 {K_S_F1, IF_EB("\033p", ESC_STR "p")}, | |
802 {K_S_F2, IF_EB("\033q", ESC_STR "q")}, | |
803 {K_S_F3, IF_EB("\033r", ESC_STR "r")}, | |
804 {K_S_F4, IF_EB("\033s", ESC_STR "s")}, | |
805 {K_S_F5, IF_EB("\033t", ESC_STR "t")}, | |
806 {K_S_F6, IF_EB("\033u", ESC_STR "u")}, | |
807 {K_S_F7, IF_EB("\033v", ESC_STR "v")}, | |
808 {K_S_F8, IF_EB("\033w", ESC_STR "w")}, | |
809 {K_S_F9, IF_EB("\033x", ESC_STR "x")}, | |
810 {K_S_F10, IF_EB("\033y", ESC_STR "y")}, | |
811 {K_INS, IF_EB("\033I", ESC_STR "I")}, | |
812 {K_HOME, IF_EB("\033E", ESC_STR "E")}, | |
813 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")}, | |
814 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")}, | |
815 # else | |
816 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")}, | |
817 {(int)KS_MS, "y"}, | |
818 # endif | |
819 # endif | |
820 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
821 # 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
|
822 {(int)KS_NAME, "xterm"}, |
7 | 823 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")}, |
824 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")}, | |
825 # ifdef TERMINFO | |
826 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")}, | |
827 # else | |
828 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")}, | |
829 # endif | |
830 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")}, | |
831 # ifdef TERMINFO | |
832 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")}, | |
833 # else | |
834 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")}, | |
835 # endif | |
836 # ifdef TERMINFO | |
837 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr", | |
838 ESC_STR "[%i%p1%d;%p2%dr")}, | |
839 # else | |
840 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")}, | |
841 # endif | |
842 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")}, | |
843 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")}, | |
844 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")}, | |
845 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")}, | |
846 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, | |
847 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")}, | |
848 {(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
|
849 {(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
|
850 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")}, |
7 | 851 {(int)KS_MS, "y"}, |
852 {(int)KS_UT, "y"}, | |
853 {(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
|
854 {(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
|
855 {(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
|
856 {(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
|
857 {(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
|
858 # ifdef TERMINFO |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
859 {(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
|
860 # else |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
861 {(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
|
862 # endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
863 {(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
|
864 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")}, |
7 | 865 # ifdef TERMINFO |
866 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
867 ESC_STR "[%i%p1%d;%p2%dH")}, | |
868 # else | |
869 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
870 # endif | |
871 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")}, | |
872 # ifdef TERMINFO | |
873 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")}, | |
874 # else | |
875 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")}, | |
876 # endif | |
877 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")}, | |
878 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")}, | |
879 # ifdef FEAT_XTERM_SAVE | |
880 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")}, | |
881 {(int)KS_TE, IF_EB("\033[2J\033[?47l\0338", | |
882 ESC_STR "[2J" ESC_STR_nc "[?47l" ESC_STR_nc "8")}, | |
883 # endif | |
884 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")}, | |
885 {(int)KS_CIE, "\007"}, | |
886 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")}, | |
887 {(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
|
888 {(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
|
889 {(int)KS_CEC, "\007"}, |
7 | 890 # ifdef TERMINFO |
891 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt", | |
892 ESC_STR "[8;%p1%d;%p2%dt")}, | |
893 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt", | |
894 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
|
895 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")}, |
7 | 896 # else |
897 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")}, | |
898 {(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
|
899 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")}, |
7 | 900 # endif |
901 {(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
|
902 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")}, |
6874 | 903 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")}, |
4215 | 904 {(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
|
905 # ifdef FEAT_TERMGUICOLORS |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
906 /* These are printf strings, not terminal codes. */ |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
907 {(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
|
908 {(int)KS_8B, IF_EB("\033[48;2;%lu;%lu;%lum", ESC_STR "[48;2;%lu;%lu;%lum")}, |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
909 # endif |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
910 {(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
|
911 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")}, |
180 | 912 |
913 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")}, | |
914 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")}, | |
915 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")}, | |
916 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")}, | |
917 /* An extra set of cursor keys for vt100 mode */ | |
918 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")}, | |
919 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")}, | |
920 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")}, | |
921 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")}, | |
7 | 922 /* An extra set of function keys for vt100 mode */ |
180 | 923 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")}, |
924 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")}, | |
925 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")}, | |
926 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")}, | |
179 | 927 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")}, |
928 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")}, | |
929 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")}, | |
930 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")}, | |
931 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")}, | |
932 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")}, | |
933 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")}, | |
934 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")}, | |
935 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")}, | |
936 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")}, | |
937 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")}, | |
938 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")}, | |
7 | 939 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")}, |
179 | 940 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")}, |
941 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")}, | |
942 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")}, | |
943 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")}, | |
180 | 944 /* {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")}, */ |
945 /* {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")}, */ | |
230 | 946 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")}, |
180 | 947 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, /* other Home */ |
230 | 948 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, /* other Home */ |
179 | 949 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")}, |
180 | 950 /* {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")}, */ |
951 /* {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")}, */ | |
179 | 952 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")}, |
180 | 953 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, /* other End */ |
230 | 954 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")}, |
179 | 955 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")}, |
956 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
957 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, /* keypad plus */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
958 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, /* keypad minus */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
959 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, /* keypad / */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
960 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, /* keypad * */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
961 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, /* keypad Enter */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
962 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, /* keypad . */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
963 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, /* keypad Del */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
964 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, /* paste start */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
965 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, /* paste end */ |
7 | 966 |
967 {BT_EXTRA_KEYS, ""}, | |
179 | 968 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, /* F0 */ |
969 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, /* F13 */ | |
970 /* F14 and F15 are missing, because they send the same codes as the undo | |
971 * and help key, although they don't work on all keyboards. */ | |
972 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, /* F16 */ | |
973 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, /* F17 */ | |
974 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, /* F18 */ | |
975 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, /* F19 */ | |
976 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, /* F20 */ | |
977 | |
978 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, /* F21 */ | |
979 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, /* F22 */ | |
980 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, /* F23 */ | |
981 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, /* F24 */ | |
982 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, /* F25 */ | |
983 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, /* F26 */ | |
984 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, /* F27 */ | |
985 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, /* F28 */ | |
986 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, /* F29 */ | |
987 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, /* F30 */ | |
988 | |
989 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, /* F31 */ | |
990 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, /* F32 */ | |
991 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, /* F33 */ | |
992 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, /* F34 */ | |
993 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, /* F35 */ | |
994 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, /* F36 */ | |
995 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, /* F37 */ | |
7 | 996 # endif |
997 | |
998 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) | |
999 /* | |
1000 * iris-ansi for Silicon Graphics machines. | |
1001 */ | |
1002 {(int)KS_NAME, "iris-ansi"}, | |
1003 {(int)KS_CE, "\033[K"}, | |
1004 {(int)KS_CD, "\033[J"}, | |
1005 {(int)KS_AL, "\033[L"}, | |
1006 # ifdef TERMINFO | |
1007 {(int)KS_CAL, "\033[%p1%dL"}, | |
1008 # else | |
1009 {(int)KS_CAL, "\033[%dL"}, | |
1010 # endif | |
1011 {(int)KS_DL, "\033[M"}, | |
1012 # ifdef TERMINFO | |
1013 {(int)KS_CDL, "\033[%p1%dM"}, | |
1014 # else | |
1015 {(int)KS_CDL, "\033[%dM"}, | |
1016 # endif | |
1017 #if 0 /* The scroll region is not working as Vim expects. */ | |
1018 # ifdef TERMINFO | |
1019 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"}, | |
1020 # else | |
1021 {(int)KS_CS, "\033[%i%d;%dr"}, | |
1022 # endif | |
1023 #endif | |
1024 {(int)KS_CL, "\033[H\033[2J"}, | |
1025 {(int)KS_VE, "\033[9/y\033[12/y"}, /* These aren't documented */ | |
1026 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, /* These aren't documented */ | |
1027 {(int)KS_TI, "\033[=6h"}, | |
1028 {(int)KS_TE, "\033[=6l"}, | |
1029 {(int)KS_SE, "\033[21;27m"}, | |
1030 {(int)KS_SO, "\033[1;7m"}, | |
1031 {(int)KS_ME, "\033[m"}, | |
1032 {(int)KS_MR, "\033[7m"}, | |
1033 {(int)KS_MD, "\033[1m"}, | |
1034 {(int)KS_CCO, "8"}, /* allow 8 colors */ | |
1035 {(int)KS_CZH, "\033[3m"}, /* italic mode on */ | |
1036 {(int)KS_CZR, "\033[23m"}, /* italic mode off */ | |
1037 {(int)KS_US, "\033[4m"}, /* underline on */ | |
1038 {(int)KS_UE, "\033[24m"}, /* underline off */ | |
1039 # ifdef TERMINFO | |
1040 {(int)KS_CAB, "\033[4%p1%dm"}, /* set background color (ANSI) */ | |
1041 {(int)KS_CAF, "\033[3%p1%dm"}, /* set foreground color (ANSI) */ | |
1042 {(int)KS_CSB, "\033[102;%p1%dm"}, /* set screen background color */ | |
1043 {(int)KS_CSF, "\033[101;%p1%dm"}, /* set screen foreground color */ | |
1044 # else | |
1045 {(int)KS_CAB, "\033[4%dm"}, /* set background color (ANSI) */ | |
1046 {(int)KS_CAF, "\033[3%dm"}, /* set foreground color (ANSI) */ | |
1047 {(int)KS_CSB, "\033[102;%dm"}, /* set screen background color */ | |
1048 {(int)KS_CSF, "\033[101;%dm"}, /* set screen foreground color */ | |
1049 # endif | |
1050 {(int)KS_MS, "y"}, /* guessed */ | |
1051 {(int)KS_UT, "y"}, /* guessed */ | |
1052 {(int)KS_LE, "\b"}, | |
1053 # ifdef TERMINFO | |
1054 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"}, | |
1055 # else | |
1056 {(int)KS_CM, "\033[%i%d;%dH"}, | |
1057 # endif | |
1058 {(int)KS_SR, "\033M"}, | |
1059 # ifdef TERMINFO | |
1060 {(int)KS_CRI, "\033[%p1%dC"}, | |
1061 # else | |
1062 {(int)KS_CRI, "\033[%dC"}, | |
1063 # endif | |
1064 {(int)KS_CIS, "\033P3.y"}, | |
1065 {(int)KS_CIE, "\234"}, /* ST "String Terminator" */ | |
1066 {(int)KS_TS, "\033P1.y"}, | |
1067 {(int)KS_FS, "\234"}, /* ST "String Terminator" */ | |
1068 # ifdef TERMINFO | |
1069 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"}, | |
1070 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"}, | |
1071 # else | |
1072 {(int)KS_CWS, "\033[203;%d;%d/y"}, | |
1073 {(int)KS_CWP, "\033[205;%d;%d/y"}, | |
1074 # endif | |
1075 {K_UP, "\033[A"}, | |
1076 {K_DOWN, "\033[B"}, | |
1077 {K_LEFT, "\033[D"}, | |
1078 {K_RIGHT, "\033[C"}, | |
1079 {K_S_UP, "\033[161q"}, | |
1080 {K_S_DOWN, "\033[164q"}, | |
1081 {K_S_LEFT, "\033[158q"}, | |
1082 {K_S_RIGHT, "\033[167q"}, | |
1083 {K_F1, "\033[001q"}, | |
1084 {K_F2, "\033[002q"}, | |
1085 {K_F3, "\033[003q"}, | |
1086 {K_F4, "\033[004q"}, | |
1087 {K_F5, "\033[005q"}, | |
1088 {K_F6, "\033[006q"}, | |
1089 {K_F7, "\033[007q"}, | |
1090 {K_F8, "\033[008q"}, | |
1091 {K_F9, "\033[009q"}, | |
1092 {K_F10, "\033[010q"}, | |
1093 {K_F11, "\033[011q"}, | |
1094 {K_F12, "\033[012q"}, | |
1095 {K_S_F1, "\033[013q"}, | |
1096 {K_S_F2, "\033[014q"}, | |
1097 {K_S_F3, "\033[015q"}, | |
1098 {K_S_F4, "\033[016q"}, | |
1099 {K_S_F5, "\033[017q"}, | |
1100 {K_S_F6, "\033[018q"}, | |
1101 {K_S_F7, "\033[019q"}, | |
1102 {K_S_F8, "\033[020q"}, | |
1103 {K_S_F9, "\033[021q"}, | |
1104 {K_S_F10, "\033[022q"}, | |
1105 {K_S_F11, "\033[023q"}, | |
1106 {K_S_F12, "\033[024q"}, | |
1107 {K_INS, "\033[139q"}, | |
1108 {K_HOME, "\033[H"}, | |
1109 {K_END, "\033[146q"}, | |
1110 {K_PAGEUP, "\033[150q"}, | |
1111 {K_PAGEDOWN, "\033[154q"}, | |
1112 # endif | |
1113 | |
1114 # if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS) | |
1115 /* | |
1116 * for debugging | |
1117 */ | |
1118 {(int)KS_NAME, "debug"}, | |
1119 {(int)KS_CE, "[CE]"}, | |
1120 {(int)KS_CD, "[CD]"}, | |
1121 {(int)KS_AL, "[AL]"}, | |
1122 # ifdef TERMINFO | |
1123 {(int)KS_CAL, "[CAL%p1%d]"}, | |
1124 # else | |
1125 {(int)KS_CAL, "[CAL%d]"}, | |
1126 # endif | |
1127 {(int)KS_DL, "[DL]"}, | |
1128 # ifdef TERMINFO | |
1129 {(int)KS_CDL, "[CDL%p1%d]"}, | |
1130 # else | |
1131 {(int)KS_CDL, "[CDL%d]"}, | |
1132 # endif | |
1133 # ifdef TERMINFO | |
1134 {(int)KS_CS, "[%p1%dCS%p2%d]"}, | |
1135 # else | |
1136 {(int)KS_CS, "[%dCS%d]"}, | |
1137 # endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
1138 # ifdef TERMINFO |
7 | 1139 {(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
|
1140 # else |
7 | 1141 {(int)KS_CSV, "[%dCSV%d]"}, |
1142 # endif | |
1143 # ifdef TERMINFO | |
1144 {(int)KS_CAB, "[CAB%p1%d]"}, | |
1145 {(int)KS_CAF, "[CAF%p1%d]"}, | |
1146 {(int)KS_CSB, "[CSB%p1%d]"}, | |
1147 {(int)KS_CSF, "[CSF%p1%d]"}, | |
1148 # else | |
1149 {(int)KS_CAB, "[CAB%d]"}, | |
1150 {(int)KS_CAF, "[CAF%d]"}, | |
1151 {(int)KS_CSB, "[CSB%d]"}, | |
1152 {(int)KS_CSF, "[CSF%d]"}, | |
1153 # endif | |
1154 {(int)KS_OP, "[OP]"}, | |
1155 {(int)KS_LE, "[LE]"}, | |
1156 {(int)KS_CL, "[CL]"}, | |
1157 {(int)KS_VI, "[VI]"}, | |
1158 {(int)KS_VE, "[VE]"}, | |
1159 {(int)KS_VS, "[VS]"}, | |
1160 {(int)KS_ME, "[ME]"}, | |
1161 {(int)KS_MR, "[MR]"}, | |
1162 {(int)KS_MB, "[MB]"}, | |
1163 {(int)KS_MD, "[MD]"}, | |
1164 {(int)KS_SE, "[SE]"}, | |
1165 {(int)KS_SO, "[SO]"}, | |
1166 {(int)KS_UE, "[UE]"}, | |
1167 {(int)KS_US, "[US]"}, | |
205 | 1168 {(int)KS_UCE, "[UCE]"}, |
1169 {(int)KS_UCS, "[UCS]"}, | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1170 {(int)KS_STE, "[STE]"}, |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12307
diff
changeset
|
1171 {(int)KS_STS, "[STS]"}, |
7 | 1172 {(int)KS_MS, "[MS]"}, |
1173 {(int)KS_UT, "[UT]"}, | |
6602 | 1174 {(int)KS_XN, "[XN]"}, |
7 | 1175 # ifdef TERMINFO |
1176 {(int)KS_CM, "[%p1%dCM%p2%d]"}, | |
1177 # else | |
1178 {(int)KS_CM, "[%dCM%d]"}, | |
1179 # endif | |
1180 {(int)KS_SR, "[SR]"}, | |
1181 # ifdef TERMINFO | |
1182 {(int)KS_CRI, "[CRI%p1%d]"}, | |
1183 # else | |
1184 {(int)KS_CRI, "[CRI%d]"}, | |
1185 # endif | |
1186 {(int)KS_VB, "[VB]"}, | |
1187 {(int)KS_KS, "[KS]"}, | |
1188 {(int)KS_KE, "[KE]"}, | |
1189 {(int)KS_TI, "[TI]"}, | |
1190 {(int)KS_TE, "[TE]"}, | |
1191 {(int)KS_CIS, "[CIS]"}, | |
1192 {(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
|
1193 {(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
|
1194 {(int)KS_CEC, "[CEC]"}, |
7 | 1195 {(int)KS_TS, "[TS]"}, |
1196 {(int)KS_FS, "[FS]"}, | |
1197 # ifdef TERMINFO | |
1198 {(int)KS_CWS, "[%p1%dCWS%p2%d]"}, | |
1199 {(int)KS_CWP, "[%p1%dCWP%p2%d]"}, | |
1200 # else | |
1201 {(int)KS_CWS, "[%dCWS%d]"}, | |
1202 {(int)KS_CWP, "[%dCWP%d]"}, | |
1203 # endif | |
1204 {(int)KS_CRV, "[CRV]"}, | |
4215 | 1205 {(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
|
1206 {(int)KS_RFG, "[RFG]"}, |
6874 | 1207 {(int)KS_RBG, "[RBG]"}, |
7 | 1208 {K_UP, "[KU]"}, |
1209 {K_DOWN, "[KD]"}, | |
1210 {K_LEFT, "[KL]"}, | |
1211 {K_RIGHT, "[KR]"}, | |
180 | 1212 {K_XUP, "[xKU]"}, |
1213 {K_XDOWN, "[xKD]"}, | |
1214 {K_XLEFT, "[xKL]"}, | |
1215 {K_XRIGHT, "[xKR]"}, | |
7 | 1216 {K_S_UP, "[S-KU]"}, |
1217 {K_S_DOWN, "[S-KD]"}, | |
1218 {K_S_LEFT, "[S-KL]"}, | |
1219 {K_C_LEFT, "[C-KL]"}, | |
1220 {K_S_RIGHT, "[S-KR]"}, | |
1221 {K_C_RIGHT, "[C-KR]"}, | |
1222 {K_F1, "[F1]"}, | |
1223 {K_XF1, "[xF1]"}, | |
1224 {K_F2, "[F2]"}, | |
1225 {K_XF2, "[xF2]"}, | |
1226 {K_F3, "[F3]"}, | |
1227 {K_XF3, "[xF3]"}, | |
1228 {K_F4, "[F4]"}, | |
1229 {K_XF4, "[xF4]"}, | |
1230 {K_F5, "[F5]"}, | |
1231 {K_F6, "[F6]"}, | |
1232 {K_F7, "[F7]"}, | |
1233 {K_F8, "[F8]"}, | |
1234 {K_F9, "[F9]"}, | |
1235 {K_F10, "[F10]"}, | |
1236 {K_F11, "[F11]"}, | |
1237 {K_F12, "[F12]"}, | |
1238 {K_S_F1, "[S-F1]"}, | |
1239 {K_S_XF1, "[S-xF1]"}, | |
1240 {K_S_F2, "[S-F2]"}, | |
1241 {K_S_XF2, "[S-xF2]"}, | |
1242 {K_S_F3, "[S-F3]"}, | |
1243 {K_S_XF3, "[S-xF3]"}, | |
1244 {K_S_F4, "[S-F4]"}, | |
1245 {K_S_XF4, "[S-xF4]"}, | |
1246 {K_S_F5, "[S-F5]"}, | |
1247 {K_S_F6, "[S-F6]"}, | |
1248 {K_S_F7, "[S-F7]"}, | |
1249 {K_S_F8, "[S-F8]"}, | |
1250 {K_S_F9, "[S-F9]"}, | |
1251 {K_S_F10, "[S-F10]"}, | |
1252 {K_S_F11, "[S-F11]"}, | |
1253 {K_S_F12, "[S-F12]"}, | |
1254 {K_HELP, "[HELP]"}, | |
1255 {K_UNDO, "[UNDO]"}, | |
1256 {K_BS, "[BS]"}, | |
1257 {K_INS, "[INS]"}, | |
1258 {K_KINS, "[KINS]"}, | |
1259 {K_DEL, "[DEL]"}, | |
1260 {K_KDEL, "[KDEL]"}, | |
1261 {K_HOME, "[HOME]"}, | |
1262 {K_S_HOME, "[C-HOME]"}, | |
1263 {K_C_HOME, "[C-HOME]"}, | |
1264 {K_KHOME, "[KHOME]"}, | |
1265 {K_XHOME, "[XHOME]"}, | |
230 | 1266 {K_ZHOME, "[ZHOME]"}, |
7 | 1267 {K_END, "[END]"}, |
1268 {K_S_END, "[C-END]"}, | |
1269 {K_C_END, "[C-END]"}, | |
1270 {K_KEND, "[KEND]"}, | |
1271 {K_XEND, "[XEND]"}, | |
230 | 1272 {K_ZEND, "[ZEND]"}, |
7 | 1273 {K_PAGEUP, "[PAGEUP]"}, |
1274 {K_PAGEDOWN, "[PAGEDOWN]"}, | |
1275 {K_KPAGEUP, "[KPAGEUP]"}, | |
1276 {K_KPAGEDOWN, "[KPAGEDOWN]"}, | |
1277 {K_MOUSE, "[MOUSE]"}, | |
1278 {K_KPLUS, "[KPLUS]"}, | |
1279 {K_KMINUS, "[KMINUS]"}, | |
1280 {K_KDIVIDE, "[KDIVIDE]"}, | |
1281 {K_KMULTIPLY, "[KMULTIPLY]"}, | |
1282 {K_KENTER, "[KENTER]"}, | |
1283 {K_KPOINT, "[KPOINT]"}, | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1284 {K_PS, "[PASTE-START]"}, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10512
diff
changeset
|
1285 {K_PE, "[PASTE-END]"}, |
7 | 1286 {K_K0, "[K0]"}, |
1287 {K_K1, "[K1]"}, | |
1288 {K_K2, "[K2]"}, | |
1289 {K_K3, "[K3]"}, | |
1290 {K_K4, "[K4]"}, | |
1291 {K_K5, "[K5]"}, | |
1292 {K_K6, "[K6]"}, | |
1293 {K_K7, "[K7]"}, | |
1294 {K_K8, "[K8]"}, | |
1295 {K_K9, "[K9]"}, | |
1296 # endif | |
1297 | |
1298 #endif /* NO_BUILTIN_TCAPS */ | |
1299 | |
1300 /* | |
1301 * The most minimal terminal: only clear screen and cursor positioning | |
1302 * Always included. | |
1303 */ | |
1304 {(int)KS_NAME, "dumb"}, | |
1305 {(int)KS_CL, "\014"}, | |
1306 #ifdef TERMINFO | |
1307 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", | |
1308 ESC_STR "[%i%p1%d;%p2%dH")}, | |
1309 #else | |
1310 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")}, | |
1311 #endif | |
1312 | |
1313 /* | |
1314 * end marker | |
1315 */ | |
1316 {(int)KS_NAME, NULL} | |
1317 | |
1318 }; /* end of builtin_termcaps */ | |
1319 | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1320 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO) |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1321 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1322 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
|
1323 { |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
1324 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
|
1325 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1326 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1327 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1328 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
|
1329 { |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1330 guicolor_T t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1331 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1332 if (*name == NUL) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1333 return INVALCOLOR; |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1334 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
|
1335 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1336 if (t == INVALCOLOR) |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1337 EMSG2(_("E254: Cannot allocate color %s"), name); |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1338 return t; |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1339 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1340 |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1341 guicolor_T |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
1342 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
|
1343 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
1344 return color; |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1345 } |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1346 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1347 |
7 | 1348 /* |
1349 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM. | |
1350 */ | |
1351 #ifdef AMIGA | |
1352 # define DEFAULT_TERM (char_u *)"amiga" | |
1353 #endif | |
1354 | |
1355 #ifdef MSWIN | |
1356 # define DEFAULT_TERM (char_u *)"win32" | |
1357 #endif | |
1358 | |
1359 #if defined(UNIX) && !defined(__MINT__) | |
1360 # define DEFAULT_TERM (char_u *)"ansi" | |
1361 #endif | |
1362 | |
1363 #ifdef __MINT__ | |
1364 # define DEFAULT_TERM (char_u *)"vt52" | |
1365 #endif | |
1366 | |
1367 #ifdef VMS | |
1368 # define DEFAULT_TERM (char_u *)"vt320" | |
1369 #endif | |
1370 | |
1371 #ifdef __BEOS__ | |
1372 # undef DEFAULT_TERM | |
1373 # define DEFAULT_TERM (char_u *)"beos-ansi" | |
1374 #endif | |
1375 | |
1376 #ifndef DEFAULT_TERM | |
1377 # define DEFAULT_TERM (char_u *)"dumb" | |
1378 #endif | |
1379 | |
1380 /* | |
1381 * Term_strings contains currently used terminal output strings. | |
1382 * It is initialized with the default values by parse_builtin_tcap(). | |
1383 * The values can be changed by setting the option with the same name. | |
1384 */ | |
1385 char_u *(term_strings[(int)KS_LAST + 1]); | |
1386 | |
1221 | 1387 static int need_gather = FALSE; /* need to fill termleader[] */ |
1388 static char_u termleader[256 + 1]; /* for check_termcode() */ | |
7 | 1389 #ifdef FEAT_TERMRESPONSE |
1221 | 1390 static int check_for_codes = FALSE; /* check for key code response */ |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
1391 static int is_not_xterm = FALSE; /* recognized not-really-xterm */ |
7 | 1392 #endif |
1393 | |
1394 static struct builtin_term * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1395 find_builtin_term(char_u *term) |
7 | 1396 { |
1397 struct builtin_term *p; | |
1398 | |
1399 p = builtin_termcaps; | |
1400 while (p->bt_string != NULL) | |
1401 { | |
1402 if (p->bt_entry == (int)KS_NAME) | |
1403 { | |
1404 #ifdef UNIX | |
1405 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term)) | |
1406 return p; | |
1407 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term)) | |
1408 return p; | |
1409 else | |
1410 #endif | |
1411 #ifdef VMS | |
1412 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term)) | |
1413 return p; | |
1414 else | |
1415 #endif | |
1416 if (STRCMP(term, p->bt_string) == 0) | |
1417 return p; | |
1418 } | |
1419 ++p; | |
1420 } | |
1421 return p; | |
1422 } | |
1423 | |
1424 /* | |
1425 * Parsing of the builtin termcap entries. | |
1426 * Caller should check if 'name' is a valid builtin term. | |
1427 * The terminal's name is not set, as this is already done in termcapinit(). | |
1428 */ | |
1429 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1430 parse_builtin_tcap(char_u *term) |
7 | 1431 { |
1432 struct builtin_term *p; | |
1433 char_u name[2]; | |
1434 int term_8bit; | |
1435 | |
1436 p = find_builtin_term(term); | |
1437 term_8bit = term_is_8bit(term); | |
1438 | |
1439 /* Do not parse if builtin term not found */ | |
1440 if (p->bt_string == NULL) | |
1441 return; | |
1442 | |
1443 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p) | |
1444 { | |
1445 if ((int)p->bt_entry >= 0) /* KS_xx entry */ | |
1446 { | |
1447 /* Only set the value if it wasn't set yet. */ | |
1448 if (term_strings[p->bt_entry] == NULL | |
1449 || term_strings[p->bt_entry] == empty_option) | |
1450 { | |
1451 /* 8bit terminal: use CSI instead of <Esc>[ */ | |
1452 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0) | |
1453 { | |
1454 char_u *s, *t; | |
1455 | |
1456 s = vim_strsave((char_u *)p->bt_string); | |
1457 if (s != NULL) | |
1458 { | |
1459 for (t = s; *t; ++t) | |
1460 if (term_7to8bit(t)) | |
1461 { | |
1462 *t = term_7to8bit(t); | |
1463 STRCPY(t + 1, t + 2); | |
1464 } | |
1465 term_strings[p->bt_entry] = s; | |
1466 set_term_option_alloced(&term_strings[p->bt_entry]); | |
1467 } | |
1468 } | |
1469 else | |
1470 term_strings[p->bt_entry] = (char_u *)p->bt_string; | |
1471 } | |
1472 } | |
1473 else | |
1474 { | |
1475 name[0] = KEY2TERMCAP0((int)p->bt_entry); | |
1476 name[1] = KEY2TERMCAP1((int)p->bt_entry); | |
1477 if (find_termcode(name) == NULL) | |
1478 add_termcode(name, (char_u *)p->bt_string, term_8bit); | |
1479 } | |
1480 } | |
1481 } | |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1482 |
7 | 1483 /* |
1484 * Set number of colors. | |
1485 * Store it as a number in t_colors. | |
1486 * Store it as a string in T_CCO (using nr_colors[]). | |
1487 */ | |
1488 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1489 set_color_count(int nr) |
7 | 1490 { |
1491 char_u nr_colors[20]; /* string for number of colors */ | |
1492 | |
1493 t_colors = nr; | |
1494 if (t_colors > 1) | |
1495 sprintf((char *)nr_colors, "%d", t_colors); | |
1496 else | |
1497 *nr_colors = NUL; | |
694 | 1498 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0); |
7 | 1499 } |
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
|
1500 |
11739
5c69c6d9e2eb
patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
1501 #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
|
1502 /* |
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
|
1503 * 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
|
1504 */ |
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
|
1505 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
|
1506 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
|
1507 { |
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
|
1508 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
|
1509 { |
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
|
1510 /* Nr of colors changed, initialize highlighting and |
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
|
1511 * redraw everything. This causes a redraw, which usually |
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
|
1512 * clears the message. Try keeping the message if it |
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
|
1513 * might work. */ |
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
|
1514 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
|
1515 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
|
1516 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
|
1517 # 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
|
1518 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1519 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
|
1520 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1521 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
|
1522 } |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1523 #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
|
1524 redraw_asap(CLEAR); |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1525 #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
|
1526 } |
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
|
1527 } |
7 | 1528 #endif |
1529 | |
1530 #ifdef HAVE_TGETENT | |
1531 static char *(key_names[]) = | |
1532 { | |
1533 #ifdef FEAT_TERMRESPONSE | |
1534 /* Do this one first, it may cause a screen redraw. */ | |
1535 "Co", | |
1536 #endif | |
1537 "ku", "kd", "kr", "kl", | |
1538 "#2", "#4", "%i", "*7", | |
1539 "k1", "k2", "k3", "k4", "k5", "k6", | |
1540 "k7", "k8", "k9", "k;", "F1", "F2", | |
1541 "%1", "&8", "kb", "kI", "kD", "kh", | |
1542 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB", | |
1543 NULL | |
1544 }; | |
1545 #endif | |
1546 | |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1547 #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
|
1548 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1549 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
|
1550 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1551 static struct { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1552 enum SpecialKey dest; /* index in term_strings[] */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1553 char *name; /* termcap name for string */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1554 } string_names[] = |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1555 { {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
|
1556 {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
|
1557 {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
|
1558 {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
|
1559 {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
|
1560 {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
|
1561 {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
|
1562 {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
|
1563 {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
|
1564 {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
|
1565 {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
|
1566 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1567 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1568 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1569 {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
|
1570 {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
|
1571 {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
|
1572 {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
|
1573 {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
|
1574 {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
|
1575 {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
|
1576 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1577 {KS_8F, "8f"}, {KS_8B, "8b"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1578 {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
|
1579 {KS_CPS, "PS"}, {KS_CPE, "PE"}, |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1580 {(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
|
1581 }; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1582 int i; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1583 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
|
1584 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
|
1585 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
|
1586 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1587 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1588 * 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
|
1589 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1590 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
|
1591 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1592 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
|
1593 || TERM_STR(string_names[i].dest) == empty_option) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1594 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1595 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1596 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1597 /* tgetflag() returns 1 if the flag is present, 0 if not and |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1598 * possibly -1 if the flag doesn't exist. */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1599 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
|
1600 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
|
1601 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
|
1602 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
|
1603 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
|
1604 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
|
1605 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
|
1606 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
|
1607 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
|
1608 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
|
1609 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
|
1610 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
|
1611 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1612 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1613 * 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
|
1614 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1615 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
|
1616 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
|
1617 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1618 p = TGETSTR(key_names[i], &tp); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1619 /* if cursor-left == backspace, ignore it (televideo 925) */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1620 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
|
1621 && (*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
|
1622 || 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
|
1623 || 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
|
1624 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
|
1625 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1626 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1627 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
|
1628 *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
|
1629 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
|
1630 *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
|
1631 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1632 /* |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1633 * 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
|
1634 */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1635 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1636 set_color_count(tgetnum("Co")); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1637 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1638 # ifndef hpux |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1639 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
|
1640 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
|
1641 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
|
1642 if (p) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1643 PC = *p; |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1644 # endif |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1645 } |
13874
fc2f175e8169
patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents:
13872
diff
changeset
|
1646 #endif |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1647 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1648 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1649 report_term_error(char_u *error_msg, 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
|
1650 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1651 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
|
1652 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1653 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
|
1654 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
|
1655 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1656 mch_errmsg((char *)error_msg); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1657 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
|
1658 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1659 mch_errmsg("'"); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1660 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
|
1661 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
|
1662 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
|
1663 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
|
1664 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1665 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
|
1666 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1667 #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
|
1668 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
|
1669 #else |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1670 mch_errmsg(" "); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1671 #endif |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1672 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
|
1673 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
|
1674 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1675 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1676 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1677 |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1678 static void |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1679 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
|
1680 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1681 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
|
1682 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
|
1683 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
|
1684 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
|
1685 { |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1686 screen_start(); /* don't know where cursor is now */ |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1687 out_flush(); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1688 if (!is_not_a_term()) |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1689 ui_delay(2000L, TRUE); |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1690 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1691 } |
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1692 |
7 | 1693 /* |
1694 * Set terminal options for terminal "term". | |
1695 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise. | |
1696 * | |
1697 * While doing this, until ttest(), some options may be NULL, be careful. | |
1698 */ | |
1699 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1700 set_termname(char_u *term) |
7 | 1701 { |
1702 struct builtin_term *termp; | |
1703 #ifdef HAVE_TGETENT | |
1704 int builtin_first = p_tbi; | |
1705 int try; | |
1706 int termcap_cleared = FALSE; | |
1707 #endif | |
1708 int width = 0, height = 0; | |
1709 char_u *error_msg = NULL; | |
1710 char_u *bs_p, *del_p; | |
1711 | |
168 | 1712 /* In silect mode (ex -s) we don't use the 'term' option. */ |
1713 if (silent_mode) | |
1714 return OK; | |
1715 | |
7 | 1716 detected_8bit = FALSE; /* reset 8-bit detection */ |
1717 | |
1718 if (term_is_builtin(term)) | |
1719 { | |
1720 term += 8; | |
1721 #ifdef HAVE_TGETENT | |
1722 builtin_first = 1; | |
1723 #endif | |
1724 } | |
1725 | |
1726 /* | |
1727 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise: | |
1728 * If builtin_first is TRUE: | |
1729 * 0. try builtin termcap | |
1730 * 1. try external termcap | |
1731 * 2. if both fail default to a builtin terminal | |
1732 * If builtin_first is FALSE: | |
1733 * 1. try external termcap | |
1734 * 2. try builtin termcap, if both fail default to a builtin terminal | |
1735 */ | |
1736 #ifdef HAVE_TGETENT | |
1737 for (try = builtin_first ? 0 : 1; try < 3; ++try) | |
1738 { | |
1739 /* | |
1740 * Use external termcap | |
1741 */ | |
1742 if (try == 1) | |
1743 { | |
1744 char_u tbuf[TBUFSZ]; | |
1745 | |
1746 /* | |
1747 * If the external termcap does not have a matching entry, try the | |
1748 * builtin ones. | |
1749 */ | |
1750 if ((error_msg = tgetent_error(tbuf, term)) == NULL) | |
1751 { | |
1752 if (!termcap_cleared) | |
1753 { | |
1754 clear_termoptions(); /* clear old options */ | |
1755 termcap_cleared = TRUE; | |
1756 } | |
1757 | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1758 get_term_entries(&height, &width); |
7 | 1759 } |
1760 } | |
1761 else /* try == 0 || try == 2 */ | |
1762 #endif /* HAVE_TGETENT */ | |
1763 /* | |
1764 * Use builtin termcap | |
1765 */ | |
1766 { | |
1767 #ifdef HAVE_TGETENT | |
1768 /* | |
1769 * If builtin termcap was already used, there is no need to search | |
1770 * for the builtin termcap again, quit now. | |
1771 */ | |
1772 if (try == 2 && builtin_first && termcap_cleared) | |
1773 break; | |
1774 #endif | |
1775 /* | |
1776 * search for 'term' in builtin_termcaps[] | |
1777 */ | |
1778 termp = find_builtin_term(term); | |
1779 if (termp->bt_string == NULL) /* did not find it */ | |
1780 { | |
1781 #ifdef HAVE_TGETENT | |
1782 /* | |
1783 * If try == 0, first try the external termcap. If that is not | |
1784 * found we'll get back here with try == 2. | |
1785 * If termcap_cleared is set we used the external termcap, | |
1786 * don't complain about not finding the term in the builtin | |
1787 * termcap. | |
1788 */ | |
1789 if (try == 0) /* try external one */ | |
1790 continue; | |
1791 if (termcap_cleared) /* found in external termcap */ | |
1792 break; | |
1793 #endif | |
13872
9d3ddfa88a56
patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents:
13839
diff
changeset
|
1794 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
|
1795 |
7 | 1796 /* when user typed :set term=xxx, quit here */ |
1797 if (starting != NO_SCREEN) | |
1798 { | |
1799 screen_start(); /* don't know where cursor is now */ | |
1800 wait_return(TRUE); | |
1801 return FAIL; | |
1802 } | |
1803 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
|
1804 report_default_term(term); |
694 | 1805 set_string_option_direct((char_u *)"term", -1, term, |
1806 OPT_FREE, 0); | |
7 | 1807 display_errors(); |
1808 } | |
1809 out_flush(); | |
1810 #ifdef HAVE_TGETENT | |
1811 if (!termcap_cleared) | |
1812 { | |
1813 #endif | |
1814 clear_termoptions(); /* clear old options */ | |
1815 #ifdef HAVE_TGETENT | |
1816 termcap_cleared = TRUE; | |
1817 } | |
1818 #endif | |
1819 parse_builtin_tcap(term); | |
1820 #ifdef FEAT_GUI | |
1821 if (term_is_gui(term)) | |
1822 { | |
1823 out_flush(); | |
1824 gui_init(); | |
1825 /* If starting the GUI failed, don't do any of the other | |
1826 * things for this terminal */ | |
1827 if (!gui.in_use) | |
1828 return FAIL; | |
1829 #ifdef HAVE_TGETENT | |
1830 break; /* don't try using external termcap */ | |
1831 #endif | |
1832 } | |
1833 #endif /* FEAT_GUI */ | |
1834 } | |
1835 #ifdef HAVE_TGETENT | |
1836 } | |
1837 #endif | |
1838 | |
1839 /* | |
1840 * special: There is no info in the termcap about whether the cursor | |
1841 * positioning is relative to the start of the screen or to the start of the | |
1842 * scrolling region. We just guess here. Only msdos pcterm is known to do it | |
1843 * relative. | |
1844 */ | |
1845 if (STRCMP(term, "pcterm") == 0) | |
1846 T_CCS = (char_u *)"yes"; | |
1847 else | |
1848 T_CCS = empty_option; | |
1849 | |
1850 #ifdef UNIX | |
1851 /* | |
1852 * Any "stty" settings override the default for t_kb from the termcap. | |
1853 * This is in os_unix.c, because it depends a lot on the version of unix that | |
1854 * is being used. | |
1855 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly. | |
1856 */ | |
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
|
1857 # ifdef FEAT_GUI |
7 | 1858 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
|
1859 # endif |
7 | 1860 get_stty(); |
1861 #endif | |
1862 | |
1863 /* | |
1864 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also | |
1865 * didn't work, use the default CTRL-H | |
1866 * The default for t_kD is DEL, unless t_kb is DEL. | |
1867 * The vim_strsave'd strings are probably lost forever, well it's only two | |
1868 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD" | |
1869 * directly. | |
1870 */ | |
1871 #ifdef FEAT_GUI | |
1872 if (!gui.in_use) | |
1873 #endif | |
1874 { | |
1875 bs_p = find_termcode((char_u *)"kb"); | |
1876 del_p = find_termcode((char_u *)"kD"); | |
1877 if (bs_p == NULL || *bs_p == NUL) | |
1878 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE); | |
1879 if ((del_p == NULL || *del_p == NUL) && | |
1880 (bs_p == NULL || *bs_p != DEL)) | |
1881 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE); | |
1882 } | |
1883 | |
1884 #if defined(UNIX) || defined(VMS) | |
1885 term_is_xterm = vim_is_xterm(term); | |
1886 #endif | |
1887 | |
1888 #ifdef FEAT_MOUSE | |
1889 # if defined(UNIX) || defined(VMS) | |
1890 # ifdef FEAT_MOUSE_TTY | |
1891 /* | |
1892 * For Unix, set the 'ttymouse' option to the type of mouse to be used. | |
1893 * The termcode for the mouse is added as a side effect in option.c. | |
1894 */ | |
1895 { | |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
1896 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
|
1897 |
7 | 1898 # ifdef FEAT_MOUSE_XTERM |
1623 | 1899 if (use_xterm_like_mouse(term)) |
7 | 1900 { |
1901 if (use_xterm_mouse()) | |
1902 p = NULL; /* keep existing value, might be "xterm2" */ | |
1903 else | |
1904 p = (char_u *)"xterm"; | |
1905 } | |
1906 # endif | |
1907 if (p != NULL) | |
3980 | 1908 { |
7 | 1909 set_option_value((char_u *)"ttym", 0L, p, 0); |
3980 | 1910 /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or |
1911 * "xterm2" in check_termcode(). */ | |
1912 reset_option_was_set((char_u *)"ttym"); | |
1913 } | |
7 | 1914 if (p == NULL |
1915 # ifdef FEAT_GUI | |
1916 || gui.in_use | |
1917 # endif | |
1918 ) | |
1919 check_mouse_termcode(); /* set mouse termcode anyway */ | |
1920 } | |
1921 # endif | |
1922 # else | |
1923 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M"); | |
1924 # endif | |
1925 #endif /* FEAT_MOUSE */ | |
1926 | |
1927 #ifdef USE_TERM_CONSOLE | |
1928 /* DEFAULT_TERM indicates that it is the machine console. */ | |
1929 if (STRCMP(term, DEFAULT_TERM) != 0) | |
1930 term_console = FALSE; | |
1931 else | |
1932 { | |
1933 term_console = TRUE; | |
1934 # ifdef AMIGA | |
1935 win_resize_on(); /* enable window resizing reports */ | |
1936 # endif | |
1937 } | |
1938 #endif | |
1939 | |
1940 #if defined(UNIX) || defined(VMS) | |
1941 /* | |
1942 * 'ttyfast' is default on for xterm, iris-ansi and a few others. | |
1943 */ | |
1944 if (vim_is_fastterm(term)) | |
1945 p_tf = TRUE; | |
1946 #endif | |
1947 #ifdef USE_TERM_CONSOLE | |
1948 /* | |
1949 * 'ttyfast' is default on consoles | |
1950 */ | |
1951 if (term_console) | |
1952 p_tf = TRUE; | |
1953 #endif | |
1954 | |
1955 ttest(TRUE); /* make sure we have a valid set of terminal codes */ | |
1956 | |
1957 full_screen = TRUE; /* we can use termcap codes from now on */ | |
1958 set_term_defaults(); /* use current values as defaults */ | |
1959 #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
|
1960 LOG_TR(("setting crv_status to STATUS_GET")); |
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
|
1961 crv_status = STATUS_GET; /* Get terminal version later */ |
7 | 1962 #endif |
1963 | |
1964 /* | |
1965 * Initialize the terminal with the appropriate termcap codes. | |
1966 * Set the mouse and window title if possible. | |
1967 * Don't do this when starting, need to parse the .vimrc first, because it | |
1968 * may redefine t_TI etc. | |
1969 */ | |
1970 if (starting != NO_SCREEN) | |
1971 { | |
1972 starttermcap(); /* may change terminal mode */ | |
1973 #ifdef FEAT_MOUSE | |
1974 setmouse(); /* may start using the mouse */ | |
1975 #endif | |
1976 #ifdef FEAT_TITLE | |
1977 maketitle(); /* may display window title */ | |
1978 #endif | |
1979 } | |
1980 | |
1981 /* display initial screen after ttest() checking. jw. */ | |
1982 if (width <= 0 || height <= 0) | |
1983 { | |
1984 /* termcap failed to report size */ | |
1985 /* set defaults, in case ui_get_shellsize() also fails */ | |
1986 width = 80; | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1987 #if defined(WIN3264) |
7 | 1988 height = 25; /* console is often 25 lines */ |
1989 #else | |
1990 height = 24; /* most terminals are 24 lines */ | |
1991 #endif | |
1992 } | |
1993 set_shellsize(width, height, FALSE); /* may change Rows */ | |
1994 if (starting != NO_SCREEN) | |
1995 { | |
1996 if (scroll_region) | |
1997 scroll_region_reset(); /* In case Rows changed */ | |
1998 check_map_keycodes(); /* check mappings for terminal codes used */ | |
1999 | |
2000 { | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
2001 bufref_T old_curbuf; |
7 | 2002 |
2003 /* | |
2004 * Execute the TermChanged autocommands for each buffer that is | |
2005 * loaded. | |
2006 */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
2007 set_bufref(&old_curbuf, curbuf); |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9628
diff
changeset
|
2008 FOR_ALL_BUFFERS(curbuf) |
7 | 2009 { |
2010 if (curbuf->b_ml.ml_mfp != NULL) | |
2011 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE, | |
2012 curbuf); | |
2013 } | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
2014 if (bufref_valid(&old_curbuf)) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
2015 curbuf = old_curbuf.br_buf; |
7 | 2016 } |
2017 } | |
2018 | |
2019 #ifdef FEAT_TERMRESPONSE | |
2020 may_req_termresponse(); | |
2021 #endif | |
2022 | |
2023 return OK; | |
2024 } | |
2025 | |
2026 #if defined(FEAT_MOUSE) || defined(PROTO) | |
2027 | |
2028 # ifdef FEAT_MOUSE_TTY | |
2029 # define HMT_NORMAL 1 | |
2030 # define HMT_NETTERM 2 | |
2031 # define HMT_DEC 4 | |
2032 # define HMT_JSBTERM 8 | |
2033 # define HMT_PTERM 16 | |
3176 | 2034 # define HMT_URXVT 32 |
3746 | 2035 # define HMT_SGR 64 |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2036 # define HMT_SGR_REL 128 |
7 | 2037 static int has_mouse_termcode = 0; |
2038 # endif | |
2039 | |
1623 | 2040 # if (!defined(UNIX) || defined(FEAT_MOUSE_TTY)) || defined(PROTO) |
7 | 2041 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2042 set_mouse_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2043 int n, /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2044 char_u *s) |
7 | 2045 { |
2046 char_u name[2]; | |
2047 | |
2048 name[0] = n; | |
2049 name[1] = KE_FILLER; | |
2050 add_termcode(name, s, FALSE); | |
2051 # ifdef FEAT_MOUSE_TTY | |
2052 # ifdef FEAT_MOUSE_JSB | |
2053 if (n == KS_JSBTERM_MOUSE) | |
2054 has_mouse_termcode |= HMT_JSBTERM; | |
2055 else | |
2056 # endif | |
2057 # ifdef FEAT_MOUSE_NET | |
2058 if (n == KS_NETTERM_MOUSE) | |
2059 has_mouse_termcode |= HMT_NETTERM; | |
2060 else | |
2061 # endif | |
2062 # ifdef FEAT_MOUSE_DEC | |
2063 if (n == KS_DEC_MOUSE) | |
2064 has_mouse_termcode |= HMT_DEC; | |
2065 else | |
2066 # endif | |
2067 # ifdef FEAT_MOUSE_PTERM | |
2068 if (n == KS_PTERM_MOUSE) | |
2069 has_mouse_termcode |= HMT_PTERM; | |
2070 else | |
2071 # endif | |
3176 | 2072 # ifdef FEAT_MOUSE_URXVT |
2073 if (n == KS_URXVT_MOUSE) | |
2074 has_mouse_termcode |= HMT_URXVT; | |
2075 else | |
2076 # endif | |
3746 | 2077 # ifdef FEAT_MOUSE_SGR |
2078 if (n == KS_SGR_MOUSE) | |
2079 has_mouse_termcode |= HMT_SGR; | |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2080 else if (n == KS_SGR_MOUSE_RELEASE) |
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2081 has_mouse_termcode |= HMT_SGR_REL; |
3746 | 2082 else |
2083 # endif | |
7 | 2084 has_mouse_termcode |= HMT_NORMAL; |
2085 # endif | |
2086 } | |
2087 # endif | |
2088 | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2089 # if ((defined(UNIX) || defined(VMS)) \ |
1623 | 2090 && defined(FEAT_MOUSE_TTY)) || defined(PROTO) |
7 | 2091 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2092 del_mouse_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2093 int n) /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */ |
7 | 2094 { |
2095 char_u name[2]; | |
2096 | |
2097 name[0] = n; | |
2098 name[1] = KE_FILLER; | |
2099 del_termcode(name); | |
2100 # ifdef FEAT_MOUSE_TTY | |
2101 # ifdef FEAT_MOUSE_JSB | |
2102 if (n == KS_JSBTERM_MOUSE) | |
2103 has_mouse_termcode &= ~HMT_JSBTERM; | |
2104 else | |
2105 # endif | |
2106 # ifdef FEAT_MOUSE_NET | |
2107 if (n == KS_NETTERM_MOUSE) | |
2108 has_mouse_termcode &= ~HMT_NETTERM; | |
2109 else | |
2110 # endif | |
2111 # ifdef FEAT_MOUSE_DEC | |
2112 if (n == KS_DEC_MOUSE) | |
2113 has_mouse_termcode &= ~HMT_DEC; | |
2114 else | |
2115 # endif | |
2116 # ifdef FEAT_MOUSE_PTERM | |
2117 if (n == KS_PTERM_MOUSE) | |
2118 has_mouse_termcode &= ~HMT_PTERM; | |
2119 else | |
2120 # endif | |
3176 | 2121 # ifdef FEAT_MOUSE_URXVT |
2122 if (n == KS_URXVT_MOUSE) | |
2123 has_mouse_termcode &= ~HMT_URXVT; | |
2124 else | |
2125 # endif | |
3746 | 2126 # ifdef FEAT_MOUSE_SGR |
2127 if (n == KS_SGR_MOUSE) | |
2128 has_mouse_termcode &= ~HMT_SGR; | |
11563
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2129 else if (n == KS_SGR_MOUSE_RELEASE) |
2547bbe6716e
patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
2130 has_mouse_termcode &= ~HMT_SGR_REL; |
3746 | 2131 else |
2132 # endif | |
7 | 2133 has_mouse_termcode &= ~HMT_NORMAL; |
2134 # endif | |
2135 } | |
2136 # endif | |
2137 #endif | |
2138 | |
2139 #ifdef HAVE_TGETENT | |
2140 /* | |
2141 * Call tgetent() | |
2142 * Return error message if it fails, NULL if it's OK. | |
2143 */ | |
2144 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2145 tgetent_error(char_u *tbuf, char_u *term) |
7 | 2146 { |
2147 int i; | |
2148 | |
2149 i = TGETENT(tbuf, term); | |
2150 if (i < 0 /* -1 is always an error */ | |
2151 # ifdef TGETENT_ZERO_ERR | |
2152 || i == 0 /* sometimes zero is also an error */ | |
2153 # endif | |
2154 ) | |
2155 { | |
2156 /* On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call | |
2157 * tgetent() with the always existing "dumb" entry to avoid a crash or | |
2158 * hang. */ | |
2159 (void)TGETENT(tbuf, "dumb"); | |
2160 | |
2161 if (i < 0) | |
2162 # ifdef TGETENT_ZERO_ERR | |
2163 return (char_u *)_("E557: Cannot open termcap file"); | |
2164 if (i == 0) | |
2165 # endif | |
2166 #ifdef TERMINFO | |
2167 return (char_u *)_("E558: Terminal entry not found in terminfo"); | |
2168 #else | |
2169 return (char_u *)_("E559: Terminal entry not found in termcap"); | |
2170 #endif | |
2171 } | |
2172 return NULL; | |
2173 } | |
2174 | |
2175 /* | |
2176 * Some versions of tgetstr() have been reported to return -1 instead of NULL. | |
2177 * Fix that here. | |
2178 */ | |
2179 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2180 vim_tgetstr(char *s, char_u **pp) |
7 | 2181 { |
2182 char *p; | |
2183 | |
2184 p = tgetstr(s, (char **)pp); | |
2185 if (p == (char *)-1) | |
2186 p = NULL; | |
2187 return (char_u *)p; | |
2188 } | |
2189 #endif /* HAVE_TGETENT */ | |
2190 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2191 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X)) |
7 | 2192 /* |
2193 * Get Columns and Rows from the termcap. Used after a window signal if the | |
2194 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co" | |
2195 * and "li" entries never change. But on some systems this works. | |
2196 * Errors while getting the entries are ignored. | |
2197 */ | |
2198 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2199 getlinecol( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2200 long *cp, /* pointer to columns */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2201 long *rp) /* pointer to rows */ |
7 | 2202 { |
2203 char_u tbuf[TBUFSZ]; | |
2204 | |
2205 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL) | |
2206 { | |
2207 if (*cp == 0) | |
2208 *cp = tgetnum("co"); | |
2209 if (*rp == 0) | |
2210 *rp = tgetnum("li"); | |
2211 } | |
2212 } | |
2213 #endif /* defined(HAVE_TGETENT) && defined(UNIX) */ | |
2214 | |
2215 /* | |
2216 * Get a string entry from the termcap and add it to the list of termcodes. | |
2217 * Used for <t_xx> special keys. | |
2218 * Give an error message for failure when not sourcing. | |
2219 * If force given, replace an existing entry. | |
2220 * Return FAIL if the entry was not found, OK if the entry was added. | |
2221 */ | |
2222 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2223 add_termcap_entry(char_u *name, int force) |
7 | 2224 { |
2225 char_u *term; | |
2226 int key; | |
2227 struct builtin_term *termp; | |
2228 #ifdef HAVE_TGETENT | |
2229 char_u *string; | |
2230 int i; | |
2231 int builtin_first; | |
2232 char_u tbuf[TBUFSZ]; | |
2233 char_u tstrbuf[TBUFSZ]; | |
2234 char_u *tp = tstrbuf; | |
2235 char_u *error_msg = NULL; | |
2236 #endif | |
2237 | |
2238 /* | |
2239 * If the GUI is running or will start in a moment, we only support the keys | |
2240 * that the GUI can produce. | |
2241 */ | |
2242 #ifdef FEAT_GUI | |
2243 if (gui.in_use || gui.starting) | |
2244 return gui_mch_haskey(name); | |
2245 #endif | |
2246 | |
2247 if (!force && find_termcode(name) != NULL) /* it's already there */ | |
2248 return OK; | |
2249 | |
2250 term = T_NAME; | |
2251 if (term == NULL || *term == NUL) /* 'term' not defined yet */ | |
2252 return FAIL; | |
2253 | |
2254 if (term_is_builtin(term)) /* name starts with "builtin_" */ | |
2255 { | |
2256 term += 8; | |
2257 #ifdef HAVE_TGETENT | |
2258 builtin_first = TRUE; | |
2259 #endif | |
2260 } | |
2261 #ifdef HAVE_TGETENT | |
2262 else | |
2263 builtin_first = p_tbi; | |
2264 #endif | |
2265 | |
2266 #ifdef HAVE_TGETENT | |
2267 /* | |
2268 * We can get the entry from the builtin termcap and from the external one. | |
2269 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try | |
2270 * builtin termcap first. | |
2271 * If 'ttybuiltin' is off, try external termcap first. | |
2272 */ | |
2273 for (i = 0; i < 2; ++i) | |
2274 { | |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
6901
diff
changeset
|
2275 if ((!builtin_first) == i) |
7 | 2276 #endif |
2277 /* | |
2278 * Search in builtin termcap | |
2279 */ | |
2280 { | |
2281 termp = find_builtin_term(term); | |
2282 if (termp->bt_string != NULL) /* found it */ | |
2283 { | |
2284 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
|
2285 ++termp; |
7 | 2286 while (termp->bt_entry != (int)KS_NAME) |
2287 { | |
2288 if ((int)termp->bt_entry == key) | |
2289 { | |
2290 add_termcode(name, (char_u *)termp->bt_string, | |
2291 term_is_8bit(term)); | |
2292 return OK; | |
2293 } | |
2294 ++termp; | |
2295 } | |
2296 } | |
2297 } | |
2298 #ifdef HAVE_TGETENT | |
2299 else | |
2300 /* | |
2301 * Search in external termcap | |
2302 */ | |
2303 { | |
2304 error_msg = tgetent_error(tbuf, term); | |
2305 if (error_msg == NULL) | |
2306 { | |
2307 string = TGETSTR((char *)name, &tp); | |
2308 if (string != NULL && *string != NUL) | |
2309 { | |
2310 add_termcode(name, string, FALSE); | |
2311 return OK; | |
2312 } | |
2313 } | |
2314 } | |
2315 } | |
2316 #endif | |
2317 | |
2318 if (sourcing_name == NULL) | |
2319 { | |
2320 #ifdef HAVE_TGETENT | |
2321 if (error_msg != NULL) | |
2322 EMSG(error_msg); | |
2323 else | |
2324 #endif | |
2325 EMSG2(_("E436: No \"%s\" entry in termcap"), name); | |
2326 } | |
2327 return FAIL; | |
2328 } | |
2329 | |
2330 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2331 term_is_builtin(char_u *name) |
7 | 2332 { |
2333 return (STRNCMP(name, "builtin_", (size_t)8) == 0); | |
2334 } | |
2335 | |
2336 /* | |
2337 * Return TRUE if terminal "name" uses CSI instead of <Esc>[. | |
2338 * Assume that the terminal is using 8-bit controls when the name contains | |
2339 * "8bit", like in "xterm-8bit". | |
2340 */ | |
2341 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2342 term_is_8bit(char_u *name) |
7 | 2343 { |
2344 return (detected_8bit || strstr((char *)name, "8bit") != NULL); | |
2345 } | |
2346 | |
2347 /* | |
2348 * 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
|
2349 * <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
|
2350 * <Esc>] -> OSC <M-C-]> |
7 | 2351 * <Esc>O -> <M-C-O> |
2352 */ | |
2353 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2354 term_7to8bit(char_u *p) |
7 | 2355 { |
2356 if (*p == ESC) | |
2357 { | |
2358 if (p[1] == '[') | |
2359 return CSI; | |
2360 if (p[1] == ']') | |
6901 | 2361 return OSC; |
7 | 2362 if (p[1] == 'O') |
2363 return 0x8f; | |
2364 } | |
2365 return 0; | |
2366 } | |
2367 | |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13573
diff
changeset
|
2368 #if defined(FEAT_GUI) || defined(PROTO) |
7 | 2369 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2370 term_is_gui(char_u *name) |
7 | 2371 { |
2372 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0); | |
2373 } | |
2374 #endif | |
2375 | |
2376 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO) | |
2377 | |
2378 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2379 tltoa(unsigned long i) |
7 | 2380 { |
2381 static char_u buf[16]; | |
2382 char_u *p; | |
2383 | |
2384 p = buf + 15; | |
2385 *p = '\0'; | |
2386 do | |
2387 { | |
2388 --p; | |
2389 *p = (char_u) (i % 10 + '0'); | |
2390 i /= 10; | |
2391 } | |
2392 while (i > 0 && p > buf); | |
2393 return p; | |
2394 } | |
2395 #endif | |
2396 | |
2397 #ifndef HAVE_TGETENT | |
2398 | |
2399 /* | |
2400 * minimal tgoto() implementation. | |
2401 * no padding and we only parse for %i %d and %+char | |
2402 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2403 static char *tgoto(char *, int, int); |
298 | 2404 |
2405 static char * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2406 tgoto(char *cm, int x, int y) |
7 | 2407 { |
2408 static char buf[30]; | |
2409 char *p, *s, *e; | |
2410 | |
2411 if (!cm) | |
2412 return "OOPS"; | |
2413 e = buf + 29; | |
2414 for (s = buf; s < e && *cm; cm++) | |
2415 { | |
2416 if (*cm != '%') | |
2417 { | |
2418 *s++ = *cm; | |
2419 continue; | |
2420 } | |
2421 switch (*++cm) | |
2422 { | |
2423 case 'd': | |
2424 p = (char *)tltoa((unsigned long)y); | |
2425 y = x; | |
2426 while (*p) | |
2427 *s++ = *p++; | |
2428 break; | |
2429 case 'i': | |
2430 x++; | |
2431 y++; | |
2432 break; | |
2433 case '+': | |
2434 *s++ = (char)(*++cm + y); | |
2435 y = x; | |
2436 break; | |
2437 case '%': | |
2438 *s++ = *cm; | |
2439 break; | |
2440 default: | |
2441 return "OOPS"; | |
2442 } | |
2443 } | |
2444 *s = '\0'; | |
2445 return buf; | |
2446 } | |
2447 | |
2448 #endif /* HAVE_TGETENT */ | |
2449 | |
2450 /* | |
2451 * Set the terminal name and initialize the terminal options. | |
2452 * If "name" is NULL or empty, get the terminal name from the environment. | |
2453 * If that fails, use the default terminal name. | |
2454 */ | |
2455 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2456 termcapinit(char_u *name) |
7 | 2457 { |
2458 char_u *term; | |
2459 | |
2460 if (name != NULL && *name == NUL) | |
2461 name = NULL; /* empty name is equal to no name */ | |
2462 term = name; | |
2463 | |
2464 #ifdef __BEOS__ | |
2465 /* | |
2466 * TERM environment variable is normally set to 'ansi' on the Bebox; | |
2467 * Since the BeBox doesn't quite support full ANSI yet, we use our | |
2468 * own custom 'ansi-beos' termcap instead, unless the -T option has | |
2469 * been given on the command line. | |
2470 */ | |
2471 if (term == NULL | |
2472 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0) | |
2473 term = DEFAULT_TERM; | |
2474 #endif | |
2475 #ifndef MSWIN | |
2476 if (term == NULL) | |
2477 term = mch_getenv((char_u *)"TERM"); | |
2478 #endif | |
2479 if (term == NULL || *term == NUL) | |
2480 term = DEFAULT_TERM; | |
694 | 2481 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0); |
7 | 2482 |
2483 /* Set the default terminal name. */ | |
2484 set_string_default("term", term); | |
2485 set_string_default("ttytype", term); | |
2486 | |
2487 /* | |
2488 * Avoid using "term" here, because the next mch_getenv() may overwrite it. | |
2489 */ | |
2490 set_termname(T_NAME != NULL ? T_NAME : term); | |
2491 } | |
2492 | |
2493 /* | |
2494 * the number of calls to ui_write is reduced by using the buffer "out_buf" | |
2495 */ | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
2496 #define OUT_SIZE 2047 |
7 | 2497 /* Add one to allow mch_write() in os_win32.c to append a NUL */ |
2498 static char_u out_buf[OUT_SIZE + 1]; | |
2499 static int out_pos = 0; /* number of chars in out_buf */ | |
2500 | |
2501 /* | |
2502 * out_flush(): flush the output buffer | |
2503 */ | |
2504 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2505 out_flush(void) |
7 | 2506 { |
2507 int len; | |
2508 | |
2509 if (out_pos != 0) | |
2510 { | |
2511 /* set out_pos to 0 before ui_write, to avoid recursiveness */ | |
2512 len = out_pos; | |
2513 out_pos = 0; | |
2514 ui_write(out_buf, len); | |
2515 } | |
2516 } | |
2517 | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2518 /* |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2519 * 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
|
2520 * 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
|
2521 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2522 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2523 out_flush_cursor( |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2524 int force UNUSED, /* when TRUE, update cursor even when not moved */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2525 int clear_selection UNUSED) /* clear selection under cursor */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2526 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2527 mch_disable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2528 out_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2529 mch_enable_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2530 #ifdef FEAT_GUI |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2531 if (gui.in_use) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2532 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2533 gui_update_cursor(force, clear_selection); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2534 gui_may_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2535 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2536 #endif |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2537 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2538 |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13008
diff
changeset
|
2539 |
7 | 2540 #if defined(FEAT_MBYTE) || defined(PROTO) |
2541 /* | |
2542 * Sometimes a byte out of a multi-byte character is written with out_char(). | |
2543 * To avoid flushing half of the character, call this function first. | |
2544 */ | |
2545 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2546 out_flush_check(void) |
7 | 2547 { |
2548 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES) | |
2549 out_flush(); | |
2550 } | |
2551 #endif | |
2552 | |
2553 #ifdef FEAT_GUI | |
2554 /* | |
2555 * out_trash(): Throw away the contents of the output buffer | |
2556 */ | |
2557 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2558 out_trash(void) |
7 | 2559 { |
2560 out_pos = 0; | |
2561 } | |
2562 #endif | |
2563 | |
2564 /* | |
2565 * out_char(c): put a byte into the output buffer. | |
2566 * Flush it if it becomes full. | |
2567 * This should not be used for outputting text on the screen (use functions | |
2568 * like msg_puts() and screen_putchar() for that). | |
2569 */ | |
2570 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2571 out_char(unsigned c) |
7 | 2572 { |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12640
diff
changeset
|
2573 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X) |
7 | 2574 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */ |
2575 out_char('\r'); | |
2576 #endif | |
2577 | |
2578 out_buf[out_pos++] = c; | |
2579 | |
2580 /* For testing we flush each time. */ | |
2581 if (out_pos >= OUT_SIZE || p_wd) | |
2582 out_flush(); | |
2583 } | |
2584 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2585 static void out_char_nf(unsigned); |
7 | 2586 |
2587 /* | |
2588 * out_char_nf(c): like out_char(), but don't flush when p_wd is set | |
2589 */ | |
2590 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2591 out_char_nf(unsigned c) |
7 | 2592 { |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12640
diff
changeset
|
2593 #if defined(UNIX) || defined(VMS) || defined(AMIGA) || defined(MACOS_X) |
7 | 2594 if (c == '\n') /* turn LF into CR-LF (CRMOD doesn't seem to do this) */ |
2595 out_char_nf('\r'); | |
2596 #endif | |
2597 | |
2598 out_buf[out_pos++] = c; | |
2599 | |
2600 if (out_pos >= OUT_SIZE) | |
2601 out_flush(); | |
2602 } | |
2603 | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
2604 #if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \ |
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
2605 || defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 2606 /* |
2607 * A never-padding out_str. | |
2608 * use this whenever you don't want to run the string through tputs. | |
2609 * tputs above is harmless, but tputs from the termcap library | |
2610 * is likely to strip off leading digits, that it mistakes for padding | |
2611 * information, and "%i", "%d", etc. | |
2612 * This should only be used for writing terminal codes, not for outputting | |
2613 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2614 */ | |
2615 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2616 out_str_nf(char_u *s) |
7 | 2617 { |
2618 if (out_pos > OUT_SIZE - 20) /* avoid terminal strings being split up */ | |
2619 out_flush(); | |
2620 while (*s) | |
2621 out_char_nf(*s++); | |
2622 | |
2623 /* For testing we write one string at a time. */ | |
2624 if (p_wd) | |
2625 out_flush(); | |
2626 } | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
2627 #endif |
7 | 2628 |
2629 /* | |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2630 * 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
|
2631 * 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
|
2632 * it at the wrong time. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2633 * Note: Only for terminal strings. |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2634 */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2635 void |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2636 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
|
2637 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2638 if (s != NULL && *s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2639 { |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2640 #ifdef HAVE_TGETENT |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2641 char_u *p; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2642 #endif |
11601
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 #ifdef FEAT_GUI |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2645 /* Don't use tputs() when GUI is used, ncurses crashes. */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2646 if (gui.in_use) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2647 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2648 out_str_nf(s); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2649 return; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2650 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2651 #endif |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2652 if (out_pos > OUT_SIZE - 20) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2653 out_flush(); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2654 #ifdef HAVE_TGETENT |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2655 for (p = s; *s; ++s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2656 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2657 /* flush just before delay command */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2658 if (*s == '$' && *(s + 1) == '<') |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2659 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2660 char_u save_c = *s; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2661 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
|
2662 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2663 *s = NUL; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2664 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
|
2665 *s = save_c; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2666 out_flush(); |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2667 # ifdef ELAPSED_FUNC |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2668 /* Only sleep here if we can limit this happening in |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2669 * vim_beep(). */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2670 p = vim_strchr(s, '>'); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2671 if (p == NULL || duration <= 0) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2672 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2673 /* can't parse the time, don't sleep here */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2674 p = s; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2675 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2676 else |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2677 { |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2678 ++p; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2679 do_sleep(duration); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2680 } |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2681 # else |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2682 /* Rely on the terminal library to sleep. */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2683 p = s; |
11615
568ea579d20e
patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents:
11601
diff
changeset
|
2684 # endif |
11601
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2685 break; |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2686 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2687 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2688 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
|
2689 #else |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2690 while (*s) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2691 out_char_nf(*s++); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2692 #endif |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2693 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2694 /* For testing we write one string at a time. */ |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2695 if (p_wd) |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2696 out_flush(); |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2697 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2698 } |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2699 |
0a5d405e2520
patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents:
11567
diff
changeset
|
2700 /* |
7 | 2701 * out_str(s): Put a character string a byte at a time into the output buffer. |
2702 * If HAVE_TGETENT is defined use the termcap parser. (jw) | |
2703 * This should only be used for writing terminal codes, not for outputting | |
2704 * normal text (use functions like msg_puts() and screen_putchar() for that). | |
2705 */ | |
2706 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2707 out_str(char_u *s) |
7 | 2708 { |
2709 if (s != NULL && *s) | |
2710 { | |
2711 #ifdef FEAT_GUI | |
2712 /* Don't use tputs() when GUI is used, ncurses crashes. */ | |
2713 if (gui.in_use) | |
2714 { | |
2715 out_str_nf(s); | |
2716 return; | |
2717 } | |
2718 #endif | |
2719 /* avoid terminal strings being split up */ | |
2720 if (out_pos > OUT_SIZE - 20) | |
2721 out_flush(); | |
2722 #ifdef HAVE_TGETENT | |
2723 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf); | |
2724 #else | |
2725 while (*s) | |
2726 out_char_nf(*s++); | |
2727 #endif | |
2728 | |
2729 /* For testing we write one string at a time. */ | |
2730 if (p_wd) | |
2731 out_flush(); | |
2732 } | |
2733 } | |
2734 | |
2735 /* | |
2736 * cursor positioning using termcap parser. (jw) | |
2737 */ | |
2738 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2739 term_windgoto(int row, int col) |
7 | 2740 { |
2741 OUT_STR(tgoto((char *)T_CM, col, row)); | |
2742 } | |
2743 | |
2744 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2745 term_cursor_right(int i) |
7 | 2746 { |
2747 OUT_STR(tgoto((char *)T_CRI, 0, i)); | |
2748 } | |
2749 | |
2750 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2751 term_append_lines(int line_count) |
7 | 2752 { |
2753 OUT_STR(tgoto((char *)T_CAL, 0, line_count)); | |
2754 } | |
2755 | |
2756 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2757 term_delete_lines(int line_count) |
7 | 2758 { |
2759 OUT_STR(tgoto((char *)T_CDL, 0, line_count)); | |
2760 } | |
2761 | |
2762 #if defined(HAVE_TGETENT) || defined(PROTO) | |
2763 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2764 term_set_winpos(int x, int y) |
7 | 2765 { |
2766 /* Can't handle a negative value here */ | |
2767 if (x < 0) | |
2768 x = 0; | |
2769 if (y < 0) | |
2770 y = 0; | |
2771 OUT_STR(tgoto((char *)T_CWP, y, x)); | |
2772 } | |
2773 | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2774 # 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
|
2775 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2776 * 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
|
2777 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2778 static int |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2779 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
|
2780 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2781 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
|
2782 && termcap_active |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2783 # ifdef UNIX |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2784 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd))) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2785 # endif |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2786 && p_ek; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2787 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2788 |
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
|
2789 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
|
2790 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
|
2791 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
|
2792 |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2793 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2794 * 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
|
2795 * 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
|
2796 */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2797 int |
13379
0f9dd1b43244
patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents:
13365
diff
changeset
|
2798 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
|
2799 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2800 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
|
2801 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
|
2802 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
|
2803 |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2804 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
|
2805 return FAIL; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2806 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
|
2807 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
|
2808 ++did_request_winpos; |
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 winpos_status = STATUS_SENT; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2810 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
|
2811 out_flush(); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2812 |
13379
0f9dd1b43244
patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents:
13365
diff
changeset
|
2813 /* 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
|
2814 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
|
2815 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2816 (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
|
2817 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
|
2818 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2819 *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
|
2820 *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
|
2821 return OK; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2822 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2823 ui_delay(10, FALSE); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2824 } |
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
|
2825 /* Do not reset "did_request_winpos", if we timed out the response might |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2826 * still come later and we must consume it. */ |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2827 |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2828 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
|
2829 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
|
2830 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
|
2831 { |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2832 /* Polling: return previous values if we have them. */ |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2833 *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
|
2834 *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
|
2835 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
|
2836 } |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
2837 |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2838 return FALSE; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2839 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2840 # endif |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
2841 |
7 | 2842 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
|
2843 term_set_winsize(int height, int width) |
7 | 2844 { |
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
|
2845 OUT_STR(tgoto((char *)T_CWS, width, height)); |
7 | 2846 } |
2847 #endif | |
2848 | |
2849 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2850 term_color(char_u *s, int n) |
7 | 2851 { |
2852 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
|
2853 int i = *s == CSI ? 1 : 2; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2854 /* index in s[] just after <Esc>[ or CSI */ |
7 | 2855 |
2856 /* Special handling of 16 colors, because termcap can't handle it */ | |
2857 /* Also accept "\e[3%dm" for TERMINFO, it is sometimes used */ | |
2858 /* Also accept CSI instead of <Esc>[ */ | |
2859 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
|
2860 && ((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
|
2861 #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
|
2862 || (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
|
2863 #endif |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
2864 || (s[0] == CSI && (i = 1) == 1)) |
7 | 2865 && s[i] != NUL |
2866 && (STRCMP(s + i + 1, "%p1%dm") == 0 | |
2867 || STRCMP(s + i + 1, "%dm") == 0) | |
2868 && (s[i] == '3' || s[i] == '4')) | |
2869 { | |
2870 #ifdef TERMINFO | |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2871 char *format = "%s%s%%p1%%dm"; |
7 | 2872 #else |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
2873 char *format = "%s%s%%dm"; |
7 | 2874 #endif |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2875 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
|
2876 #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
|
2877 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
|
2878 #endif |
14007
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2879 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
|
2880 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
|
2881 : (n >= 16 ? "48;5;" : "10"); |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2882 |
5d6e8dedfc73
patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents:
13874
diff
changeset
|
2883 sprintf(buf, format, lead, tail); |
7 | 2884 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8)); |
2885 } | |
2886 else | |
2887 OUT_STR(tgoto((char *)s, 0, n)); | |
2888 } | |
2889 | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2890 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2891 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
|
2892 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2893 /* Use "AF" termcap entry if present, "Sf" entry otherwise */ |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2894 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
|
2895 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
|
2896 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
|
2897 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
|
2898 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2899 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2900 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2901 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
|
2902 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2903 /* Use "AB" termcap entry if present, "Sb" entry otherwise */ |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2904 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
|
2905 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
|
2906 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
|
2907 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
|
2908 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
2909 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
2910 #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
|
2911 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2912 #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
|
2913 #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
|
2914 #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
|
2915 |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2916 static void |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2917 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
|
2918 { |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2919 #define MAX_COLOR_STR_LEN 100 |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2920 char buf[MAX_COLOR_STR_LEN]; |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
2921 |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
2922 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
|
2923 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb)); |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2924 OUT_STR(buf); |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2925 } |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2926 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2927 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2928 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
|
2929 { |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2930 term_rgb_color(T_8F, rgb); |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2931 } |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2932 |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2933 void |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2934 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
|
2935 { |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2936 term_rgb_color(T_8B, rgb); |
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9929
diff
changeset
|
2937 } |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2938 #endif |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2939 |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2940 #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
|
2941 || defined(MACOS_X))) || defined(PROTO) |
7 | 2942 /* |
2943 * Generic function to set window title, using t_ts and t_fs. | |
2944 */ | |
2945 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2946 term_settitle(char_u *title) |
7 | 2947 { |
2948 /* t_ts takes one argument: column in status line */ | |
2949 OUT_STR(tgoto((char *)T_TS, 0, 0)); /* set title start */ | |
2950 out_str_nf(title); | |
2951 out_str(T_FS); /* set title end */ | |
2952 out_flush(); | |
2953 } | |
2954 #endif | |
2955 | |
2956 /* | |
2957 * Make sure we have a valid set or terminal options. | |
2958 * Replace all entries that are NULL by empty_option | |
2959 */ | |
2960 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2961 ttest(int pairs) |
7 | 2962 { |
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
|
2963 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
|
2964 |
7 | 2965 check_options(); /* make sure no options are NULL */ |
2966 | |
2967 /* | |
2968 * MUST have "cm": cursor motion. | |
2969 */ | |
2970 if (*T_CM == NUL) | |
2971 EMSG(_("E437: terminal capability \"cm\" required")); | |
2972 | |
2973 /* | |
2974 * if "cs" defined, use a scroll region, it's faster. | |
2975 */ | |
2976 if (*T_CS != NUL) | |
2977 scroll_region = TRUE; | |
2978 else | |
2979 scroll_region = FALSE; | |
2980 | |
2981 if (pairs) | |
2982 { | |
2983 /* | |
2984 * optional pairs | |
2985 */ | |
2986 /* TP goes to normal mode for TI (invert) and TB (bold) */ | |
2987 if (*T_ME == NUL) | |
2988 T_ME = T_MR = T_MD = T_MB = empty_option; | |
2989 if (*T_SO == NUL || *T_SE == NUL) | |
2990 T_SO = T_SE = empty_option; | |
2991 if (*T_US == NUL || *T_UE == NUL) | |
2992 T_US = T_UE = empty_option; | |
2993 if (*T_CZH == NUL || *T_CZR == NUL) | |
2994 T_CZH = T_CZR = empty_option; | |
2995 | |
2996 /* T_VE is needed even though T_VI is not defined */ | |
2997 if (*T_VE == NUL) | |
2998 T_VI = empty_option; | |
2999 | |
3000 /* if 'mr' or 'me' is not defined use 'so' and 'se' */ | |
3001 if (*T_ME == NUL) | |
3002 { | |
3003 T_ME = T_SE; | |
3004 T_MR = T_SO; | |
3005 T_MD = T_SO; | |
3006 } | |
3007 | |
3008 /* if 'so' or 'se' is not defined use 'mr' and 'me' */ | |
3009 if (*T_SO == NUL) | |
3010 { | |
3011 T_SE = T_ME; | |
3012 if (*T_MR == NUL) | |
3013 T_SO = T_MD; | |
3014 else | |
3015 T_SO = T_MR; | |
3016 } | |
3017 | |
3018 /* if 'ZH' or 'ZR' is not defined use 'mr' and 'me' */ | |
3019 if (*T_CZH == NUL) | |
3020 { | |
3021 T_CZR = T_ME; | |
3022 if (*T_MR == NUL) | |
3023 T_CZH = T_MD; | |
3024 else | |
3025 T_CZH = T_MR; | |
3026 } | |
3027 | |
3028 /* "Sb" and "Sf" come in pairs */ | |
3029 if (*T_CSB == NUL || *T_CSF == NUL) | |
3030 { | |
3031 T_CSB = empty_option; | |
3032 T_CSF = empty_option; | |
3033 } | |
3034 | |
3035 /* "AB" and "AF" come in pairs */ | |
3036 if (*T_CAB == NUL || *T_CAF == NUL) | |
3037 { | |
3038 T_CAB = empty_option; | |
3039 T_CAF = empty_option; | |
3040 } | |
3041 | |
3042 /* if 'Sb' and 'AB' are not defined, reset "Co" */ | |
3043 if (*T_CSB == NUL && *T_CAB == NUL) | |
1941 | 3044 free_one_termoption(T_CCO); |
7 | 3045 |
3046 /* Set 'weirdinvert' according to value of 't_xs' */ | |
3047 p_wiv = (*T_XS != NUL); | |
3048 } | |
3049 need_gather = TRUE; | |
3050 | |
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
|
3051 /* Set t_colors to the value of $COLORS or t_Co. */ |
7 | 3052 t_colors = atoi((char *)T_CCO); |
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
|
3053 env_colors = mch_getenv((char_u *)"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
|
3054 if (env_colors != NULL && isdigit(*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
|
3055 { |
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
|
3056 int colors = atoi((char *)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
|
3057 |
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
|
3058 if (colors != 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
|
3059 set_color_count(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
|
3060 } |
7 | 3061 } |
3062 | |
3063 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \ | |
3064 || defined(PROTO) | |
3065 /* | |
3066 * Represent the given long_u as individual bytes, with the most significant | |
3067 * byte first, and store them in dst. | |
3068 */ | |
3069 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3070 add_long_to_buf(long_u val, char_u *dst) |
7 | 3071 { |
3072 int i; | |
3073 int shift; | |
3074 | |
1883 | 3075 for (i = 1; i <= (int)sizeof(long_u); i++) |
7 | 3076 { |
3077 shift = 8 * (sizeof(long_u) - i); | |
3078 dst[i - 1] = (char_u) ((val >> shift) & 0xff); | |
3079 } | |
3080 } | |
3081 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
3082 static int get_long_from_buf(char_u *buf, long_u *val); |
7 | 3083 |
3084 /* | |
3085 * Interpret the next string of bytes in buf as a long integer, with the most | |
3086 * significant byte first. Note that it is assumed that buf has been through | |
3087 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each. | |
3088 * Puts result in val, and returns the number of bytes read from buf | |
3089 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes | |
3090 * were present. | |
3091 */ | |
3092 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3093 get_long_from_buf(char_u *buf, long_u *val) |
7 | 3094 { |
3095 int len; | |
3096 char_u bytes[sizeof(long_u)]; | |
3097 int i; | |
3098 int shift; | |
3099 | |
3100 *val = 0; | |
3101 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u)); | |
3102 if (len != -1) | |
3103 { | |
1883 | 3104 for (i = 0; i < (int)sizeof(long_u); i++) |
7 | 3105 { |
3106 shift = 8 * (sizeof(long_u) - 1 - i); | |
3107 *val += (long_u)bytes[i] << shift; | |
3108 } | |
3109 } | |
3110 return len; | |
3111 } | |
3112 #endif | |
3113 | |
3114 #if defined(FEAT_GUI) \ | |
1623 | 3115 || (defined(FEAT_MOUSE) && (!defined(UNIX) || defined(FEAT_MOUSE_XTERM) \ |
3116 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE))) | |
7 | 3117 /* |
3118 * Read the next num_bytes bytes from buf, and store them in bytes. Assume | |
3119 * that buf has been through inchar(). Returns the actual number of bytes used | |
3120 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were | |
3121 * available. | |
3122 */ | |
3123 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3124 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) |
7 | 3125 { |
3126 int len = 0; | |
3127 int i; | |
3128 char_u c; | |
3129 | |
3130 for (i = 0; i < num_bytes; i++) | |
3131 { | |
3132 if ((c = buf[len++]) == NUL) | |
3133 return -1; | |
3134 if (c == K_SPECIAL) | |
3135 { | |
3136 if (buf[len] == NUL || buf[len + 1] == NUL) /* cannot happen? */ | |
3137 return -1; | |
3138 if (buf[len++] == (int)KS_ZERO) | |
3139 c = NUL; | |
5076
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3140 /* else it should be KS_SPECIAL; when followed by KE_FILLER c is |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3141 * K_SPECIAL, or followed by KE_CSI and c must be CSI. */ |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3142 if (buf[len++] == (int)KE_CSI) |
19ed30f7cef7
updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents:
5070
diff
changeset
|
3143 c = CSI; |
7 | 3144 } |
1160 | 3145 else if (c == CSI && buf[len] == KS_EXTRA |
3146 && buf[len + 1] == (int)KE_CSI) | |
667 | 3147 /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with |
3148 * the start of a special key, see add_to_input_buf_csi(). */ | |
3149 len += 2; | |
7 | 3150 bytes[i] = c; |
3151 } | |
3152 return len; | |
3153 } | |
3154 #endif | |
3155 | |
3156 /* | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3157 * 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
|
3158 * too big. |
7 | 3159 */ |
3160 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3161 check_shellsize(void) |
7 | 3162 { |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3163 if (Rows < min_rows()) /* need room for one window and command line */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3164 Rows = min_rows(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3165 limit_screen_size(); |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3166 } |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3167 |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3168 /* |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3169 * 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
|
3170 */ |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3171 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3172 limit_screen_size(void) |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3173 { |
7 | 3174 if (Columns < MIN_COLUMNS) |
3175 Columns = MIN_COLUMNS; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3176 else if (Columns > 10000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3177 Columns = 10000; |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3178 if (Rows > 1000) |
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
4395
diff
changeset
|
3179 Rows = 1000; |
7 | 3180 } |
3181 | |
41 | 3182 /* |
3183 * Invoked just before the screen structures are going to be (re)allocated. | |
3184 */ | |
7 | 3185 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3186 win_new_shellsize(void) |
7 | 3187 { |
3188 static int old_Rows = 0; | |
3189 static int old_Columns = 0; | |
3190 | |
3191 if (old_Rows != Rows || old_Columns != Columns) | |
3192 ui_new_shellsize(); | |
3193 if (old_Rows != Rows) | |
3194 { | |
164 | 3195 /* if 'window' uses the whole screen, keep it using that */ |
179 | 3196 if (p_window == old_Rows - 1 || old_Rows == 0) |
164 | 3197 p_window = Rows - 1; |
7 | 3198 old_Rows = Rows; |
3199 shell_new_rows(); /* update window sizes */ | |
3200 } | |
3201 if (old_Columns != Columns) | |
3202 { | |
3203 old_Columns = Columns; | |
3204 shell_new_columns(); /* update window sizes */ | |
3205 } | |
3206 } | |
3207 | |
3208 /* | |
3209 * Call this function when the Vim shell has been resized in any way. | |
3210 * Will obtain the current size and redraw (also when size didn't change). | |
3211 */ | |
3212 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3213 shell_resized(void) |
7 | 3214 { |
3215 set_shellsize(0, 0, FALSE); | |
3216 } | |
3217 | |
3218 /* | |
3219 * Check if the shell size changed. Handle a resize. | |
3220 * When the size didn't change, nothing happens. | |
3221 */ | |
3222 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3223 shell_resized_check(void) |
7 | 3224 { |
3225 int old_Rows = Rows; | |
3226 int old_Columns = Columns; | |
3227 | |
3770 | 3228 if (!exiting |
3229 #ifdef FEAT_GUI | |
3230 /* Do not get the size when executing a shell command during | |
3231 * startup. */ | |
3232 && !gui.starting | |
3233 #endif | |
3234 ) | |
2673 | 3235 { |
3236 (void)ui_get_shellsize(); | |
3237 check_shellsize(); | |
3238 if (old_Rows != Rows || old_Columns != Columns) | |
3239 shell_resized(); | |
3240 } | |
7 | 3241 } |
3242 | |
3243 /* | |
3244 * Set size of the Vim shell. | |
3245 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real | |
3246 * window size (this is used for the :win command). | |
3247 * If 'mustset' is FALSE, we may try to get the real window size and if | |
3248 * it fails use 'width' and 'height'. | |
3249 */ | |
3250 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3251 set_shellsize(int width, int height, int mustset) |
7 | 3252 { |
3253 static int busy = FALSE; | |
3254 | |
3255 /* | |
3256 * Avoid recursiveness, can happen when setting the window size causes | |
3257 * another window-changed signal. | |
3258 */ | |
3259 if (busy) | |
3260 return; | |
3261 | |
3262 if (width < 0 || height < 0) /* just checking... */ | |
3263 return; | |
3264 | |
3068 | 3265 if (State == HITRETURN || State == SETWSIZE) |
7 | 3266 { |
3068 | 3267 /* postpone the resizing */ |
7 | 3268 State = SETWSIZE; |
3269 return; | |
3270 } | |
3271 | |
3068 | 3272 /* curwin->w_buffer can be NULL when we are closing a window and the |
3273 * buffer has already been closed and removing a scrollbar causes a resize | |
3274 * event. Don't resize then, it will happen after entering another buffer. | |
3275 */ | |
3276 if (curwin->w_buffer == NULL) | |
3277 return; | |
3278 | |
7 | 3279 ++busy; |
3280 | |
3281 #ifdef AMIGA | |
3282 out_flush(); /* must do this before mch_get_shellsize() for | |
3283 some obscure reason */ | |
3284 #endif | |
3285 | |
3286 if (mustset || (ui_get_shellsize() == FAIL && height != 0)) | |
3287 { | |
3288 Rows = height; | |
3289 Columns = width; | |
3290 check_shellsize(); | |
3291 ui_set_shellsize(mustset); | |
3292 } | |
3293 else | |
3294 check_shellsize(); | |
3295 | |
3296 /* The window layout used to be adjusted here, but it now happens in | |
3297 * screenalloc() (also invoked from screenclear()). That is because the | |
3298 * "busy" check above may skip this, but not screenalloc(). */ | |
3299 | |
3300 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM) | |
3301 screenclear(); | |
3302 else | |
3303 screen_start(); /* don't know where cursor is now */ | |
3304 | |
3305 if (starting != NO_SCREEN) | |
3306 { | |
3307 #ifdef FEAT_TITLE | |
3308 maketitle(); | |
3309 #endif | |
3310 changed_line_abv_curs(); | |
3311 invalidate_botline(); | |
3312 | |
3313 /* | |
3314 * We only redraw when it's needed: | |
3315 * - While at the more prompt or executing an external command, don't | |
3316 * redraw, but position the cursor. | |
3317 * - While editing the command line, only redraw that. | |
3318 * - in Ex mode, don't redraw anything. | |
3319 * - Otherwise, redraw right now, and position the cursor. | |
3320 * Always need to call update_screen() or screenalloc(), to make | |
3321 * sure Rows/Columns and the size of ScreenLines[] is correct! | |
3322 */ | |
3323 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM | |
3324 || exmode_active) | |
3325 { | |
3326 screenalloc(FALSE); | |
3327 repeat_message(); | |
3328 } | |
3329 else | |
3330 { | |
1024 | 3331 if (curwin->w_p_scb) |
3332 do_check_scrollbind(TRUE); | |
3333 if (State & CMDLINE) | |
648 | 3334 { |
1024 | 3335 update_screen(NOT_VALID); |
3336 redrawcmdline(); | |
648 | 3337 } |
3338 else | |
1024 | 3339 { |
3340 update_topline(); | |
3341 #if defined(FEAT_INS_EXPAND) | |
3342 if (pum_visible()) | |
3343 { | |
3344 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
|
3345 ins_compl_show_pum(); |
1024 | 3346 } |
648 | 3347 #endif |
12566
33a900199c25
patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
3348 update_screen(NOT_VALID); |
1024 | 3349 if (redrawing()) |
3350 setcursor(); | |
3351 } | |
7 | 3352 } |
3353 cursor_on(); /* redrawing may have switched it off */ | |
3354 } | |
3355 out_flush(); | |
3356 --busy; | |
3357 } | |
3358 | |
3359 /* | |
3360 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external | |
3361 * commands and Ex mode). | |
3362 */ | |
3363 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3364 settmode(int tmode) |
7 | 3365 { |
3366 #ifdef FEAT_GUI | |
3367 /* don't set the term where gvim was started to any mode */ | |
3368 if (gui.in_use) | |
3369 return; | |
3370 #endif | |
3371 | |
3372 if (full_screen) | |
3373 { | |
3374 /* | |
3375 * When returning after calling a shell we want to really set the | |
3376 * terminal to raw mode, even though we think it already is, because | |
3377 * the shell program may have reset the terminal mode. | |
3378 * When we think the terminal is normal, don't try to set it to | |
3379 * normal again, because that causes problems (logout!) on some | |
3380 * machines. | |
3381 */ | |
3382 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK) | |
3383 { | |
3384 #ifdef FEAT_TERMRESPONSE | |
1691 | 3385 # ifdef FEAT_GUI |
3386 if (!gui.in_use && !gui.starting) | |
3387 # endif | |
3388 { | |
3389 /* May need to check for T_CRV response and termcodes, it | |
3390 * doesn't work in Cooked mode, an external program may get | |
3391 * them. */ | |
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
|
3392 if (tmode != TMODE_RAW && (crv_status == STATUS_SENT |
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
|
3393 || u7_status == STATUS_SENT |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3394 #ifdef FEAT_TERMINAL |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3395 || rfg_status == STATUS_SENT |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3396 #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
|
3397 || rbg_status == STATUS_SENT |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3398 || rbm_status == STATUS_SENT |
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
|
3399 || rcs_status == STATUS_SENT |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3400 || winpos_status == STATUS_SENT)) |
1691 | 3401 (void)vpeekc_nomap(); |
3402 check_for_codes_from_term(); | |
3403 } | |
7 | 3404 #endif |
3405 #ifdef FEAT_MOUSE_TTY | |
3406 if (tmode != TMODE_RAW) | |
11368
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3407 mch_setmouse(FALSE); /* switch mouse off */ |
7 | 3408 #endif |
11368
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3409 if (tmode != TMODE_RAW) |
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3410 out_str(T_BD); /* disable bracketed paste mode */ |
7 | 3411 out_flush(); |
11368
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3412 mch_settmode(tmode); /* machine specific function */ |
7 | 3413 cur_tmode = tmode; |
3414 #ifdef FEAT_MOUSE | |
3415 if (tmode == TMODE_RAW) | |
11368
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3416 setmouse(); /* may switch mouse on */ |
7 | 3417 #endif |
11368
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3418 if (tmode == TMODE_RAW) |
253e66dd1428
patch 8.0.0569: bracketed paste is still enabled in a shell command
Christian Brabandt <cb@256bit.org>
parents:
11315
diff
changeset
|
3419 out_str(T_BE); /* enable bracketed paste mode */ |
7 | 3420 out_flush(); |
3421 } | |
3422 #ifdef FEAT_TERMRESPONSE | |
3423 may_req_termresponse(); | |
3424 #endif | |
3425 } | |
3426 } | |
3427 | |
3428 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3429 starttermcap(void) |
7 | 3430 { |
3431 if (full_screen && !termcap_active) | |
3432 { | |
3433 out_str(T_TI); /* start termcap mode */ | |
3434 out_str(T_KS); /* start "keypad transmit" mode */ | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
3435 out_str(T_BE); /* enable bracketed paste mode */ |
7 | 3436 out_flush(); |
3437 termcap_active = TRUE; | |
3438 screen_start(); /* don't know where cursor is now */ | |
3439 #ifdef FEAT_TERMRESPONSE | |
1691 | 3440 # ifdef FEAT_GUI |
3441 if (!gui.in_use && !gui.starting) | |
3442 # endif | |
3443 { | |
3444 may_req_termresponse(); | |
3445 /* Immediately check for a response. If t_Co changes, we don't | |
3446 * want to redraw with wrong colors first. */ | |
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
|
3447 if (crv_status == STATUS_SENT) |
1691 | 3448 check_for_codes_from_term(); |
3449 } | |
7 | 3450 #endif |
3451 } | |
3452 } | |
3453 | |
3454 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3455 stoptermcap(void) |
7 | 3456 { |
3457 screen_stop_highlight(); | |
3458 reset_cterm_colors(); | |
3459 if (termcap_active) | |
3460 { | |
3461 #ifdef FEAT_TERMRESPONSE | |
1691 | 3462 # ifdef FEAT_GUI |
3463 if (!gui.in_use && !gui.starting) | |
3464 # endif | |
3465 { | |
6874 | 3466 /* May need to discard T_CRV, T_U7 or T_RBG 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
|
3467 if (crv_status == STATUS_SENT |
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
|
3468 || u7_status == STATUS_SENT |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3469 # ifdef FEAT_TERMINAL |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3470 || rfg_status == STATUS_SENT |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3471 # 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
|
3472 || rbg_status == STATUS_SENT |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3473 || rbm_status == STATUS_SENT |
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
|
3474 || rcs_status == STATUS_SENT |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3475 || winpos_status == STATUS_SENT) |
4391 | 3476 { |
3477 # ifdef UNIX | |
3478 /* Give the terminal a chance to respond. */ | |
3479 mch_delay(100L, FALSE); | |
3480 # endif | |
3481 # ifdef TCIFLUSH | |
3482 /* Discard data received but not read. */ | |
3483 if (exiting) | |
3484 tcflush(fileno(stdin), TCIFLUSH); | |
3485 # endif | |
3486 } | |
1691 | 3487 /* Check for termcodes first, otherwise an external program may |
3488 * get them. */ | |
3489 check_for_codes_from_term(); | |
3490 } | |
7 | 3491 #endif |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
3492 out_str(T_BD); /* disable bracketed paste mode */ |
7 | 3493 out_str(T_KE); /* stop "keypad transmit" mode */ |
3494 out_flush(); | |
3495 termcap_active = FALSE; | |
3496 cursor_on(); /* just in case it is still off */ | |
3497 out_str(T_TE); /* stop termcap mode */ | |
3498 screen_start(); /* don't know where cursor is now */ | |
3499 out_flush(); | |
3500 } | |
3501 } | |
3502 | |
5932 | 3503 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
7 | 3504 /* |
3505 * Request version string (for xterm) when needed. | |
3506 * Only do this after switching to raw mode, otherwise the result will be | |
3507 * echoed. | |
626 | 3508 * Only do this after startup has finished, to avoid that the response comes |
1221 | 3509 * while executing "-c !cmd" or even after "-c quit". |
7 | 3510 * Only do this after termcap mode has been started, otherwise the codes for |
3511 * the cursor keys may be wrong. | |
620 | 3512 * Only do this when 'esckeys' is on, otherwise the response causes trouble in |
3513 * Insert mode. | |
164 | 3514 * On Unix only do it when both output and input are a tty (avoid writing |
3515 * request to terminal while reading from a file). | |
7 | 3516 * The result is caught in check_termcode(). |
3517 */ | |
626 | 3518 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3519 may_req_termresponse(void) |
7 | 3520 { |
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
|
3521 if (crv_status == 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
|
3522 && can_get_termresponse() |
626 | 3523 && starting == 0 |
7 | 3524 && *T_CRV != NUL) |
3525 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3526 LOG_TR(("Sending CRV request")); |
7 | 3527 out_str(T_CRV); |
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
|
3528 crv_status = STATUS_SENT; |
7 | 3529 /* check for the characters now, otherwise they might be eaten by |
3530 * get_keystroke() */ | |
3531 out_flush(); | |
3532 (void)vpeekc_nomap(); | |
3533 } | |
3534 } | |
4215 | 3535 |
3536 # if defined(FEAT_MBYTE) || defined(PROTO) | |
3537 /* | |
3538 * Check how the terminal treats ambiguous character width (UAX #11). | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3539 * First, we move the cursor to (1, 0) and print a test ambiguous character |
4215 | 3540 * \u25bd (WHITE DOWN-POINTING TRIANGLE) and query current cursor position. |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3541 * If the terminal treats \u25bd as single width, the position is (1, 1), |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3542 * or if it is treated as double width, that will be (1, 2). |
4215 | 3543 * This function has the side effect that changes cursor position, so |
3544 * it must be called immediately after entering termcap mode. | |
3545 */ | |
3546 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3547 may_req_ambiguous_char_width(void) |
4215 | 3548 { |
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
|
3549 if (u7_status == 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
|
3550 && 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
|
3551 && starting == 0 |
4215 | 3552 && *T_U7 != NUL |
3553 && !option_was_set((char_u *)"ambiwidth")) | |
3554 { | |
3555 char_u buf[16]; | |
3556 | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3557 LOG_TR(("Sending U7 request")); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3558 /* Do this in the second row. In the first row the returned sequence |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3559 * may be CSI 1;2R, which is the same as <S-F3>. */ |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3560 term_windgoto(1, 0); |
4215 | 3561 buf[mb_char2bytes(0x25bd, buf)] = 0; |
3562 out_str(buf); | |
3563 out_str(T_U7); | |
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
|
3564 u7_status = STATUS_SENT; |
5724 | 3565 out_flush(); |
11455
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11453
diff
changeset
|
3566 |
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11453
diff
changeset
|
3567 /* This overwrites a few characters on the screen, a redraw is needed |
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11453
diff
changeset
|
3568 * after this. Clear them out for now. */ |
5724 | 3569 term_windgoto(1, 0); |
4215 | 3570 out_str((char_u *)" "); |
3571 term_windgoto(0, 0); | |
11455
08e60ce4cbf3
patch 8.0.0611: the screen is not redrawn after sending t_u7
Christian Brabandt <cb@256bit.org>
parents:
11453
diff
changeset
|
3572 |
13008
e775011b4c1e
patch 8.0.1380: using "vim -r swapfile" the hit-enter prompt is misplaced.
Christian Brabandt <cb@256bit.org>
parents:
12895
diff
changeset
|
3573 /* Need to reset the known cursor position. */ |
e775011b4c1e
patch 8.0.1380: using "vim -r swapfile" the hit-enter prompt is misplaced.
Christian Brabandt <cb@256bit.org>
parents:
12895
diff
changeset
|
3574 screen_start(); |
e775011b4c1e
patch 8.0.1380: using "vim -r swapfile" the hit-enter prompt is misplaced.
Christian Brabandt <cb@256bit.org>
parents:
12895
diff
changeset
|
3575 |
4215 | 3576 /* check for the characters now, otherwise they might be eaten by |
3577 * get_keystroke() */ | |
3578 out_flush(); | |
3579 (void)vpeekc_nomap(); | |
3580 } | |
3581 } | |
3582 # endif | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3583 |
6874 | 3584 /* |
6885 | 3585 * Similar to requesting the version string: Request the terminal background |
3586 * color when it is the right moment. | |
6874 | 3587 */ |
3588 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3589 may_req_bg_color(void) |
6874 | 3590 { |
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
|
3591 if (can_get_termresponse() && starting == 0) |
6874 | 3592 { |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3593 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
|
3594 |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
3595 # ifdef FEAT_TERMINAL |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3596 /* Only request foreground if t_RF is set. */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3597 if (rfg_status == STATUS_GET && *T_RFG != NUL) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3598 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3599 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
|
3600 out_str(T_RFG); |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3601 rfg_status = STATUS_SENT; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3602 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
|
3603 } |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
3604 # 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
|
3605 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3606 /* Only request background if t_RB is set. */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3607 if (rbg_status == 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
|
3608 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3609 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
|
3610 out_str(T_RBG); |
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
|
3611 rbg_status = STATUS_SENT; |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3612 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
|
3613 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3614 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
3615 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
|
3616 { |
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
|
3617 /* check for the characters now, otherwise they might be eaten by |
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
|
3618 * get_keystroke() */ |
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
|
3619 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
|
3620 (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
|
3621 } |
6874 | 3622 } |
3623 } | |
3624 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3625 # ifdef DEBUG_TERMRESPONSE |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3626 static void |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3627 log_tr(const char *fmt, ...) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3628 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3629 static FILE *fd_tr = NULL; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3630 static proftime_T start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3631 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
|
3632 va_list ap; |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3633 |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3634 if (fd_tr == NULL) |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3635 { |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3636 fd_tr = fopen("termresponse.log", "w"); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3637 profile_start(&start); |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3638 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3639 now = start; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3640 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
|
3641 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
|
3642 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
|
3643 : 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
|
3644 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
|
3645 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
|
3646 va_end(ap); |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
3647 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
|
3648 fflush(fd_tr); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3649 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
3650 # endif |
7 | 3651 #endif |
3652 | |
3653 /* | |
3654 * Return TRUE when saving and restoring the screen. | |
3655 */ | |
3656 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3657 swapping_screen(void) |
7 | 3658 { |
3659 return (full_screen && *T_TI != NUL); | |
3660 } | |
3661 | |
13489
24e8f9044bed
patch 8.0.1618: color Grey50 is missing in the compiled-in table
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
3662 #if defined(FEAT_MOUSE) || defined(PROTO) |
7 | 3663 /* |
3664 * setmouse() - switch mouse on/off depending on current mode and 'mouse' | |
3665 */ | |
3666 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3667 setmouse(void) |
7 | 3668 { |
3669 # ifdef FEAT_MOUSE_TTY | |
3670 int checkfor; | |
3671 # endif | |
3672 | |
3673 # ifdef FEAT_MOUSESHAPE | |
3674 update_mouseshape(-1); | |
3675 # endif | |
3676 | |
3677 # ifdef FEAT_MOUSE_TTY /* Should be outside proc, but may break MOUSESHAPE */ | |
3678 # ifdef FEAT_GUI | |
3679 /* In the GUI the mouse is always enabled. */ | |
3680 if (gui.in_use) | |
3681 return; | |
3682 # endif | |
3683 /* be quick when mouse is off */ | |
3684 if (*p_mouse == NUL || has_mouse_termcode == 0) | |
3685 return; | |
3686 | |
3687 /* don't switch mouse on when not in raw mode (Ex mode) */ | |
3688 if (cur_tmode != TMODE_RAW) | |
3689 { | |
3690 mch_setmouse(FALSE); | |
3691 return; | |
3692 } | |
3693 | |
3694 if (VIsual_active) | |
3695 checkfor = MOUSE_VISUAL; | |
5735 | 3696 else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE) |
7 | 3697 checkfor = MOUSE_RETURN; |
3698 else if (State & INSERT) | |
3699 checkfor = MOUSE_INSERT; | |
3700 else if (State & CMDLINE) | |
3701 checkfor = MOUSE_COMMAND; | |
3702 else if (State == CONFIRM || State == EXTERNCMD) | |
3703 checkfor = ' '; /* don't use mouse for ":confirm" or ":!cmd" */ | |
3704 else | |
3705 checkfor = MOUSE_NORMAL; /* assume normal mode */ | |
3706 | |
3707 if (mouse_has(checkfor)) | |
3708 mch_setmouse(TRUE); | |
3709 else | |
3710 mch_setmouse(FALSE); | |
3711 # endif | |
3712 } | |
3713 | |
3714 /* | |
3715 * Return TRUE if | |
3716 * - "c" is in 'mouse', or | |
3717 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or | |
3718 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a | |
3719 * normal editing mode (not at hit-return message). | |
3720 */ | |
3721 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3722 mouse_has(int c) |
7 | 3723 { |
3724 char_u *p; | |
3725 | |
3726 for (p = p_mouse; *p; ++p) | |
3727 switch (*p) | |
3728 { | |
3729 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL) | |
3730 return TRUE; | |
3731 break; | |
3732 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help) | |
3733 return TRUE; | |
3734 break; | |
3735 default: if (c == *p) return TRUE; break; | |
3736 } | |
3737 return FALSE; | |
3738 } | |
3739 | |
3740 /* | |
3741 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos". | |
3742 */ | |
3743 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3744 mouse_model_popup(void) |
7 | 3745 { |
3746 return (p_mousem[0] == 'p'); | |
3747 } | |
3748 #endif | |
3749 | |
3750 /* | |
3751 * By outputting the 'cursor very visible' termcap code, for some windowed | |
3752 * terminals this makes the screen scrolled to the correct position. | |
3753 * Used when starting Vim or returning from a shell. | |
3754 */ | |
3755 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3756 scroll_start(void) |
7 | 3757 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3758 if (*T_VS != NUL && *T_CVS != NUL) |
7 | 3759 { |
3760 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
|
3761 out_str(T_CVS); |
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3762 screen_start(); /* don't know where cursor is now */ |
7 | 3763 } |
3764 } | |
3765 | |
3766 static int cursor_is_off = FALSE; | |
3767 | |
3768 /* | |
3769 * Enable the cursor. | |
3770 */ | |
3771 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3772 cursor_on(void) |
7 | 3773 { |
3774 if (cursor_is_off) | |
3775 { | |
3776 out_str(T_VE); | |
3777 cursor_is_off = FALSE; | |
3778 } | |
3779 } | |
3780 | |
3781 /* | |
3782 * Disable the cursor. | |
3783 */ | |
3784 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3785 cursor_off(void) |
7 | 3786 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3787 if (full_screen && !cursor_is_off) |
7 | 3788 { |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3789 out_str(T_VI); /* disable cursor */ |
7 | 3790 cursor_is_off = TRUE; |
3791 } | |
3792 } | |
3793 | |
39 | 3794 #if defined(CURSOR_SHAPE) || defined(PROTO) |
7 | 3795 /* |
6727 | 3796 * Set cursor shape to match Insert or Replace mode. |
36 | 3797 */ |
3798 void | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3799 term_cursor_mode(int forced) |
36 | 3800 { |
12078
d21b8f31b296
patch 8.0.0919: cursor color isn't set on startup
Christian Brabandt <cb@256bit.org>
parents:
12076
diff
changeset
|
3801 static int showing_mode = -1; |
6727 | 3802 char_u *p; |
3803 | |
3804 /* Only do something when redrawing the screen and we can restore the | |
3805 * mode. */ | |
3806 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
|
3807 { |
12184
76fbd85c3cea
patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents:
12174
diff
changeset
|
3808 # 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
|
3809 if (forced && initial_cursor_shape > 0) |
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
|
3810 /* Restore to initial values. */ |
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
|
3811 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
|
3812 # endif |
36 | 3813 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
|
3814 } |
36 | 3815 |
6727 | 3816 if ((State & REPLACE) == REPLACE) |
36 | 3817 { |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3818 if (forced || showing_mode != REPLACE) |
6727 | 3819 { |
3820 if (*T_CSR != NUL) | |
3821 p = T_CSR; /* Replace mode cursor */ | |
3822 else | |
3823 p = T_CSI; /* fall back to Insert mode cursor */ | |
3824 if (*p != NUL) | |
3825 { | |
3826 out_str(p); | |
3827 showing_mode = REPLACE; | |
3828 } | |
3829 } | |
36 | 3830 } |
6727 | 3831 else if (State & INSERT) |
36 | 3832 { |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3833 if ((forced || showing_mode != INSERT) && *T_CSI != NUL) |
6727 | 3834 { |
3835 out_str(T_CSI); /* Insert mode cursor */ | |
3836 showing_mode = INSERT; | |
3837 } | |
3838 } | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3839 else if (forced || showing_mode != NORMAL) |
6727 | 3840 { |
3841 out_str(T_CEI); /* non-Insert mode cursor */ | |
3842 showing_mode = NORMAL; | |
36 | 3843 } |
3844 } | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3845 |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3846 # 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
|
3847 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3848 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
|
3849 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3850 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
|
3851 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3852 out_str(T_CSC); /* set cursor color start */ |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3853 out_str_nf(color); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3854 out_str(T_CEC); /* set cursor color end */ |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3855 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3856 } |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3857 } |
12172
444793fce117
patch 8.0.0966: build failure without terminal feature
Christian Brabandt <cb@256bit.org>
parents:
12170
diff
changeset
|
3858 # endif |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3859 |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3860 int |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3861 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
|
3862 { |
12261
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3863 #ifdef FEAT_TERMRESPONSE |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3864 return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3865 && 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
|
3866 #else |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3867 return FALSE; |
875d7cc9b127
patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents:
12259
diff
changeset
|
3868 #endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3869 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3870 |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3871 /* |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3872 * "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
|
3873 */ |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3874 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3875 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
|
3876 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3877 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
|
3878 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3879 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
|
3880 out_flush(); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3881 } |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3882 else |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3883 { |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3884 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
|
3885 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3886 /* t_SH is empty: try setting just the blink state. |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3887 * The blink flags are XORed together, if the initial blinking from |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3888 * style and shape differs, we need to invert the flag here. */ |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3889 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
|
3890 do_blink = !blink; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3891 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3892 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
|
3893 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3894 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
|
3895 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3896 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3897 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
|
3898 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3899 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
|
3900 out_flush(); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
3901 } |
12186
36456f237c59
patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents:
12184
diff
changeset
|
3902 } |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11784
diff
changeset
|
3903 } |
39 | 3904 #endif |
36 | 3905 |
3906 /* | |
7 | 3907 * Set scrolling region for window 'wp'. |
3908 * The region starts 'off' lines from the start of the window. | |
3909 * Also set the vertical scroll region for a vertically split window. Always | |
3910 * the full width of the window, excluding the vertical separator. | |
3911 */ | |
3912 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3913 scroll_region_set(win_T *wp, int off) |
7 | 3914 { |
3915 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1, | |
3916 W_WINROW(wp) + off)); | |
3917 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
|
3918 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
|
3919 wp->w_wincol)); |
7 | 3920 screen_start(); /* don't know where cursor is now */ |
3921 } | |
3922 | |
3923 /* | |
3924 * Reset scrolling region to the whole screen. | |
3925 */ | |
3926 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3927 scroll_region_reset(void) |
7 | 3928 { |
3929 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0)); | |
3930 if (*T_CSV != NUL) | |
3931 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0)); | |
3932 screen_start(); /* don't know where cursor is now */ | |
3933 } | |
3934 | |
3935 | |
3936 /* | |
3937 * List of terminal codes that are currently recognized. | |
3938 */ | |
3939 | |
298 | 3940 static struct termcode |
7 | 3941 { |
3942 char_u name[2]; /* termcap name of entry */ | |
3943 char_u *code; /* terminal code (in allocated memory) */ | |
3944 int len; /* STRLEN(code) */ | |
179 | 3945 int modlen; /* length of part before ";*~". */ |
7 | 3946 } *termcodes = NULL; |
3947 | |
3948 static int tc_max_len = 0; /* number of entries that termcodes[] can hold */ | |
3949 static int tc_len = 0; /* current number of entries in termcodes[] */ | |
3950 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
3951 static int termcode_star(char_u *code, int len); |
180 | 3952 |
7 | 3953 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3954 clear_termcodes(void) |
7 | 3955 { |
3956 while (tc_len > 0) | |
3957 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
|
3958 VIM_CLEAR(termcodes); |
7 | 3959 tc_max_len = 0; |
3960 | |
3961 #ifdef HAVE_TGETENT | |
3962 BC = (char *)empty_option; | |
3963 UP = (char *)empty_option; | |
3964 PC = NUL; /* set pad character to NUL */ | |
3965 ospeed = 0; | |
3966 #endif | |
3967 | |
3968 need_gather = TRUE; /* need to fill termleader[] */ | |
3969 } | |
3970 | |
180 | 3971 #define ATC_FROM_TERM 55 |
3972 | |
7 | 3973 /* |
3974 * Add a new entry to the list of terminal codes. | |
3975 * The list is kept alphabetical for ":set termcap" | |
180 | 3976 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired. |
3977 * "flags" can also be ATC_FROM_TERM for got_code_from_term(). | |
7 | 3978 */ |
3979 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3980 add_termcode(char_u *name, char_u *string, int flags) |
7 | 3981 { |
3982 struct termcode *new_tc; | |
3983 int i, j; | |
3984 char_u *s; | |
179 | 3985 int len; |
7 | 3986 |
3987 if (string == NULL || *string == NUL) | |
3988 { | |
3989 del_termcode(name); | |
3990 return; | |
3991 } | |
3992 | |
6047 | 3993 #if defined(WIN3264) && !defined(FEAT_GUI) |
3994 s = vim_strnsave(string, (int)STRLEN(string) + 1); | |
3995 #else | |
7 | 3996 s = vim_strsave(string); |
6047 | 3997 #endif |
7 | 3998 if (s == NULL) |
3999 return; | |
4000 | |
4001 /* Change leading <Esc>[ to CSI, change <Esc>O to <M-O>. */ | |
180 | 4002 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0) |
7 | 4003 { |
1623 | 4004 STRMOVE(s, s + 1); |
7 | 4005 s[0] = term_7to8bit(string); |
4006 } | |
6047 | 4007 |
4008 #if defined(WIN3264) && !defined(FEAT_GUI) | |
4009 if (s[0] == K_NUL) | |
4010 { | |
6102 | 4011 STRMOVE(s + 1, s); |
4012 s[1] = 3; | |
6047 | 4013 } |
4014 #endif | |
4015 | |
179 | 4016 len = (int)STRLEN(s); |
7 | 4017 |
4018 need_gather = TRUE; /* need to fill termleader[] */ | |
4019 | |
4020 /* | |
4021 * need to make space for more entries | |
4022 */ | |
4023 if (tc_len == tc_max_len) | |
4024 { | |
4025 tc_max_len += 20; | |
4026 new_tc = (struct termcode *)alloc( | |
4027 (unsigned)(tc_max_len * sizeof(struct termcode))); | |
4028 if (new_tc == NULL) | |
4029 { | |
4030 tc_max_len -= 20; | |
4031 return; | |
4032 } | |
4033 for (i = 0; i < tc_len; ++i) | |
4034 new_tc[i] = termcodes[i]; | |
4035 vim_free(termcodes); | |
4036 termcodes = new_tc; | |
4037 } | |
4038 | |
4039 /* | |
4040 * Look for existing entry with the same name, it is replaced. | |
4041 * Look for an existing entry that is alphabetical higher, the new entry | |
4042 * is inserted in front of it. | |
4043 */ | |
4044 for (i = 0; i < tc_len; ++i) | |
4045 { | |
4046 if (termcodes[i].name[0] < name[0]) | |
4047 continue; | |
4048 if (termcodes[i].name[0] == name[0]) | |
4049 { | |
4050 if (termcodes[i].name[1] < name[1]) | |
4051 continue; | |
4052 /* | |
180 | 4053 * Exact match: May replace old code. |
7 | 4054 */ |
4055 if (termcodes[i].name[1] == name[1]) | |
4056 { | |
180 | 4057 if (flags == ATC_FROM_TERM && (j = termcode_star( |
4058 termcodes[i].code, termcodes[i].len)) > 0) | |
179 | 4059 { |
180 | 4060 /* Don't replace ESC[123;*X or ESC O*X with another when |
4061 * invoked from got_code_from_term(). */ | |
4062 if (len == termcodes[i].len - j | |
179 | 4063 && STRNCMP(s, termcodes[i].code, len - 1) == 0 |
180 | 4064 && s[len - 1] |
4065 == termcodes[i].code[termcodes[i].len - 1]) | |
179 | 4066 { |
180 | 4067 /* They are equal but for the ";*": don't add it. */ |
179 | 4068 vim_free(s); |
4069 return; | |
4070 } | |
4071 } | |
4072 else | |
4073 { | |
180 | 4074 /* Replace old code. */ |
179 | 4075 vim_free(termcodes[i].code); |
4076 --tc_len; | |
4077 break; | |
4078 } | |
7 | 4079 } |
4080 } | |
4081 /* | |
4082 * Found alphabetical larger entry, move rest to insert new entry | |
4083 */ | |
4084 for (j = tc_len; j > i; --j) | |
4085 termcodes[j] = termcodes[j - 1]; | |
4086 break; | |
4087 } | |
4088 | |
4089 termcodes[i].name[0] = name[0]; | |
4090 termcodes[i].name[1] = name[1]; | |
4091 termcodes[i].code = s; | |
179 | 4092 termcodes[i].len = len; |
180 | 4093 |
4094 /* For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that | |
4095 * accept modifiers. */ | |
4096 termcodes[i].modlen = 0; | |
4097 j = termcode_star(s, len); | |
4098 if (j > 0) | |
4099 termcodes[i].modlen = len - 1 - j; | |
7 | 4100 ++tc_len; |
4101 } | |
4102 | |
180 | 4103 /* |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4104 * Check termcode "code[len]" for ending in ;*X or *X. |
180 | 4105 * 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
|
4106 * Return 0 if not found, 2 for ;*X and 1 for *X. |
180 | 4107 */ |
4108 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4109 termcode_star(char_u *code, int len) |
180 | 4110 { |
4111 /* Shortest is <M-O>*X. With ; shortest is <CSI>1;*X */ | |
4112 if (len >= 3 && code[len - 2] == '*') | |
4113 { | |
4114 if (len >= 5 && code[len - 3] == ';') | |
4115 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
|
4116 else |
180 | 4117 return 1; |
4118 } | |
4119 return 0; | |
4120 } | |
4121 | |
7 | 4122 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4123 find_termcode(char_u *name) |
7 | 4124 { |
4125 int i; | |
4126 | |
4127 for (i = 0; i < tc_len; ++i) | |
4128 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4129 return termcodes[i].code; | |
4130 return NULL; | |
4131 } | |
4132 | |
4133 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
4134 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4135 get_termcode(int i) |
7 | 4136 { |
4137 if (i >= tc_len) | |
4138 return NULL; | |
4139 return &termcodes[i].name[0]; | |
4140 } | |
4141 #endif | |
4142 | |
4143 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4144 del_termcode(char_u *name) |
7 | 4145 { |
4146 int i; | |
4147 | |
4148 if (termcodes == NULL) /* nothing there yet */ | |
4149 return; | |
4150 | |
4151 need_gather = TRUE; /* need to fill termleader[] */ | |
4152 | |
4153 for (i = 0; i < tc_len; ++i) | |
4154 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1]) | |
4155 { | |
4156 del_termcode_idx(i); | |
4157 return; | |
4158 } | |
4159 /* not found. Give error message? */ | |
4160 } | |
4161 | |
4162 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4163 del_termcode_idx(int idx) |
7 | 4164 { |
4165 int i; | |
4166 | |
4167 vim_free(termcodes[idx].code); | |
4168 --tc_len; | |
4169 for (i = idx; i < tc_len; ++i) | |
4170 termcodes[i] = termcodes[i + 1]; | |
4171 } | |
4172 | |
4173 #ifdef FEAT_TERMRESPONSE | |
4174 /* | |
4175 * Called when detected that the terminal sends 8-bit codes. | |
4176 * Convert all 7-bit codes to their 8-bit equivalent. | |
4177 */ | |
4178 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4179 switch_to_8bit(void) |
7 | 4180 { |
4181 int i; | |
4182 int c; | |
4183 | |
4184 /* Only need to do something when not already using 8-bit codes. */ | |
4185 if (!term_is_8bit(T_NAME)) | |
4186 { | |
4187 for (i = 0; i < tc_len; ++i) | |
4188 { | |
4189 c = term_7to8bit(termcodes[i].code); | |
4190 if (c != 0) | |
4191 { | |
1623 | 4192 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2); |
7 | 4193 termcodes[i].code[0] = c; |
4194 } | |
4195 } | |
4196 need_gather = TRUE; /* need to fill termleader[] */ | |
4197 } | |
4198 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
|
4199 LOG_TR(("Switching to 8 bit")); |
7 | 4200 } |
4201 #endif | |
4202 | |
4203 #ifdef CHECK_DOUBLE_CLICK | |
4204 static linenr_T orig_topline = 0; | |
4205 # ifdef FEAT_DIFF | |
4206 static int orig_topfill = 0; | |
4207 # endif | |
4208 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
4209 #if defined(CHECK_DOUBLE_CLICK) || defined(PROTO) |
7 | 4210 /* |
4211 * Checking for double clicks ourselves. | |
4212 * "orig_topline" is used to avoid detecting a double-click when the window | |
4213 * contents scrolled (e.g., when 'scrolloff' is non-zero). | |
4214 */ | |
4215 /* | |
4216 * Set orig_topline. Used when jumping to another window, so that a double | |
4217 * click still works. | |
4218 */ | |
4219 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4220 set_mouse_topline(win_T *wp) |
7 | 4221 { |
4222 orig_topline = wp->w_topline; | |
4223 # ifdef FEAT_DIFF | |
4224 orig_topfill = wp->w_topfill; | |
4225 # endif | |
4226 } | |
4227 #endif | |
4228 | |
4229 /* | |
4230 * Check if typebuf.tb_buf[] contains a terminal key code. | |
4231 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off | |
4232 * + max_offset]. | |
4233 * Return 0 for no match, -1 for partial match, > 0 for full match. | |
2672 | 4234 * Return KEYLEN_REMOVED when a key code was deleted. |
7 | 4235 * With a match, the match is removed, the replacement code is inserted in |
4236 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is | |
4237 * returned. | |
3328 | 4238 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[]. |
4239 * "buflen" is then the length of the string in buf[] and is updated for | |
4240 * inserts and deletes. | |
7 | 4241 */ |
4242 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4243 check_termcode( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4244 int max_offset, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4245 char_u *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4246 int bufsize, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4247 int *buflen) |
7 | 4248 { |
4249 char_u *tp; | |
4250 char_u *p; | |
4251 int slen = 0; /* init for GCC */ | |
180 | 4252 int modslen; |
7 | 4253 int len; |
2672 | 4254 int retval = 0; |
7 | 4255 int offset; |
4256 char_u key_name[2]; | |
180 | 4257 int modifiers; |
11565
91519a14ec1f
patch 8.0.0665: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
11563
diff
changeset
|
4258 char_u *modifiers_start = NULL; |
180 | 4259 int key; |
7 | 4260 int new_slen; |
4261 int extra; | |
4262 char_u string[MAX_KEY_CODE_LEN + 1]; | |
4263 int i, j; | |
4264 int idx = 0; | |
4265 #ifdef FEAT_MOUSE | |
1623 | 4266 # if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \ |
4267 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) | |
7 | 4268 char_u bytes[6]; |
4269 int num_bytes; | |
4270 # endif | |
4271 int mouse_code = 0; /* init for GCC */ | |
4272 int is_click, is_drag; | |
4273 int wheel_code = 0; | |
4274 int current_button; | |
4275 static int held_button = MOUSE_RELEASE; | |
4276 static int orig_num_clicks = 1; | |
4277 static int orig_mouse_code = 0x0; | |
4278 # ifdef CHECK_DOUBLE_CLICK | |
4279 static int orig_mouse_col = 0; | |
4280 static int orig_mouse_row = 0; | |
4281 static struct timeval orig_mouse_time = {0, 0}; | |
4282 /* time of previous mouse click */ | |
4283 struct timeval mouse_time; /* time of current mouse click */ | |
4284 long timediff; /* elapsed time in msec */ | |
4285 # endif | |
4286 #endif | |
4287 int cpo_koffset; | |
4288 #ifdef FEAT_MOUSE_GPM | |
4289 extern int gpm_flag; /* gpm library variable */ | |
4290 #endif | |
4291 | |
4292 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL); | |
4293 | |
4294 /* | |
4295 * Speed up the checks for terminal codes by gathering all first bytes | |
4296 * used in termleader[]. Often this is just a single <Esc>. | |
4297 */ | |
4298 if (need_gather) | |
4299 gather_termleader(); | |
4300 | |
4301 /* | |
4302 * Check at several positions in typebuf.tb_buf[], to catch something like | |
4303 * "x<Up>" that can be mapped. Stop at max_offset, because characters | |
4304 * after that cannot be used for mapping, and with @r commands | |
4223 | 4305 * typebuf.tb_buf[] can become very long. |
7 | 4306 * This is used often, KEEP IT FAST! |
4307 */ | |
4308 for (offset = 0; offset < max_offset; ++offset) | |
4309 { | |
4310 if (buf == NULL) | |
4311 { | |
4312 if (offset >= typebuf.tb_len) | |
4313 break; | |
4314 tp = typebuf.tb_buf + typebuf.tb_off + offset; | |
4315 len = typebuf.tb_len - offset; /* length of the input */ | |
4316 } | |
4317 else | |
4318 { | |
3328 | 4319 if (offset >= *buflen) |
7 | 4320 break; |
4321 tp = buf + offset; | |
3328 | 4322 len = *buflen - offset; |
7 | 4323 } |
4324 | |
4325 /* | |
4326 * Don't check characters after K_SPECIAL, those are already | |
4327 * translated terminal chars (avoid translating ~@^Hx). | |
4328 */ | |
4329 if (*tp == K_SPECIAL) | |
4330 { | |
4331 offset += 2; /* there are always 2 extra characters */ | |
4332 continue; | |
4333 } | |
4334 | |
4335 /* | |
4336 * Skip this position if the character does not appear as the first | |
4337 * character in term_strings. This speeds up a lot, since most | |
4338 * termcodes start with the same character (ESC or CSI). | |
4339 */ | |
4340 i = *tp; | |
4341 for (p = termleader; *p && *p != i; ++p) | |
4342 ; | |
4343 if (*p == NUL) | |
4344 continue; | |
4345 | |
4346 /* | |
4347 * Skip this position if p_ek is not set and tp[0] is an ESC and we | |
4348 * are in Insert mode. | |
4349 */ | |
4350 if (*tp == ESC && !p_ek && (State & INSERT)) | |
4351 continue; | |
4352 | |
4353 key_name[0] = NUL; /* no key name found yet */ | |
699 | 4354 key_name[1] = NUL; /* no key name found yet */ |
180 | 4355 modifiers = 0; /* no modifiers yet */ |
7 | 4356 |
4357 #ifdef FEAT_GUI | |
4358 if (gui.in_use) | |
4359 { | |
4360 /* | |
4361 * GUI special key codes are all of the form [CSI xx]. | |
4362 */ | |
4363 if (*tp == CSI) /* Special key from GUI */ | |
4364 { | |
4365 if (len < 3) | |
4366 return -1; /* Shouldn't happen */ | |
4367 slen = 3; | |
4368 key_name[0] = tp[1]; | |
4369 key_name[1] = tp[2]; | |
4370 } | |
4371 } | |
4372 else | |
4373 #endif /* FEAT_GUI */ | |
4374 { | |
4375 for (idx = 0; idx < tc_len; ++idx) | |
4376 { | |
4377 /* | |
4378 * Ignore the entry if we are not at the start of | |
4379 * typebuf.tb_buf[] | |
4380 * and there are not enough characters to make a match. | |
4381 * But only when the 'K' flag is in 'cpoptions'. | |
4382 */ | |
4383 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
|
4384 modifiers_start = NULL; |
7 | 4385 if (cpo_koffset && offset && len < slen) |
4386 continue; | |
4387 if (STRNCMP(termcodes[idx].code, tp, | |
4388 (size_t)(slen > len ? len : slen)) == 0) | |
4389 { | |
4390 if (len < slen) /* got a partial sequence */ | |
4391 return -1; /* need to get more chars */ | |
4392 | |
4393 /* | |
4394 * When found a keypad key, check if there is another key | |
4395 * that matches and use that one. This makes <Home> to be | |
4396 * found instead of <kHome> when they produce the same | |
4397 * key code. | |
4398 */ | |
4399 if (termcodes[idx].name[0] == 'K' | |
4400 && VIM_ISDIGIT(termcodes[idx].name[1])) | |
4401 { | |
4402 for (j = idx + 1; j < tc_len; ++j) | |
4403 if (termcodes[j].len == slen && | |
4404 STRNCMP(termcodes[idx].code, | |
4405 termcodes[j].code, slen) == 0) | |
4406 { | |
4407 idx = j; | |
4408 break; | |
4409 } | |
4410 } | |
4411 | |
4412 key_name[0] = termcodes[idx].name[0]; | |
4413 key_name[1] = termcodes[idx].name[1]; | |
4414 break; | |
4415 } | |
179 | 4416 |
4417 /* | |
4418 * Check for code with modifier, like xterm uses: | |
180 | 4419 * <Esc>[123;*X (modslen == slen - 3) |
4420 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2). | |
4421 * When there is a modifier the * matches a number. | |
4422 * When there is no modifier the ;* or * is omitted. | |
179 | 4423 */ |
4424 if (termcodes[idx].modlen > 0) | |
4425 { | |
180 | 4426 modslen = termcodes[idx].modlen; |
4427 if (cpo_koffset && offset && len < modslen) | |
179 | 4428 continue; |
4429 if (STRNCMP(termcodes[idx].code, tp, | |
180 | 4430 (size_t)(modslen > len ? len : modslen)) == 0) |
179 | 4431 { |
4432 int n; | |
180 | 4433 |
4434 if (len <= modslen) /* got a partial sequence */ | |
179 | 4435 return -1; /* need to get more chars */ |
4436 | |
180 | 4437 if (tp[modslen] == termcodes[idx].code[slen - 1]) |
4438 slen = modslen + 1; /* no modifiers */ | |
4439 else if (tp[modslen] != ';' && modslen == slen - 3) | |
179 | 4440 continue; /* no match */ |
4441 else | |
4442 { | |
4443 /* Skip over the digits, the final char must | |
4444 * follow. */ | |
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
|
4445 for (j = slen - 2; j < len && (isdigit(tp[j]) |
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
|
4446 || tp[j] == ';'); ++j) |
179 | 4447 ; |
4448 ++j; | |
4449 if (len < j) /* got a partial sequence */ | |
4450 return -1; /* need to get more chars */ | |
180 | 4451 if (tp[j - 1] != termcodes[idx].code[slen - 1]) |
4452 continue; /* no match */ | |
179 | 4453 |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4454 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
|
4455 |
179 | 4456 /* Match! Convert modifier bits. */ |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4457 n = atoi((char *)modifiers_start) - 1; |
179 | 4458 if (n & 1) |
180 | 4459 modifiers |= MOD_MASK_SHIFT; |
179 | 4460 if (n & 2) |
180 | 4461 modifiers |= MOD_MASK_ALT; |
179 | 4462 if (n & 4) |
180 | 4463 modifiers |= MOD_MASK_CTRL; |
179 | 4464 if (n & 8) |
180 | 4465 modifiers |= MOD_MASK_META; |
179 | 4466 |
4467 slen = j; | |
4468 } | |
4469 key_name[0] = termcodes[idx].name[0]; | |
4470 key_name[1] = termcodes[idx].name[1]; | |
4471 break; | |
4472 } | |
4473 } | |
7 | 4474 } |
4475 } | |
4476 | |
4477 #ifdef FEAT_TERMRESPONSE | |
3166 | 4478 if (key_name[0] == NUL |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
4479 /* Mouse codes of DEC and pterm start with <ESC>[. When |
6102 | 4480 * detecting the start of these mouse codes they might as well be |
4481 * another key code or terminal response. */ | |
4482 # ifdef FEAT_MOUSE_DEC | |
4483 || key_name[0] == KS_DEC_MOUSE | |
4484 # endif | |
4485 # ifdef FEAT_MOUSE_PTERM | |
4486 || key_name[0] == KS_PTERM_MOUSE | |
4223 | 4487 # endif |
6102 | 4488 ) |
7 | 4489 { |
6102 | 4490 /* Check for some responses from the terminal starting with |
4491 * "<Esc>[" or CSI: | |
4215 | 4492 * |
6102 | 4493 * - Xterm version string: <Esc>[>{x};{vers};{y}c |
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
|
4494 * Libvterm returns {x} == 0, {vers} == 100, {y} == 0. |
4215 | 4495 * Also eat other possible responses to t_RV, rxvt returns |
4496 * "<Esc>[?1;2c". Also accept CSI instead of <Esc>[. | |
4497 * mrxvt has been reported to have "+" in the version. Assume | |
4498 * the escape sequence ends with a letter or one of "{|}~". | |
4499 * | |
6102 | 4500 * - Cursor position report: <Esc>[{row};{col}R |
4501 * The final byte must be 'R'. It is used for checking the | |
4215 | 4502 * 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
|
4503 * |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4504 * - window position reply: <Esc>[3;{x};{y}t |
4215 | 4505 */ |
6901 | 4506 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1; |
4507 | |
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
|
4508 if ((*T_CRV != NUL || *T_U7 != NUL || did_request_winpos) |
6901 | 4509 && ((tp[0] == ESC && len >= 3 && tp[1] == '[') |
4395 | 4510 || (tp[0] == CSI && len >= 2)) |
6874 | 4511 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?')) |
7 | 4512 { |
11784
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4513 int col = 0; |
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4514 int semicols = 0; |
5724 | 4515 #ifdef FEAT_MBYTE |
5743 | 4516 int row_char = NUL; |
5724 | 4517 #endif |
11784
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4518 |
7 | 4519 extra = 0; |
1552 | 4520 for (i = 2 + (tp[0] != CSI); i < len |
4521 && !(tp[i] >= '{' && tp[i] <= '~') | |
4522 && !ASCII_ISALPHA(tp[i]); ++i) | |
11784
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4523 if (tp[i] == ';' && ++semicols == 1) |
5724 | 4524 { |
4395 | 4525 extra = i + 1; |
5724 | 4526 #ifdef FEAT_MBYTE |
4527 row_char = tp[i - 1]; | |
4528 #endif | |
4529 } | |
7 | 4530 if (i == len) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4531 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4532 LOG_TR(("Not enough characters for CRV")); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4533 return -1; |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4534 } |
5724 | 4535 if (extra > 0) |
4536 col = atoi((char *)tp + extra); | |
11784
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4537 |
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4538 #ifdef FEAT_MBYTE |
5724 | 4539 /* Eat it when it has 2 arguments and ends in 'R'. Also when |
4540 * u7_status is not "sent", it may be from a previous Vim that | |
4541 * just exited. But not for <S-F3>, it sends something | |
4542 * similar, check for row and column to make sense. */ | |
11784
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4543 if (semicols == 1 && tp[i] == 'R') |
4215 | 4544 { |
6102 | 4545 if (row_char == '2' && col >= 2) |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4546 { |
6102 | 4547 char *aw = NULL; |
4548 | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4549 LOG_TR(("Received U7 status: %s", tp)); |
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
|
4550 u7_status = STATUS_GOT; |
6102 | 4551 did_cursorhold = TRUE; |
4552 if (col == 2) | |
4553 aw = "single"; | |
4554 else if (col == 3) | |
4555 aw = "double"; | |
4556 if (aw != NULL && STRCMP(aw, p_ambw) != 0) | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4557 { |
6102 | 4558 /* Setting the option causes a screen redraw. Do |
4559 * that right away if possible, keeping any | |
4560 * messages. */ | |
4561 set_option_value((char_u *)"ambw", 0L, | |
4562 (char_u *)aw, 0); | |
4563 # ifdef DEBUG_TERMRESPONSE | |
4564 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4565 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
|
4566 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4567 log_tr("set 'ambiwidth', redraw_asap(): %d", r); |
6102 | 4568 } |
4569 # else | |
4570 redraw_asap(CLEAR); | |
4571 # endif | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4572 } |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4573 } |
4215 | 4574 key_name[0] = (int)KS_EXTRA; |
4575 key_name[1] = (int)KE_IGNORE; | |
4576 slen = i + 1; | |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4577 # ifdef FEAT_EVAL |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4578 set_vim_var_string(VV_TERMU7RESP, tp, slen); |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4579 # endif |
4215 | 4580 } |
4581 else | |
4582 #endif | |
7 | 4583 /* eat it when at least one digit and ending in 'c' */ |
4215 | 4584 if (*T_CRV != NUL && i > 2 + (tp[0] != CSI) && tp[i] == 'c') |
7 | 4585 { |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4586 int version = col; |
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4587 |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4588 LOG_TR(("Received CRV response: %s", tp)); |
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
|
4589 crv_status = STATUS_GOT; |
4262 | 4590 did_cursorhold = TRUE; |
7 | 4591 |
4592 /* If this code starts with CSI, you can bet that the | |
4593 * terminal uses 8-bit codes. */ | |
4594 if (tp[0] == CSI) | |
4595 switch_to_8bit(); | |
4596 | |
4597 /* rxvt sends its version number: "20703" is 2.7.3. | |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4598 * Screen sends 40500. |
7 | 4599 * Ignore it for when the user has set 'term' to xterm, |
4600 * even though it's an rxvt. */ | |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4601 if (version > 20000) |
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4602 version = 0; |
7 | 4603 |
11784
80fa4b0eb0b0
patch 8.0.0774: build failure without the multi-byte feature
Christian Brabandt <cb@256bit.org>
parents:
11745
diff
changeset
|
4604 if (tp[1 + (tp[0] != CSI)] == '>' && semicols == 2) |
7 | 4605 { |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4606 int need_flush = FALSE; |
12853
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4607 # ifdef FEAT_MOUSE_SGR |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4608 int is_iterm2 = FALSE; |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4609 # endif |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4610 |
7 | 4611 /* if xterm version >= 141 try to get termcap codes */ |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4612 if (version >= 141) |
7 | 4613 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4614 LOG_TR(("Enable checking for XT codes")); |
7 | 4615 check_for_codes = TRUE; |
4616 need_gather = TRUE; | |
4617 req_codes_from_term(); | |
4618 } | |
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
|
4619 |
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
|
4620 /* libvterm sends 0;100;0 */ |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4621 if (version == 100 |
12234
2b333727279d
patch 8.0.0997 Problem: Libvterm and Terminal.app not regognized from termresponse. Solution: Adjust string compare.
Christian Brabandt <cb@256bit.org>
parents:
12232
diff
changeset
|
4622 && STRNCMP(tp + extra - 2, "0;100;0c", 8) == 0) |
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
|
4623 { |
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
|
4624 /* If run from Vim $COLORS is set to the number of |
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
|
4625 * colors the terminal supports. Otherwise assume |
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
|
4626 * 256, libvterm supports even more. */ |
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
|
4627 if (mch_getenv((char_u *)"COLORS") == NULL) |
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
|
4628 may_adjust_color_count(256); |
12761
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4629 # ifdef FEAT_MOUSE_SGR |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4630 /* Libvterm can handle SGR mouse reporting. */ |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4631 if (!option_was_set((char_u *)"ttym")) |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4632 set_option_value((char_u *)"ttym", 0L, |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4633 (char_u *)"sgr", 0); |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4634 # endif |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4635 } |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4636 |
12853
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4637 if (version == 95) |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4638 { |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4639 /* Mac Terminal.app sends 1;95;0 */ |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4640 if (STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0) |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4641 { |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4642 is_not_xterm = TRUE; |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4643 is_mac_terminal = TRUE; |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4644 } |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4645 # ifdef FEAT_MOUSE_SGR |
13008
e775011b4c1e
patch 8.0.1380: using "vim -r swapfile" the hit-enter prompt is misplaced.
Christian Brabandt <cb@256bit.org>
parents:
12895
diff
changeset
|
4646 /* iTerm2 sends 0;95;0 */ |
12853
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4647 if (STRNCMP(tp + extra - 2, "0;95;0c", 7) == 0) |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4648 is_iterm2 = TRUE; |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4649 # endif |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4650 } |
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4651 |
12761
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4652 /* Only set 'ttymouse' automatically if it was not set |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4653 * by the user already. */ |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4654 if (!option_was_set((char_u *)"ttym")) |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4655 { |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4656 # ifdef FEAT_MOUSE_SGR |
12853
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4657 /* Xterm version 277 supports SGR. Also support |
13008
e775011b4c1e
patch 8.0.1380: using "vim -r swapfile" the hit-enter prompt is misplaced.
Christian Brabandt <cb@256bit.org>
parents:
12895
diff
changeset
|
4658 * Terminal.app and iTerm2. */ |
12853
b2a8d6ef578b
patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents:
12790
diff
changeset
|
4659 if (version >= 277 || is_iterm2 || is_mac_terminal) |
12761
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4660 set_option_value((char_u *)"ttym", 0L, |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4661 (char_u *)"sgr", 0); |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4662 else |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4663 # endif |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4664 /* if xterm version >= 95 use mouse dragging */ |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4665 if (version >= 95) |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4666 set_option_value((char_u *)"ttym", 0L, |
2c502179c75d
patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
4667 (char_u *)"xterm2", 0); |
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
|
4668 } |
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
|
4669 |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4670 /* Detect terminals that set $TERM to something like |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4671 * "xterm-256colors" but are not fully xterm |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4672 * compatible. */ |
12429
269d3cdc1214
patch 8.0.1094: using ssh from Terminal.app runs into xterm incompatibility
Christian Brabandt <cb@256bit.org>
parents:
12379
diff
changeset
|
4673 |
12359
c83669fb7601
patch 8.0.1059: older Gnome terminal returns smaller version number
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4674 /* Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0. |
12295
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4675 * xfce4-terminal sends 1;2802;0. |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4676 * screen sends 83;40500;0 |
12359
c83669fb7601
patch 8.0.1059: older Gnome terminal returns smaller version number
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4677 * Assuming any version number over 2500 is not an |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4678 * xterm (without the limit for rxvt and screen). */ |
12359
c83669fb7601
patch 8.0.1059: older Gnome terminal returns smaller version number
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
4679 if (col >= 2500) |
12295
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4680 is_not_xterm = TRUE; |
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4681 |
12373
71524e1a717b
patch 8.0.1066: some terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12359
diff
changeset
|
4682 /* PuTTY sends 0;136;0 |
71524e1a717b
patch 8.0.1066: some terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12359
diff
changeset
|
4683 * vandyke SecureCRT sends 1;136;0 */ |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4684 if (version == 136 |
12377
5d543a5fb223
patch 8.0.1068: vandyke SecureCRT terminal can't handle cursor mode request
Christian Brabandt <cb@256bit.org>
parents:
12373
diff
changeset
|
4685 && STRNCMP(tp + extra - 1, ";136;0c", 7) == 0) |
12295
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4686 is_not_xterm = TRUE; |
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4687 |
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4688 /* Konsole sends 0;115;0 */ |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12295
diff
changeset
|
4689 if (version == 115 |
12295
270256b6d0b8
patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents:
12283
diff
changeset
|
4690 && STRNCMP(tp + extra - 2, "0;115;0c", 8) == 0) |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4691 is_not_xterm = TRUE; |
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
|
4692 |
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
|
4693 /* Only request the cursor style if t_SH and t_RS are |
12497
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4694 * set. Only supported properly by xterm since version |
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4695 * 279 (otherwise it returns 0x18). |
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4696 * Not for Terminal.app, it can't handle t_RS, it |
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
|
4697 * echoes the characters to the screen. */ |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4698 if (rcs_status == STATUS_GET |
12497
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4699 && version >= 279 |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4700 && !is_not_xterm |
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
|
4701 && *T_CSH != NUL |
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
|
4702 && *T_CRS != NUL) |
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
|
4703 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4704 LOG_TR(("Sending cursor style request")); |
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
|
4705 out_str(T_CRS); |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4706 rcs_status = STATUS_SENT; |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4707 need_flush = TRUE; |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4708 } |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4709 |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4710 /* Only request the cursor blink mode if t_RC set. Not |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4711 * for Gnome terminal, it can't handle t_RC, it |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4712 * echoes the characters to the screen. */ |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4713 if (rbm_status == STATUS_GET |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4714 && !is_not_xterm |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4715 && *T_CRC != NUL) |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4716 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4717 LOG_TR(("Sending cursor blink mode request")); |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4718 out_str(T_CRC); |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4719 rbm_status = STATUS_SENT; |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4720 need_flush = TRUE; |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4721 } |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4722 |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4723 if (need_flush) |
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
|
4724 out_flush(); |
7 | 4725 } |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4726 slen = i + 1; |
7 | 4727 # ifdef FEAT_EVAL |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4728 set_vim_var_string(VV_TERMRESPONSE, tp, slen); |
7 | 4729 # endif |
4730 apply_autocmds(EVENT_TERMRESPONSE, | |
4731 NULL, NULL, FALSE, curbuf); | |
4732 key_name[0] = (int)KS_EXTRA; | |
4733 key_name[1] = (int)KE_IGNORE; | |
4734 } | |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4735 |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4736 /* Check blinking cursor from xterm: |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4737 * {lead}?12;1$y set |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4738 * {lead}?12;2$y not set |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4739 * |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4740 * {lead} can be <Esc>[ or CSI |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4741 */ |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4742 else if (rbm_status == STATUS_SENT |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4743 && tp[(j = 1 + (tp[0] == ESC))] == '?' |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4744 && i == j + 6 |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4745 && tp[j + 1] == '1' |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4746 && tp[j + 2] == '2' |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4747 && tp[j + 3] == ';' |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4748 && tp[i - 1] == '$' |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4749 && tp[i] == 'y') |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4750 { |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4751 initial_cursor_blink = (tp[j + 4] == '1'); |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4752 rbm_status = STATUS_GOT; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4753 LOG_TR(("Received cursor blinking mode response: %s", tp)); |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4754 key_name[0] = (int)KS_EXTRA; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4755 key_name[1] = (int)KE_IGNORE; |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4756 slen = i + 1; |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4757 # ifdef FEAT_EVAL |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4758 set_vim_var_string(VV_TERMBLINKRESP, tp, slen); |
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4759 # endif |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4760 } |
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4761 |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4762 /* |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4763 * Check for a window position response 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
|
4764 * {lead}3;{x}:{y}t |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4765 */ |
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
|
4766 else if (did_request_winpos |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4767 && ((len >= 4 && tp[0] == ESC && tp[1] == '[') |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4768 || (len >= 3 && tp[0] == CSI)) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4769 && tp[(j = 1 + (tp[0] == ESC))] == '3' |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4770 && tp[j + 1] == ';') |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4771 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4772 j += 2; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4773 for (i = j; i < len && vim_isdigit(tp[i]); ++i) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4774 ; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4775 if (i < len && tp[i] == ';') |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4776 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4777 winpos_x = atoi((char *)tp + j); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4778 j = i + 1; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4779 for (i = j; i < len && vim_isdigit(tp[i]); ++i) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4780 ; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4781 if (i < len && tp[i] == 't') |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4782 { |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4783 winpos_y = atoi((char *)tp + j); |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4784 /* got finished code: consume it */ |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4785 key_name[0] = (int)KS_EXTRA; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4786 key_name[1] = (int)KE_IGNORE; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4787 slen = i + 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
|
4788 |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4789 if (--did_request_winpos <= 0) |
aef75fbfc07d
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
4790 winpos_status = STATUS_GOT; |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4791 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4792 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4793 if (i == len) |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4794 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4795 LOG_TR(("not enough characters for winpos")); |
11315
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4796 return -1; |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4797 } |
0c091a7c588c
patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents:
11307
diff
changeset
|
4798 } |
6901 | 4799 } |
4800 | |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4801 /* Check for fore/background color response from the terminal: |
6901 | 4802 * |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4803 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail} |
6901 | 4804 * |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4805 * {code} is 10 for foreground, 11 for background |
6901 | 4806 * {lead} can be <Esc>] or OSC |
4807 * {tail} can be '\007', <Esc>\ or STERM. | |
4808 * | |
4809 * Consume any code that starts with "{lead}11;", it's also | |
4810 * possible that "rgba" is following. | |
4811 */ | |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4812 else if ((*T_RBG != NUL || *T_RFG != NUL) |
6901 | 4813 && ((tp[0] == ESC && len >= 2 && tp[1] == ']') |
4814 || tp[0] == OSC)) | |
4815 { | |
4816 j = 1 + (tp[0] == ESC); | |
4817 if (len >= j + 3 && (argp[0] != '1' | |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4818 || (argp[1] != '1' && argp[1] != '0') |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4819 || argp[2] != ';')) |
6901 | 4820 i = 0; /* no match */ |
4821 else | |
4822 for (i = j; i < len; ++i) | |
4823 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM | |
4824 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\'))) | |
4825 { | |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4826 int is_bg = argp[1] == '1'; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4827 |
6901 | 4828 if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0 |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4829 && tp[j + 11] == '/' && tp[j + 16] == '/') |
11453
ec47e673a021
patch 8.0.0610: the screen is redrawn when default 'background' is detected
Christian Brabandt <cb@256bit.org>
parents:
11368
diff
changeset
|
4830 { |
12790
305693246ff6
patch 8.0.1272: warnings for unused variables in tiny build
Christian Brabandt <cb@256bit.org>
parents:
12761
diff
changeset
|
4831 #ifdef FEAT_TERMINAL |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4832 int rval = hexhex2nr(tp + j + 7); |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4833 int gval = hexhex2nr(tp + j + 12); |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4834 int bval = hexhex2nr(tp + j + 17); |
12790
305693246ff6
patch 8.0.1272: warnings for unused variables in tiny build
Christian Brabandt <cb@256bit.org>
parents:
12761
diff
changeset
|
4835 #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
|
4836 if (is_bg) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4837 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4838 char *newval = (3 * '6' < tp[j+7] + tp[j+12] |
11453
ec47e673a021
patch 8.0.0610: the screen is redrawn when default 'background' is detected
Christian Brabandt <cb@256bit.org>
parents:
11368
diff
changeset
|
4839 + tp[j+17]) ? "light" : "dark"; |
ec47e673a021
patch 8.0.0610: the screen is redrawn when default 'background' is detected
Christian Brabandt <cb@256bit.org>
parents:
11368
diff
changeset
|
4840 |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4841 LOG_TR(("Received RBG response: %s", tp)); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4842 rbg_status = STATUS_GOT; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4843 #ifdef FEAT_TERMINAL |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4844 bg_r = rval; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4845 bg_g = gval; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4846 bg_b = bval; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4847 #endif |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4848 if (!option_was_set((char_u *)"bg") |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4849 && STRCMP(p_bg, newval) != 0) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4850 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4851 /* value differs, apply it */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4852 set_option_value((char_u *)"bg", 0L, |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4853 (char_u *)newval, 0); |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4854 reset_option_was_set((char_u *)"bg"); |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4855 redraw_asap(CLEAR); |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4856 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4857 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4858 #ifdef FEAT_TERMINAL |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4859 else |
11453
ec47e673a021
patch 8.0.0610: the screen is redrawn when default 'background' is detected
Christian Brabandt <cb@256bit.org>
parents:
11368
diff
changeset
|
4860 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4861 LOG_TR(("Received RFG response: %s", tp)); |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4862 rfg_status = STATUS_GOT; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4863 fg_r = rval; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4864 fg_g = gval; |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4865 fg_b = bval; |
11453
ec47e673a021
patch 8.0.0610: the screen is redrawn when default 'background' is detected
Christian Brabandt <cb@256bit.org>
parents:
11368
diff
changeset
|
4866 } |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4867 #endif |
6901 | 4868 } |
4869 | |
4870 /* got finished code: consume it */ | |
4871 key_name[0] = (int)KS_EXTRA; | |
4872 key_name[1] = (int)KE_IGNORE; | |
4873 slen = i + 1 + (tp[i] == ESC); | |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4874 # ifdef FEAT_EVAL |
12632
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4875 set_vim_var_string(is_bg ? VV_TERMRBGRESP |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
4876 : VV_TERMRFGRESP, tp, slen); |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4877 # endif |
6901 | 4878 break; |
4879 } | |
4880 if (i == len) | |
6874 | 4881 { |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4882 LOG_TR(("not enough characters for RB")); |
6901 | 4883 return -1; |
6874 | 4884 } |
7 | 4885 } |
4886 | |
6901 | 4887 /* Check for key code response from xterm: |
4888 * {lead}{flag}+r<hex bytes><{tail} | |
4889 * | |
4890 * {lead} can be <Esc>P or DCS | |
4891 * {flag} can be '0' or '1' | |
4892 * {tail} can be Esc>\ or STERM | |
4893 * | |
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
|
4894 * Check for cursor shape response from xterm: |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4895 * {lead}1$r<digit> q{tail} |
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
|
4896 * |
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
|
4897 * {lead} can be <Esc>P or DCS |
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
|
4898 * {tail} can be Esc>\ or STERM |
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
|
4899 * |
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
|
4900 * Consume any code that starts with "{lead}.+r" or "{lead}.$r". |
6901 | 4901 */ |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4902 else if ((check_for_codes || rcs_status == STATUS_SENT) |
6901 | 4903 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P') |
7 | 4904 || tp[0] == DCS)) |
4905 { | |
6901 | 4906 j = 1 + (tp[0] == ESC); |
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
|
4907 if (len < j + 3) |
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
|
4908 i = len; /* need more chars */ |
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
|
4909 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r') |
6901 | 4910 i = 0; /* no match */ |
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
|
4911 else if (argp[1] == '+') |
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
|
4912 /* key code response */ |
6901 | 4913 for (i = j; i < len; ++i) |
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
|
4914 { |
6901 | 4915 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\') |
7 | 4916 || tp[i] == STERM) |
4917 { | |
6901 | 4918 if (i - j >= 3) |
7 | 4919 got_code_from_term(tp + j, i); |
4920 key_name[0] = (int)KS_EXTRA; | |
4921 key_name[1] = (int)KE_IGNORE; | |
4922 slen = i + 1 + (tp[i] == ESC); | |
4923 break; | |
4924 } | |
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
|
4925 } |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4926 else |
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
|
4927 { |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4928 /* Probably the cursor shape response. Make sure that "i" |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4929 * is equal to "len" when there are not sufficient |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4930 * characters. */ |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4931 for (i = j + 3; i < len; ++i) |
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
|
4932 { |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4933 if (i - j == 3 && !isdigit(tp[i])) |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4934 break; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4935 if (i - j == 4 && tp[i] != ' ') |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4936 break; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4937 if (i - j == 5 && tp[i] != 'q') |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4938 break; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4939 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM) |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4940 break; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4941 if ((i - j == 6 && tp[i] == STERM) |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4942 || (i - j == 7 && tp[i] == '\\')) |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4943 { |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4944 int number = argp[3] - '0'; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4945 |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4946 /* 0, 1 = block blink, 2 = block |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4947 * 3 = underline blink, 4 = underline |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4948 * 5 = vertical bar blink, 6 = vertical bar */ |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4949 number = number == 0 ? 1 : number; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4950 initial_cursor_shape = (number + 1) / 2; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4951 /* The blink flag is actually inverted, compared to |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4952 * the value set with T_SH. */ |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4953 initial_cursor_shape_blink = |
12259
48eac9bc2f82
patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents:
12234
diff
changeset
|
4954 (number & 1) ? FALSE : TRUE; |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4955 rcs_status = STATUS_GOT; |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4956 LOG_TR(("Received cursor shape response: %s", tp)); |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4957 |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4958 key_name[0] = (int)KS_EXTRA; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4959 key_name[1] = (int)KE_IGNORE; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4960 slen = i + 1; |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4961 # ifdef FEAT_EVAL |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4962 set_vim_var_string(VV_TERMSTYLERESP, tp, slen); |
12273
c952a6af25e0
patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents:
12261
diff
changeset
|
4963 # endif |
13365
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4964 break; |
c6bafddbfa33
patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents:
13316
diff
changeset
|
4965 } |
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
|
4966 } |
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
|
4967 } |
7 | 4968 |
4969 if (i == len) | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4970 { |
6901 | 4971 /* These codes arrive many together, each code can be |
4972 * truncated at any point. */ | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
4973 LOG_TR(("not enough characters for XT")); |
6901 | 4974 return -1; |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
4975 } |
7 | 4976 } |
4977 } | |
4978 #endif | |
4979 | |
4980 if (key_name[0] == NUL) | |
4981 continue; /* No match at this position, try next one */ | |
4982 | |
4983 /* We only get here when we have a complete termcode match */ | |
4984 | |
4985 #ifdef FEAT_MOUSE | |
4986 # ifdef FEAT_GUI | |
4987 /* | |
4988 * Only in the GUI: Fetch the pointer coordinates of the scroll event | |
4989 * so that we know which window to scroll later. | |
4990 */ | |
4991 if (gui.in_use | |
4992 && key_name[0] == (int)KS_EXTRA | |
4993 && (key_name[1] == (int)KE_X1MOUSE | |
4994 || 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
|
4995 || key_name[1] == (int)KE_MOUSELEFT |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2347
diff
changeset
|
4996 || key_name[1] == (int)KE_MOUSERIGHT |
7 | 4997 || key_name[1] == (int)KE_MOUSEDOWN |
4998 || key_name[1] == (int)KE_MOUSEUP)) | |
4999 { | |
5000 num_bytes = get_bytes_from_buf(tp + slen, bytes, 4); | |
5001 if (num_bytes == -1) /* not enough coordinates */ | |
5002 return -1; | |
5003 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; | |
5004 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1; | |
5005 slen += num_bytes; | |
5006 } | |
5007 else | |
5008 # endif | |
5009 /* | |
5010 * If it is a mouse click, get the coordinates. | |
5011 */ | |
3746 | 5012 if (key_name[0] == KS_MOUSE |
7 | 5013 # ifdef FEAT_MOUSE_JSB |
3746 | 5014 || key_name[0] == KS_JSBTERM_MOUSE |
7 | 5015 # endif |
5016 # ifdef FEAT_MOUSE_NET | |
3746 | 5017 || key_name[0] == KS_NETTERM_MOUSE |
7 | 5018 # endif |
5019 # ifdef FEAT_MOUSE_DEC | |
3746 | 5020 || key_name[0] == KS_DEC_MOUSE |
7 | 5021 # endif |
5022 # ifdef FEAT_MOUSE_PTERM | |
3746 | 5023 || key_name[0] == KS_PTERM_MOUSE |
7 | 5024 # endif |
3166 | 5025 # ifdef FEAT_MOUSE_URXVT |
3746 | 5026 || key_name[0] == KS_URXVT_MOUSE |
5027 # endif | |
5028 # ifdef FEAT_MOUSE_SGR | |
5029 || key_name[0] == KS_SGR_MOUSE | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5030 || key_name[0] == KS_SGR_MOUSE_RELEASE |
3166 | 5031 # endif |
7 | 5032 ) |
5033 { | |
5034 is_click = is_drag = FALSE; | |
5035 | |
1623 | 5036 # if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \ |
5037 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) | |
7 | 5038 if (key_name[0] == (int)KS_MOUSE) |
5039 { | |
5040 /* | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
5041 * For xterm we get "<t_mouse>scr", where |
7 | 5042 * s == encoded button state: |
5043 * 0x20 = left button down | |
5044 * 0x21 = middle button down | |
5045 * 0x22 = right button down | |
5046 * 0x23 = any button release | |
5047 * 0x60 = button 4 down (scroll wheel down) | |
5048 * 0x61 = button 5 down (scroll wheel up) | |
5049 * add 0x04 for SHIFT | |
5050 * add 0x08 for ALT | |
5051 * add 0x10 for CTRL | |
5052 * add 0x20 for mouse drag (0x40 is drag with left button) | |
12895
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5053 * add 0x40 for mouse move (0x80 is move, 0x81 too) |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5054 * 0x43 (drag + release) is also move |
7 | 5055 * c == column + ' ' + 1 == column + 33 |
5056 * r == row + ' ' + 1 == row + 33 | |
5057 * | |
5058 * The coordinates are passed on through global variables. | |
5059 * Ugly, but this avoids trouble with mouse clicks at an | |
5060 * unexpected moment and allows for mapping them. | |
5061 */ | |
5062 for (;;) | |
5063 { | |
5064 #ifdef FEAT_GUI | |
5065 if (gui.in_use) | |
5066 { | |
5067 /* GUI uses more bits for columns > 223 */ | |
5068 num_bytes = get_bytes_from_buf(tp + slen, bytes, 5); | |
5069 if (num_bytes == -1) /* not enough coordinates */ | |
5070 return -1; | |
5071 mouse_code = bytes[0]; | |
5072 mouse_col = 128 * (bytes[1] - ' ' - 1) | |
5073 + bytes[2] - ' ' - 1; | |
5074 mouse_row = 128 * (bytes[3] - ' ' - 1) | |
5075 + bytes[4] - ' ' - 1; | |
5076 } | |
5077 else | |
5078 #endif | |
5079 { | |
5080 num_bytes = get_bytes_from_buf(tp + slen, bytes, 3); | |
5081 if (num_bytes == -1) /* not enough coordinates */ | |
5082 return -1; | |
5083 mouse_code = bytes[0]; | |
5084 mouse_col = bytes[1] - ' ' - 1; | |
5085 mouse_row = bytes[2] - ' ' - 1; | |
5086 } | |
5087 slen += num_bytes; | |
5088 | |
5089 /* If the following bytes is also a mouse code and it has | |
5090 * the same code, dump this one and get the next. This | |
5091 * makes dragging a whole lot faster. */ | |
5092 #ifdef FEAT_GUI | |
5093 if (gui.in_use) | |
5094 j = 3; | |
5095 else | |
5096 #endif | |
5097 j = termcodes[idx].len; | |
5098 if (STRNCMP(tp, tp + slen, (size_t)j) == 0 | |
5099 && tp[slen + j] == mouse_code | |
5100 && tp[slen + j + 1] != NUL | |
5101 && tp[slen + j + 2] != NUL | |
5102 #ifdef FEAT_GUI | |
5103 && (!gui.in_use | |
5104 || (tp[slen + j + 3] != NUL | |
5105 && tp[slen + j + 4] != NUL)) | |
5106 #endif | |
5107 ) | |
5108 slen += j; | |
5109 else | |
5110 break; | |
5111 } | |
3166 | 5112 } |
5113 | |
3746 | 5114 # if defined(FEAT_MOUSE_URXVT) || defined(FEAT_MOUSE_SGR) |
5115 if (key_name[0] == KS_URXVT_MOUSE | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5116 || key_name[0] == KS_SGR_MOUSE |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5117 || key_name[0] == KS_SGR_MOUSE_RELEASE) |
3166 | 5118 { |
11567
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5119 /* URXVT 1015 mouse reporting mode: |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5120 * Almost identical to xterm mouse mode, except the values |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5121 * are decimal instead of bytes. |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5122 * |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5123 * \033[%d;%d;%dM |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5124 * ^-- row |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5125 * ^----- column |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5126 * ^-------- code |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5127 * |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5128 * SGR 1006 mouse reporting mode: |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5129 * Almost identical to xterm mouse mode, except the values |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5130 * are decimal instead of bytes. |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5131 * |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5132 * \033[<%d;%d;%dM |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5133 * ^-- row |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5134 * ^----- column |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5135 * ^-------- code |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5136 * |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5137 * \033[<%d;%d;%dm : mouse release event |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5138 * ^-- row |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5139 * ^----- column |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5140 * ^-------- code |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5141 */ |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5142 p = modifiers_start; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5143 if (p == NULL) |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5144 return -1; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5145 |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5146 mouse_code = getdigits(&p); |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5147 if (*p++ != ';') |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5148 return -1; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5149 |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5150 /* when mouse reporting is SGR, add 32 to mouse code */ |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5151 if (key_name[0] == KS_SGR_MOUSE |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5152 || key_name[0] == KS_SGR_MOUSE_RELEASE) |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5153 mouse_code += 32; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5154 |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5155 if (key_name[0] == KS_SGR_MOUSE_RELEASE) |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5156 mouse_code |= MOUSE_RELEASE; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5157 |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5158 mouse_col = getdigits(&p) - 1; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5159 if (*p++ != ';') |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5160 return -1; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5161 |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5162 mouse_row = getdigits(&p) - 1; |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5163 |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5164 /* The modifiers were the mouse coordinates, not the |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5165 * modifier keys (alt/shift/ctrl/meta) state. */ |
632daabce5d8
patch 8.0.0666: dead for loop
Christian Brabandt <cb@256bit.org>
parents:
11565
diff
changeset
|
5166 modifiers = 0; |
3166 | 5167 } |
5168 # endif | |
5169 | |
5170 if (key_name[0] == (int)KS_MOUSE | |
5171 #ifdef FEAT_MOUSE_URXVT | |
5172 || key_name[0] == (int)KS_URXVT_MOUSE | |
5173 #endif | |
3746 | 5174 #ifdef FEAT_MOUSE_SGR |
5175 || key_name[0] == KS_SGR_MOUSE | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11455
diff
changeset
|
5176 || key_name[0] == KS_SGR_MOUSE_RELEASE |
3746 | 5177 #endif |
3166 | 5178 ) |
5179 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
5180 # if !defined(MSWIN) |
7 | 5181 /* |
5182 * Handle mouse events. | |
5183 * Recognize the xterm mouse wheel, but not in the GUI, the | |
5184 * Linux console with GPM and the MS-DOS or Win32 console | |
5185 * (multi-clicks use >= 0x60). | |
5186 */ | |
5187 if (mouse_code >= MOUSEWHEEL_LOW | |
5188 # ifdef FEAT_GUI | |
5189 && !gui.in_use | |
5190 # endif | |
5191 # ifdef FEAT_MOUSE_GPM | |
5192 && gpm_flag == 0 | |
5193 # endif | |
5194 ) | |
5195 { | |
12895
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5196 # if defined(UNIX) && defined(FEAT_MOUSE_TTY) |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5197 if (use_xterm_mouse() > 1 && mouse_code >= 0x80) |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5198 /* mouse-move event, using MOUSE_DRAG works */ |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5199 mouse_code = MOUSE_DRAG; |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5200 else |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5201 # endif |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5202 /* Keep the mouse_code before it's changed, so that we |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5203 * remember that it was a mouse wheel click. */ |
d872005ecfcd
patch 8.0.1324: some xterm sends different mouse move codes
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
5204 wheel_code = mouse_code; |
7 | 5205 } |
5206 # ifdef FEAT_MOUSE_XTERM | |
5207 else if (held_button == MOUSE_RELEASE | |
5208 # ifdef FEAT_GUI | |
5209 && !gui.in_use | |
5210 # endif | |
13573
23e5f12f43d7
patch 8.0.1659: scroll events not recognized for some xterm emulators
Christian Brabandt <cb@256bit.org>
parents:
13489
diff
changeset
|
5211 && (mouse_code == 0x23 || mouse_code == 0x24 |
23e5f12f43d7
patch 8.0.1659: scroll events not recognized for some xterm emulators
Christian Brabandt <cb@256bit.org>
parents:
13489
diff
changeset
|
5212 || mouse_code == 0x40 || mouse_code == 0x41)) |
7 | 5213 { |
13573
23e5f12f43d7
patch 8.0.1659: scroll events not recognized for some xterm emulators
Christian Brabandt <cb@256bit.org>
parents:
13489
diff
changeset
|
5214 /* Apparently 0x23 and 0x24 are used by rxvt scroll wheel. |
23e5f12f43d7
patch 8.0.1659: scroll events not recognized for some xterm emulators
Christian Brabandt <cb@256bit.org>
parents:
13489
diff
changeset
|
5215 * And 0x40 and 0x41 are used by some xterm emulator. */ |
23e5f12f43d7
patch 8.0.1659: scroll events not recognized for some xterm emulators
Christian Brabandt <cb@256bit.org>
parents:
13489
diff
changeset
|
5216 wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23) |
23e5f12f43d7
patch 8.0.1659: scroll events not recognized for some xterm emulators
Christian Brabandt <cb@256bit.org>
parents:
13489
diff
changeset
|
5217 + MOUSEWHEEL_LOW; |
7 | 5218 } |
5219 # endif | |
5220 | |
5221 # if defined(UNIX) && defined(FEAT_MOUSE_TTY) | |
5222 else if (use_xterm_mouse() > 1) | |
5223 { | |
5224 if (mouse_code & MOUSE_DRAG_XTERM) | |
5225 mouse_code |= MOUSE_DRAG; | |
5226 } | |
5227 # endif | |
5228 # ifdef FEAT_XCLIPBOARD | |
5229 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK)) | |
5230 { | |
5231 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE) | |
5232 stop_xterm_trace(); | |
5233 else | |
5234 start_xterm_trace(mouse_code); | |
5235 } | |
5236 # endif | |
5237 # endif | |
5238 } | |
5239 # endif /* !UNIX || FEAT_MOUSE_XTERM */ | |
5240 # ifdef FEAT_MOUSE_NET | |
5241 if (key_name[0] == (int)KS_NETTERM_MOUSE) | |
5242 { | |
5243 int mc, mr; | |
5244 | |
5245 /* expect a rather limited sequence like: balancing { | |
5246 * \033}6,45\r | |
5247 * '6' is the row, 45 is the column | |
5248 */ | |
5249 p = tp + slen; | |
5250 mr = getdigits(&p); | |
5251 if (*p++ != ',') | |
5252 return -1; | |
5253 mc = getdigits(&p); | |
5254 if (*p++ != '\r') | |
5255 return -1; | |
5256 | |
5257 mouse_col = mc - 1; | |
5258 mouse_row = mr - 1; | |
5259 mouse_code = MOUSE_LEFT; | |
5260 slen += (int)(p - (tp + slen)); | |
5261 } | |
5262 # endif /* FEAT_MOUSE_NET */ | |
5263 # ifdef FEAT_MOUSE_JSB | |
5264 if (key_name[0] == (int)KS_JSBTERM_MOUSE) | |
5265 { | |
5266 int mult, val, iter, button, status; | |
5267 | |
5268 /* JSBTERM Input Model | |
5269 * \033[0~zw uniq escape sequence | |
5270 * (L-x) Left button pressed - not pressed x not reporting | |
5271 * (M-x) Middle button pressed - not pressed x not reporting | |
5272 * (R-x) Right button pressed - not pressed x not reporting | |
5273 * (SDmdu) Single , Double click, m mouse move d button down | |
5274 * u button up | |
5275 * ### X cursor position padded to 3 digits | |
5276 * ### Y cursor position padded to 3 digits | |
5277 * (s-x) SHIFT key pressed - not pressed x not reporting | |
5278 * (c-x) CTRL key pressed - not pressed x not reporting | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
5279 * \033\\ terminating sequence |
7 | 5280 */ |
5281 | |
5282 p = tp + slen; | |
5283 button = mouse_code = 0; | |
5284 switch (*p++) | |
5285 { | |
5286 case 'L': button = 1; break; | |
5287 case '-': break; | |
5288 case 'x': break; /* ignore sequence */ | |
5289 default: return -1; /* Unknown Result */ | |
5290 } | |
5291 switch (*p++) | |
5292 { | |
5293 case 'M': button |= 2; break; | |
5294 case '-': break; | |
5295 case 'x': break; /* ignore sequence */ | |
5296 default: return -1; /* Unknown Result */ | |
5297 } | |
5298 switch (*p++) | |
5299 { | |
5300 case 'R': button |= 4; break; | |
5301 case '-': break; | |
5302 case 'x': break; /* ignore sequence */ | |
5303 default: return -1; /* Unknown Result */ | |
5304 } | |
5305 status = *p++; | |
5306 for (val = 0, mult = 100, iter = 0; iter < 3; iter++, | |
5307 mult /= 10, p++) | |
5308 if (*p >= '0' && *p <= '9') | |
5309 val += (*p - '0') * mult; | |
5310 else | |
5311 return -1; | |
5312 mouse_col = val; | |
5313 for (val = 0, mult = 100, iter = 0; iter < 3; iter++, | |
5314 mult /= 10, p++) | |
5315 if (*p >= '0' && *p <= '9') | |
5316 val += (*p - '0') * mult; | |
5317 else | |
5318 return -1; | |
5319 mouse_row = val; | |
5320 switch (*p++) | |
5321 { | |
5322 case 's': button |= 8; break; /* SHIFT key Pressed */ | |
5323 case '-': break; /* Not Pressed */ | |
5324 case 'x': break; /* Not Reporting */ | |
5325 default: return -1; /* Unknown Result */ | |
5326 } | |
5327 switch (*p++) | |
5328 { | |
5329 case 'c': button |= 16; break; /* CTRL key Pressed */ | |
5330 case '-': break; /* Not Pressed */ | |
5331 case 'x': break; /* Not Reporting */ | |
5332 default: return -1; /* Unknown Result */ | |
5333 } | |
5334 if (*p++ != '\033') | |
5335 return -1; | |
5336 if (*p++ != '\\') | |
5337 return -1; | |
5338 switch (status) | |
5339 { | |
5340 case 'D': /* Double Click */ | |
5341 case 'S': /* Single Click */ | |
5342 if (button & 1) mouse_code |= MOUSE_LEFT; | |
5343 if (button & 2) mouse_code |= MOUSE_MIDDLE; | |
5344 if (button & 4) mouse_code |= MOUSE_RIGHT; | |
5345 if (button & 8) mouse_code |= MOUSE_SHIFT; | |
5346 if (button & 16) mouse_code |= MOUSE_CTRL; | |
5347 break; | |
5348 case 'm': /* Mouse move */ | |
5349 if (button & 1) mouse_code |= MOUSE_LEFT; | |
5350 if (button & 2) mouse_code |= MOUSE_MIDDLE; | |
5351 if (button & 4) mouse_code |= MOUSE_RIGHT; | |
5352 if (button & 8) mouse_code |= MOUSE_SHIFT; | |
5353 if (button & 16) mouse_code |= MOUSE_CTRL; | |
5354 if ((button & 7) != 0) | |
5355 { | |
5356 held_button = mouse_code; | |
5357 mouse_code |= MOUSE_DRAG; | |
5358 } | |
5359 is_drag = TRUE; | |
5360 showmode(); | |
5361 break; | |
5362 case 'd': /* Button Down */ | |
5363 if (button & 1) mouse_code |= MOUSE_LEFT; | |
5364 if (button & 2) mouse_code |= MOUSE_MIDDLE; | |
5365 if (button & 4) mouse_code |= MOUSE_RIGHT; | |
5366 if (button & 8) mouse_code |= MOUSE_SHIFT; | |
5367 if (button & 16) mouse_code |= MOUSE_CTRL; | |
5368 break; | |
5369 case 'u': /* Button Up */ | |
5370 if (button & 1) | |
5371 mouse_code |= MOUSE_LEFT | MOUSE_RELEASE; | |
5372 if (button & 2) | |
5373 mouse_code |= MOUSE_MIDDLE | MOUSE_RELEASE; | |
5374 if (button & 4) | |
5375 mouse_code |= MOUSE_RIGHT | MOUSE_RELEASE; | |
5376 if (button & 8) | |
5377 mouse_code |= MOUSE_SHIFT; | |
5378 if (button & 16) | |
5379 mouse_code |= MOUSE_CTRL; | |
5380 break; | |
5381 default: return -1; /* Unknown Result */ | |
5382 } | |
5383 | |
5384 slen += (p - (tp + slen)); | |
5385 } | |
5386 # endif /* FEAT_MOUSE_JSB */ | |
5387 # ifdef FEAT_MOUSE_DEC | |
5388 if (key_name[0] == (int)KS_DEC_MOUSE) | |
5389 { | |
5390 /* The DEC Locator Input Model | |
5391 * Netterm delivers the code sequence: | |
5392 * \033[2;4;24;80&w (left button down) | |
5393 * \033[3;0;24;80&w (left button up) | |
5394 * \033[6;1;24;80&w (right button down) | |
5395 * \033[7;0;24;80&w (right button up) | |
5396 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w | |
5397 * Pe is the event code | |
5398 * Pb is the button code | |
5399 * Pr is the row coordinate | |
5400 * Pc is the column coordinate | |
5401 * Pp is the third coordinate (page number) | |
5402 * Pe, the event code indicates what event caused this report | |
5403 * The following event codes are defined: | |
5404 * 0 - request, the terminal received an explicit request | |
5405 * for a locator report, but the locator is unavailable | |
5406 * 1 - request, the terminal received an explicit request | |
5407 * for a locator report | |
5408 * 2 - left button down | |
5409 * 3 - left button up | |
5410 * 4 - middle button down | |
5411 * 5 - middle button up | |
5412 * 6 - right button down | |
5413 * 7 - right button up | |
5414 * 8 - fourth button down | |
5415 * 9 - fourth button up | |
5416 * 10 - locator outside filter rectangle | |
5417 * Pb, the button code, ASCII decimal 0-15 indicating which | |
5418 * buttons are down if any. The state of the four buttons | |
5419 * on the locator correspond to the low four bits of the | |
5420 * decimal value, | |
5421 * "1" means button depressed | |
5422 * 0 - no buttons down, | |
5423 * 1 - right, | |
5424 * 2 - middle, | |
5425 * 4 - left, | |
5426 * 8 - fourth | |
5427 * Pr is the row coordinate of the locator position in the page, | |
5428 * encoded as an ASCII decimal value. | |
5429 * If Pr is omitted, the locator position is undefined | |
5430 * (outside the terminal window for example). | |
5431 * Pc is the column coordinate of the locator position in the | |
5432 * page, encoded as an ASCII decimal value. | |
5433 * If Pc is omitted, the locator position is undefined | |
5434 * (outside the terminal window for example). | |
5435 * Pp is the page coordinate of the locator position | |
5436 * encoded as an ASCII decimal value. | |
5437 * The page coordinate may be omitted if the locator is on | |
5438 * page one (the default). We ignore it anyway. | |
5439 */ | |
5440 int Pe, Pb, Pr, Pc; | |
5441 | |
5442 p = tp + slen; | |
5443 | |
5444 /* get event status */ | |
5445 Pe = getdigits(&p); | |
5446 if (*p++ != ';') | |
5447 return -1; | |
5448 | |
5449 /* get button status */ | |
5450 Pb = getdigits(&p); | |
5451 if (*p++ != ';') | |
5452 return -1; | |
5453 | |
5454 /* get row status */ | |
5455 Pr = getdigits(&p); | |
5456 if (*p++ != ';') | |
5457 return -1; | |
5458 | |
5459 /* get column status */ | |
5460 Pc = getdigits(&p); | |
5461 | |
5462 /* the page parameter is optional */ | |
5463 if (*p == ';') | |
5464 { | |
5465 p++; | |
5466 (void)getdigits(&p); | |
5467 } | |
5468 if (*p++ != '&') | |
5469 return -1; | |
5470 if (*p++ != 'w') | |
5471 return -1; | |
5472 | |
5473 mouse_code = 0; | |
5474 switch (Pe) | |
5475 { | |
5476 case 0: return -1; /* position request while unavailable */ | |
5477 case 1: /* a response to a locator position request includes | |
5478 the status of all buttons */ | |
5479 Pb &= 7; /* mask off and ignore fourth button */ | |
5480 if (Pb & 4) | |
5481 mouse_code = MOUSE_LEFT; | |
5482 if (Pb & 2) | |
5483 mouse_code = MOUSE_MIDDLE; | |
5484 if (Pb & 1) | |
5485 mouse_code = MOUSE_RIGHT; | |
5486 if (Pb) | |
5487 { | |
5488 held_button = mouse_code; | |
5489 mouse_code |= MOUSE_DRAG; | |
227 | 5490 WantQueryMouse = TRUE; |
7 | 5491 } |
5492 is_drag = TRUE; | |
5493 showmode(); | |
5494 break; | |
5495 case 2: mouse_code = MOUSE_LEFT; | |
227 | 5496 WantQueryMouse = TRUE; |
7 | 5497 break; |
5498 case 3: mouse_code = MOUSE_RELEASE | MOUSE_LEFT; | |
5499 break; | |
5500 case 4: mouse_code = MOUSE_MIDDLE; | |
227 | 5501 WantQueryMouse = TRUE; |
7 | 5502 break; |
5503 case 5: mouse_code = MOUSE_RELEASE | MOUSE_MIDDLE; | |
5504 break; | |
5505 case 6: mouse_code = MOUSE_RIGHT; | |
227 | 5506 WantQueryMouse = TRUE; |
7 | 5507 break; |
5508 case 7: mouse_code = MOUSE_RELEASE | MOUSE_RIGHT; | |
5509 break; | |
5510 case 8: return -1; /* fourth button down */ | |
5511 case 9: return -1; /* fourth button up */ | |
5512 case 10: return -1; /* mouse outside of filter rectangle */ | |
5513 default: return -1; /* should never occur */ | |
5514 } | |
5515 | |
5516 mouse_col = Pc - 1; | |
5517 mouse_row = Pr - 1; | |
5518 | |
5519 slen += (int)(p - (tp + slen)); | |
5520 } | |
5521 # endif /* FEAT_MOUSE_DEC */ | |
5522 # ifdef FEAT_MOUSE_PTERM | |
5523 if (key_name[0] == (int)KS_PTERM_MOUSE) | |
5524 { | |
2237
770485470e59
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
5525 int button, num_clicks, action; |
7 | 5526 |
5527 p = tp + slen; | |
5528 | |
5529 action = getdigits(&p); | |
5530 if (*p++ != ';') | |
5531 return -1; | |
5532 | |
5533 mouse_row = getdigits(&p); | |
5534 if (*p++ != ';') | |
5535 return -1; | |
5536 mouse_col = getdigits(&p); | |
5537 if (*p++ != ';') | |
5538 return -1; | |
5539 | |
5540 button = getdigits(&p); | |
5541 mouse_code = 0; | |
5542 | |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5543 switch (button) |
7 | 5544 { |
5545 case 4: mouse_code = MOUSE_LEFT; break; | |
5546 case 1: mouse_code = MOUSE_RIGHT; break; | |
5547 case 2: mouse_code = MOUSE_MIDDLE; break; | |
5548 default: return -1; | |
5549 } | |
5550 | |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5551 switch (action) |
7 | 5552 { |
5553 case 31: /* Initial press */ | |
5554 if (*p++ != ';') | |
5555 return -1; | |
5556 | |
5557 num_clicks = getdigits(&p); /* Not used */ | |
5558 break; | |
5559 | |
5560 case 32: /* Release */ | |
5561 mouse_code |= MOUSE_RELEASE; | |
5562 break; | |
5563 | |
5564 case 33: /* Drag */ | |
5565 held_button = mouse_code; | |
5566 mouse_code |= MOUSE_DRAG; | |
5567 break; | |
5568 | |
5569 default: | |
5570 return -1; | |
5571 } | |
5572 | |
5573 if (*p++ != 't') | |
5574 return -1; | |
5575 | |
5576 slen += (p - (tp + slen)); | |
5577 } | |
5578 # endif /* FEAT_MOUSE_PTERM */ | |
5579 | |
5580 /* Interpret the mouse code */ | |
5581 current_button = (mouse_code & MOUSE_CLICK_MASK); | |
5582 if (current_button == MOUSE_RELEASE | |
5583 # ifdef FEAT_MOUSE_XTERM | |
5584 && wheel_code == 0 | |
5585 # endif | |
5586 ) | |
5587 { | |
5588 /* | |
5589 * If we get a mouse drag or release event when | |
5590 * there is no mouse button held down (held_button == | |
5591 * MOUSE_RELEASE), produce a K_IGNORE below. | |
5592 * (can happen when you hold down two buttons | |
5593 * and then let them go, or click in the menu bar, but not | |
5594 * on a menu, and drag into the text). | |
5595 */ | |
5596 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG) | |
5597 is_drag = TRUE; | |
5598 current_button = held_button; | |
5599 } | |
5600 else if (wheel_code == 0) | |
5601 { | |
5602 # ifdef CHECK_DOUBLE_CLICK | |
5603 # ifdef FEAT_MOUSE_GPM | |
5604 # ifdef FEAT_GUI | |
5605 /* | |
5606 * Only for Unix, when GUI or gpm is not active, we handle | |
5607 * multi-clicks here. | |
5608 */ | |
5609 if (gpm_flag == 0 && !gui.in_use) | |
5610 # else | |
5611 if (gpm_flag == 0) | |
5612 # endif | |
5613 # else | |
5614 # ifdef FEAT_GUI | |
5615 if (!gui.in_use) | |
5616 # endif | |
5617 # endif | |
5618 { | |
5619 /* | |
5620 * Compute the time elapsed since the previous mouse click. | |
5621 */ | |
5622 gettimeofday(&mouse_time, NULL); | |
9125
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5623 if (orig_mouse_time.tv_sec == 0) |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5624 { |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5625 /* |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5626 * Avoid computing the difference between mouse_time |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5627 * and orig_mouse_time for the first click, as the |
12497
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5628 * difference would be huge and would cause |
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5629 * multiplication overflow. |
9125
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5630 */ |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5631 timediff = p_mouset; |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5632 } |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5633 else |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5634 { |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5635 timediff = (mouse_time.tv_usec |
12497
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5636 - orig_mouse_time.tv_usec) / 1000; |
9125
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5637 if (timediff < 0) |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5638 --orig_mouse_time.tv_sec; |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5639 timediff += (mouse_time.tv_sec |
12497
93a849230c1c
patch 8.0.1128: old xterm sends CTRL-X in response to t_RS
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
5640 - orig_mouse_time.tv_sec) * 1000; |
9125
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
5641 } |
7 | 5642 orig_mouse_time = mouse_time; |
5643 if (mouse_code == orig_mouse_code | |
5644 && timediff < p_mouset | |
5645 && orig_num_clicks != 4 | |
5646 && orig_mouse_col == mouse_col | |
5647 && orig_mouse_row == mouse_row | |
683 | 5648 && ((orig_topline == curwin->w_topline |
7 | 5649 #ifdef FEAT_DIFF |
683 | 5650 && orig_topfill == curwin->w_topfill |
7 | 5651 #endif |
683 | 5652 ) |
5653 /* Double click in tab pages line also works | |
5654 * when window contents changes. */ | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12429
diff
changeset
|
5655 || (mouse_row == 0 && firstwin->w_winrow > 0)) |
683 | 5656 ) |
7 | 5657 ++orig_num_clicks; |
5658 else | |
5659 orig_num_clicks = 1; | |
5660 orig_mouse_col = mouse_col; | |
5661 orig_mouse_row = mouse_row; | |
5662 orig_topline = curwin->w_topline; | |
5663 #ifdef FEAT_DIFF | |
5664 orig_topfill = curwin->w_topfill; | |
5665 #endif | |
5666 } | |
5667 # if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM) | |
5668 else | |
5669 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code); | |
5670 # endif | |
5671 # else | |
5672 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code); | |
5673 # endif | |
5674 is_click = TRUE; | |
5675 orig_mouse_code = mouse_code; | |
5676 } | |
5677 if (!is_drag) | |
5678 held_button = mouse_code & MOUSE_CLICK_MASK; | |
5679 | |
5680 /* | |
5681 * Translate the actual mouse event into a pseudo mouse event. | |
5682 * First work out what modifiers are to be used. | |
5683 */ | |
5684 if (orig_mouse_code & MOUSE_SHIFT) | |
5685 modifiers |= MOD_MASK_SHIFT; | |
5686 if (orig_mouse_code & MOUSE_CTRL) | |
5687 modifiers |= MOD_MASK_CTRL; | |
5688 if (orig_mouse_code & MOUSE_ALT) | |
5689 modifiers |= MOD_MASK_ALT; | |
5690 if (orig_num_clicks == 2) | |
5691 modifiers |= MOD_MASK_2CLICK; | |
5692 else if (orig_num_clicks == 3) | |
5693 modifiers |= MOD_MASK_3CLICK; | |
5694 else if (orig_num_clicks == 4) | |
5695 modifiers |= MOD_MASK_4CLICK; | |
5696 | |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5697 /* Work out our pseudo mouse event. Note that MOUSE_RELEASE gets |
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5698 * added, then it's not mouse up/down. */ |
7 | 5699 key_name[0] = (int)KS_EXTRA; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
5700 if (wheel_code != 0 |
9929
579abc260d85
commit https://github.com/vim/vim/commit/de7762a2c1498e2dc43586feb5f982d661799f85
Christian Brabandt <cb@256bit.org>
parents:
9869
diff
changeset
|
5701 && (wheel_code & MOUSE_RELEASE) != MOUSE_RELEASE) |
2336
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5702 { |
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5703 if (wheel_code & MOUSE_CTRL) |
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5704 modifiers |= MOD_MASK_CTRL; |
2347
9228765d3e13
Also make ALT modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2336
diff
changeset
|
5705 if (wheel_code & MOUSE_ALT) |
9228765d3e13
Also make ALT modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2336
diff
changeset
|
5706 modifiers |= MOD_MASK_ALT; |
7 | 5707 key_name[1] = (wheel_code & 1) |
5708 ? (int)KE_MOUSEUP : (int)KE_MOUSEDOWN; | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12853
diff
changeset
|
5709 held_button = MOUSE_RELEASE; |
2336
1a4a66f0c871
Make CTRL modifier work for mouse wheel. (Benjamin Haskell)
Bram Moolenaar <bram@vim.org>
parents:
2279
diff
changeset
|
5710 } |
7 | 5711 else |
5712 key_name[1] = get_pseudo_mouse_code(current_button, | |
5713 is_click, is_drag); | |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5714 |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5715 /* Make sure the mouse position is valid. Some terminals may |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5716 * return weird values. */ |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5717 if (mouse_col >= Columns) |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5718 mouse_col = Columns - 1; |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5719 if (mouse_row >= Rows) |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
5720 mouse_row = Rows - 1; |
7 | 5721 } |
5722 #endif /* FEAT_MOUSE */ | |
5723 | |
5724 #ifdef FEAT_GUI | |
5725 /* | |
5726 * If using the GUI, then we get menu and scrollbar events. | |
5727 * | |
5728 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by | |
5729 * four bytes which are to be taken as a pointer to the vimmenu_T | |
5730 * structure. | |
5731 * | |
1221 | 5732 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr" |
685 | 5733 * is one byte with the tab index. |
5734 * | |
7 | 5735 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed |
5736 * by one byte representing the scrollbar number, and then four bytes | |
5737 * representing a long_u which is the new value of the scrollbar. | |
5738 * | |
5739 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR, | |
5740 * KE_FILLER followed by four bytes representing a long_u which is the | |
5741 * new value of the scrollbar. | |
5742 */ | |
5743 # ifdef FEAT_MENU | |
5744 else if (key_name[0] == (int)KS_MENU) | |
5745 { | |
5746 long_u val; | |
5747 | |
5748 num_bytes = get_long_from_buf(tp + slen, &val); | |
5749 if (num_bytes == -1) | |
5750 return -1; | |
5751 current_menu = (vimmenu_T *)val; | |
5752 slen += num_bytes; | |
936 | 5753 |
5754 /* The menu may have been deleted right after it was used, check | |
5755 * for that. */ | |
5756 if (check_menu_pointer(root_menu, current_menu) == FAIL) | |
5757 { | |
5758 key_name[0] = KS_EXTRA; | |
5759 key_name[1] = (int)KE_IGNORE; | |
5760 } | |
7 | 5761 } |
5762 # endif | |
685 | 5763 # ifdef FEAT_GUI_TABLINE |
5764 else if (key_name[0] == (int)KS_TABLINE) | |
5765 { | |
688 | 5766 /* Selecting tabline tab or using its menu. */ |
685 | 5767 num_bytes = get_bytes_from_buf(tp + slen, bytes, 1); |
5768 if (num_bytes == -1) | |
5769 return -1; | |
5770 current_tab = (int)bytes[0]; | |
1394 | 5771 if (current_tab == 255) /* -1 in a byte gives 255 */ |
5772 current_tab = -1; | |
685 | 5773 slen += num_bytes; |
5774 } | |
688 | 5775 else if (key_name[0] == (int)KS_TABMENU) |
5776 { | |
5777 /* Selecting tabline tab or using its menu. */ | |
5778 num_bytes = get_bytes_from_buf(tp + slen, bytes, 2); | |
5779 if (num_bytes == -1) | |
5780 return -1; | |
5781 current_tab = (int)bytes[0]; | |
5782 current_tabmenu = (int)bytes[1]; | |
5783 slen += num_bytes; | |
5784 } | |
685 | 5785 # endif |
7 | 5786 # ifndef USE_ON_FLY_SCROLL |
5787 else if (key_name[0] == (int)KS_VER_SCROLLBAR) | |
5788 { | |
5789 long_u val; | |
5790 | |
5791 /* Get the last scrollbar event in the queue of the same type */ | |
5792 j = 0; | |
5793 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR | |
5794 && tp[j + 2] != NUL; ++i) | |
5795 { | |
5796 j += 3; | |
5797 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); | |
5798 if (num_bytes == -1) | |
5799 break; | |
5800 if (i == 0) | |
5801 current_scrollbar = (int)bytes[0]; | |
5802 else if (current_scrollbar != (int)bytes[0]) | |
5803 break; | |
5804 j += num_bytes; | |
5805 num_bytes = get_long_from_buf(tp + j, &val); | |
5806 if (num_bytes == -1) | |
5807 break; | |
5808 scrollbar_value = val; | |
5809 j += num_bytes; | |
5810 slen = j; | |
5811 } | |
5812 if (i == 0) /* not enough characters to make one */ | |
5813 return -1; | |
5814 } | |
5815 else if (key_name[0] == (int)KS_HOR_SCROLLBAR) | |
5816 { | |
5817 long_u val; | |
5818 | |
5819 /* Get the last horiz. scrollbar event in the queue */ | |
5820 j = 0; | |
5821 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR | |
5822 && tp[j + 2] != NUL; ++i) | |
5823 { | |
5824 j += 3; | |
5825 num_bytes = get_long_from_buf(tp + j, &val); | |
5826 if (num_bytes == -1) | |
5827 break; | |
5828 scrollbar_value = val; | |
5829 j += num_bytes; | |
5830 slen = j; | |
5831 } | |
5832 if (i == 0) /* not enough characters to make one */ | |
5833 return -1; | |
5834 } | |
5835 # endif /* !USE_ON_FLY_SCROLL */ | |
5836 #endif /* FEAT_GUI */ | |
5837 | |
180 | 5838 /* |
5839 * Change <xHome> to <Home>, <xUp> to <Up>, etc. | |
5840 */ | |
5841 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1])); | |
5842 | |
5843 /* | |
5844 * Add any modifier codes to our string. | |
5845 */ | |
5846 new_slen = 0; /* Length of what will replace the termcode */ | |
5847 if (modifiers != 0) | |
5848 { | |
5849 /* Some keys have the modifier included. Need to handle that here | |
5850 * to make mappings work. */ | |
5851 key = simplify_key(key, &modifiers); | |
5852 if (modifiers != 0) | |
5853 { | |
5854 string[new_slen++] = K_SPECIAL; | |
5855 string[new_slen++] = (int)KS_MODIFIER; | |
5856 string[new_slen++] = modifiers; | |
5857 } | |
5858 } | |
5859 | |
7 | 5860 /* Finally, add the special key code to our string */ |
180 | 5861 key_name[0] = KEY2TERMCAP0(key); |
5862 key_name[1] = KEY2TERMCAP1(key); | |
7 | 5863 if (key_name[0] == KS_KEY) |
1787 | 5864 { |
5865 /* from ":set <M-b>=xx" */ | |
5866 #ifdef FEAT_MBYTE | |
5867 if (has_mbyte) | |
5868 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen); | |
5869 else | |
5870 #endif | |
5871 string[new_slen++] = key_name[1]; | |
5872 } | |
2672 | 5873 else if (new_slen == 0 && key_name[0] == KS_EXTRA |
5874 && key_name[1] == KE_IGNORE) | |
5875 { | |
5876 /* Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED | |
5877 * to indicate what happened. */ | |
5878 retval = KEYLEN_REMOVED; | |
5879 } | |
7 | 5880 else |
5881 { | |
5882 string[new_slen++] = K_SPECIAL; | |
5883 string[new_slen++] = key_name[0]; | |
5884 string[new_slen++] = key_name[1]; | |
5885 } | |
5886 string[new_slen] = NUL; | |
5887 extra = new_slen - slen; | |
5888 if (buf == NULL) | |
5889 { | |
5890 if (extra < 0) | |
5891 /* remove matched chars, taking care of noremap */ | |
5892 del_typebuf(-extra, offset); | |
5893 else if (extra > 0) | |
5894 /* insert the extra space we need */ | |
5895 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE); | |
5896 | |
5897 /* | |
5898 * Careful: del_typebuf() and ins_typebuf() may have reallocated | |
5899 * typebuf.tb_buf[]! | |
5900 */ | |
5901 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string, | |
5902 (size_t)new_slen); | |
5903 } | |
5904 else | |
5905 { | |
5906 if (extra < 0) | |
5907 /* remove matched characters */ | |
5908 mch_memmove(buf + offset, buf + offset - extra, | |
3328 | 5909 (size_t)(*buflen + offset + extra)); |
7 | 5910 else if (extra > 0) |
3328 | 5911 { |
5912 /* Insert the extra space we need. If there is insufficient | |
5913 * space return -1. */ | |
5914 if (*buflen + extra + new_slen >= bufsize) | |
5915 return -1; | |
7 | 5916 mch_memmove(buf + offset + extra, buf + offset, |
3328 | 5917 (size_t)(*buflen - offset)); |
5918 } | |
7 | 5919 mch_memmove(buf + offset, string, (size_t)new_slen); |
3328 | 5920 *buflen = *buflen + extra + new_slen; |
7 | 5921 } |
2672 | 5922 return retval == 0 ? (len + extra + offset) : retval; |
7 | 5923 } |
5924 | |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5925 #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
|
5926 LOG_TR(("normal character")); |
5090
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5927 #endif |
8b7baf39a345
updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents:
5076
diff
changeset
|
5928 |
7 | 5929 return 0; /* no match found */ |
5930 } | |
5931 | |
12634
94566ecb55f0
patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12632
diff
changeset
|
5932 #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
|
5933 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5934 * 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
|
5935 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5936 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
5937 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
|
5938 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5939 if (rfg_status == STATUS_GOT) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5940 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5941 *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
|
5942 *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
|
5943 *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
|
5944 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5945 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5946 |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5947 /* |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5948 * 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
|
5949 */ |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5950 void |
12640
a715f0b44532
patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents:
12634
diff
changeset
|
5951 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
|
5952 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5953 if (rbg_status == STATUS_GOT) |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5954 { |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5955 *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
|
5956 *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
|
5957 *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
|
5958 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5959 } |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5960 #endif |
b1a7e3968a31
patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents:
12592
diff
changeset
|
5961 |
7 | 5962 /* |
5963 * Replace any terminal code strings in from[] with the equivalent internal | |
5964 * vim representation. This is used for the "from" and "to" part of a | |
5965 * mapping, and the "to" part of a menu command. | |
5966 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains | |
5967 * '<'. | |
5968 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER. | |
5969 * | |
5970 * The replacement is done in result[] and finally copied into allocated | |
5971 * memory. If this all works well *bufp is set to the allocated memory and a | |
5972 * pointer to it is returned. If something fails *bufp is set to NULL and from | |
5973 * is returned. | |
5974 * | |
5975 * CTRL-V characters are removed. When "from_part" is TRUE, a trailing CTRL-V | |
5976 * is included, otherwise it is removed (for ":map xx ^V", maps xx to | |
5977 * nothing). When 'cpoptions' does not contain 'B', a backslash can be used | |
5978 * instead of a CTRL-V. | |
5979 */ | |
859 | 5980 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5981 replace_termcodes( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5982 char_u *from, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5983 char_u **bufp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5984 int from_part, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5985 int do_lt, /* also translate <lt> */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5986 int special) /* always accept <key> notation */ |
7 | 5987 { |
5988 int i; | |
5989 int slen; | |
5990 int key; | |
5991 int dlen = 0; | |
5992 char_u *src; | |
5993 int do_backslash; /* backslash is a special character */ | |
5994 int do_special; /* recognize <> key codes */ | |
5995 int do_key_code; /* recognize raw key codes */ | |
5996 char_u *result; /* buffer for resulting string */ | |
5997 | |
5998 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL); | |
859 | 5999 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL) || special; |
7 | 6000 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); |
6001 | |
6002 /* | |
6003 * Allocate space for the translation. Worst case a single character is | |
6004 * replaced by 6 bytes (shifted special key), plus a NUL at the end. | |
6005 */ | |
6006 result = alloc((unsigned)STRLEN(from) * 6 + 1); | |
6007 if (result == NULL) /* out of memory */ | |
6008 { | |
6009 *bufp = NULL; | |
6010 return from; | |
6011 } | |
6012 | |
6013 src = from; | |
6014 | |
6015 /* | |
6016 * Check for #n at start only: function key n | |
6017 */ | |
6018 if (from_part && src[0] == '#' && VIM_ISDIGIT(src[1])) /* function key */ | |
6019 { | |
6020 result[dlen++] = K_SPECIAL; | |
6021 result[dlen++] = 'k'; | |
6022 if (src[1] == '0') | |
6023 result[dlen++] = ';'; /* #0 is F10 is "k;" */ | |
6024 else | |
6025 result[dlen++] = src[1]; /* #3 is F3 is "k3" */ | |
6026 src += 2; | |
6027 } | |
6028 | |
6029 /* | |
6030 * Copy each byte from *from to result[dlen] | |
6031 */ | |
6032 while (*src != NUL) | |
6033 { | |
6034 /* | |
6035 * 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
|
6036 * like "<C-S-LeftMouse>" |
7 | 6037 */ |
6038 if (do_special && (do_lt || STRNCMP(src, "<lt>", 4) != 0)) | |
6039 { | |
6040 #ifdef FEAT_EVAL | |
6041 /* | |
6042 * Replace <SID> by K_SNR <script-nr> _. | |
6043 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14) | |
6044 */ | |
6045 if (STRNICMP(src, "<SID>", 5) == 0) | |
6046 { | |
6047 if (current_SID <= 0) | |
6048 EMSG(_(e_usingsid)); | |
6049 else | |
6050 { | |
6051 src += 5; | |
6052 result[dlen++] = K_SPECIAL; | |
6053 result[dlen++] = (int)KS_EXTRA; | |
6054 result[dlen++] = (int)KE_SNR; | |
6055 sprintf((char *)result + dlen, "%ld", (long)current_SID); | |
6056 dlen += (int)STRLEN(result + dlen); | |
6057 result[dlen++] = '_'; | |
6058 continue; | |
6059 } | |
6060 } | |
6061 #endif | |
6062 | |
9869
989d44d35a66
commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d
Christian Brabandt <cb@256bit.org>
parents:
9814
diff
changeset
|
6063 slen = trans_special(&src, result + dlen, TRUE, FALSE); |
7 | 6064 if (slen) |
6065 { | |
6066 dlen += slen; | |
6067 continue; | |
6068 } | |
6069 } | |
6070 | |
6071 /* | |
6072 * If 'cpoptions' does not contain 'k', see if it's an actual key-code. | |
6073 * Note that this is also checked after replacing the <> form. | |
6074 * Single character codes are NOT replaced (e.g. ^H or DEL), because | |
6075 * it could be a character in the file. | |
6076 */ | |
6077 if (do_key_code) | |
6078 { | |
6079 i = find_term_bykeys(src); | |
6080 if (i >= 0) | |
6081 { | |
6082 result[dlen++] = K_SPECIAL; | |
6083 result[dlen++] = termcodes[i].name[0]; | |
6084 result[dlen++] = termcodes[i].name[1]; | |
6085 src += termcodes[i].len; | |
6086 /* If terminal code matched, continue after it. */ | |
6087 continue; | |
6088 } | |
6089 } | |
6090 | |
6091 #ifdef FEAT_EVAL | |
6092 if (do_special) | |
6093 { | |
6094 char_u *p, *s, len; | |
6095 | |
6096 /* | |
6097 * Replace <Leader> by the value of "mapleader". | |
6098 * Replace <LocalLeader> by the value of "maplocalleader". | |
6099 * If "mapleader" or "maplocalleader" isn't set use a backslash. | |
6100 */ | |
6101 if (STRNICMP(src, "<Leader>", 8) == 0) | |
6102 { | |
6103 len = 8; | |
6104 p = get_var_value((char_u *)"g:mapleader"); | |
6105 } | |
6106 else if (STRNICMP(src, "<LocalLeader>", 13) == 0) | |
6107 { | |
6108 len = 13; | |
6109 p = get_var_value((char_u *)"g:maplocalleader"); | |
6110 } | |
6111 else | |
6112 { | |
6113 len = 0; | |
6114 p = NULL; | |
6115 } | |
6116 if (len != 0) | |
6117 { | |
6118 /* Allow up to 8 * 6 characters for "mapleader". */ | |
6119 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6) | |
6120 s = (char_u *)"\\"; | |
6121 else | |
6122 s = p; | |
6123 while (*s != NUL) | |
6124 result[dlen++] = *s++; | |
6125 src += len; | |
6126 continue; | |
6127 } | |
6128 } | |
6129 #endif | |
6130 | |
6131 /* | |
6132 * Remove CTRL-V and ignore the next character. | |
6133 * For "from" side the CTRL-V at the end is included, for the "to" | |
6134 * part it is removed. | |
6135 * If 'cpoptions' does not contain 'B', also accept a backslash. | |
6136 */ | |
6137 key = *src; | |
6138 if (key == Ctrl_V || (do_backslash && key == '\\')) | |
6139 { | |
6140 ++src; /* skip CTRL-V or backslash */ | |
6141 if (*src == NUL) | |
6142 { | |
6143 if (from_part) | |
6144 result[dlen++] = key; | |
6145 break; | |
6146 } | |
6147 } | |
6148 | |
6149 #ifdef FEAT_MBYTE | |
6150 /* skip multibyte char correctly */ | |
474 | 6151 for (i = (*mb_ptr2len)(src); i > 0; --i) |
7 | 6152 #endif |
6153 { | |
6154 /* | |
6155 * If the character is K_SPECIAL, replace it with K_SPECIAL | |
6156 * KS_SPECIAL KE_FILLER. | |
6157 * If compiled with the GUI replace CSI with K_CSI. | |
6158 */ | |
6159 if (*src == K_SPECIAL) | |
6160 { | |
6161 result[dlen++] = K_SPECIAL; | |
6162 result[dlen++] = KS_SPECIAL; | |
6163 result[dlen++] = KE_FILLER; | |
6164 } | |
6165 # ifdef FEAT_GUI | |
6166 else if (*src == CSI) | |
6167 { | |
6168 result[dlen++] = K_SPECIAL; | |
6169 result[dlen++] = KS_EXTRA; | |
6170 result[dlen++] = (int)KE_CSI; | |
6171 } | |
6172 # endif | |
6173 else | |
6174 result[dlen++] = *src; | |
6175 ++src; | |
6176 } | |
6177 } | |
6178 result[dlen] = NUL; | |
6179 | |
6180 /* | |
6181 * Copy the new string to allocated memory. | |
6182 * If this fails, just return from. | |
6183 */ | |
6184 if ((*bufp = vim_strsave(result)) != NULL) | |
6185 from = *bufp; | |
6186 vim_free(result); | |
6187 return from; | |
6188 } | |
6189 | |
6190 /* | |
6191 * Find a termcode with keys 'src' (must be NUL terminated). | |
6192 * Return the index in termcodes[], or -1 if not found. | |
6193 */ | |
6194 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6195 find_term_bykeys(char_u *src) |
7 | 6196 { |
6197 int i; | |
3290 | 6198 int slen = (int)STRLEN(src); |
7 | 6199 |
6200 for (i = 0; i < tc_len; ++i) | |
6201 { | |
3273 | 6202 if (slen == termcodes[i].len |
6203 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0) | |
7 | 6204 return i; |
6205 } | |
6206 return -1; | |
6207 } | |
6208 | |
6209 /* | |
6210 * Gather the first characters in the terminal key codes into a string. | |
6211 * Used to speed up check_termcode(). | |
6212 */ | |
6213 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6214 gather_termleader(void) |
7 | 6215 { |
6216 int i; | |
6217 int len = 0; | |
6218 | |
6219 #ifdef FEAT_GUI | |
6220 if (gui.in_use) | |
6221 termleader[len++] = CSI; /* the GUI codes are not in termcodes[] */ | |
6222 #endif | |
6223 #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
|
6224 if (check_for_codes || *T_CRS != NUL) |
7 | 6225 termleader[len++] = DCS; /* the termcode response starts with DCS |
6226 in 8-bit mode */ | |
6227 #endif | |
6228 termleader[len] = NUL; | |
6229 | |
6230 for (i = 0; i < tc_len; ++i) | |
6231 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL) | |
6232 { | |
6233 termleader[len++] = termcodes[i].code[0]; | |
6234 termleader[len] = NUL; | |
6235 } | |
6236 | |
6237 need_gather = FALSE; | |
6238 } | |
6239 | |
6240 /* | |
6241 * Show all termcodes (for ":set termcap") | |
6242 * This code looks a lot like showoptions(), but is different. | |
6243 */ | |
6244 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6245 show_termcodes(void) |
7 | 6246 { |
6247 int col; | |
6248 int *items; | |
6249 int item_count; | |
6250 int run; | |
6251 int row, rows; | |
6252 int cols; | |
6253 int i; | |
6254 int len; | |
6255 | |
180 | 6256 #define INC3 27 /* try to make three columns */ |
6257 #define INC2 40 /* try to make two columns */ | |
7 | 6258 #define GAP 2 /* spaces between columns */ |
6259 | |
6260 if (tc_len == 0) /* no terminal codes (must be GUI) */ | |
6261 return; | |
6262 items = (int *)alloc((unsigned)(sizeof(int) * tc_len)); | |
6263 if (items == NULL) | |
6264 return; | |
6265 | |
6266 /* Highlight title */ | |
6267 MSG_PUTS_TITLE(_("\n--- Terminal keys ---")); | |
6268 | |
6269 /* | |
6270 * do the loop two times: | |
6271 * 1. display the short items (non-strings and short strings) | |
180 | 6272 * 2. display the medium items (medium length strings) |
6273 * 3. display the long items (remaining strings) | |
7 | 6274 */ |
180 | 6275 for (run = 1; run <= 3 && !got_int; ++run) |
7 | 6276 { |
6277 /* | |
6278 * collect the items in items[] | |
6279 */ | |
6280 item_count = 0; | |
6281 for (i = 0; i < tc_len; i++) | |
6282 { | |
6283 len = show_one_termcode(termcodes[i].name, | |
6284 termcodes[i].code, FALSE); | |
180 | 6285 if (len <= INC3 - GAP ? run == 1 |
6286 : len <= INC2 - GAP ? run == 2 | |
6287 : run == 3) | |
7 | 6288 items[item_count++] = i; |
6289 } | |
6290 | |
6291 /* | |
6292 * display the items | |
6293 */ | |
180 | 6294 if (run <= 2) |
7 | 6295 { |
180 | 6296 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2); |
7 | 6297 if (cols == 0) |
6298 cols = 1; | |
6299 rows = (item_count + cols - 1) / cols; | |
6300 } | |
180 | 6301 else /* run == 3 */ |
7 | 6302 rows = item_count; |
6303 for (row = 0; row < rows && !got_int; ++row) | |
6304 { | |
6305 msg_putchar('\n'); /* go to next line */ | |
6306 if (got_int) /* 'q' typed in more */ | |
6307 break; | |
6308 col = 0; | |
6309 for (i = row; i < item_count; i += rows) | |
6310 { | |
6311 msg_col = col; /* make columns */ | |
6312 show_one_termcode(termcodes[items[i]].name, | |
6313 termcodes[items[i]].code, TRUE); | |
180 | 6314 if (run == 2) |
6315 col += INC2; | |
6316 else | |
6317 col += INC3; | |
7 | 6318 } |
6319 out_flush(); | |
6320 ui_breakcheck(); | |
6321 } | |
6322 } | |
6323 vim_free(items); | |
6324 } | |
6325 | |
6326 /* | |
6327 * Show one termcode entry. | |
6328 * Output goes into IObuff[] | |
6329 */ | |
6330 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6331 show_one_termcode(char_u *name, char_u *code, int printit) |
7 | 6332 { |
6333 char_u *p; | |
6334 int len; | |
6335 | |
6336 if (name[0] > '~') | |
6337 { | |
6338 IObuff[0] = ' '; | |
6339 IObuff[1] = ' '; | |
6340 IObuff[2] = ' '; | |
6341 IObuff[3] = ' '; | |
6342 } | |
6343 else | |
6344 { | |
6345 IObuff[0] = 't'; | |
6346 IObuff[1] = '_'; | |
6347 IObuff[2] = name[0]; | |
6348 IObuff[3] = name[1]; | |
6349 } | |
6350 IObuff[4] = ' '; | |
6351 | |
6352 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0); | |
6353 if (p[1] != 't') | |
6354 STRCPY(IObuff + 5, p); | |
6355 else | |
6356 IObuff[5] = NUL; | |
6357 len = (int)STRLEN(IObuff); | |
6358 do | |
6359 IObuff[len++] = ' '; | |
6360 while (len < 17); | |
6361 IObuff[len] = NUL; | |
6362 if (code == NULL) | |
6363 len += 4; | |
6364 else | |
6365 len += vim_strsize(code); | |
6366 | |
6367 if (printit) | |
6368 { | |
6369 msg_puts(IObuff); | |
6370 if (code == NULL) | |
6371 msg_puts((char_u *)"NULL"); | |
6372 else | |
6373 msg_outtrans(code); | |
6374 } | |
6375 return len; | |
6376 } | |
6377 | |
6378 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) | |
6379 /* | |
6380 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used | |
6381 * termcap codes from the terminal itself. | |
6382 * We get them one by one to avoid a very long response string. | |
6383 */ | |
6102 | 6384 static int xt_index_in = 0; |
6385 static int xt_index_out = 0; | |
6386 | |
7 | 6387 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6388 req_codes_from_term(void) |
7 | 6389 { |
6390 xt_index_out = 0; | |
6391 xt_index_in = 0; | |
6392 req_more_codes_from_term(); | |
6393 } | |
6394 | |
6395 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6396 req_more_codes_from_term(void) |
7 | 6397 { |
6398 char buf[11]; | |
6399 int old_idx = xt_index_out; | |
6400 | |
6401 /* Don't do anything when going to exit. */ | |
6402 if (exiting) | |
6403 return; | |
6404 | |
6405 /* Send up to 10 more requests out than we received. Avoid sending too | |
6406 * many, there can be a buffer overflow somewhere. */ | |
6407 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL) | |
6408 { | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6409 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
|
6410 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6411 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
|
6412 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]); |
7 | 6413 out_str_nf((char_u *)buf); |
6414 ++xt_index_out; | |
6415 } | |
6416 | |
6417 /* Send the codes out right away. */ | |
6418 if (xt_index_out != old_idx) | |
6419 out_flush(); | |
6420 } | |
6421 | |
6422 /* | |
6423 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'. | |
6424 * A "0" instead of the "1" indicates a code that isn't supported. | |
6425 * Both <name> and <string> are encoded in hex. | |
6426 * "code" points to the "0" or "1". | |
6427 */ | |
6428 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6429 got_code_from_term(char_u *code, int len) |
7 | 6430 { |
6431 #define XT_LEN 100 | |
6432 char_u name[3]; | |
6433 char_u str[XT_LEN]; | |
6434 int i; | |
6435 int j = 0; | |
6436 int c; | |
6437 | |
6438 /* A '1' means the code is supported, a '0' means it isn't. | |
6439 * When half the length is > XT_LEN we can't use it. | |
6440 * Our names are currently all 2 characters. */ | |
6441 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN) | |
6442 { | |
6443 /* Get the name from the response and find it in the table. */ | |
6444 name[0] = hexhex2nr(code + 3); | |
6445 name[1] = hexhex2nr(code + 5); | |
6446 name[2] = NUL; | |
6447 for (i = 0; key_names[i] != NULL; ++i) | |
6448 { | |
6449 if (STRCMP(key_names[i], name) == 0) | |
6450 { | |
6451 xt_index_in = i; | |
6452 break; | |
6453 } | |
6454 } | |
13780
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6455 |
5cf4a504bcc0
patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
6456 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
|
6457 |
7 | 6458 if (key_names[i] != NULL) |
6459 { | |
6460 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2) | |
6461 str[j++] = c; | |
6462 str[j] = NUL; | |
6463 if (name[0] == 'C' && name[1] == 'o') | |
6464 { | |
6465 /* Color count is not a key code. */ | |
6466 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
|
6467 may_adjust_color_count(i); |
7 | 6468 } |
6469 else | |
6470 { | |
6471 /* First delete any existing entry with the same code. */ | |
6472 i = find_term_bykeys(str); | |
6473 if (i >= 0) | |
6474 del_termcode_idx(i); | |
180 | 6475 add_termcode(name, str, ATC_FROM_TERM); |
7 | 6476 } |
6477 } | |
6478 } | |
6479 | |
6480 /* May request more codes now that we received one. */ | |
6481 ++xt_index_in; | |
6482 req_more_codes_from_term(); | |
6483 } | |
6484 | |
6485 /* | |
6486 * Check if there are any unanswered requests and deal with them. | |
6487 * This is called before starting an external program or getting direct | |
6488 * keyboard input. We don't want responses to be send to that program or | |
6489 * handled as typed text. | |
6490 */ | |
6491 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6492 check_for_codes_from_term(void) |
7 | 6493 { |
6494 int c; | |
6495 | |
6496 /* If no codes requested or all are answered, no need to wait. */ | |
6497 if (xt_index_out == 0 || xt_index_out == xt_index_in) | |
6498 return; | |
6499 | |
6500 /* Vgetc() will check for and handle any response. | |
6501 * Keep calling vpeekc() until we don't get any responses. */ | |
6502 ++no_mapping; | |
6503 ++allow_keys; | |
6504 for (;;) | |
6505 { | |
6506 c = vpeekc(); | |
6507 if (c == NUL) /* nothing available */ | |
6508 break; | |
6509 | |
6510 /* If a response is recognized it's replaced with K_IGNORE, must read | |
6511 * it from the input stream. If there is no K_IGNORE we can't do | |
6512 * anything, break here (there might be some responses further on, but | |
6513 * we don't want to throw away any typed chars). */ | |
6514 if (c != K_SPECIAL && c != K_IGNORE) | |
6515 break; | |
6516 c = vgetc(); | |
6517 if (c != K_IGNORE) | |
6518 { | |
6519 vungetc(c); | |
6520 break; | |
6521 } | |
6522 } | |
6523 --no_mapping; | |
6524 --allow_keys; | |
6525 } | |
6526 #endif | |
6527 | |
6528 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
6529 /* | |
6530 * Translate an internal mapping/abbreviation representation into the | |
6531 * corresponding external one recognized by :map/:abbrev commands; | |
6532 * respects the current B/k/< settings of 'cpoption'. | |
6533 * | |
6534 * This function is called when expanding mappings/abbreviations on the | |
1902 | 6535 * command-line, and for building the "Ambiguous mapping..." error message. |
7 | 6536 * |
6537 * It uses a growarray to build the translation string since the | |
6538 * latter can be wider than the original description. The caller has to | |
6539 * free the string afterwards. | |
6540 * | |
6541 * Returns NULL when there is a problem. | |
6542 */ | |
6543 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6544 translate_mapping( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6545 char_u *str, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6546 int expmap) /* TRUE when expanding mappings on command-line */ |
7 | 6547 { |
6548 garray_T ga; | |
6549 int c; | |
6550 int modifiers; | |
6551 int cpo_bslash; | |
6552 int cpo_special; | |
6553 int cpo_keycode; | |
6554 | |
6555 ga_init(&ga); | |
6556 ga.ga_itemsize = 1; | |
6557 ga.ga_growsize = 40; | |
6558 | |
6559 cpo_bslash = (vim_strchr(p_cpo, CPO_BSLASH) != NULL); | |
6560 cpo_special = (vim_strchr(p_cpo, CPO_SPECI) != NULL); | |
6561 cpo_keycode = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL); | |
6562 | |
6563 for (; *str; ++str) | |
6564 { | |
6565 c = *str; | |
6566 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
6567 { | |
6568 modifiers = 0; | |
6569 if (str[1] == KS_MODIFIER) | |
6570 { | |
6571 str++; | |
6572 modifiers = *++str; | |
6573 c = *++str; | |
6574 } | |
6575 if (cpo_special && cpo_keycode && c == K_SPECIAL && !modifiers) | |
6576 { | |
6577 int i; | |
6578 | |
6579 /* try to find special key in termcodes */ | |
6580 for (i = 0; i < tc_len; ++i) | |
6581 if (termcodes[i].name[0] == str[1] | |
6582 && termcodes[i].name[1] == str[2]) | |
6583 break; | |
6584 if (i < tc_len) | |
6585 { | |
6586 ga_concat(&ga, termcodes[i].code); | |
6587 str += 2; | |
6588 continue; /* for (str) */ | |
6589 } | |
6590 } | |
6591 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
6592 { | |
6593 if (expmap && cpo_special) | |
6594 { | |
6595 ga_clear(&ga); | |
6596 return NULL; | |
6597 } | |
6598 c = TO_SPECIAL(str[1], str[2]); | |
6599 if (c == K_ZERO) /* display <Nul> as ^@ */ | |
6600 c = NUL; | |
6601 str += 2; | |
6602 } | |
6603 if (IS_SPECIAL(c) || modifiers) /* special key */ | |
6604 { | |
6605 if (expmap && cpo_special) | |
6606 { | |
6607 ga_clear(&ga); | |
6608 return NULL; | |
6609 } | |
6610 ga_concat(&ga, get_special_key_name(c, modifiers)); | |
6611 continue; /* for (str) */ | |
6612 } | |
6613 } | |
6614 if (c == ' ' || c == '\t' || c == Ctrl_J || c == Ctrl_V | |
6615 || (c == '<' && !cpo_special) || (c == '\\' && !cpo_bslash)) | |
6616 ga_append(&ga, cpo_bslash ? Ctrl_V : '\\'); | |
6617 if (c) | |
6618 ga_append(&ga, c); | |
6619 } | |
6620 ga_append(&ga, NUL); | |
6621 return (char_u *)(ga.ga_data); | |
6622 } | |
6623 #endif | |
6624 | |
6625 #if (defined(WIN3264) && !defined(FEAT_GUI)) || defined(PROTO) | |
6626 static char ksme_str[20]; | |
6627 static char ksmr_str[20]; | |
6628 static char ksmd_str[20]; | |
6629 | |
6630 /* | |
6631 * For Win32 console: update termcap codes for existing console attributes. | |
6632 */ | |
6633 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6634 update_tcap(int attr) |
7 | 6635 { |
6636 struct builtin_term *p; | |
6637 | |
6638 p = find_builtin_term(DEFAULT_TERM); | |
6639 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr); | |
6640 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"), | |
6641 attr | 0x08); /* FOREGROUND_INTENSITY */ | |
6642 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"), | |
6643 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4)); | |
6644 | |
6645 while (p->bt_string != NULL) | |
6646 { | |
6647 if (p->bt_entry == (int)KS_ME) | |
6648 p->bt_string = &ksme_str[0]; | |
6649 else if (p->bt_entry == (int)KS_MR) | |
6650 p->bt_string = &ksmr_str[0]; | |
6651 else if (p->bt_entry == (int)KS_MD) | |
6652 p->bt_string = &ksmd_str[0]; | |
6653 ++p; | |
6654 } | |
6655 } | |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6656 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6657 # 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
|
6658 # 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
|
6659 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
|
6660 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6661 int code; /* value of KS_ */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6662 char *vtp; /* code in vtp mode */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6663 char *vtp2; /* code in vtp2 mode */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6664 char buf[KSSIZE]; /* save buffer in non-vtp mode */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6665 char vbuf[KSSIZE]; /* save buffer in vtp mode */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6666 char v2buf[KSSIZE]; /* save buffer in vtp2 mode */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6667 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
|
6668 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6669 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6670 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
|
6671 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6672 {(int)KS_ME, "\033|0m", "\033|0m"}, /* normal */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6673 {(int)KS_MR, "\033|7m", "\033|7m"}, /* reverse */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6674 {(int)KS_MD, "\033|1m", "\033|1m"}, /* bold */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6675 {(int)KS_SO, "\033|91m", "\033|91m"}, /* standout: bright red text */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6676 {(int)KS_SE, "\033|39m", "\033|39m"}, /* standout end: default color */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6677 {(int)KS_CZH, "\033|95m", "\033|95m"}, /* italic: bright magenta text */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6678 {(int)KS_CZR, "\033|0m", "\033|0m"}, /* italic end */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6679 {(int)KS_US, "\033|4m", "\033|4m"}, /* underscore */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6680 {(int)KS_UE, "\033|24m", "\033|24m"}, /* underscore end */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6681 # ifdef TERMINFO |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6682 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, /* set background color */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6683 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, /* set foreground color */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6684 # else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6685 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, /* set background color */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6686 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, /* set foreground color */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6687 # endif |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6688 {(int)KS_CCO, "16", "256"}, /* colors */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6689 {(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
|
6690 }; |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6691 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6692 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
|
6693 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
|
6694 char_u *name, |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6695 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
|
6696 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6697 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
|
6698 |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6699 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
|
6700 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
|
6701 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
|
6702 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
|
6703 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6704 # 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
|
6705 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6706 /* |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6707 * 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
|
6708 */ |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6709 void |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6710 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
|
6711 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6712 # ifdef FEAT_TERMGUICOLORS |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6713 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
|
6714 static int curr_mode; |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6715 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
|
6716 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
|
6717 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
|
6718 enum |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6719 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6720 CMODEINDEX, |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6721 CMODE24, |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6722 CMODE256 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6723 }; |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6724 |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6725 /* buffer initialization */ |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6726 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
|
6727 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6728 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
|
6729 { |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6730 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
|
6731 if (bt != NULL) |
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6732 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6733 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
|
6734 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
|
6735 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
|
6736 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6737 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
|
6738 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
|
6739 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6740 } |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6741 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
|
6742 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
|
6743 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6744 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6745 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
|
6746 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
|
6747 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
|
6748 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
|
6749 else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6750 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
|
6751 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6752 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
|
6753 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6754 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
|
6755 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
|
6756 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6757 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
|
6758 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6759 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
|
6760 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
|
6761 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6762 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
|
6763 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
|
6764 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6765 default: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6766 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
|
6767 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6768 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6769 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6770 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6771 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
|
6772 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6773 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
|
6774 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6775 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
|
6776 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
|
6777 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6778 switch (mode) |
13316
de19318319a6
patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents:
13314
diff
changeset
|
6779 { |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6780 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
|
6781 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
|
6782 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6783 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
|
6784 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
|
6785 break; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6786 default: |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6787 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
|
6788 } |
13314
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6789 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6790 } |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6791 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6792 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
|
6793 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6794 # endif |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6795 } |
65c3e8259124
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
6796 |
7 | 6797 #endif |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6798 |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
6799 #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
|
6800 static int |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6801 hex_digit(int c) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6802 { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6803 if (isdigit(c)) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6804 return c - '0'; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6805 c = TOLOWER_ASC(c); |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6806 if (c >= 'a' && c <= 'f') |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6807 return c - 'a' + 10; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6808 return 0x1ffffff; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6809 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6810 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6811 guicolor_T |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6812 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
|
6813 { |
10512
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6814 /* On MS-Windows an RGB macro is available and it produces 0x00bbggrr color |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6815 * values as used by the MS-Windows GDI api. It should be used only for |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6816 * MS-Windows GDI builds. */ |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6817 # if defined(RGB) && defined(WIN32) && !defined(FEAT_GUI) |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6818 # undef RGB |
675dfe47ab69
commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
6819 # endif |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6820 # ifndef RGB |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6821 # 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
|
6822 # endif |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6823 # define LINE_LEN 100 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6824 FILE *fd; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6825 char line[LINE_LEN]; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6826 char_u *fname; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6827 int r, g, b, i; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6828 guicolor_T color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6829 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6830 struct rgbcolor_table_S { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6831 char_u *color_name; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6832 guicolor_T color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6833 }; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6834 |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6835 /* Only non X11 colors (not present in rgb.txt) and colors in |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6836 * 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
|
6837 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
|
6838 {(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
|
6839 {(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
|
6840 {(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
|
6841 {(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
|
6842 {(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
|
6843 {(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
|
6844 {(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
|
6845 {(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
|
6846 {(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
|
6847 {(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
|
6848 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6849 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, /* No X11 */ |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6850 {(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
|
6851 {(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
|
6852 {(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
|
6853 {(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
|
6854 {(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
|
6855 {(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
|
6856 {(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
|
6857 {(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
|
6858 {(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
|
6859 {(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
|
6860 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)}, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6861 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, /* No X11 */ |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6862 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, /* No X11 */ |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6863 {(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
|
6864 {(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
|
6865 {(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
|
6866 {(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
|
6867 {(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
|
6868 {(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
|
6869 }; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6870 |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6871 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
|
6872 static int size = 0; |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6873 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6874 if (name[0] == '#' && STRLEN(name) == 7) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6875 { |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6876 /* Name is in "#rrggbb" format */ |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
6877 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
|
6878 ((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
|
6879 ((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
|
6880 if (color > 0xffffff) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6881 return INVALCOLOR; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6882 return color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6883 } |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6884 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6885 /* Check if the name is one of the colors we know */ |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6886 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
|
6887 if (STRICMP(name, rgb_table[i].color_name) == 0) |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6888 return rgb_table[i].color; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6889 |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6890 /* |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6891 * Last attempt. Look in the file "$VIM/rgb.txt". |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6892 */ |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6893 if (size == 0) |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6894 { |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6895 int counting; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6896 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6897 /* colornames_table not yet initialized */ |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6898 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
|
6899 if (fname == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6900 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6901 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6902 fd = fopen((char *)fname, "rt"); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6903 vim_free(fname); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6904 if (fd == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6905 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6906 if (p_verbose > 1) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6907 verb_msg((char_u *)_("Cannot open $VIMRUNTIME/rgb.txt")); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6908 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6909 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6910 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6911 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
|
6912 { |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6913 if (!counting) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6914 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6915 colornames_table = (struct rgbcolor_table_S *)alloc( |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6916 (unsigned)(sizeof(struct rgbcolor_table_S) * size)); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6917 if (colornames_table == NULL) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6918 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6919 fclose(fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6920 return INVALCOLOR; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6921 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6922 rewind(fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6923 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6924 size = 0; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6925 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6926 while (!feof(fd)) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6927 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6928 size_t len; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6929 int pos; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6930 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6931 ignoredp = fgets(line, LINE_LEN, fd); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6932 len = strlen(line); |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6933 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6934 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
|
6935 continue; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6936 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6937 line[len - 1] = '\0'; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6938 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6939 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
|
6940 if (i != 3) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6941 continue; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6942 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6943 if (!counting) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6944 { |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6945 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
|
6946 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6947 if (s == NULL) |
9628
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6948 { |
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6949 fclose(fd); |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6950 return INVALCOLOR; |
9628
fefd0551aa9d
commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents:
9601
diff
changeset
|
6951 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6952 colornames_table[size].color_name = s; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6953 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
|
6954 } |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6955 size++; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6956 } |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6957 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6958 fclose(fd); |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6959 } |
9591
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6960 |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6961 for (i = 0; i < size; i++) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6962 if (STRICMP(name, colornames_table[i].color_name) == 0) |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6963 return colornames_table[i].color; |
201773c00b96
commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
6964 |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6965 return INVALCOLOR; |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6966 } |
11745
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6967 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6968 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
|
6969 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
|
6970 { |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6971 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
|
6972 |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6973 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
|
6974 return INVALCOLOR; |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6975 return color; |
5a5709918a98
patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11739
diff
changeset
|
6976 } |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
6977 #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
|
6978 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6979 #if (defined(WIN3264) && !defined(FEAT_GUI_W32)) || defined(FEAT_TERMINAL) \ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6980 || 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
|
6981 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
|
6982 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
|
6983 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6984 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6985 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
|
6986 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
|
6987 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
|
6988 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6989 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6990 # ifdef FEAT_TERMINAL |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6991 # include "libvterm/include/vterm.h" // for VTERM_ANSI_INDEX_NONE |
13827
27e09f1a8e5c
patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
6992 # else |
27e09f1a8e5c
patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents:
13823
diff
changeset
|
6993 # define VTERM_ANSI_INDEX_NONE 0 |
13823
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6994 # endif |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
6995 |
13839
ca8953d36264
patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13827
diff
changeset
|
6996 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
|
6997 // 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
|
6998 { 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
|
6999 {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
|
7000 { 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
|
7001 {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
|
7002 { 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
|
7003 {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
|
7004 { 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
|
7005 {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
|
7006 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7007 {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
|
7008 {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
|
7009 { 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
|
7010 {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
|
7011 { 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
|
7012 {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
|
7013 { 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
|
7014 {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
|
7015 }; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7016 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7017 void |
13839
ca8953d36264
patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13827
diff
changeset
|
7018 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
|
7019 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7020 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
|
7021 |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7022 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
|
7023 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7024 *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
|
7025 *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
|
7026 *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
|
7027 *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
|
7028 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7029 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
|
7030 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7031 /* 216 color cube */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7032 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
|
7033 *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
|
7034 *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
|
7035 *b = cube_value[idx % 6]; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7036 *ansi_idx = VTERM_ANSI_INDEX_NONE; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7037 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7038 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
|
7039 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7040 /* 24 grey scale ramp */ |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7041 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
|
7042 *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
|
7043 *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
|
7044 *b = 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
|
7045 *ansi_idx = VTERM_ANSI_INDEX_NONE; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7046 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7047 else |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7048 { |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7049 *r = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7050 *g = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7051 *b = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7052 *ansi_idx = 0; |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7053 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7054 } |
d0d8125ba692
patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
13780
diff
changeset
|
7055 #endif |