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