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