annotate src/term.c @ 19405:08f4dc2ba716 v8.2.0260

patch 8.2.0260: several lines of code are duplicated Commit: https://github.com/vim/vim/commit/f4140488c72cad4dbf5449dba099cfa7de7bbb22 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 15 23:06:45 2020 +0100 patch 8.2.0260: several lines of code are duplicated Problem: Several lines of code are duplicated. Solution: Move duplicated code to a function. (Yegappan Lakshmanan, closes #5330)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Feb 2020 23:15:04 +0100
parents 0dd8d1291439
children 31ac050a29a7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * term.c: functions for controlling the terminal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 * NOTE: padding and variable substitution is not performed,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 * when compiling without HAVE_TGETENT, we use tputs() and tgoto() dummies.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 * Some systems have a prototype for tgetstr() with (char *) instead of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 * (char **). This define removes that prototype. We include our own prototype
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 * below.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 #define tgetstr tgetstr_defined_wrong
16378
3d6b282e2d6e patch 8.1.1194: typos and small problems in source files
Bram Moolenaar <Bram@vim.org>
parents: 16245
diff changeset
25
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 # ifdef HAVE_TERMIOS_H
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
30 # include <termios.h> // seems to be required for some Linux
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 # ifdef HAVE_TERMCAP_H
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 # include <termcap.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 * A few linux systems define outfuntype in termcap.h to be used as the third
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 * argument for tputs().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 # ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 # define TPUTSFUNCAST
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 # ifdef HAVE_OUTFUNTYPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 # define TPUTSFUNCAST (outfuntype)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 # define TPUTSFUNCAST (int (*)())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 #undef tgetstr
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 * Here are the builtin termcap entries. They are not stored as complete
2823
8bd38abda314 updated for version 7.3.187
Bram Moolenaar <bram@vim.org>
parents: 2673
diff changeset
55 * structures with all entries, as such a structure is too big.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 * The entries are compact, therefore they normally are included even when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 * HAVE_TGETENT is defined. When HAVE_TGETENT is defined, the builtin entries
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 * can be accessed with "builtin_amiga", "builtin_ansi", "builtin_debug", etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 * Each termcap is a list of builtin_term structures. It always starts with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 * KS_NAME, which separates the entries. See parse_builtin_tcap() for all
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 * details.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 * bt_entry is either a KS_xxx code (>= 0), or a K_xxx code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 * Entries marked with "guessed" may be wrong.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 struct builtin_term
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 int bt_entry;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 char *bt_string;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
74 // start of keys that are not directly used by Vim but can be mapped
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 #define BT_EXTRA_KEYS 0x101
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
77 static void parse_builtin_tcap(char_u *s);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
78 static void gather_termleader(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 #ifdef FEAT_TERMRESPONSE
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
80 static void req_codes_from_term(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
81 static void req_more_codes_from_term(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
82 static void got_code_from_term(char_u *code, int len);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
83 static void check_for_codes_from_term(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 #endif
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
85 static void del_termcode_idx(int idx);
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
86 static int find_term_bykeys(char_u *src);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
87 static int term_is_builtin(char_u *name);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
88 static int term_7to8bit(char_u *p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 #ifdef HAVE_TGETENT
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
91 static char *tgetent_error(char_u *, char_u *);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 * Here is our own prototype for tgetstr(), any prototypes from the include
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 * files have been disabled by the define at the start of this file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 */
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
97 char *tgetstr(char *, char **);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 # ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
100 // Change this to "if 1" to debug what happens with termresponse.
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
101 # if 0
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
102 # define DEBUG_TERMRESPONSE
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
103 static void log_tr(const char *fmt, ...);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
104 # define LOG_TR(msg) log_tr msg
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
105 # else
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
106 # define LOG_TR(msg) do { /**/ } while (0)
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
107 # endif
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
108
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
109 typedef enum {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
110 STATUS_GET, // send request when switching to RAW mode
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
111 STATUS_SENT, // did send request, checking for response
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
112 STATUS_GOT, // received response
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
113 STATUS_FAIL // timed out
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
114 } request_progress_T;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
115
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
116 typedef struct {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
117 request_progress_T tr_progress;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
118 time_t tr_start; // when request was sent, -1 for never
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
119 } termrequest_T;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
120
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
121 # define TERMREQUEST_INIT {STATUS_GET, -1}
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
122
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
123 // Request Terminal Version status:
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
124 static termrequest_T crv_status = TERMREQUEST_INIT;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
125
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
126 // Request Cursor position report:
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
127 static termrequest_T u7_status = TERMREQUEST_INIT;
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
128
12634
94566ecb55f0 patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 12632
diff changeset
129 # ifdef FEAT_TERMINAL
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
130 // Request foreground color report:
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
131 static termrequest_T rfg_status = TERMREQUEST_INIT;
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
132 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
133 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
134 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
135 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
136 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
137 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
138 # 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
139
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
140 // Request background color report:
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
141 static termrequest_T rbg_status = TERMREQUEST_INIT;
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
142
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
143 // Request cursor blinking mode report:
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
144 static termrequest_T rbm_status = TERMREQUEST_INIT;
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
145
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
146 // Request cursor style report:
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
147 static termrequest_T rcs_status = TERMREQUEST_INIT;
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
148
19195
2ef19eed524a patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents: 19178
diff changeset
149 // Request window's position report:
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
150 static termrequest_T winpos_status = TERMREQUEST_INIT;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
151
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
152 static termrequest_T *all_termrequests[] = {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
153 &crv_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
154 &u7_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
155 # ifdef FEAT_TERMINAL
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
156 &rfg_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
157 # endif
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
158 &rbg_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
159 &rbm_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
160 &rcs_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
161 &winpos_status,
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
162 NULL
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
163 };
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 * Don't declare these variables if termcap.h contains them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 * Autoconf checks if these variables should be declared extern (not all
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 * systems have them).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 * Some versions define ospeed to be speed_t, but that is incompatible with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 * BSD, where ospeed is short and speed_t is long.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 # ifndef HAVE_OSPEED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 # ifdef OSPEED_EXTERN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 extern short ospeed;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 short ospeed;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 # ifndef HAVE_UP_BC_PC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 # ifdef UP_BC_PC_EXTERN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 extern char *UP, *BC, PC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 char *UP, *BC, PC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 # define TGETSTR(s, p) vim_tgetstr((s), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 # 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
190 static char_u *vim_tgetstr(char *s, char_u **pp);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
191 #endif // HAVE_TGETENT
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
192
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
193 static int detected_8bit = FALSE; // detected 8-bit terminal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194
12184
76fbd85c3cea patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents: 12174
diff changeset
195 #ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
196 // When the cursor shape was detected these values are used:
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
197 // 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
198 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
199
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
200 // The blink flag from the style response may be inverted from the actual
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
201 // blinking state, xterm XORs the flags.
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
202 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
203
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
204 // The blink flag from the 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
205 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
206 #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
207
298
f9de3e679a04 updated for version 7.0078
vimboss
parents: 230
diff changeset
208 static struct builtin_term builtin_termcaps[] =
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 #if defined(FEAT_GUI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 * GUI pseudo term-cap.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 {(int)KS_NAME, "gui"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 {(int)KS_CE, IF_EB("\033|$", ESC_STR "|$")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 {(int)KS_AL, IF_EB("\033|i", ESC_STR "|i")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 {(int)KS_CAL, IF_EB("\033|%p1%dI", ESC_STR "|%p1%dI")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 {(int)KS_CAL, IF_EB("\033|%dI", ESC_STR "|%dI")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 {(int)KS_DL, IF_EB("\033|d", ESC_STR "|d")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 {(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 {(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 {(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 {(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 {(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 {(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 {(int)KS_CL, IF_EB("\033|C", ESC_STR "|C")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
234 // attributes switched on with 'h', off with * 'H'
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
235 {(int)KS_ME, IF_EB("\033|31H", ESC_STR "|31H")}, // HL_ALL
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
236 {(int)KS_MR, IF_EB("\033|1h", ESC_STR "|1h")}, // HL_INVERSE
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
237 {(int)KS_MD, IF_EB("\033|2h", ESC_STR "|2h")}, // HL_BOLD
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
238 {(int)KS_SE, IF_EB("\033|16H", ESC_STR "|16H")}, // HL_STANDOUT
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
239 {(int)KS_SO, IF_EB("\033|16h", ESC_STR "|16h")}, // HL_STANDOUT
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
240 {(int)KS_UE, IF_EB("\033|8H", ESC_STR "|8H")}, // HL_UNDERLINE
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
241 {(int)KS_US, IF_EB("\033|8h", ESC_STR "|8h")}, // HL_UNDERLINE
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
242 {(int)KS_UCE, IF_EB("\033|8C", ESC_STR "|8C")}, // HL_UNDERCURL
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
243 {(int)KS_UCS, IF_EB("\033|8c", ESC_STR "|8c")}, // HL_UNDERCURL
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
244 {(int)KS_STE, IF_EB("\033|4C", ESC_STR "|4C")}, // HL_STRIKETHROUGH
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
245 {(int)KS_STS, IF_EB("\033|4c", ESC_STR "|4c")}, // HL_STRIKETHROUGH
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
246 {(int)KS_CZR, IF_EB("\033|4H", ESC_STR "|4H")}, // HL_ITALIC
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
247 {(int)KS_CZH, IF_EB("\033|4h", ESC_STR "|4h")}, // HL_ITALIC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 {(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 {(int)KS_MS, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 {(int)KS_UT, "y"},
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
251 {(int)KS_XN, "y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
252 {(int)KS_LE, "\b"}, // cursor-left = BS
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
253 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 {(int)KS_CM, IF_EB("\033|%p1%d;%p2%dM", ESC_STR "|%p1%d;%p2%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 {(int)KS_CM, IF_EB("\033|%d;%dM", ESC_STR "|%d;%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
259 // there are no key sequences here, the GUI sequences are recognized
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
260 // in check_termcode()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 #ifndef NO_BUILTIN_TCAPS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 # if defined(AMIGA) || defined(ALL_BUILTIN_TCAPS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267 * Amiga console window, default for Amiga
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 {(int)KS_NAME, "amiga"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 {(int)KS_CE, "\033[K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 {(int)KS_CD, "\033[J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 {(int)KS_AL, "\033[L"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 {(int)KS_CAL, "\033[%p1%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 {(int)KS_CAL, "\033[%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 {(int)KS_DL, "\033[M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 {(int)KS_CDL, "\033[%p1%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 {(int)KS_CDL, "\033[%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 {(int)KS_CL, "\014"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 {(int)KS_VI, "\033[0 p"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 {(int)KS_VE, "\033[1 p"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 {(int)KS_ME, "\033[0m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 {(int)KS_MR, "\033[7m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 {(int)KS_MD, "\033[1m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 {(int)KS_SE, "\033[0m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 {(int)KS_SO, "\033[33m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 {(int)KS_US, "\033[4m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293 {(int)KS_UE, "\033[0m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 {(int)KS_CZH, "\033[3m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 {(int)KS_CZR, "\033[0m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 #if defined(__MORPHOS__) || defined(__AROS__)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
297 {(int)KS_CCO, "8"}, // allow 8 colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 # ifdef TERMINFO
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
299 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
300 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
302 {(int)KS_CAB, "\033[4%dm"}, // set background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
303 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
305 {(int)KS_OP, "\033[m"}, // reset colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 {(int)KS_MS, "y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
308 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 {(int)KS_CM, "\033[%i%d;%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 #if defined(__MORPHOS__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 {(int)KS_SR, "\033M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 {(int)KS_CRI, "\033[%p1%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 {(int)KS_CRI, "\033[%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
323 {K_UP, "\233A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324 {K_DOWN, "\233B"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
325 {K_LEFT, "\233D"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
326 {K_RIGHT, "\233C"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327 {K_S_UP, "\233T"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328 {K_S_DOWN, "\233S"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 {K_S_LEFT, "\233 A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330 {K_S_RIGHT, "\233 @"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 {K_S_TAB, "\233Z"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
332 {K_F1, "\233\060~"},// some compilers don't dig "\2330"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 {K_F2, "\233\061~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 {K_F3, "\233\062~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 {K_F4, "\233\063~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 {K_F5, "\233\064~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
337 {K_F6, "\233\065~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
338 {K_F7, "\233\066~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339 {K_F8, "\233\067~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 {K_F9, "\233\070~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341 {K_F10, "\233\071~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
342 {K_S_F1, "\233\061\060~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343 {K_S_F2, "\233\061\061~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344 {K_S_F3, "\233\061\062~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 {K_S_F4, "\233\061\063~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 {K_S_F5, "\233\061\064~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 {K_S_F6, "\233\061\065~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 {K_S_F7, "\233\061\066~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 {K_S_F8, "\233\061\067~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 {K_S_F9, "\233\061\070~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 {K_S_F10, "\233\061\071~"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 {K_HELP, "\233?~"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
353 {K_INS, "\233\064\060~"}, // 101 key keyboard
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
354 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
355 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
356 {K_HOME, "\233\064\064~"}, // 101 key keyboard
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
357 {K_END, "\233\064\065~"}, // 101 key keyboard
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 {BT_EXTRA_KEYS, ""},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
360 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
361 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
362 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 # if defined(__BEOS__) || defined(ALL_BUILTIN_TCAPS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 * almost standard ANSI terminal, default for bebox
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 {(int)KS_NAME, "beos-ansi"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 {(int)KS_CE, "\033[K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 {(int)KS_CD, "\033[J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 {(int)KS_AL, "\033[L"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 {(int)KS_CAL, "\033[%p1%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 {(int)KS_CAL, "\033[%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 {(int)KS_DL, "\033[M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 {(int)KS_CDL, "\033[%p1%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 {(int)KS_CDL, "\033[%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 #ifdef BEOS_PR_OR_BETTER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
388 {(int)KS_CS, "\033[%i%d;%dr"}, // scroll region
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 {(int)KS_CL, "\033[H\033[2J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 #ifdef notyet
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
393 {(int)KS_VI, "[VI]"}, // cursor invisible, VT320: CSI ? 25 l
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
394 {(int)KS_VE, "[VE]"}, // cursor visible, VT320: CSI ? 25 h
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
396 {(int)KS_ME, "\033[m"}, // normal mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
397 {(int)KS_MR, "\033[7m"}, // reverse
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
398 {(int)KS_MD, "\033[1m"}, // bold
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
399 {(int)KS_SO, "\033[31m"}, // standout mode: red
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
400 {(int)KS_SE, "\033[m"}, // standout end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
401 {(int)KS_CZH, "\033[35m"}, // italic: purple
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
402 {(int)KS_CZR, "\033[m"}, // italic end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
403 {(int)KS_US, "\033[4m"}, // underscore mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
404 {(int)KS_UE, "\033[m"}, // underscore end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
405 {(int)KS_CCO, "8"}, // allow 8 colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406 # ifdef TERMINFO
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
407 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
408 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
410 {(int)KS_CAB, "\033[4%dm"}, // set background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
411 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
413 {(int)KS_OP, "\033[m"}, // reset colors
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
414 {(int)KS_MS, "y"}, // safe to move cur in reverse mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
415 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
418 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
419 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420 {(int)KS_CM, "\033[%i%d;%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
422 {(int)KS_SR, "\033M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 {(int)KS_CRI, "\033[%p1%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 {(int)KS_CRI, "\033[%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 # endif
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
428 # if defined(BEOS_DR8)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
429 {(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
430 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 {K_UP, "\033[A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433 {K_DOWN, "\033[B"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434 {K_LEFT, "\033[D"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 {K_RIGHT, "\033[C"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
438 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS) || defined(SOME_BUILTIN_TCAPS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 * standard ANSI terminal, default for unix
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 {(int)KS_NAME, "ansi"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 {(int)KS_MS, "y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
460 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH", ESC_STR "[%i%p1%d;%p2%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
474 # if defined(ALL_BUILTIN_TCAPS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 * These codes are valid when nansi.sys or equivalent has been installed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 * Function keys on a PC are preceded with a NUL. These are converted into
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 * CTRL-arrow is used instead of SHIFT-arrow.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 {(int)KS_NAME, "pcansi"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 {(int)KS_DL, "\033[M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 {(int)KS_AL, "\033[L"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
484 {(int)KS_CE, "\033[K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 {(int)KS_CL, "\033[2J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486 {(int)KS_ME, "\033[0m"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
487 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
488 {(int)KS_MD, "\033[1m"}, // bold: white text
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
489 {(int)KS_SE, "\033[0m"}, // standout end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
490 {(int)KS_SO, "\033[31m"}, // standout: white on blue
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
491 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
492 {(int)KS_CZR, "\033[0m"}, // italic mode end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
493 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
494 {(int)KS_UE, "\033[0m"}, // underscore mode end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
495 {(int)KS_CCO, "8"}, // allow 8 colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496 # ifdef TERMINFO
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
497 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
498 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
500 {(int)KS_CAB, "\033[4%dm"}, // set background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
501 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
503 {(int)KS_OP, "\033[0m"}, // reset colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 {(int)KS_MS, "y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
505 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 {(int)KS_CM, "\033[%i%d;%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 {(int)KS_CRI, "\033[%p1%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
514 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515 {(int)KS_CRI, "\033[%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
517 {K_UP, "\316H"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 {K_DOWN, "\316P"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 {K_LEFT, "\316K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520 {K_RIGHT, "\316M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521 {K_S_LEFT, "\316s"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 {K_S_RIGHT, "\316t"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 {K_F1, "\316;"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524 {K_F2, "\316<"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 {K_F3, "\316="},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526 {K_F4, "\316>"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 {K_F5, "\316?"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 {K_F6, "\316@"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 {K_F7, "\316A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 {K_F8, "\316B"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 {K_F9, "\316C"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 {K_F10, "\316D"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
533 {K_F11, "\316\205"}, // guessed
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
534 {K_F12, "\316\206"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535 {K_S_F1, "\316T"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536 {K_S_F2, "\316U"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537 {K_S_F3, "\316V"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538 {K_S_F4, "\316W"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 {K_S_F5, "\316X"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 {K_S_F6, "\316Y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 {K_S_F7, "\316Z"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542 {K_S_F8, "\316["},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 {K_S_F9, "\316\\"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 {K_S_F10, "\316]"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
545 {K_S_F11, "\316\207"}, // guessed
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
546 {K_S_F12, "\316\210"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 {K_INS, "\316R"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 {K_DEL, "\316S"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 {K_HOME, "\316G"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 {K_END, "\316O"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 {K_PAGEDOWN, "\316Q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 {K_PAGEUP, "\316I"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
555 # if defined(MSWIN) || defined(ALL_BUILTIN_TCAPS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 * These codes are valid for the Win32 Console . The entries that start with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558 * ESC | are translated into console calls in os_win32.c. The function keys
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 * are also translated in os_win32.c.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 {(int)KS_NAME, "win32"},
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
562 {(int)KS_CE, "\033|K"}, // clear to end of line
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
563 {(int)KS_AL, "\033|L"}, // add new blank line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564 # ifdef TERMINFO
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
565 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 # else
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
567 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 # endif
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
569 {(int)KS_DL, "\033|M"}, // delete line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 # ifdef TERMINFO
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
571 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
572 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 # else
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
574 {(int)KS_CDL, "\033|%dM"}, // delete number of lines
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
575 {(int)KS_CSV, "\033|%d;%dV"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576 # endif
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
577 {(int)KS_CL, "\033|J"}, // clear screen
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
578 {(int)KS_CD, "\033|j"}, // clear to end of display
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
579 {(int)KS_VI, "\033|v"}, // cursor invisible
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
580 {(int)KS_VE, "\033|V"}, // cursor visible
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
581
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
582 {(int)KS_ME, "\033|0m"}, // normal
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
583 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
584 {(int)KS_MD, "\033|15m"}, // bold: white on black
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 #if 1
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
586 {(int)KS_SO, "\033|31m"}, // standout: white on blue
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
587 {(int)KS_SE, "\033|0m"}, // standout end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588 #else
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
589 {(int)KS_SO, "\033|F"}, // standout: high intensity
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
590 {(int)KS_SE, "\033|f"}, // standout end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 #endif
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
592 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
593 {(int)KS_CZR, "\033|0m"}, // italic end
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
594 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
595 {(int)KS_UE, "\033|0m"}, // underscore end
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
596 {(int)KS_CCO, "16"}, // allow 16 colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
597 # ifdef TERMINFO
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
598 {(int)KS_CAB, "\033|%p1%db"}, // set background color
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
599 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 # else
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
601 {(int)KS_CAB, "\033|%db"}, // set background color
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
602 {(int)KS_CAF, "\033|%df"}, // set foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
605 {(int)KS_MS, "y"}, // save to move cur in reverse mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 {(int)KS_UT, "y"},
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
607 {(int)KS_XN, "y"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 # ifdef TERMINFO
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
610 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 # else
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
612 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 # endif
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
614 {(int)KS_VB, "\033|B"}, // visual bell
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
615 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
616 {(int)KS_TE, "\033|E"}, // out of termcap mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 # ifdef TERMINFO
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
618 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 # else
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
620 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 # endif
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
622 # ifdef FEAT_TERMGUICOLORS
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
623 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
624 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
625 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 {K_UP, "\316H"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 {K_DOWN, "\316P"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 {K_LEFT, "\316K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630 {K_RIGHT, "\316M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
631 {K_S_UP, "\316\304"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
632 {K_S_DOWN, "\316\317"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
633 {K_S_LEFT, "\316\311"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
634 {K_C_LEFT, "\316s"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 {K_S_RIGHT, "\316\313"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
636 {K_C_RIGHT, "\316t"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 {K_S_TAB, "\316\017"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 {K_F1, "\316;"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
639 {K_F2, "\316<"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 {K_F3, "\316="},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 {K_F4, "\316>"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 {K_F5, "\316?"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 {K_F6, "\316@"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 {K_F7, "\316A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 {K_F8, "\316B"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 {K_F9, "\316C"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 {K_F10, "\316D"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 {K_F11, "\316\205"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 {K_F12, "\316\206"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 {K_S_F1, "\316T"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 {K_S_F2, "\316U"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 {K_S_F3, "\316V"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 {K_S_F4, "\316W"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 {K_S_F5, "\316X"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 {K_S_F6, "\316Y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 {K_S_F7, "\316Z"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 {K_S_F8, "\316["},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 {K_S_F9, "\316\\"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 {K_S_F10, "\316]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 {K_S_F11, "\316\207"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 {K_S_F12, "\316\210"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 {K_INS, "\316R"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 {K_DEL, "\316S"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 {K_HOME, "\316G"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 {K_S_HOME, "\316\302"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 {K_C_HOME, "\316w"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 {K_END, "\316O"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 {K_S_END, "\316\315"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669 {K_C_END, "\316u"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 {K_PAGEDOWN, "\316Q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 {K_PAGEUP, "\316I"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 {K_KPLUS, "\316N"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 {K_KMINUS, "\316J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 {K_KMULTIPLY, "\316\067"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 {K_K0, "\316\332"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
676 {K_K1, "\316\336"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 {K_K2, "\316\342"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 {K_K3, "\316\346"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 {K_K4, "\316\352"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 {K_K5, "\316\356"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 {K_K6, "\316\362"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 {K_K7, "\316\366"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 {K_K8, "\316\372"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 {K_K9, "\316\376"},
16182
bed0d7200635 patch 8.1.1096: MS-Windows: cannot distinguish BS and CTRL-H
Bram Moolenaar <Bram@vim.org>
parents: 16058
diff changeset
685 {K_BS, "\316x"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 # if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 * VT320 is working as an ANSI terminal compatible DEC terminal.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 * TODO:- rewrite ESC[ codes to CSI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 * - keyboard languages (CSI ? 26 n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 {(int)KS_NAME, "vt320"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
22
cc049b00ee70 updated for version 7.0014
vimboss
parents: 7
diff changeset
710 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
711 {(int)KS_CCO, "8"}, // allow 8 colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 {(int)KS_ME, IF_EB("\033[0m", ESC_STR "[0m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
714 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")}, // bold mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
715 {(int)KS_SE, IF_EB("\033[22m", ESC_STR "[22m")},// normal mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
716 {(int)KS_UE, IF_EB("\033[24m", ESC_STR "[24m")},// exit underscore mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
717 {(int)KS_US, IF_EB("\033[4m", ESC_STR "[4m")}, // underscore mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
718 {(int)KS_CZH, IF_EB("\033[34;43m", ESC_STR "[34;43m")}, // italic mode: blue text on yellow
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
719 {(int)KS_CZR, IF_EB("\033[0m", ESC_STR "[0m")}, // italic mode end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
720 {(int)KS_CAB, IF_EB("\033[4%dm", ESC_STR "[4%dm")}, // set background color (ANSI)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
721 {(int)KS_CAF, IF_EB("\033[3%dm", ESC_STR "[3%dm")}, // set foreground color (ANSI)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
722 {(int)KS_CSB, IF_EB("\033[102;%dm", ESC_STR "[102;%dm")}, // set screen background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
723 {(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, // set screen foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 {(int)KS_MS, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 {(int)KS_UT, "y"},
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
726 {(int)KS_XN, "y"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 ESC_STR "[%i%p1%d;%p2%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
731 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
734 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
735 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
739 {K_UP, IF_EB("\033[A", ESC_STR "[A")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740 {K_DOWN, IF_EB("\033[B", ESC_STR "[B")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
741 {K_RIGHT, IF_EB("\033[C", ESC_STR "[C")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
742 {K_LEFT, IF_EB("\033[D", ESC_STR "[D")},
14252
b557af8dedab patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents: 14224
diff changeset
743 // Note: cursor key sequences for application cursor mode are omitted,
b557af8dedab patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents: 14224
diff changeset
744 // because they interfere with typed commands: <Esc>OA.
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 298
diff changeset
745 {K_F1, IF_EB("\033[11~", ESC_STR "[11~")},
7033303ea0c0 updated for version 7.0089
vimboss
parents: 298
diff changeset
746 {K_F2, IF_EB("\033[12~", ESC_STR "[12~")},
7033303ea0c0 updated for version 7.0089
vimboss
parents: 298
diff changeset
747 {K_F3, IF_EB("\033[13~", ESC_STR "[13~")},
7033303ea0c0 updated for version 7.0089
vimboss
parents: 298
diff changeset
748 {K_F4, IF_EB("\033[14~", ESC_STR "[14~")},
7033303ea0c0 updated for version 7.0089
vimboss
parents: 298
diff changeset
749 {K_F5, IF_EB("\033[15~", ESC_STR "[15~")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750 {K_F6, IF_EB("\033[17~", ESC_STR "[17~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751 {K_F7, IF_EB("\033[18~", ESC_STR "[18~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
752 {K_F8, IF_EB("\033[19~", ESC_STR "[19~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
753 {K_F9, IF_EB("\033[20~", ESC_STR "[20~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 {K_F10, IF_EB("\033[21~", ESC_STR "[21~")},
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 298
diff changeset
755 {K_F11, IF_EB("\033[23~", ESC_STR "[23~")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 {K_F12, IF_EB("\033[24~", ESC_STR "[24~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757 {K_F13, IF_EB("\033[25~", ESC_STR "[25~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758 {K_F14, IF_EB("\033[26~", ESC_STR "[26~")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
759 {K_F15, IF_EB("\033[28~", ESC_STR "[28~")}, // Help
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
760 {K_F16, IF_EB("\033[29~", ESC_STR "[29~")}, // Select
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
761 {K_F17, IF_EB("\033[31~", ESC_STR "[31~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 {K_F18, IF_EB("\033[32~", ESC_STR "[32~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
763 {K_F19, IF_EB("\033[33~", ESC_STR "[33~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 {K_F20, IF_EB("\033[34~", ESC_STR "[34~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765 {K_INS, IF_EB("\033[2~", ESC_STR "[2~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 {K_DEL, IF_EB("\033[3~", ESC_STR "[3~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767 {K_HOME, IF_EB("\033[1~", ESC_STR "[1~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768 {K_END, IF_EB("\033[4~", ESC_STR "[4~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
769 {K_PAGEUP, IF_EB("\033[5~", ESC_STR "[5~")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
770 {K_PAGEDOWN, IF_EB("\033[6~", ESC_STR "[6~")},
14252
b557af8dedab patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents: 14224
diff changeset
771 // These sequences starting with <Esc> O may interfere with what the user
b557af8dedab patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents: 14224
diff changeset
772 // is typing. Remove these if that bothers you.
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
773 {K_KPLUS, IF_EB("\033Ok", ESC_STR "Ok")}, // keypad plus
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
774 {K_KMINUS, IF_EB("\033Om", ESC_STR "Om")}, // keypad minus
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
775 {K_KDIVIDE, IF_EB("\033Oo", ESC_STR "Oo")}, // keypad /
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
776 {K_KMULTIPLY, IF_EB("\033Oj", ESC_STR "Oj")}, // keypad *
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
777 {K_KENTER, IF_EB("\033OM", ESC_STR "OM")}, // keypad Enter
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
778 {K_K0, IF_EB("\033Op", ESC_STR "Op")}, // keypad 0
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
779 {K_K1, IF_EB("\033Oq", ESC_STR "Oq")}, // keypad 1
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
780 {K_K2, IF_EB("\033Or", ESC_STR "Or")}, // keypad 2
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
781 {K_K3, IF_EB("\033Os", ESC_STR "Os")}, // keypad 3
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
782 {K_K4, IF_EB("\033Ot", ESC_STR "Ot")}, // keypad 4
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
783 {K_K5, IF_EB("\033Ou", ESC_STR "Ou")}, // keypad 5
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
784 {K_K6, IF_EB("\033Ov", ESC_STR "Ov")}, // keypad 6
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
785 {K_K7, IF_EB("\033Ow", ESC_STR "Ow")}, // keypad 7
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
786 {K_K8, IF_EB("\033Ox", ESC_STR "Ox")}, // keypad 8
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
787 {K_K9, IF_EB("\033Oy", ESC_STR "Oy")}, // keypad 9
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
788 {K_BS, "\x7f"}, // for some reason 0177 doesn't work
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
789 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
790
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
791 # if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 * Ordinary vt52
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795 {(int)KS_NAME, "vt52"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796 {(int)KS_CE, IF_EB("\033K", ESC_STR "K")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797 {(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
798 # ifdef TERMINFO
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
799 {(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
800 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
801 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 {(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
803 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 {(int)KS_LE, "\b"},
7264
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
805 {(int)KS_SR, IF_EB("\033I", ESC_STR "I")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
806 {(int)KS_AL, IF_EB("\033L", ESC_STR "L")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807 {(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
808 {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
809 {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
810 {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
811 {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
812 {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
813 {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
814 {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
815 # ifdef __MINT__
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
816 {(int)KS_CL, IF_EB("\033E", ESC_STR "E")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 {(int)KS_VE, IF_EB("\033e", ESC_STR "e")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 {(int)KS_VI, IF_EB("\033f", ESC_STR "f")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 {(int)KS_SO, IF_EB("\033p", ESC_STR "p")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 {(int)KS_SE, IF_EB("\033q", ESC_STR "q")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 {K_S_UP, IF_EB("\033a", ESC_STR "a")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 {K_S_DOWN, IF_EB("\033b", ESC_STR "b")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 {K_S_LEFT, IF_EB("\033d", ESC_STR "d")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 {K_S_RIGHT, IF_EB("\033c", ESC_STR "c")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825 {K_F4, IF_EB("\033S", ESC_STR "S")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826 {K_F5, IF_EB("\033T", ESC_STR "T")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
827 {K_F6, IF_EB("\033U", ESC_STR "U")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 {K_F7, IF_EB("\033V", ESC_STR "V")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829 {K_F8, IF_EB("\033W", ESC_STR "W")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830 {K_F9, IF_EB("\033X", ESC_STR "X")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 {K_F10, IF_EB("\033Y", ESC_STR "Y")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 {K_S_F1, IF_EB("\033p", ESC_STR "p")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 {K_S_F2, IF_EB("\033q", ESC_STR "q")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 {K_S_F3, IF_EB("\033r", ESC_STR "r")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 {K_S_F4, IF_EB("\033s", ESC_STR "s")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 {K_S_F5, IF_EB("\033t", ESC_STR "t")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 {K_S_F6, IF_EB("\033u", ESC_STR "u")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 {K_S_F7, IF_EB("\033v", ESC_STR "v")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 {K_S_F8, IF_EB("\033w", ESC_STR "w")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 {K_S_F9, IF_EB("\033x", ESC_STR "x")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 {K_S_F10, IF_EB("\033y", ESC_STR "y")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 {K_INS, IF_EB("\033I", ESC_STR "I")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 {K_HOME, IF_EB("\033E", ESC_STR "E")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 {K_PAGEDOWN, IF_EB("\033b", ESC_STR "b")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845 {K_PAGEUP, IF_EB("\033a", ESC_STR "a")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
847 {(int)KS_CL, IF_EB("\033H\033J", ESC_STR "H" ESC_STR_nc "J")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
848 {(int)KS_MS, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
851
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
852 # 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
853 {(int)KS_NAME, "xterm"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 {(int)KS_CE, IF_EB("\033[K", ESC_STR "[K")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855 {(int)KS_AL, IF_EB("\033[L", ESC_STR "[L")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
857 {(int)KS_CAL, IF_EB("\033[%p1%dL", ESC_STR "[%p1%dL")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
858 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
859 {(int)KS_CAL, IF_EB("\033[%dL", ESC_STR "[%dL")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
860 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
861 {(int)KS_DL, IF_EB("\033[M", ESC_STR "[M")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 {(int)KS_CDL, IF_EB("\033[%p1%dM", ESC_STR "[%p1%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
864 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
865 {(int)KS_CDL, IF_EB("\033[%dM", ESC_STR "[%dM")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868 {(int)KS_CS, IF_EB("\033[%i%p1%d;%p2%dr",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869 ESC_STR "[%i%p1%d;%p2%dr")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 {(int)KS_CS, IF_EB("\033[%i%d;%dr", ESC_STR "[%i%d;%dr")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
872 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
873 {(int)KS_CL, IF_EB("\033[H\033[2J", ESC_STR "[H" ESC_STR_nc "[2J")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
874 {(int)KS_CD, IF_EB("\033[J", ESC_STR "[J")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
875 {(int)KS_ME, IF_EB("\033[m", ESC_STR "[m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
876 {(int)KS_MR, IF_EB("\033[7m", ESC_STR "[7m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
877 {(int)KS_MD, IF_EB("\033[1m", ESC_STR "[1m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878 {(int)KS_UE, IF_EB("\033[m", ESC_STR "[m")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879 {(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
880 {(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
881 {(int)KS_STS, IF_EB("\033[9m", ESC_STR "[9m")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
882 {(int)KS_MS, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
883 {(int)KS_UT, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
884 {(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
885 {(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
886 {(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
887 {(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
888 {(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
889 # ifdef TERMINFO
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
890 {(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
891 # else
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
892 {(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
893 # endif
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
894 {(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
895 {(int)KS_CRS, IF_EB("\033P$q q\033\\", ESC_STR "P$q q" ESC_STR "\\")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 ESC_STR "[%i%p1%d;%p2%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
899 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
901 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902 {(int)KS_SR, IF_EB("\033M", ESC_STR "M")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 {(int)KS_CRI, IF_EB("\033[%p1%dC", ESC_STR "[%p1%dC")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
905 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
906 {(int)KS_CRI, IF_EB("\033[%dC", ESC_STR "[%dC")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
907 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 {(int)KS_KS, IF_EB("\033[?1h\033=", ESC_STR "[?1h" ESC_STR_nc "=")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909 {(int)KS_KE, IF_EB("\033[?1l\033>", ESC_STR "[?1l" ESC_STR_nc ">")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 # ifdef FEAT_XTERM_SAVE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 {(int)KS_TI, IF_EB("\0337\033[?47h", ESC_STR "7" ESC_STR_nc "[?47h")},
19346
0dd8d1291439 patch 8.2.0231: silent system command may clear the screen
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
912 {(int)KS_TE, IF_EB("\033[?47l\0338",
0dd8d1291439 patch 8.2.0231: silent system command may clear the screen
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
913 ESC_STR_nc "[?47l" ESC_STR_nc "8")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 # endif
18400
f66fee58e7e2 patch 8.1.2194: modifyOtherKeys is not enabled by default
Bram Moolenaar <Bram@vim.org>
parents: 18360
diff changeset
915 {(int)KS_CTI, IF_EB("\033[>4;2m", ESC_STR_nc "[>4;2m")},
f66fee58e7e2 patch 8.1.2194: modifyOtherKeys is not enabled by default
Bram Moolenaar <Bram@vim.org>
parents: 18360
diff changeset
916 {(int)KS_CTE, IF_EB("\033[>4;m", ESC_STR_nc "[>4;m")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917 {(int)KS_CIS, IF_EB("\033]1;", ESC_STR "]1;")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
918 {(int)KS_CIE, "\007"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 {(int)KS_TS, IF_EB("\033]2;", ESC_STR "]2;")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
920 {(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
921 {(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
922 {(int)KS_CEC, "\007"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
923 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
924 {(int)KS_CWS, IF_EB("\033[8;%p1%d;%p2%dt",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
925 ESC_STR "[8;%p1%d;%p2%dt")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 {(int)KS_CWP, IF_EB("\033[3;%p1%d;%p2%dt",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927 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
928 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 {(int)KS_CWS, IF_EB("\033[8;%d;%dt", ESC_STR "[8;%d;%dt")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
931 {(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
932 {(int)KS_CGP, IF_EB("\033[13t", ESC_STR "[13t")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
933 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934 {(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
935 {(int)KS_RFG, IF_EB("\033]10;?\007", ESC_STR "]10;?\007")},
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
936 {(int)KS_RBG, IF_EB("\033]11;?\007", ESC_STR "]11;?\007")},
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
937 {(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
938 # ifdef FEAT_TERMGUICOLORS
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
939 // These are printf strings, not terminal codes.
8985
42eb58c9da92 commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents: 8981
diff changeset
940 {(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
941 {(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
942 # endif
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10512
diff changeset
943 {(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
944 {(int)KS_CBD, IF_EB("\033[?2004l", ESC_STR "[?2004l")},
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
945 {(int)KS_CST, IF_EB("\033[22;2t", ESC_STR "[22;2t")},
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
946 {(int)KS_CRT, IF_EB("\033[23;2t", ESC_STR "[23;2t")},
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
947 {(int)KS_SSI, IF_EB("\033[22;1t", ESC_STR "[22;1t")},
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
948 {(int)KS_SRI, IF_EB("\033[23;1t", ESC_STR "[23;1t")},
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
949
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
950 {K_UP, IF_EB("\033O*A", ESC_STR "O*A")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
951 {K_DOWN, IF_EB("\033O*B", ESC_STR "O*B")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
952 {K_RIGHT, IF_EB("\033O*C", ESC_STR "O*C")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
953 {K_LEFT, IF_EB("\033O*D", ESC_STR "O*D")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
954 // An extra set of cursor keys for vt100 mode
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
955 {K_XUP, IF_EB("\033[1;*A", ESC_STR "[1;*A")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
956 {K_XDOWN, IF_EB("\033[1;*B", ESC_STR "[1;*B")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
957 {K_XRIGHT, IF_EB("\033[1;*C", ESC_STR "[1;*C")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
958 {K_XLEFT, IF_EB("\033[1;*D", ESC_STR "[1;*D")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
959 // An extra set of function keys for vt100 mode
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
960 {K_XF1, IF_EB("\033O*P", ESC_STR "O*P")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
961 {K_XF2, IF_EB("\033O*Q", ESC_STR "O*Q")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
962 {K_XF3, IF_EB("\033O*R", ESC_STR "O*R")},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
963 {K_XF4, IF_EB("\033O*S", ESC_STR "O*S")},
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
964 {K_F1, IF_EB("\033[11;*~", ESC_STR "[11;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
965 {K_F2, IF_EB("\033[12;*~", ESC_STR "[12;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
966 {K_F3, IF_EB("\033[13;*~", ESC_STR "[13;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
967 {K_F4, IF_EB("\033[14;*~", ESC_STR "[14;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
968 {K_F5, IF_EB("\033[15;*~", ESC_STR "[15;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
969 {K_F6, IF_EB("\033[17;*~", ESC_STR "[17;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
970 {K_F7, IF_EB("\033[18;*~", ESC_STR "[18;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
971 {K_F8, IF_EB("\033[19;*~", ESC_STR "[19;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
972 {K_F9, IF_EB("\033[20;*~", ESC_STR "[20;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
973 {K_F10, IF_EB("\033[21;*~", ESC_STR "[21;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
974 {K_F11, IF_EB("\033[23;*~", ESC_STR "[23;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
975 {K_F12, IF_EB("\033[24;*~", ESC_STR "[24;*~")},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 {K_S_TAB, IF_EB("\033[Z", ESC_STR "[Z")},
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
977 {K_HELP, IF_EB("\033[28;*~", ESC_STR "[28;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
978 {K_UNDO, IF_EB("\033[26;*~", ESC_STR "[26;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
979 {K_INS, IF_EB("\033[2;*~", ESC_STR "[2;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
980 {K_HOME, IF_EB("\033[1;*H", ESC_STR "[1;*H")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
981 // {K_S_HOME, IF_EB("\033O2H", ESC_STR "O2H")},
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
982 // {K_C_HOME, IF_EB("\033O5H", ESC_STR "O5H")},
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 227
diff changeset
983 {K_KHOME, IF_EB("\033[1;*~", ESC_STR "[1;*~")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
984 {K_XHOME, IF_EB("\033O*H", ESC_STR "O*H")}, // other Home
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
985 {K_ZHOME, IF_EB("\033[7;*~", ESC_STR "[7;*~")}, // other Home
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
986 {K_END, IF_EB("\033[1;*F", ESC_STR "[1;*F")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
987 // {K_S_END, IF_EB("\033O2F", ESC_STR "O2F")},
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
988 // {K_C_END, IF_EB("\033O5F", ESC_STR "O5F")},
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
989 {K_KEND, IF_EB("\033[4;*~", ESC_STR "[4;*~")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
990 {K_XEND, IF_EB("\033O*F", ESC_STR "O*F")}, // other End
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 227
diff changeset
991 {K_ZEND, IF_EB("\033[8;*~", ESC_STR "[8;*~")},
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
992 {K_PAGEUP, IF_EB("\033[5;*~", ESC_STR "[5;*~")},
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
993 {K_PAGEDOWN, IF_EB("\033[6;*~", ESC_STR "[6;*~")},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
994 {K_KPLUS, IF_EB("\033O*k", ESC_STR "O*k")}, // keypad plus
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
995 {K_KMINUS, IF_EB("\033O*m", ESC_STR "O*m")}, // keypad minus
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
996 {K_KDIVIDE, IF_EB("\033O*o", ESC_STR "O*o")}, // keypad /
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
997 {K_KMULTIPLY, IF_EB("\033O*j", ESC_STR "O*j")}, // keypad *
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
998 {K_KENTER, IF_EB("\033O*M", ESC_STR "O*M")}, // keypad Enter
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
999 {K_KPOINT, IF_EB("\033O*n", ESC_STR "O*n")}, // keypad .
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1000 {K_K0, IF_EB("\033O*p", ESC_STR "O*p")}, // keypad 0
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1001 {K_K1, IF_EB("\033O*q", ESC_STR "O*q")}, // keypad 1
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1002 {K_K2, IF_EB("\033O*r", ESC_STR "O*r")}, // keypad 2
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1003 {K_K3, IF_EB("\033O*s", ESC_STR "O*s")}, // keypad 3
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1004 {K_K4, IF_EB("\033O*t", ESC_STR "O*t")}, // keypad 4
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1005 {K_K5, IF_EB("\033O*u", ESC_STR "O*u")}, // keypad 5
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1006 {K_K6, IF_EB("\033O*v", ESC_STR "O*v")}, // keypad 6
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1007 {K_K7, IF_EB("\033O*w", ESC_STR "O*w")}, // keypad 7
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1008 {K_K8, IF_EB("\033O*x", ESC_STR "O*x")}, // keypad 8
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1009 {K_K9, IF_EB("\033O*y", ESC_STR "O*y")}, // keypad 9
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1010 {K_KDEL, IF_EB("\033[3;*~", ESC_STR "[3;*~")}, // keypad Del
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1011 {K_PS, IF_EB("\033[200~", ESC_STR "[200~")}, // paste start
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1012 {K_PE, IF_EB("\033[201~", ESC_STR "[201~")}, // paste end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1014 {BT_EXTRA_KEYS, ""},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1015 {TERMCAP2KEY('k', '0'), IF_EB("\033[10;*~", ESC_STR "[10;*~")}, // F0
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1016 {TERMCAP2KEY('F', '3'), IF_EB("\033[25;*~", ESC_STR "[25;*~")}, // F13
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1017 // F14 and F15 are missing, because they send the same codes as the undo
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1018 // and help key, although they don't work on all keyboards.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1019 {TERMCAP2KEY('F', '6'), IF_EB("\033[29;*~", ESC_STR "[29;*~")}, // F16
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1020 {TERMCAP2KEY('F', '7'), IF_EB("\033[31;*~", ESC_STR "[31;*~")}, // F17
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1021 {TERMCAP2KEY('F', '8'), IF_EB("\033[32;*~", ESC_STR "[32;*~")}, // F18
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1022 {TERMCAP2KEY('F', '9'), IF_EB("\033[33;*~", ESC_STR "[33;*~")}, // F19
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1023 {TERMCAP2KEY('F', 'A'), IF_EB("\033[34;*~", ESC_STR "[34;*~")}, // F20
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1024
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1025 {TERMCAP2KEY('F', 'B'), IF_EB("\033[42;*~", ESC_STR "[42;*~")}, // F21
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1026 {TERMCAP2KEY('F', 'C'), IF_EB("\033[43;*~", ESC_STR "[43;*~")}, // F22
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1027 {TERMCAP2KEY('F', 'D'), IF_EB("\033[44;*~", ESC_STR "[44;*~")}, // F23
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1028 {TERMCAP2KEY('F', 'E'), IF_EB("\033[45;*~", ESC_STR "[45;*~")}, // F24
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1029 {TERMCAP2KEY('F', 'F'), IF_EB("\033[46;*~", ESC_STR "[46;*~")}, // F25
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1030 {TERMCAP2KEY('F', 'G'), IF_EB("\033[47;*~", ESC_STR "[47;*~")}, // F26
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1031 {TERMCAP2KEY('F', 'H'), IF_EB("\033[48;*~", ESC_STR "[48;*~")}, // F27
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1032 {TERMCAP2KEY('F', 'I'), IF_EB("\033[49;*~", ESC_STR "[49;*~")}, // F28
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1033 {TERMCAP2KEY('F', 'J'), IF_EB("\033[50;*~", ESC_STR "[50;*~")}, // F29
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1034 {TERMCAP2KEY('F', 'K'), IF_EB("\033[51;*~", ESC_STR "[51;*~")}, // F30
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1035
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1036 {TERMCAP2KEY('F', 'L'), IF_EB("\033[52;*~", ESC_STR "[52;*~")}, // F31
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1037 {TERMCAP2KEY('F', 'M'), IF_EB("\033[53;*~", ESC_STR "[53;*~")}, // F32
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1038 {TERMCAP2KEY('F', 'N'), IF_EB("\033[54;*~", ESC_STR "[54;*~")}, // F33
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1039 {TERMCAP2KEY('F', 'O'), IF_EB("\033[55;*~", ESC_STR "[55;*~")}, // F34
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1040 {TERMCAP2KEY('F', 'P'), IF_EB("\033[56;*~", ESC_STR "[56;*~")}, // F35
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1041 {TERMCAP2KEY('F', 'Q'), IF_EB("\033[57;*~", ESC_STR "[57;*~")}, // F36
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1042 {TERMCAP2KEY('F', 'R'), IF_EB("\033[58;*~", ESC_STR "[58;*~")}, // F37
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1043 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 # if defined(UNIX) || defined(ALL_BUILTIN_TCAPS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1047 * iris-ansi for Silicon Graphics machines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1049 {(int)KS_NAME, "iris-ansi"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 {(int)KS_CE, "\033[K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1051 {(int)KS_CD, "\033[J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1052 {(int)KS_AL, "\033[L"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1053 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1054 {(int)KS_CAL, "\033[%p1%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1055 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 {(int)KS_CAL, "\033[%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 {(int)KS_DL, "\033[M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 {(int)KS_CDL, "\033[%p1%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 {(int)KS_CDL, "\033[%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1064 #if 0 // The scroll region is not working as Vim expects.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1065 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1066 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1067 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 {(int)KS_CS, "\033[%i%d;%dr"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1069 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1070 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 {(int)KS_CL, "\033[H\033[2J"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1072 {(int)KS_VE, "\033[9/y\033[12/y"}, // These aren't documented
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1073 {(int)KS_VS, "\033[10/y\033[=1h\033[=2l"}, // These aren't documented
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 {(int)KS_TI, "\033[=6h"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075 {(int)KS_TE, "\033[=6l"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 {(int)KS_SE, "\033[21;27m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 {(int)KS_SO, "\033[1;7m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078 {(int)KS_ME, "\033[m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1079 {(int)KS_MR, "\033[7m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1080 {(int)KS_MD, "\033[1m"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1081 {(int)KS_CCO, "8"}, // allow 8 colors
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1082 {(int)KS_CZH, "\033[3m"}, // italic mode on
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1083 {(int)KS_CZR, "\033[23m"}, // italic mode off
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1084 {(int)KS_US, "\033[4m"}, // underline on
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1085 {(int)KS_UE, "\033[24m"}, // underline off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 # ifdef TERMINFO
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1087 {(int)KS_CAB, "\033[4%p1%dm"}, // set background color (ANSI)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1088 {(int)KS_CAF, "\033[3%p1%dm"}, // set foreground color (ANSI)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1089 {(int)KS_CSB, "\033[102;%p1%dm"}, // set screen background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1090 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1092 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1093 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1094 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1095 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1097 {(int)KS_MS, "y"}, // guessed
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1098 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1102 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103 {(int)KS_CM, "\033[%i%d;%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1104 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1105 {(int)KS_SR, "\033M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 {(int)KS_CRI, "\033[%p1%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1108 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109 {(int)KS_CRI, "\033[%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 {(int)KS_CIS, "\033P3.y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1112 {(int)KS_CIE, "\234"}, // ST "String Terminator"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1113 {(int)KS_TS, "\033P1.y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1114 {(int)KS_FS, "\234"}, // ST "String Terminator"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1116 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1119 {(int)KS_CWS, "\033[203;%d;%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1120 {(int)KS_CWP, "\033[205;%d;%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1121 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1122 {K_UP, "\033[A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1123 {K_DOWN, "\033[B"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1124 {K_LEFT, "\033[D"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1125 {K_RIGHT, "\033[C"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1126 {K_S_UP, "\033[161q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1127 {K_S_DOWN, "\033[164q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1128 {K_S_LEFT, "\033[158q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1129 {K_S_RIGHT, "\033[167q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1130 {K_F1, "\033[001q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1131 {K_F2, "\033[002q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1132 {K_F3, "\033[003q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1133 {K_F4, "\033[004q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1134 {K_F5, "\033[005q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 {K_F6, "\033[006q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136 {K_F7, "\033[007q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 {K_F8, "\033[008q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1138 {K_F9, "\033[009q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1139 {K_F10, "\033[010q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 {K_F11, "\033[011q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1141 {K_F12, "\033[012q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1142 {K_S_F1, "\033[013q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 {K_S_F2, "\033[014q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144 {K_S_F3, "\033[015q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 {K_S_F4, "\033[016q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146 {K_S_F5, "\033[017q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1147 {K_S_F6, "\033[018q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1148 {K_S_F7, "\033[019q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1149 {K_S_F8, "\033[020q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1150 {K_S_F9, "\033[021q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1151 {K_S_F10, "\033[022q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1152 {K_S_F11, "\033[023q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 {K_S_F12, "\033[024q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 {K_INS, "\033[139q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155 {K_HOME, "\033[H"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1156 {K_END, "\033[146q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1157 {K_PAGEUP, "\033[150q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1158 {K_PAGEDOWN, "\033[154q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1159 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1161 # if defined(DEBUG) || defined(ALL_BUILTIN_TCAPS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1162 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1163 * for debugging
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1164 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1165 {(int)KS_NAME, "debug"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1166 {(int)KS_CE, "[CE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1167 {(int)KS_CD, "[CD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1168 {(int)KS_AL, "[AL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1169 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 {(int)KS_CAL, "[CAL%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 {(int)KS_CAL, "[CAL%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 {(int)KS_DL, "[DL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176 {(int)KS_CDL, "[CDL%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1177 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 {(int)KS_CDL, "[CDL%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1180 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181 {(int)KS_CS, "[%p1%dCS%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 {(int)KS_CS, "[%dCS%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184 # endif
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12429
diff changeset
1185 # ifdef TERMINFO
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 {(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
1187 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1188 {(int)KS_CSV, "[%dCSV%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191 {(int)KS_CAB, "[CAB%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 {(int)KS_CAF, "[CAF%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 {(int)KS_CSB, "[CSB%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 {(int)KS_CSF, "[CSF%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1195 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1196 {(int)KS_CAB, "[CAB%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 {(int)KS_CAF, "[CAF%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1198 {(int)KS_CSB, "[CSB%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199 {(int)KS_CSF, "[CSF%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1200 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201 {(int)KS_OP, "[OP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 {(int)KS_LE, "[LE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 {(int)KS_CL, "[CL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 {(int)KS_VI, "[VI]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 {(int)KS_VE, "[VE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206 {(int)KS_VS, "[VS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 {(int)KS_ME, "[ME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 {(int)KS_MR, "[MR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209 {(int)KS_MB, "[MB]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 {(int)KS_MD, "[MD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 {(int)KS_SE, "[SE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 {(int)KS_SO, "[SO]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 {(int)KS_UE, "[UE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 {(int)KS_US, "[US]"},
205
d292c40ca788 updated for version 7.0060
vimboss
parents: 180
diff changeset
1215 {(int)KS_UCE, "[UCE]"},
d292c40ca788 updated for version 7.0060
vimboss
parents: 180
diff changeset
1216 {(int)KS_UCS, "[UCS]"},
12317
2a8890b80923 patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents: 12307
diff changeset
1217 {(int)KS_STE, "[STE]"},
2a8890b80923 patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents: 12307
diff changeset
1218 {(int)KS_STS, "[STS]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 {(int)KS_MS, "[MS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 {(int)KS_UT, "[UT]"},
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
1221 {(int)KS_XN, "[XN]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 {(int)KS_CM, "[%p1%dCM%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 {(int)KS_CM, "[%dCM%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 {(int)KS_SR, "[SR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 {(int)KS_CRI, "[CRI%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 {(int)KS_CRI, "[CRI%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 {(int)KS_VB, "[VB]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 {(int)KS_KS, "[KS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1235 {(int)KS_KE, "[KE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 {(int)KS_TI, "[TI]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1237 {(int)KS_TE, "[TE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 {(int)KS_CIS, "[CIS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239 {(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
1240 {(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
1241 {(int)KS_CEC, "[CEC]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 {(int)KS_TS, "[TS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 {(int)KS_FS, "[FS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 {(int)KS_CWS, "[%dCWS%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 {(int)KS_CWP, "[%dCWP%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 {(int)KS_CRV, "[CRV]"},
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
1252 {(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
1253 {(int)KS_RFG, "[RFG]"},
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
1254 {(int)KS_RBG, "[RBG]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 {K_UP, "[KU]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 {K_DOWN, "[KD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 {K_LEFT, "[KL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 {K_RIGHT, "[KR]"},
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1259 {K_XUP, "[xKU]"},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1260 {K_XDOWN, "[xKD]"},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1261 {K_XLEFT, "[xKL]"},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1262 {K_XRIGHT, "[xKR]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 {K_S_UP, "[S-KU]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264 {K_S_DOWN, "[S-KD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 {K_S_LEFT, "[S-KL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 {K_C_LEFT, "[C-KL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 {K_S_RIGHT, "[S-KR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 {K_C_RIGHT, "[C-KR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1269 {K_F1, "[F1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1270 {K_XF1, "[xF1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1271 {K_F2, "[F2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272 {K_XF2, "[xF2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 {K_F3, "[F3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 {K_XF3, "[xF3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1275 {K_F4, "[F4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 {K_XF4, "[xF4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 {K_F5, "[F5]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 {K_F6, "[F6]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 {K_F7, "[F7]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 {K_F8, "[F8]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281 {K_F9, "[F9]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282 {K_F10, "[F10]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283 {K_F11, "[F11]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 {K_F12, "[F12]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 {K_S_F1, "[S-F1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 {K_S_XF1, "[S-xF1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1287 {K_S_F2, "[S-F2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 {K_S_XF2, "[S-xF2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1289 {K_S_F3, "[S-F3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1290 {K_S_XF3, "[S-xF3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1291 {K_S_F4, "[S-F4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1292 {K_S_XF4, "[S-xF4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1293 {K_S_F5, "[S-F5]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1294 {K_S_F6, "[S-F6]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1295 {K_S_F7, "[S-F7]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296 {K_S_F8, "[S-F8]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1297 {K_S_F9, "[S-F9]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1298 {K_S_F10, "[S-F10]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1299 {K_S_F11, "[S-F11]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1300 {K_S_F12, "[S-F12]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1301 {K_HELP, "[HELP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1302 {K_UNDO, "[UNDO]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1303 {K_BS, "[BS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1304 {K_INS, "[INS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1305 {K_KINS, "[KINS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1306 {K_DEL, "[DEL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1307 {K_KDEL, "[KDEL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1308 {K_HOME, "[HOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1309 {K_S_HOME, "[C-HOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1310 {K_C_HOME, "[C-HOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1311 {K_KHOME, "[KHOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1312 {K_XHOME, "[XHOME]"},
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 227
diff changeset
1313 {K_ZHOME, "[ZHOME]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1314 {K_END, "[END]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 {K_S_END, "[C-END]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 {K_C_END, "[C-END]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317 {K_KEND, "[KEND]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1318 {K_XEND, "[XEND]"},
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 227
diff changeset
1319 {K_ZEND, "[ZEND]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1320 {K_PAGEUP, "[PAGEUP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1321 {K_PAGEDOWN, "[PAGEDOWN]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1322 {K_KPAGEUP, "[KPAGEUP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 {K_KPAGEDOWN, "[KPAGEDOWN]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 {K_MOUSE, "[MOUSE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1325 {K_KPLUS, "[KPLUS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 {K_KMINUS, "[KMINUS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 {K_KDIVIDE, "[KDIVIDE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328 {K_KMULTIPLY, "[KMULTIPLY]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1329 {K_KENTER, "[KENTER]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1330 {K_KPOINT, "[KPOINT]"},
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10512
diff changeset
1331 {K_PS, "[PASTE-START]"},
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10512
diff changeset
1332 {K_PE, "[PASTE-END]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333 {K_K0, "[K0]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1334 {K_K1, "[K1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 {K_K2, "[K2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336 {K_K3, "[K3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 {K_K4, "[K4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1338 {K_K5, "[K5]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1339 {K_K6, "[K6]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1340 {K_K7, "[K7]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1341 {K_K8, "[K8]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1342 {K_K9, "[K9]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1343 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1344
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1345 #endif // NO_BUILTIN_TCAPS
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1346
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1347 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1348 * The most minimal terminal: only clear screen and cursor positioning
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1349 * Always included.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1350 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1351 {(int)KS_NAME, "dumb"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1352 {(int)KS_CL, "\014"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1353 #ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1354 {(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1355 ESC_STR "[%i%p1%d;%p2%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1356 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1357 {(int)KS_CM, IF_EB("\033[%i%d;%dH", ESC_STR "[%i%d;%dH")},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1358 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1360 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1361 * end marker
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1362 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363 {(int)KS_NAME, NULL}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1364
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1365 }; // end of builtin_termcaps
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1366
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1367 #if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
1368 static guicolor_T
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1369 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
1370 {
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
1371 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
1372 }
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1373
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1374 guicolor_T
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1375 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
1376 {
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1377 guicolor_T t;
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1378
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1379 if (*name == NUL)
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1380 return INVALCOLOR;
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1381 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
1382
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1383 if (t == INVALCOLOR)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
1384 semsg(_("E254: Cannot allocate color %s"), name);
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1385 return t;
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1386 }
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1387
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
1388 guicolor_T
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1389 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
1390 {
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
1391 return color;
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1392 }
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1393 #endif
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1394
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1395 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1397 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1398 #ifdef AMIGA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1399 # define DEFAULT_TERM (char_u *)"amiga"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1402 #ifdef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1403 # define DEFAULT_TERM (char_u *)"win32"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1406 #if defined(UNIX) && !defined(__MINT__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407 # define DEFAULT_TERM (char_u *)"ansi"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1408 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1410 #ifdef __MINT__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 # define DEFAULT_TERM (char_u *)"vt52"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1412 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414 #ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415 # define DEFAULT_TERM (char_u *)"vt320"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1418 #ifdef __BEOS__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1419 # undef DEFAULT_TERM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1420 # define DEFAULT_TERM (char_u *)"beos-ansi"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1422
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1423 #ifndef DEFAULT_TERM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1424 # define DEFAULT_TERM (char_u *)"dumb"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1425 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1426
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1427 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1428 * Term_strings contains currently used terminal output strings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1429 * It is initialized with the default values by parse_builtin_tcap().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 * The values can be changed by setting the option with the same name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1432 char_u *(term_strings[(int)KS_LAST + 1]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1433
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1434 static int need_gather = FALSE; // need to fill termleader[]
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1435 static char_u termleader[256 + 1]; // for check_termcode()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1436 #ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1437 static int check_for_codes = FALSE; // check for key code response
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1438 static int is_not_xterm = FALSE; // recognized not-really-xterm
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1439 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1440
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1441 static struct builtin_term *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1442 find_builtin_term(char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1443 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1444 struct builtin_term *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1445
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1446 p = builtin_termcaps;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447 while (p->bt_string != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1448 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1449 if (p->bt_entry == (int)KS_NAME)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451 #ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452 if (STRCMP(p->bt_string, "iris-ansi") == 0 && vim_is_iris(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1454 else if (STRCMP(p->bt_string, "xterm") == 0 && vim_is_xterm(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1457 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 #ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 if (STRCMP(p->bt_string, "vt320") == 0 && vim_is_vt300(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 if (STRCMP(term, p->bt_string) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1467 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1468 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1470
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 * Parsing of the builtin termcap entries.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1473 * Caller should check if 'name' is a valid builtin term.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 * The terminal's name is not set, as this is already done in termcapinit().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1477 parse_builtin_tcap(char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1479 struct builtin_term *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1480 char_u name[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1481 int term_8bit;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1482
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1483 p = find_builtin_term(term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1484 term_8bit = term_is_8bit(term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1485
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1486 // Do not parse if builtin term not found
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1487 if (p->bt_string == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1490 for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1492 if ((int)p->bt_entry >= 0) // KS_xx entry
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1494 // Only set the value if it wasn't set yet.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1495 if (term_strings[p->bt_entry] == NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 || term_strings[p->bt_entry] == empty_option)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 {
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1498 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1499 int opt_idx = -1;
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1500 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1501 // 8bit terminal: use CSI instead of <Esc>[
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1502 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1503 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1504 char_u *s, *t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1505
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 s = vim_strsave((char_u *)p->bt_string);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 if (s != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1508 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509 for (t = s; *t; ++t)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510 if (term_7to8bit(t))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1511 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 *t = term_7to8bit(t);
14321
6bcac243b9de patch 8.1.0176: overlapping string argument for strcpy()
Christian Brabandt <cb@256bit.org>
parents: 14282
diff changeset
1513 STRMOVE(t + 1, t + 2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1515 term_strings[p->bt_entry] = s;
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1516 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1517 opt_idx =
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1518 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1519 set_term_option_alloced(
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1520 &term_strings[p->bt_entry]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1521 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1522 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1523 else
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1524 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 term_strings[p->bt_entry] = (char_u *)p->bt_string;
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1526 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1527 opt_idx = get_term_opt_idx(&term_strings[p->bt_entry]);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1528 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1529 }
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1530 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1531 set_term_option_sctx_idx(NULL, opt_idx);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1532 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1533 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1535 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 name[0] = KEY2TERMCAP0((int)p->bt_entry);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 name[1] = KEY2TERMCAP1((int)p->bt_entry);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539 if (find_termcode(name) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1540 add_termcode(name, (char_u *)p->bt_string, term_8bit);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1543 }
11739
5c69c6d9e2eb patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11731
diff changeset
1544
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 * Set number of colors.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 * Store it as a number in t_colors.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 * Store it as a string in T_CCO (using nr_colors[]).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1551 set_color_count(int nr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1553 char_u nr_colors[20]; // string for number of colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1554
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1555 t_colors = nr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1556 if (t_colors > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 sprintf((char *)nr_colors, "%d", t_colors);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 *nr_colors = NUL;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
1560 set_string_option_direct((char_u *)"t_Co", -1, nr_colors, OPT_FREE, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561 }
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
1562
11739
5c69c6d9e2eb patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11731
diff changeset
1563 #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
1564 /*
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
1565 * 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
1566 */
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
1567 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
1568 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
1569 {
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
1570 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
1571 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1572 // Nr of colors changed, initialize highlighting and
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1573 // redraw everything. This causes a redraw, which usually
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1574 // clears the message. Try keeping the message if it
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1575 // might work.
11731
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
1576 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
1577 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
1578 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
1579 # 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
1580 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1581 int r = redraw_asap(CLEAR);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1582
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1583 log_tr("Received t_Co, redraw_asap(): %d", r);
11731
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
1584 }
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1585 #else
11731
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
1586 redraw_asap(CLEAR);
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1587 #endif
11731
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
1588 }
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
1589 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1590 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1591
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1592 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1593 static char *(key_names[]) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595 #ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1596 // Do this one first, it may cause a screen redraw.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1597 "Co",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1598 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 "ku", "kd", "kr", "kl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1600 "#2", "#4", "%i", "*7",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 "k1", "k2", "k3", "k4", "k5", "k6",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1602 "k7", "k8", "k9", "k;", "F1", "F2",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1603 "%1", "&8", "kb", "kI", "kD", "kh",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1604 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1606 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1607 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1608
13874
fc2f175e8169 patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents: 13872
diff changeset
1609 #ifdef HAVE_TGETENT
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1610 static void
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1611 get_term_entries(int *height, int *width)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1612 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1613 static struct {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1614 enum SpecialKey dest; // index in term_strings[]
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1615 char *name; // termcap name for string
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1616 } string_names[] =
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1617 { {KS_CE, "ce"}, {KS_AL, "al"}, {KS_CAL,"AL"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1618 {KS_DL, "dl"}, {KS_CDL,"DL"}, {KS_CS, "cs"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1619 {KS_CL, "cl"}, {KS_CD, "cd"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1620 {KS_VI, "vi"}, {KS_VE, "ve"}, {KS_MB, "mb"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1621 {KS_ME, "me"}, {KS_MR, "mr"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1622 {KS_MD, "md"}, {KS_SE, "se"}, {KS_SO, "so"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1623 {KS_CZH,"ZH"}, {KS_CZR,"ZR"}, {KS_UE, "ue"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1624 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1625 {KS_STE,"Te"}, {KS_STS,"Ts"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1626 {KS_CM, "cm"}, {KS_SR, "sr"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1627 {KS_CRI,"RI"}, {KS_VB, "vb"}, {KS_KS, "ks"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1628 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
18299
a9cf41bcb5d6 patch 8.1.2144: side effects when using t_ti to enable modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18295
diff changeset
1629 {KS_CTI, "TI"}, {KS_CTE, "TE"},
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1630 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1631 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_LE, "le"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1632 {KS_ND, "nd"}, {KS_OP, "op"}, {KS_CRV, "RV"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1633 {KS_VS, "vs"}, {KS_CVS, "VS"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1634 {KS_CIS, "IS"}, {KS_CIE, "IE"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1635 {KS_CSC, "SC"}, {KS_CEC, "EC"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1636 {KS_TS, "ts"}, {KS_FS, "fs"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1637 {KS_CWP, "WP"}, {KS_CWS, "WS"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1638 {KS_CSI, "SI"}, {KS_CEI, "EI"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1639 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1640 {KS_8F, "8f"}, {KS_8B, "8b"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1641 {KS_CBE, "BE"}, {KS_CBD, "BD"},
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1642 {KS_CPS, "PS"}, {KS_CPE, "PE"},
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
1643 {KS_CST, "ST"}, {KS_CRT, "RT"},
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
1644 {KS_SSI, "Si"}, {KS_SRI, "Ri"},
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1645 {(enum SpecialKey)0, NULL}
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1646 };
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1647 int i;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1648 char_u *p;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1649 static char_u tstrbuf[TBUFSZ];
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1650 char_u *tp = tstrbuf;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1651
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1652 /*
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1653 * get output strings
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1654 */
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1655 for (i = 0; string_names[i].name != NULL; ++i)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1656 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1657 if (TERM_STR(string_names[i].dest) == NULL
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1658 || TERM_STR(string_names[i].dest) == empty_option)
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1659 {
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1660 TERM_STR(string_names[i].dest) = TGETSTR(string_names[i].name, &tp);
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1661 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1662 set_term_option_sctx_idx(string_names[i].name, -1);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1663 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1664 }
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1665 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1666
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1667 // tgetflag() returns 1 if the flag is present, 0 if not and
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1668 // possibly -1 if the flag doesn't exist.
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1669 if ((T_MS == NULL || T_MS == empty_option) && tgetflag("ms") > 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1670 T_MS = (char_u *)"y";
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1671 if ((T_XS == NULL || T_XS == empty_option) && tgetflag("xs") > 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1672 T_XS = (char_u *)"y";
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1673 if ((T_XN == NULL || T_XN == empty_option) && tgetflag("xn") > 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1674 T_XN = (char_u *)"y";
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1675 if ((T_DB == NULL || T_DB == empty_option) && tgetflag("db") > 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1676 T_DB = (char_u *)"y";
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1677 if ((T_DA == NULL || T_DA == empty_option) && tgetflag("da") > 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1678 T_DA = (char_u *)"y";
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1679 if ((T_UT == NULL || T_UT == empty_option) && tgetflag("ut") > 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1680 T_UT = (char_u *)"y";
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1681
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1682 /*
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1683 * get key codes
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1684 */
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1685 for (i = 0; key_names[i] != NULL; ++i)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1686 if (find_termcode((char_u *)key_names[i]) == NULL)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1687 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1688 p = TGETSTR(key_names[i], &tp);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1689 // if cursor-left == backspace, ignore it (televideo 925)
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1690 if (p != NULL
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1691 && (*p != Ctrl_H
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1692 || key_names[i][0] != 'k'
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1693 || key_names[i][1] != 'l'))
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1694 add_termcode((char_u *)key_names[i], p, FALSE);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1695 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1696
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1697 if (*height == 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1698 *height = tgetnum("li");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1699 if (*width == 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1700 *width = tgetnum("co");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1701
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1702 /*
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1703 * Get number of colors (if not done already).
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1704 */
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1705 if (TERM_STR(KS_CCO) == NULL || TERM_STR(KS_CCO) == empty_option)
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1706 {
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1707 set_color_count(tgetnum("Co"));
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1708 #ifdef FEAT_EVAL
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1709 set_term_option_sctx_idx("Co", -1);
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1710 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1711 }
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1712
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1713 # ifndef hpux
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1714 BC = (char *)TGETSTR("bc", &tp);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1715 UP = (char *)TGETSTR("up", &tp);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1716 p = TGETSTR("pc", &tp);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1717 if (p)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1718 PC = *p;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1719 # endif
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1720 }
13874
fc2f175e8169 patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents: 13872
diff changeset
1721 #endif
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1722
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1723 static void
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
1724 report_term_error(char *error_msg, char_u *term)
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1725 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1726 struct builtin_term *termp;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1727
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1728 mch_errmsg("\r\n");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1729 if (error_msg != NULL)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1730 {
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
1731 mch_errmsg(error_msg);
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1732 mch_errmsg("\r\n");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1733 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1734 mch_errmsg("'");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1735 mch_errmsg((char *)term);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1736 mch_errmsg(_("' not known. Available builtin terminals are:"));
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1737 mch_errmsg("\r\n");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1738 for (termp = &(builtin_termcaps[0]); termp->bt_string != NULL; ++termp)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1739 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1740 if (termp->bt_entry == (int)KS_NAME)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1741 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1742 #ifdef HAVE_TGETENT
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1743 mch_errmsg(" builtin_");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1744 #else
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1745 mch_errmsg(" ");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1746 #endif
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1747 mch_errmsg(termp->bt_string);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1748 mch_errmsg("\r\n");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1749 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1750 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1751 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1752
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1753 static void
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1754 report_default_term(char_u *term)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1755 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1756 mch_errmsg(_("defaulting to '"));
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1757 mch_errmsg((char *)term);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1758 mch_errmsg("'\r\n");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1759 if (emsg_silent == 0)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1760 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1761 screen_start(); // don't know where cursor is now
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1762 out_flush();
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1763 if (!is_not_a_term())
18642
bbea1f108187 patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents: 18430
diff changeset
1764 ui_delay(2007L, TRUE);
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1765 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1766 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1767
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1768 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1769 * Set terminal options for terminal "term".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 * While doing this, until ttest(), some options may be NULL, be careful.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1774 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1775 set_termname(char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1776 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777 struct builtin_term *termp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1779 int builtin_first = p_tbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780 int try;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1781 int termcap_cleared = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 int width = 0, height = 0;
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
1784 char *error_msg = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 char_u *bs_p, *del_p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1787 // In silect mode (ex -s) we don't use the 'term' option.
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
1788 if (silent_mode)
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
1789 return OK;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
1790
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1791 detected_8bit = FALSE; // reset 8-bit detection
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1793 if (term_is_builtin(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1795 term += 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1796 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 builtin_first = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1798 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1799 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1800
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1801 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1802 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1803 * If builtin_first is TRUE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804 * 0. try builtin termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1805 * 1. try external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1806 * 2. if both fail default to a builtin terminal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1807 * If builtin_first is FALSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1808 * 1. try external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1809 * 2. try builtin termcap, if both fail default to a builtin terminal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1810 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1811 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1812 for (try = builtin_first ? 0 : 1; try < 3; ++try)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1813 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1814 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1815 * Use external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1816 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1817 if (try == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1818 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1819 char_u tbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1820
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1821 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822 * If the external termcap does not have a matching entry, try the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1823 * builtin ones.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1824 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 if ((error_msg = tgetent_error(tbuf, term)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1827 if (!termcap_cleared)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1828 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1829 clear_termoptions(); // clear old options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830 termcap_cleared = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1832
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1833 get_term_entries(&height, &width);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1834 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1836 else // try == 0 || try == 2
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1837 #endif // HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1838 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1839 * Use builtin termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1841 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1842 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1843 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1844 * If builtin termcap was already used, there is no need to search
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1845 * for the builtin termcap again, quit now.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1846 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1847 if (try == 2 && builtin_first && termcap_cleared)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1848 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1849 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1850 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1851 * search for 'term' in builtin_termcaps[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1852 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853 termp = find_builtin_term(term);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1854 if (termp->bt_string == NULL) // did not find it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1855 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1856 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1857 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1858 * If try == 0, first try the external termcap. If that is not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1859 * found we'll get back here with try == 2.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1860 * If termcap_cleared is set we used the external termcap,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1861 * don't complain about not finding the term in the builtin
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 * termcap.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1863 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1864 if (try == 0) // try external one
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865 continue;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1866 if (termcap_cleared) // found in external termcap
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1867 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1868 #endif
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1869 report_term_error(error_msg, term);
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1870
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1871 // when user typed :set term=xxx, quit here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1874 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1875 wait_return(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1876 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1877 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1878 term = DEFAULT_TERM;
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1879 report_default_term(term);
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
1880 set_string_option_direct((char_u *)"term", -1, term,
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
1881 OPT_FREE, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1882 display_errors();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1883 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1884 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1885 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1886 if (!termcap_cleared)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1887 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1888 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1889 clear_termoptions(); // clear old options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1890 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1891 termcap_cleared = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1892 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1893 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1894 parse_builtin_tcap(term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1895 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1896 if (term_is_gui(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1897 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1898 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1899 gui_init();
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1900 // If starting the GUI failed, don't do any of the other
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1901 // things for this terminal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1902 if (!gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1903 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1904 #ifdef HAVE_TGETENT
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1905 break; // don't try using external termcap
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1906 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1907 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1908 #endif // FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1909 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1910 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1911 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1912 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1913
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1914 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1915 * special: There is no info in the termcap about whether the cursor
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1916 * positioning is relative to the start of the screen or to the start of the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1917 * scrolling region. We just guess here. Only msdos pcterm is known to do it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1918 * relative.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1919 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1920 if (STRCMP(term, "pcterm") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1921 T_CCS = (char_u *)"yes";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1922 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1923 T_CCS = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1924
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1925 #ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1926 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1927 * Any "stty" settings override the default for t_kb from the termcap.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1928 * This is in os_unix.c, because it depends a lot on the version of unix that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1929 * is being used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1930 * Don't do this when the GUI is active, it uses "t_kb" and "t_kD" directly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1931 */
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
1932 # ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1933 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
1934 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1935 get_stty();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1936 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1937
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1938 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1939 * If the termcap has no entry for 'bs' and/or 'del' and the ioctl() also
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1940 * didn't work, use the default CTRL-H
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1941 * The default for t_kD is DEL, unless t_kb is DEL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1942 * The vim_strsave'd strings are probably lost forever, well it's only two
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1943 * bytes. Don't do this when the GUI is active, it uses "t_kb" and "t_kD"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1944 * directly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1945 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1946 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1947 if (!gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1948 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1949 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1950 bs_p = find_termcode((char_u *)"kb");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1951 del_p = find_termcode((char_u *)"kD");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1952 if (bs_p == NULL || *bs_p == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1953 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1954 if ((del_p == NULL || *del_p == NUL) &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1955 (bs_p == NULL || *bs_p != DEL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1956 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959 #if defined(UNIX) || defined(VMS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 term_is_xterm = vim_is_xterm(term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 #endif
18352
94e1a49b879e patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 18350
diff changeset
1962 #ifdef FEAT_TERMRESPONSE
18350
b1796f1b28fa patch 8.1.2169: terminal flags are never reset
Bram Moolenaar <Bram@vim.org>
parents: 18301
diff changeset
1963 is_not_xterm = FALSE;
b1796f1b28fa patch 8.1.2169: terminal flags are never reset
Bram Moolenaar <Bram@vim.org>
parents: 18301
diff changeset
1964 is_mac_terminal = FALSE;
18352
94e1a49b879e patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 18350
diff changeset
1965 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
1967 #if defined(UNIX) || defined(VMS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970 * The termcode for the mouse is added as a side effect in option.c.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1971 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 {
11563
2547bbe6716e patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents: 11557
diff changeset
1973 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
1974
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
1975 # ifdef FEAT_MOUSE_XTERM
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1552
diff changeset
1976 if (use_xterm_like_mouse(term))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1977 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1978 if (use_xterm_mouse())
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1979 p = NULL; // keep existing value, might be "xterm2"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1980 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1981 p = (char_u *)"xterm";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1982 }
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
1983 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1984 if (p != NULL)
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3885
diff changeset
1985 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1986 set_option_value((char_u *)"ttym", 0L, p, 0);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1987 // Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1988 // "xterm2" in check_termcode().
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3885
diff changeset
1989 reset_option_was_set((char_u *)"ttym");
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3885
diff changeset
1990 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1991 if (p == NULL
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
1992 # ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1993 || gui.in_use
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
1994 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1995 )
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1996 check_mouse_termcode(); // set mouse termcode anyway
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1997 }
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
1998 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1999 set_mouse_termcode(KS_MOUSE, (char_u *)"\233M");
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2000 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2001
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2002 #ifdef USE_TERM_CONSOLE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2003 // DEFAULT_TERM indicates that it is the machine console.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2004 if (STRCMP(term, DEFAULT_TERM) != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2005 term_console = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2006 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2007 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2008 term_console = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2009 # ifdef AMIGA
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2010 win_resize_on(); // enable window resizing reports
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2011 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2012 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2013 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2014
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2015 #if defined(UNIX) || defined(VMS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2016 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2017 * 'ttyfast' is default on for xterm, iris-ansi and a few others.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2018 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2019 if (vim_is_fastterm(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 p_tf = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2021 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2022 #ifdef USE_TERM_CONSOLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2023 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2024 * 'ttyfast' is default on consoles
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2025 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2026 if (term_console)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2027 p_tf = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2028 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2029
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2030 ttest(TRUE); // make sure we have a valid set of terminal codes
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2031
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2032 full_screen = TRUE; // we can use termcap codes from now on
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2033 set_term_defaults(); // use current values as defaults
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2034 #ifdef FEAT_TERMRESPONSE
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
2035 LOG_TR(("setting crv_status to STATUS_GET"));
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2036 crv_status.tr_progress = STATUS_GET; // Get terminal version later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2037 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2038
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2039 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2040 * Initialize the terminal with the appropriate termcap codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2041 * Set the mouse and window title if possible.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 * Don't do this when starting, need to parse the .vimrc first, because it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 * may redefine t_TI etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2044 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2045 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2046 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2047 starttermcap(); // may change terminal mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2048 setmouse(); // may start using the mouse
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2049 #ifdef FEAT_TITLE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2050 maketitle(); // may display window title
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2051 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2052 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2053
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2054 // display initial screen after ttest() checking. jw.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2055 if (width <= 0 || height <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2056 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2057 // termcap failed to report size
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2058 // set defaults, in case ui_get_shellsize() also fails
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2059 width = 80;
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
2060 #if defined(MSWIN)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2061 height = 25; // console is often 25 lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2062 #else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2063 height = 24; // most terminals are 24 lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2064 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2065 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2066 set_shellsize(width, height, FALSE); // may change Rows
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2067 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2068 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2069 if (scroll_region)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2070 scroll_region_reset(); // In case Rows changed
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2071 check_map_keycodes(); // check mappings for terminal codes used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2072
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2073 {
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9125
diff changeset
2074 bufref_T old_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2076 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2077 * Execute the TermChanged autocommands for each buffer that is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2078 * loaded.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2079 */
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9125
diff changeset
2080 set_bufref(&old_curbuf, curbuf);
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9628
diff changeset
2081 FOR_ALL_BUFFERS(curbuf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2082 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2083 if (curbuf->b_ml.ml_mfp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2084 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2085 curbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2086 }
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9125
diff changeset
2087 if (bufref_valid(&old_curbuf))
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9125
diff changeset
2088 curbuf = old_curbuf.br_buf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2089 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2090 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2091
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2092 #ifdef FEAT_TERMRESPONSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2093 may_req_termresponse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2094 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2095
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2096 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2097 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2098
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2099 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2100 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2101 * Call tgetent()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2102 * Return error message if it fails, NULL if it's OK.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2103 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2104 static char *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2105 tgetent_error(char_u *tbuf, char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2106 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2107 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2108
18838
8dabdfc7c799 patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
2109 // Note: Valgrind may report a leak here, because the library keeps one
8dabdfc7c799 patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
2110 // buffer around that we can't ever free.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2111 i = TGETENT(tbuf, term);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2112 if (i < 0 // -1 is always an error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2113 # ifdef TGETENT_ZERO_ERR
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2114 || i == 0 // sometimes zero is also an error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2115 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2116 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2117 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2118 // On FreeBSD tputs() gets a SEGV after a tgetent() which fails. Call
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2119 // tgetent() with the always existing "dumb" entry to avoid a crash or
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2120 // hang.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2121 (void)TGETENT(tbuf, "dumb");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2122
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2123 if (i < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2124 # ifdef TGETENT_ZERO_ERR
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2125 return _("E557: Cannot open termcap file");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2126 if (i == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2127 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2128 #ifdef TERMINFO
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2129 return _("E558: Terminal entry not found in terminfo");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2130 #else
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2131 return _("E559: Terminal entry not found in termcap");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2132 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2133 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2134 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2135 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2136
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2137 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2138 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2139 * Fix that here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2140 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2141 static char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2142 vim_tgetstr(char *s, char_u **pp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2144 char *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2145
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2146 p = tgetstr(s, (char **)pp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2147 if (p == (char *)-1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2148 p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149 return (char_u *)p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2150 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2151 #endif // HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2152
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
2153 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2154 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2155 * Get Columns and Rows from the termcap. Used after a window signal if the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2156 * ioctl() fails. It doesn't make sense to call tgetent each time if the "co"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2157 * and "li" entries never change. But on some systems this works.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2158 * Errors while getting the entries are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2159 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2160 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2161 getlinecol(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2162 long *cp, // pointer to columns
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2163 long *rp) // pointer to rows
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2164 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165 char_u tbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2166
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2167 if (T_NAME != NULL && *T_NAME != NUL && tgetent_error(tbuf, T_NAME) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2168 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2169 if (*cp == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2170 *cp = tgetnum("co");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2171 if (*rp == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2172 *rp = tgetnum("li");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2173 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2175 #endif // defined(HAVE_TGETENT) && defined(UNIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178 * Get a string entry from the termcap and add it to the list of termcodes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2179 * Used for <t_xx> special keys.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2180 * Give an error message for failure when not sourcing.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2181 * If force given, replace an existing entry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2182 * Return FAIL if the entry was not found, OK if the entry was added.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2183 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2184 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2185 add_termcap_entry(char_u *name, int force)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2186 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2187 char_u *term;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2188 int key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2189 struct builtin_term *termp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2190 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191 char_u *string;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2192 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2193 int builtin_first;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2194 char_u tbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2195 char_u tstrbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2196 char_u *tp = tstrbuf;
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2197 char *error_msg = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2199
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201 * If the GUI is running or will start in a moment, we only support the keys
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2202 * that the GUI can produce.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2203 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2204 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2205 if (gui.in_use || gui.starting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2206 return gui_mch_haskey(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2207 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2208
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2209 if (!force && find_termcode(name) != NULL) // it's already there
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 term = T_NAME;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2213 if (term == NULL || *term == NUL) // 'term' not defined yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2216 if (term_is_builtin(term)) // name starts with "builtin_"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2217 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2218 term += 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 builtin_first = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2222 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 builtin_first = p_tbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2226 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2227
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2228 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2229 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2230 * We can get the entry from the builtin termcap and from the external one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2231 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232 * builtin termcap first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233 * If 'ttybuiltin' is off, try external termcap first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2234 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2235 for (i = 0; i < 2; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 {
7210
08b50e436093 commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents: 6901
diff changeset
2237 if ((!builtin_first) == i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2240 * Search in builtin termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2241 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2243 termp = find_builtin_term(term);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2244 if (termp->bt_string != NULL) // found it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2246 key = TERMCAP2KEY(name[0], name[1]);
13406
4e30f3f4cb78 patch 8.0.1577: virtual replace test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13398
diff changeset
2247 ++termp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 while (termp->bt_entry != (int)KS_NAME)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2249 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250 if ((int)termp->bt_entry == key)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 add_termcode(name, (char_u *)termp->bt_string,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253 term_is_8bit(term));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2255 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 ++termp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2259 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2260 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2261 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2262 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2263 * Search in external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2264 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2265 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2266 error_msg = tgetent_error(tbuf, term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2267 if (error_msg == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2268 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2269 string = TGETSTR((char *)name, &tp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2270 if (string != NULL && *string != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2271 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2272 add_termcode(name, string, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2273 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2274 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2275 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2276 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2277 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2278 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2279
18991
847cc7932c42 patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents: 18838
diff changeset
2280 if (SOURCING_NAME == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2281 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2283 if (error_msg != NULL)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2284 emsg(error_msg);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 #endif
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2287 semsg(_("E436: No \"%s\" entry in termcap"), name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2288 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2292 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2293 term_is_builtin(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2294 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2295 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2296 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2297
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2299 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2300 * Assume that the terminal is using 8-bit controls when the name contains
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2301 * "8bit", like in "xterm-8bit".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2302 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2303 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2304 term_is_8bit(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2305 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2306 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2308
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2309 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2310 * 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
2311 * <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
2312 * <Esc>] -> OSC <M-C-]>
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2313 * <Esc>O -> <M-C-O>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2314 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2315 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2316 term_7to8bit(char_u *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2317 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2318 if (*p == ESC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2319 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2320 if (p[1] == '[')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2321 return CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2322 if (p[1] == ']')
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
2323 return OSC;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2324 if (p[1] == 'O')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2325 return 0x8f;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2326 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2327 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2328 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2329
13762
9de2b25932eb patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents: 13573
diff changeset
2330 #if defined(FEAT_GUI) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2331 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2332 term_is_gui(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2333 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2334 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2336 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2337
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2338 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2339
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2340 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2341 tltoa(unsigned long i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2342 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2343 static char_u buf[16];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2344 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2345
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2346 p = buf + 15;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2347 *p = '\0';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2348 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2349 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2350 --p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2351 *p = (char_u) (i % 10 + '0');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2352 i /= 10;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2353 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2354 while (i > 0 && p > buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2355 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2356 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2357 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2358
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2359 #ifndef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2360
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2361 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2362 * minimal tgoto() implementation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2363 * no padding and we only parse for %i %d and %+char
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2364 */
298
f9de3e679a04 updated for version 7.0078
vimboss
parents: 230
diff changeset
2365 static char *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2366 tgoto(char *cm, int x, int y)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2367 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2368 static char buf[30];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2369 char *p, *s, *e;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2370
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2371 if (!cm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2372 return "OOPS";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2373 e = buf + 29;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2374 for (s = buf; s < e && *cm; cm++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2375 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2376 if (*cm != '%')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2377 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2378 *s++ = *cm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2379 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2381 switch (*++cm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383 case 'd':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2384 p = (char *)tltoa((unsigned long)y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2385 y = x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 while (*p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2387 *s++ = *p++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2388 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2389 case 'i':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2390 x++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2391 y++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2392 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2393 case '+':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2394 *s++ = (char)(*++cm + y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2395 y = x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2396 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2397 case '%':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2398 *s++ = *cm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2399 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2400 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2401 return "OOPS";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2402 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2403 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2404 *s = '\0';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2405 return buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2406 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2407
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2408 #endif // HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2410 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2411 * Set the terminal name and initialize the terminal options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2412 * If "name" is NULL or empty, get the terminal name from the environment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2413 * If that fails, use the default terminal name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2414 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2415 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2416 termcapinit(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2417 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2418 char_u *term;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2419
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2420 if (name != NULL && *name == NUL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2421 name = NULL; // empty name is equal to no name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2422 term = name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2423
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2424 #ifdef __BEOS__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2425 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2426 * TERM environment variable is normally set to 'ansi' on the Bebox;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2427 * Since the BeBox doesn't quite support full ANSI yet, we use our
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2428 * own custom 'ansi-beos' termcap instead, unless the -T option has
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2429 * been given on the command line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2430 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2431 if (term == NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2432 && strcmp((char *)mch_getenv((char_u *)"TERM"), "ansi") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2433 term = DEFAULT_TERM;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2434 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2435 #ifndef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2436 if (term == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2437 term = mch_getenv((char_u *)"TERM");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2438 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2439 if (term == NULL || *term == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2440 term = DEFAULT_TERM;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
2441 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2442
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2443 // Set the default terminal name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2444 set_string_default("term", term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2445 set_string_default("ttytype", term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2446
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2447 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2448 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2449 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2450 set_termname(T_NAME != NULL ? T_NAME : term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2451 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2452
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2453 /*
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2454 * The number of calls to ui_write is reduced by using "out_buf".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455 */
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
2456 #define OUT_SIZE 2047
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2457
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2458 // add one to allow mch_write() in os_win32.c to append a NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2459 static char_u out_buf[OUT_SIZE + 1];
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2460
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2461 static int out_pos = 0; // number of chars in out_buf
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2462
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2463 // Since the maximum number of SGR parameters shown as a normal value range is
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2464 // 16, the escape sequence length can be 4 * 16 + lead + tail.
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2465 #define MAX_ESC_SEQ_LEN 80
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2466
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2468 * out_flush(): flush the output buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2469 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2470 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2471 out_flush(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2472 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2473 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2474
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2475 if (out_pos != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2476 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2477 // set out_pos to 0 before ui_write, to avoid recursiveness
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2478 len = out_pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479 out_pos = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2480 ui_write(out_buf, len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2481 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2482 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2483
13150
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2484 /*
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
2485 * out_flush_cursor(): flush the output buffer and redraw the cursor.
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
2486 * Does not flush recursively in the GUI to avoid slow drawing.
13150
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2487 */
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2488 void
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2489 out_flush_cursor(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2490 int force UNUSED, // when TRUE, update cursor even when not moved
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2491 int clear_selection UNUSED) // clear selection under cursor
13150
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2492 {
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2493 mch_disable_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2494 out_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2495 mch_enable_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2496 #ifdef FEAT_GUI
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2497 if (gui.in_use)
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2498 {
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2499 gui_update_cursor(force, clear_selection);
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2500 gui_may_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2501 }
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2502 #endif
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2503 }
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2504
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2505
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2506 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2507 * Sometimes a byte out of a multi-byte character is written with out_char().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2508 * To avoid flushing half of the character, call this function first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2509 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2510 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2511 out_flush_check(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2512 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2513 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2514 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2515 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2516
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2517 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2518 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2519 * out_trash(): Throw away the contents of the output buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2520 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2523 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2524 out_pos = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2526 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2528 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2529 * out_char(c): put a byte into the output buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2530 * Flush it if it becomes full.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2531 * This should not be used for outputting text on the screen (use functions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2532 * like msg_puts() and screen_putchar() for that).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2533 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2538 if (c == '\n') // turn LF into CR-LF (CRMOD doesn't seem to do this)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 out_char('\r');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2540 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2541
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2542 out_buf[out_pos++] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2544 // For testing we flush each time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 if (out_pos >= OUT_SIZE || p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2548
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 /*
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2550 * Output "c" like out_char(), but don't flush when p_wd is set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2552 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2553 out_char_nf(unsigned c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2555 out_buf[out_pos++] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2557 if (out_pos >= OUT_SIZE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2558 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2559 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2561 /*
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2562 * A never-padding out_str().
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2563 * Use this whenever you don't want to run the string through tputs().
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2564 * tputs() above is harmless, but tputs() from the termcap library
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 * is likely to strip off leading digits, that it mistakes for padding
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 * information, and "%i", "%d", etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2567 * This should only be used for writing terminal codes, not for outputting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568 * normal text (use functions like msg_puts() and screen_putchar() for that).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2570 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2571 out_str_nf(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 {
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2573 // avoid terminal strings being split up
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2574 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2575 out_flush();
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2576
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2577 while (*s)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2578 out_char_nf(*s++);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2579
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2580 // For testing we write one string at a time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581 if (p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2583 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2584
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 /*
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2586 * 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
2587 * 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
2588 * it at the wrong time.
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2589 * Note: Only for terminal strings.
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2590 */
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2591 void
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2592 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
2593 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2594 if (s != NULL && *s)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2595 {
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2596 #ifdef HAVE_TGETENT
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2597 char_u *p;
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2598 #endif
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2599
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2600 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2601 // Don't use tputs() when GUI is used, ncurses crashes.
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2602 if (gui.in_use)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2603 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2604 out_str_nf(s);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2605 return;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2606 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2607 #endif
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2608 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2609 out_flush();
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2610 #ifdef HAVE_TGETENT
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2611 for (p = s; *s; ++s)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2612 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2613 // flush just before delay command
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2614 if (*s == '$' && *(s + 1) == '<')
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2615 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2616 char_u save_c = *s;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2617 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
2618
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2619 *s = NUL;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2620 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
2621 *s = save_c;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2622 out_flush();
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2623 # ifdef ELAPSED_FUNC
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2624 // Only sleep here if we can limit this happening in
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2625 // vim_beep().
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2626 p = vim_strchr(s, '>');
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2627 if (p == NULL || duration <= 0)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2628 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2629 // can't parse the time, don't sleep here
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2630 p = s;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2631 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2632 else
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2633 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2634 ++p;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2635 do_sleep(duration);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2636 }
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2637 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2638 // Rely on the terminal library to sleep.
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2639 p = s;
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2640 # endif
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2641 break;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2642 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2643 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2644 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
2645 #else
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2646 while (*s)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2647 out_char_nf(*s++);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2648 #endif
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2649
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2650 // For testing we write one string at a time.
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2651 if (p_wd)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2652 out_flush();
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2653 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2654 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2655
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2656 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2657 * out_str(s): Put a character string a byte at a time into the output buffer.
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2658 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2659 * This should only be used for writing terminal codes, not for outputting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2660 * normal text (use functions like msg_puts() and screen_putchar() for that).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2661 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2662 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2663 out_str(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2664 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2665 if (s != NULL && *s)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2666 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2667 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2668 // Don't use tputs() when GUI is used, ncurses crashes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2669 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2670 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2671 out_str_nf(s);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2672 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2673 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2674 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2675 // avoid terminal strings being split up
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2676 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2678 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2679 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2680 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 while (*s)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2682 out_char_nf(*s++);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2683 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2684
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2685 // For testing we write one string at a time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2686 if (p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2687 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2688 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2689 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2690
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692 * cursor positioning using termcap parser. (jw)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2695 term_windgoto(int row, int col)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 OUT_STR(tgoto((char *)T_CM, col, row));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2699
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2701 term_cursor_right(int i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2702 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703 OUT_STR(tgoto((char *)T_CRI, 0, i));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2705
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2706 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2707 term_append_lines(int line_count)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2710 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2712 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2713 term_delete_lines(int line_count)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2716 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718 #if defined(HAVE_TGETENT) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2719 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2720 term_set_winpos(int x, int y)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2722 // Can't handle a negative value here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 if (x < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 x = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725 if (y < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726 y = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727 OUT_STR(tgoto((char *)T_CWP, y, x));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2728 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2729
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2730 # 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
2731 /*
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2732 * 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
2733 */
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2734 static int
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2735 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
2736 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2737 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
2738 && termcap_active
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2739 # ifdef UNIX
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2740 && (is_not_a_term() || (isatty(1) && isatty(read_cmd_fd)))
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2741 # endif
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2742 && p_ek;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2743 }
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2744
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2745 /*
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2746 * Set "status" to STATUS_SENT.
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2747 */
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2748 static void
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2749 termrequest_sent(termrequest_T *status)
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2750 {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2751 status->tr_progress = STATUS_SENT;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2752 status->tr_start = time(NULL);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2753 }
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2754
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2755 /*
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2756 * Return TRUE if any of the requests are in STATUS_SENT.
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2757 */
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2758 static int
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2759 termrequest_any_pending()
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2760 {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2761 int i;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2762 time_t now = time(NULL);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2763
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2764 for (i = 0; all_termrequests[i] != NULL; ++i)
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2765 {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2766 if (all_termrequests[i]->tr_progress == STATUS_SENT)
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2767 {
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2768 if (all_termrequests[i]->tr_start > 0 && now > 0
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2769 && all_termrequests[i]->tr_start + 2 < now)
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2770 // Sent the request more than 2 seconds ago and didn't get a
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2771 // response, assume it failed.
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2772 all_termrequests[i]->tr_progress = STATUS_FAIL;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2773 else
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2774 return TRUE;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2775 }
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2776 }
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2777 return FALSE;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2778 }
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2779
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2780 static int winpos_x = -1;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2781 static int winpos_y = -1;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2782 static int did_request_winpos = 0;
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2783
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
2784 # if defined(FEAT_EVAL) || defined(FEAT_TERMINAL) || defined(PROTO)
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2785 /*
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2786 * 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
2787 * 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
2788 */
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2789 int
13379
0f9dd1b43244 patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents: 13365
diff changeset
2790 term_get_winpos(int *x, int *y, varnumber_T timeout)
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2791 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2792 int count = 0;
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2793 int prev_winpos_x = winpos_x;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2794 int prev_winpos_y = winpos_y;
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2795
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2796 if (*T_CGP == NUL || !can_get_termresponse())
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2797 return FAIL;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2798 winpos_x = -1;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2799 winpos_y = -1;
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2800 ++did_request_winpos;
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
2801 termrequest_sent(&winpos_status);
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2802 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
2803 out_flush();
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2804
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2805 // Try reading the result for "timeout" msec.
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2806 while (count++ <= timeout / 10 && !got_int)
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2807 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2808 (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
2809 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
2810 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2811 *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
2812 *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
2813 return OK;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2814 }
18642
bbea1f108187 patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents: 18430
diff changeset
2815 ui_delay(10L, FALSE);
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2816 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2817 // Do not reset "did_request_winpos", if we timed out the response might
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2818 // still come later and we must consume it.
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2819
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2820 winpos_x = prev_winpos_x;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2821 winpos_y = prev_winpos_y;
13762
9de2b25932eb patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents: 13573
diff changeset
2822 if (timeout < 10 && prev_winpos_y >= 0 && prev_winpos_x >= 0)
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2823 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2824 // Polling: return previous values if we have them.
13398
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2825 *x = winpos_x;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2826 *y = winpos_y;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2827 return OK;
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2828 }
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
2829
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2830 return FALSE;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2831 }
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2832 # endif
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2833 # endif
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2834
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2835 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
2836 term_set_winsize(int height, int width)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2837 {
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
2838 OUT_STR(tgoto((char *)T_CWS, width, height));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2839 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2840 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2841
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2842 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2843 term_color(char_u *s, int n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2844 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2845 char buf[20];
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2846 int i = *s == CSI ? 1 : 2;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2847 // index in s[] just after <Esc>[ or CSI
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2848
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2849 // Special handling of 16 colors, because termcap can't handle it
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2850 // Also accept "\e[3%dm" for TERMINFO, it is sometimes used
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2851 // Also accept CSI instead of <Esc>[
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2852 if (n >= 8 && t_colors >= 16
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2853 && ((s[0] == ESC && s[1] == '[')
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2854 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2855 || (s[0] == ESC && s[1] == '|')
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2856 #endif
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2857 || (s[0] == CSI && (i = 1) == 1))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2858 && s[i] != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2859 && (STRCMP(s + i + 1, "%p1%dm") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2860 || STRCMP(s + i + 1, "%dm") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2861 && (s[i] == '3' || s[i] == '4'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2862 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2863 #ifdef TERMINFO
9068
0a3bc9fdea20 commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents: 9027
diff changeset
2864 char *format = "%s%s%%p1%%dm";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2865 #else
9068
0a3bc9fdea20 commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents: 9027
diff changeset
2866 char *format = "%s%s%%dm";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2867 #endif
14007
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2868 char *lead = i == 2 ? (
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2869 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
14007
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2870 s[1] == '|' ? IF_EB("\033|", ESC_STR "|") :
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
2871 #endif
14007
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2872 IF_EB("\033[", ESC_STR "[")) : "\233";
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2873 char *tail = s[i] == '3' ? (n >= 16 ? "38;5;" : "9")
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2874 : (n >= 16 ? "48;5;" : "10");
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2875
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
2876 sprintf(buf, format, lead, tail);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2877 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2878 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2879 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2880 OUT_STR(tgoto((char *)s, 0, n));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2881 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2882
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2883 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2884 term_fg_color(int n)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2885 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2886 // Use "AF" termcap entry if present, "Sf" entry otherwise
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2887 if (*T_CAF)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2888 term_color(T_CAF, n);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2889 else if (*T_CSF)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2890 term_color(T_CSF, n);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2891 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2892
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2893 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2894 term_bg_color(int n)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2895 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2896 // Use "AB" termcap entry if present, "Sb" entry otherwise
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2897 if (*T_CAB)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2898 term_color(T_CAB, n);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2899 else if (*T_CSB)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2900 term_color(T_CSB, n);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2901 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2902
18679
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2903 /*
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2904 * Return "dark" or "light" depending on the kind of terminal.
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2905 * This is just guessing! Recognized are:
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2906 * "linux" Linux console
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2907 * "screen.linux" Linux console with screen
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2908 * "cygwin.*" Cygwin shell
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2909 * "putty.*" Putty program
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2910 * We also check the COLORFGBG environment variable, which is set by
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2911 * rxvt and derivatives. This variable contains either two or three
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2912 * values separated by semicolons; we want the last value in either
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2913 * case. If this value is 0-6 or 8, our background is dark.
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2914 */
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2915 char_u *
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2916 term_bg_default(void)
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2917 {
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2918 #if defined(MSWIN)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2919 // DOS console is nearly always black
18679
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2920 return (char_u *)"dark";
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2921 #else
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2922 char_u *p;
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2923
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2924 if (STRCMP(T_NAME, "linux") == 0
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2925 || STRCMP(T_NAME, "screen.linux") == 0
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2926 || STRNCMP(T_NAME, "cygwin", 6) == 0
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2927 || STRNCMP(T_NAME, "putty", 5) == 0
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2928 || ((p = mch_getenv((char_u *)"COLORFGBG")) != NULL
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2929 && (p = vim_strrchr(p, ';')) != NULL
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2930 && ((p[1] >= '0' && p[1] <= '6') || p[1] == '8')
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2931 && p[2] == NUL))
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2932 return (char_u *)"dark";
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2933 return (char_u *)"light";
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2934 #endif
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2935 }
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
2936
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
2937 #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
2938
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2939 #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
2940 #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
2941 #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
2942
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
2943 static void
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2944 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
2945 {
8975
9c097bfad637 commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents: 8969
diff changeset
2946 #define MAX_COLOR_STR_LEN 100
9c097bfad637 commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents: 8969
diff changeset
2947 char buf[MAX_COLOR_STR_LEN];
9c097bfad637 commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents: 8969
diff changeset
2948
8981
3b51b0aeb9a3 commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents: 8977
diff changeset
2949 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
2950 (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
2951 OUT_STR(buf);
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
2952 }
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2953
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2954 void
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2955 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
2956 {
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2957 term_rgb_color(T_8F, rgb);
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2958 }
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2959
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2960 void
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2961 term_bg_rgb_color(guicolor_T rgb)
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2962 {
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2963 term_rgb_color(T_8B, rgb);
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
2964 }
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
2965 #endif
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
2966
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7307
diff changeset
2967 #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
2968 || defined(MACOS_X))) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2969 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2970 * Generic function to set window title, using t_ts and t_fs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2971 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2972 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2973 term_settitle(char_u *title)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2974 {
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2975 // t_ts takes one argument: column in status line
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2976 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2977 out_str_nf(title);
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
2978 out_str(T_FS); // set title end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2979 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2980 }
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2981
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2982 /*
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2983 * Tell the terminal to push (save) the title and/or icon, so that it can be
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2984 * popped (restored) later.
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2985 */
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2986 void
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2987 term_push_title(int which)
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2988 {
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
2989 if ((which & SAVE_RESTORE_TITLE) && T_CST != NULL && *T_CST != NUL)
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2990 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2991 OUT_STR(T_CST);
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2992 out_flush();
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2993 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2994
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
2995 if ((which & SAVE_RESTORE_ICON) && T_SSI != NULL && *T_SSI != NUL)
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2996 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2997 OUT_STR(T_SSI);
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2998 out_flush();
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
2999 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3000 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3001
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3002 /*
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3003 * Tell the terminal to pop the title and/or icon.
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3004 */
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3005 void
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3006 term_pop_title(int which)
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3007 {
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
3008 if ((which & SAVE_RESTORE_TITLE) && T_CRT != NULL && *T_CRT != NUL)
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3009 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3010 OUT_STR(T_CRT);
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3011 out_flush();
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3012 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3013
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
3014 if ((which & SAVE_RESTORE_ICON) && T_SRI != NULL && *T_SRI != NUL)
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3015 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3016 OUT_STR(T_SRI);
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3017 out_flush();
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3018 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3019 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3020 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3021
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3023 * Make sure we have a valid set or terminal options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3024 * Replace all entries that are NULL by empty_option
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3027 ttest(int pairs)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3028 {
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
3029 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
3030
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3031 check_options(); // make sure no options are NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3032
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3033 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3034 * MUST have "cm": cursor motion.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3035 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3036 if (*T_CM == NUL)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
3037 emsg(_("E437: terminal capability \"cm\" required"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3038
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3039 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3040 * if "cs" defined, use a scroll region, it's faster.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3041 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3042 if (*T_CS != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3043 scroll_region = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3044 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3045 scroll_region = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3046
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3047 if (pairs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3049 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3050 * optional pairs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3051 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3052 // TP goes to normal mode for TI (invert) and TB (bold)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3053 if (*T_ME == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3054 T_ME = T_MR = T_MD = T_MB = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3055 if (*T_SO == NUL || *T_SE == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3056 T_SO = T_SE = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3057 if (*T_US == NUL || *T_UE == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3058 T_US = T_UE = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3059 if (*T_CZH == NUL || *T_CZR == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3060 T_CZH = T_CZR = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3061
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3062 // T_VE is needed even though T_VI is not defined
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3063 if (*T_VE == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3064 T_VI = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3065
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3066 // if 'mr' or 'me' is not defined use 'so' and 'se'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3067 if (*T_ME == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3069 T_ME = T_SE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3070 T_MR = T_SO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3071 T_MD = T_SO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3072 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3073
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3074 // if 'so' or 'se' is not defined use 'mr' and 'me'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3075 if (*T_SO == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3076 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3077 T_SE = T_ME;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3078 if (*T_MR == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3079 T_SO = T_MD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3080 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3081 T_SO = T_MR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3082 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3083
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3084 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3085 if (*T_CZH == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3086 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3087 T_CZR = T_ME;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3088 if (*T_MR == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3089 T_CZH = T_MD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3090 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3091 T_CZH = T_MR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3092 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3093
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3094 // "Sb" and "Sf" come in pairs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3095 if (*T_CSB == NUL || *T_CSF == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3096 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3097 T_CSB = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3098 T_CSF = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3099 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3100
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3101 // "AB" and "AF" come in pairs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3102 if (*T_CAB == NUL || *T_CAF == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3103 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3104 T_CAB = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3105 T_CAF = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3106 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3107
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3108 // if 'Sb' and 'AB' are not defined, reset "Co"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3109 if (*T_CSB == NUL && *T_CAB == NUL)
1941
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1902
diff changeset
3110 free_one_termoption(T_CCO);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3111
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3112 // Set 'weirdinvert' according to value of 't_xs'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3113 p_wiv = (*T_XS != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3114 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3115 need_gather = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3116
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3117 // Set t_colors to the value of $COLORS or t_Co.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3118 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
3119 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
3120 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
3121 {
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
3122 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
3123
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
3124 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
3125 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
3126 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3127 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3128
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3129 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3130 || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3131 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3132 * Represent the given long_u as individual bytes, with the most significant
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3133 * byte first, and store them in dst.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3134 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3135 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3136 add_long_to_buf(long_u val, char_u *dst)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3137 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3138 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3139 int shift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3140
1883
c8f343a465a2 updated for version 7.2-180
vimboss
parents: 1787
diff changeset
3141 for (i = 1; i <= (int)sizeof(long_u); i++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3143 shift = 8 * (sizeof(long_u) - i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3144 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3145 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3146 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3147
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3148 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3149 * Interpret the next string of bytes in buf as a long integer, with the most
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3150 * significant byte first. Note that it is assumed that buf has been through
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3151 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3152 * Puts result in val, and returns the number of bytes read from buf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3153 * (between sizeof(long_u) and 2 * sizeof(long_u)), or -1 if not enough bytes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3154 * were present.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3155 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3156 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3157 get_long_from_buf(char_u *buf, long_u *val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3158 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3159 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3160 char_u bytes[sizeof(long_u)];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3161 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3162 int shift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3163
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3164 *val = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3165 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3166 if (len != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3167 {
1883
c8f343a465a2 updated for version 7.2-180
vimboss
parents: 1787
diff changeset
3168 for (i = 0; i < (int)sizeof(long_u); i++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3169 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3170 shift = 8 * (sizeof(long_u) - 1 - i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3171 *val += (long_u)bytes[i] << shift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3172 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3173 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3174 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3175 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3176 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3177
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3178 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3179 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3180 * that buf has been through inchar(). Returns the actual number of bytes used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3181 * from buf (between num_bytes and num_bytes*2), or -1 if not enough bytes were
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3182 * available.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3183 */
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
3184 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3185 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3186 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3187 int len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3188 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3189 char_u c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3190
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3191 for (i = 0; i < num_bytes; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3192 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3193 if ((c = buf[len++]) == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3194 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3195 if (c == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3196 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3197 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3198 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3199 if (buf[len++] == (int)KS_ZERO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3200 c = NUL;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3201 // else it should be KS_SPECIAL; when followed by KE_FILLER c is
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3202 // K_SPECIAL, or followed by KE_CSI and c must be CSI.
5076
19ed30f7cef7 updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
3203 if (buf[len++] == (int)KE_CSI)
19ed30f7cef7 updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
3204 c = CSI;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3205 }
1160
4d649198593f updated for version 7.1a
vimboss
parents: 1024
diff changeset
3206 else if (c == CSI && buf[len] == KS_EXTRA
4d649198593f updated for version 7.1a
vimboss
parents: 1024
diff changeset
3207 && buf[len + 1] == (int)KE_CSI)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3208 // CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3209 // the start of a special key, see add_to_input_buf_csi().
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 648
diff changeset
3210 len += 2;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3211 bytes[i] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3212 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3213 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3214 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3215
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3216 /*
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3217 * 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
3218 * too big.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3219 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3220 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3221 check_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3222 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3223 if (Rows < min_rows()) // need room for one window and command line
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3224 Rows = min_rows();
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3225 limit_screen_size();
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3226 }
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3227
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3228 /*
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3229 * 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
3230 */
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3231 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3232 limit_screen_size(void)
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3233 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3234 if (Columns < MIN_COLUMNS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3235 Columns = MIN_COLUMNS;
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3236 else if (Columns > 10000)
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3237 Columns = 10000;
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3238 if (Rows > 1000)
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3239 Rows = 1000;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3240 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3241
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
3242 /*
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
3243 * Invoked just before the screen structures are going to be (re)allocated.
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
3244 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3245 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3246 win_new_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3247 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3248 static int old_Rows = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3249 static int old_Columns = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3250
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3251 if (old_Rows != Rows || old_Columns != Columns)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3252 ui_new_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3253 if (old_Rows != Rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3254 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3255 // if 'window' uses the whole screen, keep it using that
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
3256 if (p_window == old_Rows - 1 || old_Rows == 0)
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 41
diff changeset
3257 p_window = Rows - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3258 old_Rows = Rows;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3259 shell_new_rows(); // update window sizes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3260 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3261 if (old_Columns != Columns)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3262 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3263 old_Columns = Columns;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3264 shell_new_columns(); // update window sizes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3265 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3266 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3268 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3269 * Call this function when the Vim shell has been resized in any way.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3270 * Will obtain the current size and redraw (also when size didn't change).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3271 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3272 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3273 shell_resized(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3274 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3275 set_shellsize(0, 0, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3276 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3277
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3278 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3279 * Check if the shell size changed. Handle a resize.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3280 * When the size didn't change, nothing happens.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3281 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3282 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3283 shell_resized_check(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3284 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3285 int old_Rows = Rows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3286 int old_Columns = Columns;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3287
3770
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3288 if (!exiting
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3289 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3290 // Do not get the size when executing a shell command during
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3291 // startup.
3770
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3292 && !gui.starting
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3293 #endif
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3294 )
2673
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3295 {
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3296 (void)ui_get_shellsize();
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3297 check_shellsize();
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3298 if (old_Rows != Rows || old_Columns != Columns)
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3299 shell_resized();
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3300 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3301 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3302
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3303 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3304 * Set size of the Vim shell.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3305 * If 'mustset' is TRUE, we must set Rows and Columns, do not get the real
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3306 * window size (this is used for the :win command).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3307 * If 'mustset' is FALSE, we may try to get the real window size and if
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3308 * it fails use 'width' and 'height'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3309 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3310 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3311 set_shellsize(int width, int height, int mustset)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3312 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 static int busy = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3315 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3316 * Avoid recursiveness, can happen when setting the window size causes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3317 * another window-changed signal.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3318 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3319 if (busy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3320 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3321
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3322 if (width < 0 || height < 0) // just checking...
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3323 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3324
3068
0787bb5f387b updated for version 7.3.306
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
3325 if (State == HITRETURN || State == SETWSIZE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3326 {
17330
b2918bd457cb patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents: 16961
diff changeset
3327 // postpone the resizing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3328 State = SETWSIZE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3329 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3330 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3331
17330
b2918bd457cb patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents: 16961
diff changeset
3332 if (updating_screen)
b2918bd457cb patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents: 16961
diff changeset
3333 // resizing while in update_screen() may cause a crash
b2918bd457cb patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents: 16961
diff changeset
3334 return;
b2918bd457cb patch 8.1.1664: GUI resize may cause changing Rows at a bad time
Bram Moolenaar <Bram@vim.org>
parents: 16961
diff changeset
3335
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3336 // curwin->w_buffer can be NULL when we are closing a window and the
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3337 // buffer has already been closed and removing a scrollbar causes a resize
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3338 // event. Don't resize then, it will happen after entering another buffer.
3068
0787bb5f387b updated for version 7.3.306
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
3339 if (curwin->w_buffer == NULL)
0787bb5f387b updated for version 7.3.306
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
3340 return;
0787bb5f387b updated for version 7.3.306
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
3341
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3342 ++busy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3343
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3344 #ifdef AMIGA
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3345 out_flush(); // must do this before mch_get_shellsize() for
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3346 // some obscure reason
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3347 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3348
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3349 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3350 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3351 Rows = height;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3352 Columns = width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3353 check_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3354 ui_set_shellsize(mustset);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3355 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3356 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3357 check_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3358
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3359 // The window layout used to be adjusted here, but it now happens in
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3360 // screenalloc() (also invoked from screenclear()). That is because the
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3361 // "busy" check above may skip this, but not screenalloc().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3362
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3363 if (State != ASKMORE && State != EXTERNCMD && State != CONFIRM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3364 screenclear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3365 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3366 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3367
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3368 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3369 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3370 #ifdef FEAT_TITLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3371 maketitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3372 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3373 changed_line_abv_curs();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3374 invalidate_botline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3375
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3376 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3377 * We only redraw when it's needed:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3378 * - While at the more prompt or executing an external command, don't
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3379 * redraw, but position the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3380 * - While editing the command line, only redraw that.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3381 * - in Ex mode, don't redraw anything.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3382 * - Otherwise, redraw right now, and position the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3383 * Always need to call update_screen() or screenalloc(), to make
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3384 * sure Rows/Columns and the size of ScreenLines[] is correct!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3385 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3386 if (State == ASKMORE || State == EXTERNCMD || State == CONFIRM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3387 || exmode_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3388 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3389 screenalloc(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3390 repeat_message();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3391 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3392 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3393 {
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3394 if (curwin->w_p_scb)
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3395 do_check_scrollbind(TRUE);
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3396 if (State & CMDLINE)
648
9032e4668296 updated for version 7.0189
vimboss
parents: 647
diff changeset
3397 {
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3398 update_screen(NOT_VALID);
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3399 redrawcmdline();
648
9032e4668296 updated for version 7.0189
vimboss
parents: 647
diff changeset
3400 }
9032e4668296 updated for version 7.0189
vimboss
parents: 647
diff changeset
3401 else
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3402 {
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3403 update_topline();
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3404 if (pum_visible())
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3405 {
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3406 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
3407 ins_compl_show_pum();
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3408 }
12566
33a900199c25 patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents: 12513
diff changeset
3409 update_screen(NOT_VALID);
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3410 if (redrawing())
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3411 setcursor();
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3412 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3413 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3414 cursor_on(); // redrawing may have switched it off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3415 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3416 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3417 --busy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3418 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3419
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3420 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3421 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3422 * commands and Ex mode).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3423 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3424 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3425 settmode(int tmode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3426 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3427 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3428 // don't set the term where gvim was started to any mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3429 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3430 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3431 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3432
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3433 if (full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3434 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3435 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3436 * When returning after calling a shell we want to really set the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3437 * terminal to raw mode, even though we think it already is, because
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3438 * the shell program may have reset the terminal mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439 * When we think the terminal is normal, don't try to set it to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3440 * normal again, because that causes problems (logout!) on some
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441 * machines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 if (tmode != TMODE_COOK || cur_tmode != TMODE_COOK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3444 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3445 #ifdef FEAT_TERMRESPONSE
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3446 # ifdef FEAT_GUI
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3447 if (!gui.in_use && !gui.starting)
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3448 # endif
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3449 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3450 // May need to check for T_CRV response and termcodes, it
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3451 // doesn't work in Cooked mode, an external program may get
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3452 // them.
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3453 if (tmode != TMODE_RAW && termrequest_any_pending())
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3454 (void)vpeekc_nomap();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3455 check_for_codes_from_term();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3456 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3457 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3458 if (tmode != TMODE_RAW)
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3459 mch_setmouse(FALSE); // switch mouse off
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3460 if (termcap_active)
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3461 {
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3462 if (tmode != TMODE_RAW)
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3463 out_str(T_BD); // disable bracketed paste mode
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3464 else
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3465 out_str(T_BE); // enable bracketed paste mode (should
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3466 // be before mch_settmode().
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3467 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3468 out_flush();
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3469 mch_settmode(tmode); // machine specific function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3470 cur_tmode = tmode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3471 if (tmode == TMODE_RAW)
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3472 setmouse(); // may switch mouse on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3473 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3474 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3475 #ifdef FEAT_TERMRESPONSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3476 may_req_termresponse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3477 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3479 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3481 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3482 starttermcap(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3483 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3484 if (full_screen && !termcap_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3485 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3486 out_str(T_TI); // start termcap mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3487 out_str(T_CTI); // start "raw" mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3488 out_str(T_KS); // start "keypad transmit" mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3489 out_str(T_BE); // enable bracketed paste mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3490 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3491 termcap_active = TRUE;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3492 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3493 #ifdef FEAT_TERMRESPONSE
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3494 # ifdef FEAT_GUI
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3495 if (!gui.in_use && !gui.starting)
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3496 # endif
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3497 {
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3498 may_req_termresponse();
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3499 // Immediately check for a response. If t_Co changes, we don't
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3500 // want to redraw with wrong colors first.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3501 if (crv_status.tr_progress == STATUS_SENT)
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3502 check_for_codes_from_term();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3503 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3504 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3505 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3506 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3507
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3508 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3509 stoptermcap(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3510 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3511 screen_stop_highlight();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 reset_cterm_colors();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 if (termcap_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 #ifdef FEAT_TERMRESPONSE
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3516 # ifdef FEAT_GUI
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3517 if (!gui.in_use && !gui.starting)
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3518 # endif
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3519 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3520 // May need to discard T_CRV, T_U7 or T_RBG response.
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3521 if (termrequest_any_pending())
4391
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3522 {
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3523 # ifdef UNIX
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3524 // Give the terminal a chance to respond.
4391
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3525 mch_delay(100L, FALSE);
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3526 # endif
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3527 # ifdef TCIFLUSH
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3528 // Discard data received but not read.
4391
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3529 if (exiting)
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3530 tcflush(fileno(stdin), TCIFLUSH);
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3531 # endif
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3532 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3533 // Check for termcodes first, otherwise an external program may
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3534 // get them.
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3535 check_for_codes_from_term();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3536 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3538 out_str(T_BD); // disable bracketed paste mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3539 out_str(T_KE); // stop "keypad transmit" mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3540 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3541 termcap_active = FALSE;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3542 cursor_on(); // just in case it is still off
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3543 out_str(T_CTE); // stop "raw" mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3544 out_str(T_TE); // stop termcap mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3545 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3546 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3547 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3548 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3549
5932
06c10522d321 updated for version 7.4.307
Bram Moolenaar <bram@vim.org>
parents: 5927
diff changeset
3550 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3551 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3552 * Request version string (for xterm) when needed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3553 * Only do this after switching to raw mode, otherwise the result will be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3554 * echoed.
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 620
diff changeset
3555 * Only do this after startup has finished, to avoid that the response comes
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1160
diff changeset
3556 * while executing "-c !cmd" or even after "-c quit".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3557 * Only do this after termcap mode has been started, otherwise the codes for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3558 * the cursor keys may be wrong.
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 474
diff changeset
3559 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
9e359e5759f6 updated for version 7.0177
vimboss
parents: 474
diff changeset
3560 * Insert mode.
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 41
diff changeset
3561 * On Unix only do it when both output and input are a tty (avoid writing
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 41
diff changeset
3562 * request to terminal while reading from a file).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563 * The result is caught in check_termcode().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3564 */
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 620
diff changeset
3565 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3566 may_req_termresponse(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3567 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3568 if (crv_status.tr_progress == STATUS_GET
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3569 && can_get_termresponse()
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 620
diff changeset
3570 && starting == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571 && *T_CRV != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3573 LOG_TR(("Sending CRV request"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3574 out_str(T_CRV);
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3575 termrequest_sent(&crv_status);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3576 // check for the characters now, otherwise they might be eaten by
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3577 // get_keystroke()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3578 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 (void)vpeekc_nomap();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581 }
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3582
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3583 /*
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3584 * 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
3585 * First, we move the cursor to (1, 0) and print a test ambiguous character
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3586 * \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
3587 * 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
3588 * or if it is treated as double width, that will be (1, 2).
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3589 * This function has the side effect that changes cursor position, so
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3590 * it must be called immediately after entering termcap mode.
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3591 */
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3592 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3593 may_req_ambiguous_char_width(void)
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3594 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3595 if (u7_status.tr_progress == STATUS_GET
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3596 && 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
3597 && starting == 0
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3598 && *T_U7 != NUL
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3599 && !option_was_set((char_u *)"ambiwidth"))
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3600 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3601 char_u buf[16];
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3602
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3603 LOG_TR(("Sending U7 request"));
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3604 // Do this in the second row. In the first row the returned sequence
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3605 // may be CSI 1;2R, which is the same as <S-F3>.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3606 term_windgoto(1, 0);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3607 buf[mb_char2bytes(0x25bd, buf)] = 0;
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3608 out_str(buf);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3609 out_str(T_U7);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3610 termrequest_sent(&u7_status);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3611 out_flush();
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3612
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3613 // This overwrites a few characters on the screen, a redraw is needed
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3614 // after this. Clear them out for now.
17482
6cf077f59152 patch 8.1.1739: deleted match highlighting not updated in other window
Bram Moolenaar <Bram@vim.org>
parents: 17330
diff changeset
3615 screen_stop_highlight();
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3616 term_windgoto(1, 0);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3617 out_str((char_u *)" ");
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3618 term_windgoto(0, 0);
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3619
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3620 // Need to reset the known cursor position.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3621 screen_start();
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3622
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3623 // check for the characters now, otherwise they might be eaten by
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3624 // get_keystroke()
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3625 out_flush();
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3626 (void)vpeekc_nomap();
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3627 }
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3628 }
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3629
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3630 /*
6885
ce209c5103a3 patch 7.4.762
Bram Moolenaar <bram@vim.org>
parents: 6882
diff changeset
3631 * Similar to requesting the version string: Request the terminal background
ce209c5103a3 patch 7.4.762
Bram Moolenaar <bram@vim.org>
parents: 6882
diff changeset
3632 * color when it is the right moment.
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3633 */
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3634 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3635 may_req_bg_color(void)
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3636 {
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
3637 if (can_get_termresponse() && starting == 0)
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3638 {
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3639 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
3640
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
3641 # ifdef FEAT_TERMINAL
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3642 // Only request foreground if t_RF is set.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3643 if (rfg_status.tr_progress == STATUS_GET && *T_RFG != NUL)
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3644 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3645 LOG_TR(("Sending FG request"));
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3646 out_str(T_RFG);
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3647 termrequest_sent(&rfg_status);
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3648 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
3649 }
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
3650 # 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
3651
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3652 // Only request background if t_RB is set.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3653 if (rbg_status.tr_progress == STATUS_GET && *T_RBG != NUL)
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
3654 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3655 LOG_TR(("Sending BG request"));
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
3656 out_str(T_RBG);
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3657 termrequest_sent(&rbg_status);
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3658 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
3659 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3660
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
3661 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
3662 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3663 // check for the characters now, otherwise they might be eaten by
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3664 // get_keystroke()
12232
1553d1a4bf7c patch 8.0.0996: Mac: t_RS is echoed on the screne in Terminal.app
Christian Brabandt <cb@256bit.org>
parents: 12226
diff changeset
3665 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
3666 (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
3667 }
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3668 }
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3669 }
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
3670
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3671 # ifdef DEBUG_TERMRESPONSE
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3672 static void
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3673 log_tr(const char *fmt, ...)
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3674 {
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3675 static FILE *fd_tr = NULL;
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3676 static proftime_T start;
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3677 proftime_T now;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3678 va_list ap;
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3679
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3680 if (fd_tr == NULL)
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3681 {
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3682 fd_tr = fopen("termresponse.log", "w");
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3683 profile_start(&start);
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3684 }
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3685 now = start;
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3686 profile_end(&now);
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3687 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3688 must_redraw == NOT_VALID ? "NV"
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3689 : must_redraw == CLEAR ? "CL" : " ");
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3690 va_start(ap, fmt);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3691 vfprintf(fd_tr, fmt, ap);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3692 va_end(ap);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3693 fputc('\n', fd_tr);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3694 fflush(fd_tr);
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3695 }
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
3696 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3697 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3698
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3699 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3700 * Return TRUE when saving and restoring the screen.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3701 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3702 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3703 swapping_screen(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3704 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3705 return (full_screen && *T_TI != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3706 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3707
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3708 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3709 * By outputting the 'cursor very visible' termcap code, for some windowed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3710 * terminals this makes the screen scrolled to the correct position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3711 * Used when starting Vim or returning from a shell.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3712 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3713 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3714 scroll_start(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3715 {
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
3716 if (*T_VS != NUL && *T_CVS != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3717 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3718 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
3719 out_str(T_CVS);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3720 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3721 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3722 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3723
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3724 static int cursor_is_off = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3725
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3726 /*
14581
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3727 * Enable the cursor without checking if it's already enabled.
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3728 */
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3729 void
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3730 cursor_on_force(void)
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3731 {
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3732 out_str(T_VE);
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3733 cursor_is_off = FALSE;
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3734 }
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3735
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3736 /*
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3737 * Enable the cursor if it's currently off.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3738 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3739 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3740 cursor_on(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3741 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3742 if (cursor_is_off)
14581
bb02e9e33026 patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents: 14577
diff changeset
3743 cursor_on_force();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3744 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3745
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3746 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3747 * Disable the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3748 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3749 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3750 cursor_off(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3751 {
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
3752 if (full_screen && !cursor_is_off)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3753 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3754 out_str(T_VI); // disable cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3755 cursor_is_off = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3756 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3757 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3758
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
3759 #if defined(CURSOR_SHAPE) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3760 /*
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3761 * Set cursor shape to match Insert or Replace mode.
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3762 */
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3763 void
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3764 term_cursor_mode(int forced)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3765 {
12078
d21b8f31b296 patch 8.0.0919: cursor color isn't set on startup
Christian Brabandt <cb@256bit.org>
parents: 12076
diff changeset
3766 static int showing_mode = -1;
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3767 char_u *p;
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3768
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3769 // Only do something when redrawing the screen and we can restore the
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3770 // mode.
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3771 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
3772 {
12184
76fbd85c3cea patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents: 12174
diff changeset
3773 # 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
3774 if (forced && initial_cursor_shape > 0)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3775 // Restore to initial values.
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
3776 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
3777 # endif
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3778 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
3779 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3780
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3781 if ((State & REPLACE) == REPLACE)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3782 {
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3783 if (forced || showing_mode != REPLACE)
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3784 {
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3785 if (*T_CSR != NUL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3786 p = T_CSR; // Replace mode cursor
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3787 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3788 p = T_CSI; // fall back to Insert mode cursor
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3789 if (*p != NUL)
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3790 {
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3791 out_str(p);
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3792 showing_mode = REPLACE;
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3793 }
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3794 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3795 }
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3796 else if (State & INSERT)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3797 {
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3798 if ((forced || showing_mode != INSERT) && *T_CSI != NUL)
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3799 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3800 out_str(T_CSI); // Insert mode cursor
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3801 showing_mode = INSERT;
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3802 }
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
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 else if (forced || showing_mode != NORMAL)
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3805 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3806 out_str(T_CEI); // non-Insert mode cursor
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3807 showing_mode = NORMAL;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3808 }
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3809 }
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3810
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3811 # 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
3812 void
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3813 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
3814 {
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3815 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
3816 {
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
3817 out_str(T_CSC); // set cursor color start
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3818 out_str_nf(color);
18430
0388e1991ec5 patch 8.1.2209: LF in escape codes may be expanded to CR-LF
Bram Moolenaar <Bram@vim.org>
parents: 18400
diff changeset
3819 out_str(T_CEC); // set cursor color end
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3820 out_flush();
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3821 }
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3822 }
12172
444793fce117 patch 8.0.0966: build failure without terminal feature
Christian Brabandt <cb@256bit.org>
parents: 12170
diff changeset
3823 # endif
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3824
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3825 int
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3826 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
3827 {
12261
875d7cc9b127 patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
3828 #ifdef FEAT_TERMRESPONSE
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
3829 return rbm_status.tr_progress == STATUS_GOT
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
3830 && rcs_status.tr_progress == STATUS_GOT
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3831 && 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
3832 #else
875d7cc9b127 patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
3833 return FALSE;
875d7cc9b127 patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
3834 #endif
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3835 }
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3836
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3837 /*
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
3838 * "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
3839 */
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3840 void
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3841 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
3842 {
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3843 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
3844 {
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3845 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
3846 out_flush();
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3847 }
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3848 else
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
3849 {
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3850 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
3851
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3852 // t_SH is empty: try setting just the blink state.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3853 // The blink flags are XORed together, if the initial blinking from
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3854 // style and shape differs, we need to invert the flag here.
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3855 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
3856 do_blink = !blink;
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3857
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3858 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
3859 {
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3860 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
3861 out_flush();
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3862 }
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3863 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
3864 {
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3865 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
3866 out_flush();
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
3867 }
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
3868 }
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
3869 }
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
3870 #endif
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3871
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
3872 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3873 * Set scrolling region for window 'wp'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3874 * The region starts 'off' lines from the start of the window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3875 * Also set the vertical scroll region for a vertically split window. Always
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3876 * the full width of the window, excluding the vertical separator.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3877 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3878 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3879 scroll_region_set(win_T *wp, int off)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3880 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3881 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3882 W_WINROW(wp) + off));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3883 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
3884 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
3885 wp->w_wincol));
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3886 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3887 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3888
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3889 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3890 * Reset scrolling region to the whole screen.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3891 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3892 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3893 scroll_region_reset(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3894 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3895 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3896 if (*T_CSV != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3897 OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3898 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3899 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3900
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3901
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3902 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3903 * List of terminal codes that are currently recognized.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3904 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3905
298
f9de3e679a04 updated for version 7.0078
vimboss
parents: 230
diff changeset
3906 static struct termcode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3907 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3908 char_u name[2]; // termcap name of entry
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3909 char_u *code; // terminal code (in allocated memory)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3910 int len; // STRLEN(code)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3911 int modlen; // length of part before ";*~".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3912 } *termcodes = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3913
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3914 static int tc_max_len = 0; // number of entries that termcodes[] can hold
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3915 static int tc_len = 0; // current number of entries in termcodes[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3916
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
3917 static int termcode_star(char_u *code, int len);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
3918
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3919 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3920 clear_termcodes(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3921 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3922 while (tc_len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3923 vim_free(termcodes[--tc_len].code);
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
3924 VIM_CLEAR(termcodes);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3925 tc_max_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3926
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3927 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3928 BC = (char *)empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3929 UP = (char *)empty_option;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3930 PC = NUL; // set pad character to NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3931 ospeed = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3932 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3933
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3934 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3935 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3936
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
3937 #define ATC_FROM_TERM 55
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
3938
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3939 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3940 * Add a new entry to the list of terminal codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3941 * The list is kept alphabetical for ":set termcap"
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
3942 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
3943 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3944 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3945 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3946 add_termcode(char_u *name, char_u *string, int flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3947 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3948 struct termcode *new_tc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3949 int i, j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3950 char_u *s;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
3951 int len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3952
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3953 if (string == NULL || *string == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3954 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3955 del_termcode(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3956 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3958
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
3959 #if defined(MSWIN) && !defined(FEAT_GUI)
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3960 s = vim_strnsave(string, (int)STRLEN(string) + 1);
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3961 #else
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3962 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3963 if (!gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3964 s = vim_strnsave(string, (int)STRLEN(string) + 1);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3965 else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3966 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3967 s = vim_strsave(string);
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3968 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3969 if (s == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3970 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3971
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3972 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
3973 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3974 {
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1552
diff changeset
3975 STRMOVE(s, s + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3976 s[0] = term_7to8bit(string);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3977 }
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3978
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3979 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3980 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3981 if (!gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3982 # endif
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3983 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3984 if (s[0] == K_NUL)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3985 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3986 STRMOVE(s + 1, s);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3987 s[1] = 3;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
3988 }
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3989 }
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3990 #endif
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3991
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
3992 len = (int)STRLEN(s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3993
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3994 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3995
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3996 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3997 * need to make space for more entries
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3998 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3999 if (tc_len == tc_max_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4000 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4001 tc_max_len += 20;
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
4002 new_tc = ALLOC_MULT(struct termcode, tc_max_len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4003 if (new_tc == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4004 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4005 tc_max_len -= 20;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4006 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4007 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4008 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4009 new_tc[i] = termcodes[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4010 vim_free(termcodes);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4011 termcodes = new_tc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4012 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4013
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4014 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4015 * Look for existing entry with the same name, it is replaced.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4016 * Look for an existing entry that is alphabetical higher, the new entry
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4017 * is inserted in front of it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4018 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4019 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4020 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4021 if (termcodes[i].name[0] < name[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4022 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4023 if (termcodes[i].name[0] == name[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4024 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4025 if (termcodes[i].name[1] < name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4026 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4027 /*
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4028 * Exact match: May replace old code.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4029 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4030 if (termcodes[i].name[1] == name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4031 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4032 if (flags == ATC_FROM_TERM && (j = termcode_star(
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4033 termcodes[i].code, termcodes[i].len)) > 0)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4034 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4035 // Don't replace ESC[123;*X or ESC O*X with another when
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4036 // invoked from got_code_from_term().
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4037 if (len == termcodes[i].len - j
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4038 && STRNCMP(s, termcodes[i].code, len - 1) == 0
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4039 && s[len - 1]
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4040 == termcodes[i].code[termcodes[i].len - 1])
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4041 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4042 // They are equal but for the ";*": don't add it.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4043 vim_free(s);
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4044 return;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4045 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4046 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4047 else
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4048 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4049 // Replace old code.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4050 vim_free(termcodes[i].code);
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4051 --tc_len;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4052 break;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4053 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4054 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4055 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4056 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4057 * Found alphabetical larger entry, move rest to insert new entry
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4058 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4059 for (j = tc_len; j > i; --j)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4060 termcodes[j] = termcodes[j - 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4061 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4062 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4063
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4064 termcodes[i].name[0] = name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4065 termcodes[i].name[1] = name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4066 termcodes[i].code = s;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4067 termcodes[i].len = len;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4068
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4069 // For xterm we recognize special codes like "ESC[42;*X" and "ESC O*X" that
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4070 // accept modifiers.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4071 termcodes[i].modlen = 0;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4072 j = termcode_star(s, len);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4073 if (j > 0)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4074 termcodes[i].modlen = len - 1 - j;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4075 ++tc_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4076 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4077
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4078 /*
11557
7e5e76d8d451 patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents: 11455
diff changeset
4079 * Check termcode "code[len]" for ending in ;*X or *X.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4080 * 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
4081 * Return 0 if not found, 2 for ;*X and 1 for *X.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4082 */
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4083 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4084 termcode_star(char_u *code, int len)
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4085 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4086 // Shortest is <M-O>*X. With ; shortest is <CSI>1;*X
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4087 if (len >= 3 && code[len - 2] == '*')
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4088 {
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4089 if (len >= 5 && code[len - 3] == ';')
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4090 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
4091 else
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4092 return 1;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4093 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4094 return 0;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4095 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4096
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4097 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4098 find_termcode(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4099 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4100 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4101
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4102 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4103 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4104 return termcodes[i].code;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4105 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4106 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4107
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4108 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4109 get_termcode(int i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4110 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4111 if (i >= tc_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4112 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4113 return &termcodes[i].name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4114 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4115
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4116 /*
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4117 * Returns the length of the terminal code at index 'idx'.
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4118 */
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4119 int
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4120 get_termcode_len(int idx)
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4121 {
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4122 return termcodes[idx].len;
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4123 }
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4124
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
4125 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4126 del_termcode(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4127 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4128 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4129
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4130 if (termcodes == NULL) // nothing there yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4132
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4133 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4134
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4135 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4136 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4137 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4138 del_termcode_idx(i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4139 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4140 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4141 // not found. Give error message?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4142 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4143
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4144 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4145 del_termcode_idx(int idx)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4146 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4147 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4148
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4149 vim_free(termcodes[idx].code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 --tc_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4151 for (i = idx; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 termcodes[i] = termcodes[i + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4153 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4154
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4155 #ifdef FEAT_TERMRESPONSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4156 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4157 * Called when detected that the terminal sends 8-bit codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4158 * Convert all 7-bit codes to their 8-bit equivalent.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4159 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4160 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4161 switch_to_8bit(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4162 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4163 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4164 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4165
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4166 // Only need to do something when not already using 8-bit codes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4167 if (!term_is_8bit(T_NAME))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4168 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4169 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4170 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4171 c = term_7to8bit(termcodes[i].code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4172 if (c != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4173 {
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1552
diff changeset
4174 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4175 termcodes[i].code[0] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4176 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4177 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4178 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4179 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4180 detected_8bit = TRUE;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4181 LOG_TR(("Switching to 8 bit"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4182 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4183 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4184
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4185 #ifdef CHECK_DOUBLE_CLICK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4186 static linenr_T orig_topline = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4187 # ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4188 static int orig_topfill = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4189 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4190 #endif
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12429
diff changeset
4191 #if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4192 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4193 * Checking for double clicks ourselves.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4194 * "orig_topline" is used to avoid detecting a double-click when the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4195 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4196 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4197 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4198 * Set orig_topline. Used when jumping to another window, so that a double
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4199 * click still works.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4200 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4201 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4202 set_mouse_topline(win_T *wp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4203 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4204 orig_topline = wp->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4205 # ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4206 orig_topfill = wp->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4207 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4208 }
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4209
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4210 /*
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4211 * Returns TRUE if the top line and top fill of window 'wp' matches the saved
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4212 * topline and topfill.
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4213 */
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4214 int
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4215 is_mouse_topline(win_T *wp)
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4216 {
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4217 return orig_topline == wp->w_topline
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4218 #ifdef FEAT_DIFF
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4219 && orig_topfill == wp->w_topfill
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4220 #endif
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4221 ;
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4222 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4223 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4224
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4225 /*
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4226 * Put "string[new_slen]" in typebuf, or in "buf[bufsize]" if "buf" is not NULL.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4227 * Remove "slen" bytes.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4228 * Returns FAIL for error.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4229 */
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4230 static int
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4231 put_string_in_typebuf(
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4232 int offset,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4233 int slen,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4234 char_u *string,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4235 int new_slen,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4236 char_u *buf,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4237 int bufsize,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4238 int *buflen)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4239 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4240 int extra = new_slen - slen;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4241
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4242 string[new_slen] = NUL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4243 if (buf == NULL)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4244 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4245 if (extra < 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4246 // remove matched chars, taking care of noremap
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4247 del_typebuf(-extra, offset);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4248 else if (extra > 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4249 // insert the extra space we need
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4250 ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4251
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4252 // Careful: del_typebuf() and ins_typebuf() may have reallocated
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4253 // typebuf.tb_buf[]!
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4254 mch_memmove(typebuf.tb_buf + typebuf.tb_off + offset, string,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4255 (size_t)new_slen);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4256 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4257 else
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4258 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4259 if (extra < 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4260 // remove matched characters
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4261 mch_memmove(buf + offset, buf + offset - extra,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4262 (size_t)(*buflen + offset + extra));
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4263 else if (extra > 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4264 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4265 // Insert the extra space we need. If there is insufficient
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4266 // space return -1.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4267 if (*buflen + extra + new_slen >= bufsize)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4268 return FAIL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4269 mch_memmove(buf + offset + extra, buf + offset,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4270 (size_t)(*buflen - offset));
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4271 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4272 mch_memmove(buf + offset, string, (size_t)new_slen);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4273 *buflen = *buflen + extra + new_slen;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4274 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4275 return OK;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4276 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4277
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4278 /*
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4279 * Decode a modifier number as xterm provides it into MOD_MASK bits.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4280 */
18717
14d2a210fab1 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4281 int
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4282 decode_modifiers(int n)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4283 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4284 int code = n - 1;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4285 int modifiers = 0;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4286
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4287 if (code & 1)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4288 modifiers |= MOD_MASK_SHIFT;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4289 if (code & 2)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4290 modifiers |= MOD_MASK_ALT;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4291 if (code & 4)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4292 modifiers |= MOD_MASK_CTRL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4293 if (code & 8)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4294 modifiers |= MOD_MASK_META;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4295 return modifiers;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4296 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4297
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4298 static int
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4299 modifiers2keycode(int modifiers, int *key, char_u *string)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4300 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4301 int new_slen = 0;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4302
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4303 if (modifiers != 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4304 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4305 // Some keys have the modifier included. Need to handle that here to
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4306 // make mappings work.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4307 *key = simplify_key(*key, &modifiers);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4308 if (modifiers != 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4309 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4310 string[new_slen++] = K_SPECIAL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4311 string[new_slen++] = (int)KS_MODIFIER;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4312 string[new_slen++] = modifiers;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4313 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4314 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4315 return new_slen;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4316 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4317
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4318 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4319 * Check if typebuf.tb_buf[] contains a terminal key code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4320 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4321 * + max_offset].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4322 * Return 0 for no match, -1 for partial match, > 0 for full match.
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
4323 * Return KEYLEN_REMOVED when a key code was deleted.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4324 * With a match, the match is removed, the replacement code is inserted in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4325 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4326 * returned.
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
4327 * When "buf" is not NULL, buf[bufsize] is used instead of typebuf.tb_buf[].
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
4328 * "buflen" is then the length of the string in buf[] and is updated for
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
4329 * inserts and deletes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4330 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4331 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4332 check_termcode(
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4333 int max_offset,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4334 char_u *buf,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4335 int bufsize,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4336 int *buflen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4337 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4338 char_u *tp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4339 char_u *p;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4340 int slen = 0; // init for GCC
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4341 int modslen;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4342 int len;
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
4343 int retval = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4344 int offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4345 char_u key_name[2];
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4346 int modifiers;
11565
91519a14ec1f patch 8.0.0665: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 11563
diff changeset
4347 char_u *modifiers_start = NULL;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4348 int key;
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4349 int new_slen; // Length of what will replace the termcode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4350 char_u string[MAX_KEY_CODE_LEN + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4351 int i, j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4352 int idx = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4353 int cpo_koffset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4354
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4355 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4356
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4357 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4358 * Speed up the checks for terminal codes by gathering all first bytes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4359 * used in termleader[]. Often this is just a single <Esc>.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4360 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4361 if (need_gather)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4362 gather_termleader();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4364 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4365 * Check at several positions in typebuf.tb_buf[], to catch something like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4366 * "x<Up>" that can be mapped. Stop at max_offset, because characters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4367 * after that cannot be used for mapping, and with @r commands
4223
5c0652f455c9 updated for version 7.3.863
Bram Moolenaar <bram@vim.org>
parents: 4215
diff changeset
4368 * typebuf.tb_buf[] can become very long.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4369 * This is used often, KEEP IT FAST!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4370 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4371 for (offset = 0; offset < max_offset; ++offset)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4372 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4373 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4374 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4375 if (offset >= typebuf.tb_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4376 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4377 tp = typebuf.tb_buf + typebuf.tb_off + offset;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4378 len = typebuf.tb_len - offset; // length of the input
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4379 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4380 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4381 {
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
4382 if (offset >= *buflen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4383 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4384 tp = buf + offset;
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
4385 len = *buflen - offset;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4386 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4387
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4388 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4389 * Don't check characters after K_SPECIAL, those are already
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4390 * translated terminal chars (avoid translating ~@^Hx).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4391 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4392 if (*tp == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4393 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4394 offset += 2; // there are always 2 extra characters
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4395 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4396 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4397
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4398 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4399 * Skip this position if the character does not appear as the first
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4400 * character in term_strings. This speeds up a lot, since most
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4401 * termcodes start with the same character (ESC or CSI).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4402 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4403 i = *tp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4404 for (p = termleader; *p && *p != i; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4405 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4406 if (*p == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4407 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4408
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4409 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4410 * Skip this position if p_ek is not set and tp[0] is an ESC and we
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4411 * are in Insert mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4412 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4413 if (*tp == ESC && !p_ek && (State & INSERT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4414 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4415
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4416 key_name[0] = NUL; // no key name found yet
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4417 key_name[1] = NUL; // no key name found yet
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4418 modifiers = 0; // no modifiers yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4419
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4420 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4421 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4422 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4423 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4424 * GUI special key codes are all of the form [CSI xx].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4425 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4426 if (*tp == CSI) // Special key from GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4427 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4428 if (len < 3)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4429 return -1; // Shouldn't happen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4430 slen = 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4431 key_name[0] = tp[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4432 key_name[1] = tp[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4433 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4434 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4435 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4436 #endif // FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4437 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4438 for (idx = 0; idx < tc_len; ++idx)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4439 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441 * Ignore the entry if we are not at the start of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442 * typebuf.tb_buf[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4443 * and there are not enough characters to make a match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4444 * But only when the 'K' flag is in 'cpoptions'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4445 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4446 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
4447 modifiers_start = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4448 if (cpo_koffset && offset && len < slen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4449 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450 if (STRNCMP(termcodes[idx].code, tp,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451 (size_t)(slen > len ? len : slen)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4452 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4453 if (len < slen) // got a partial sequence
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4454 return -1; // need to get more chars
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4455
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4456 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4457 * When found a keypad key, check if there is another key
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4458 * that matches and use that one. This makes <Home> to be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4459 * found instead of <kHome> when they produce the same
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4460 * key code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4461 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4462 if (termcodes[idx].name[0] == 'K'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4463 && VIM_ISDIGIT(termcodes[idx].name[1]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4464 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4465 for (j = idx + 1; j < tc_len; ++j)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4466 if (termcodes[j].len == slen &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4467 STRNCMP(termcodes[idx].code,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4468 termcodes[j].code, slen) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4469 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4470 idx = j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4471 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4472 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4473 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4474
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4475 key_name[0] = termcodes[idx].name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4476 key_name[1] = termcodes[idx].name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4477 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4478 }
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4479
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4480 /*
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4481 * Check for code with modifier, like xterm uses:
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4482 * <Esc>[123;*X (modslen == slen - 3)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4483 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4484 * When there is a modifier the * matches a number.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4485 * When there is no modifier the ;* or * is omitted.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4486 */
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4487 if (termcodes[idx].modlen > 0)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4488 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4489 modslen = termcodes[idx].modlen;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4490 if (cpo_koffset && offset && len < modslen)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4491 continue;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4492 if (STRNCMP(termcodes[idx].code, tp,
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4493 (size_t)(modslen > len ? len : modslen)) == 0)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4494 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4495 int n;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4496
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4497 if (len <= modslen) // got a partial sequence
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4498 return -1; // need to get more chars
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4499
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4500 if (tp[modslen] == termcodes[idx].code[slen - 1])
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4501 slen = modslen + 1; // no modifiers
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4502 else if (tp[modslen] != ';' && modslen == slen - 3)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4503 continue; // no match
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4504 else
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4505 {
16485
b870146e09e1 patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
4506 // Skip over the digits, the final char must
b870146e09e1 patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
4507 // follow. URXVT can use a negative value, thus
b870146e09e1 patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
4508 // also accept '-'.
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
4509 for (j = slen - 2; j < len && (isdigit(tp[j])
16485
b870146e09e1 patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
4510 || tp[j] == '-' || tp[j] == ';'); ++j)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4511 ;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4512 ++j;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4513 if (len < j) // got a partial sequence
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4514 return -1; // need to get more chars
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4515 if (tp[j - 1] != termcodes[idx].code[slen - 1])
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4516 continue; // no match
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4517
11557
7e5e76d8d451 patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents: 11455
diff changeset
4518 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
4519
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4520 // Match! Convert modifier bits.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4521 n = atoi((char *)modifiers_start);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4522 modifiers |= decode_modifiers(n);
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4523
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4524 slen = j;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4525 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4526 key_name[0] = termcodes[idx].name[0];
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4527 key_name[1] = termcodes[idx].name[1];
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4528 break;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4529 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4530 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4531 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4532 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4533
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4534 #ifdef FEAT_TERMRESPONSE
3166
12bb368fef2c updated for version 7.3.353
Bram Moolenaar <bram@vim.org>
parents: 3068
diff changeset
4535 if (key_name[0] == NUL
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4536 // Mouse codes of DEC and pterm start with <ESC>[. When
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4537 // detecting the start of these mouse codes they might as well be
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4538 // another key code or terminal response.
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4539 # ifdef FEAT_MOUSE_DEC
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4540 || key_name[0] == KS_DEC_MOUSE
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4541 # endif
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4542 # ifdef FEAT_MOUSE_PTERM
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4543 || key_name[0] == KS_PTERM_MOUSE
4223
5c0652f455c9 updated for version 7.3.863
Bram Moolenaar <bram@vim.org>
parents: 4215
diff changeset
4544 # endif
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4545 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4546 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4547 char_u *argp = tp[0] == ESC ? tp + 2 : tp + 1;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4548
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4549 /*
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4550 * Check for responses from the terminal starting with {lead}:
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4551 * "<Esc>[" or CSI followed by [0-9>?]
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4552 *
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4553 * - Xterm version string: {lead}>{x};{vers};{y}c
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4554 * Also eat other possible responses to t_RV, rxvt returns
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4555 * "{lead}?1;2c".
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4556 *
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4557 * - Cursor position report: {lead}{row};{col}R
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4558 * The final byte must be 'R'. It is used for checking the
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4559 * 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
4560 *
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4561 * - window position reply: {lead}3;{x};{y}t
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4562 *
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4563 * - key with modifiers when modifyOtherKeys is enabled:
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4564 * {lead}27;{modifier};{key}~
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4565 * {lead}{key};{modifier}u
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4566 */
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4567 if (((tp[0] == ESC && len >= 3 && tp[1] == '[')
4395
113768420756 updated for version 7.3.946
Bram Moolenaar <bram@vim.org>
parents: 4391
diff changeset
4568 || (tp[0] == CSI && len >= 2))
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4569 && (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4570 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4571 int first = -1; // optional char right after {lead}
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4572 int trail; // char that ends CSI sequence
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4573 int arg[3] = {-1, -1, -1}; // argument numbers
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4574 int argc; // number of arguments
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4575 char_u *ap = argp;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4576 int csi_len;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4577
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4578 // Check for non-digit after CSI.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4579 if (!VIM_ISDIGIT(*ap))
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4580 first = *ap++;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4581
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4582 // Find up to three argument numbers.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4583 for (argc = 0; argc < 3; )
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4584 {
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4585 if (ap >= tp + len)
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4586 {
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4587 not_enough:
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4588 LOG_TR(("Not enough characters for CSI sequence"));
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4589 return -1;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4590 }
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4591 if (*ap == ';')
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4592 arg[argc++] = -1; // omitted number
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4593 else if (VIM_ISDIGIT(*ap))
5724
2aa909427e44 updated for version 7.4.207
Bram Moolenaar <bram@vim.org>
parents: 5384
diff changeset
4594 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4595 arg[argc] = 0;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4596 for (;;)
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4597 {
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4598 if (ap >= tp + len)
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4599 goto not_enough;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4600 if (!VIM_ISDIGIT(*ap))
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4601 break;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4602 arg[argc] = arg[argc] * 10 + (*ap - '0');
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4603 ++ap;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4604 }
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4605 ++argc;
5724
2aa909427e44 updated for version 7.4.207
Bram Moolenaar <bram@vim.org>
parents: 5384
diff changeset
4606 }
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4607 if (*ap == ';')
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4608 ++ap;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4609 else
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4610 break;
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4611 }
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4612 // mrxvt has been reported to have "+" in the version. Assume
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4613 // the escape sequence ends with a letter or one of "{|}~".
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4614 while (ap < tp + len
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4615 && !(*ap >= '{' && *ap <= '~')
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4616 && !ASCII_ISALPHA(*ap))
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4617 ++ap;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4618 if (ap >= tp + len)
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4619 goto not_enough;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4620 trail = *ap;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4621 csi_len = (int)(ap - tp) + 1;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4622
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4623 // Cursor position report: Eat it when there are 2 arguments
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4624 // and it ends in 'R'. Also when u7_status is not "sent", it
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4625 // may be from a previous Vim that just exited. But not for
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4626 // <S-F3>, it sends something similar, check for row and column
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4627 // to make sense.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4628 if (first == -1 && argc == 2 && trail == 'R')
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4629 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4630 if (arg[0] == 2 && arg[1] >= 2)
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4631 {
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4632 char *aw = NULL;
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4633
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4634 LOG_TR(("Received U7 status: %s", tp));
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4635 u7_status.tr_progress = STATUS_GOT;
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4636 did_cursorhold = TRUE;
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4637 if (arg[1] == 2)
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4638 aw = "single";
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4639 else if (arg[1] == 3)
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4640 aw = "double";
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4641 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
4642 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4643 // Setting the option causes a screen redraw. Do
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4644 // that right away if possible, keeping any
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4645 // messages.
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4646 set_option_value((char_u *)"ambw", 0L,
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4647 (char_u *)aw, 0);
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4648 # ifdef DEBUG_TERMRESPONSE
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4649 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4650 int r = redraw_asap(CLEAR);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4651
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4652 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4653 }
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4654 # else
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4655 redraw_asap(CLEAR);
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
4656 # endif
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4657 }
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4658 }
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4659 key_name[0] = (int)KS_EXTRA;
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4660 key_name[1] = (int)KE_IGNORE;
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4661 slen = csi_len;
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4662 # ifdef FEAT_EVAL
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4663 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
4664 # endif
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4665 }
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4666
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4667 // Version string: Eat it when there is at least one digit and
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4668 // it ends in 'c'
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4669 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4670 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4671 int version = arg[1];
12307
50b0b3aaa545 patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents: 12295
diff changeset
4672
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4673 LOG_TR(("Received CRV response: %s", tp));
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4674 crv_status.tr_progress = STATUS_GOT;
4262
8653c39b85ea updated for version 7.3.882
Bram Moolenaar <bram@vim.org>
parents: 4223
diff changeset
4675 did_cursorhold = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4676
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4677 // If this code starts with CSI, you can bet that the
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4678 // terminal uses 8-bit codes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4679 if (tp[0] == CSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4680 switch_to_8bit();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4681
18360
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4682 // Screen sends 40500.
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4683 // rxvt sends its version number: "20703" is 2.7.3.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4684 // Ignore it for when the user has set 'term' to xterm,
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4685 // 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
4686 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
4687 version = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4688
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4689 if (first == '>' && argc == 3)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4690 {
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4691 int need_flush = FALSE;
12853
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4692 int is_iterm2 = FALSE;
15111
6fcfff2b4ba5 patch 8.1.0566: SGR not enabled for mintty because $TERM is "xterm"
Bram Moolenaar <Bram@vim.org>
parents: 14867
diff changeset
4693 int is_mintty = FALSE;
18360
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4694 int is_screen = FALSE;
15111
6fcfff2b4ba5 patch 8.1.0566: SGR not enabled for mintty because $TERM is "xterm"
Bram Moolenaar <Bram@vim.org>
parents: 14867
diff changeset
4695
6fcfff2b4ba5 patch 8.1.0566: SGR not enabled for mintty because $TERM is "xterm"
Bram Moolenaar <Bram@vim.org>
parents: 14867
diff changeset
4696 // mintty 2.9.5 sends 77;20905;0c.
6fcfff2b4ba5 patch 8.1.0566: SGR not enabled for mintty because $TERM is "xterm"
Bram Moolenaar <Bram@vim.org>
parents: 14867
diff changeset
4697 // (77 is ASCII 'M' for mintty.)
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4698 if (arg[0] == 77)
15111
6fcfff2b4ba5 patch 8.1.0566: SGR not enabled for mintty because $TERM is "xterm"
Bram Moolenaar <Bram@vim.org>
parents: 14867
diff changeset
4699 is_mintty = TRUE;
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4700
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4701 // 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
4702 if (version >= 141)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4703 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4704 LOG_TR(("Enable checking for XT codes"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4705 check_for_codes = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4706 need_gather = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4707 req_codes_from_term();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4708 }
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
4709
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4710 // libvterm sends 0;100;0
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4711 if (version == 100 && arg[0] == 0 && arg[2] == 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
4712 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4713 // If run from Vim $COLORS is set to the number of
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4714 // colors the terminal supports. Otherwise assume
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4715 // 256, libvterm supports even more.
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
4716 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
4717 may_adjust_color_count(256);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4718 // Libvterm can handle SGR mouse reporting.
12761
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4719 if (!option_was_set((char_u *)"ttym"))
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4720 set_option_value((char_u *)"ttym", 0L,
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4721 (char_u *)"sgr", 0);
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4722 }
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4723
12853
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4724 if (version == 95)
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4725 {
14282
89dcceaa5c22 patch 8.1.0157: old iTerm2 is not recognized, resulting in stray output
Christian Brabandt <cb@256bit.org>
parents: 14252
diff changeset
4726 // Mac Terminal.app sends 1;95;0
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4727 if (arg[0] == 1 && arg[2] == 0)
12853
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4728 {
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4729 is_not_xterm = TRUE;
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4730 is_mac_terminal = TRUE;
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4731 }
14282
89dcceaa5c22 patch 8.1.0157: old iTerm2 is not recognized, resulting in stray output
Christian Brabandt <cb@256bit.org>
parents: 14252
diff changeset
4732 // iTerm2 sends 0;95;0
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4733 else if (arg[0] == 0 && arg[2] == 0)
12853
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4734 is_iterm2 = TRUE;
14282
89dcceaa5c22 patch 8.1.0157: old iTerm2 is not recognized, resulting in stray output
Christian Brabandt <cb@256bit.org>
parents: 14252
diff changeset
4735 // old iTerm2 sends 0;95;
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4736 else if (arg[0] == 0 && arg[2] == -1)
14282
89dcceaa5c22 patch 8.1.0157: old iTerm2 is not recognized, resulting in stray output
Christian Brabandt <cb@256bit.org>
parents: 14252
diff changeset
4737 is_not_xterm = TRUE;
12853
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4738 }
b2a8d6ef578b patch 8.0.1303: 'ttymouse' is not set to "sgr" for Terminal.app and Iterm2
Christian Brabandt <cb@256bit.org>
parents: 12790
diff changeset
4739
18360
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4740 // screen sends 83;40500;0 83 is 'S' in ASCII.
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4741 if (arg[0] == 83)
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4742 is_screen = TRUE;
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4743
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4744 // Only set 'ttymouse' automatically if it was not set
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4745 // by the user already.
12761
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4746 if (!option_was_set((char_u *)"ttym"))
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4747 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4748 // Xterm version 277 supports SGR. Also support
18360
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4749 // Terminal.app, iTerm2, mintty, and screen 4.7+.
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4750 if ((!is_screen && version >= 277)
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4751 || is_iterm2
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4752 || is_mac_terminal
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4753 || is_mintty
e460e6878406 patch 8.1.2174: screen not recognized as supporting "sgr" mouse codes
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
4754 || (is_screen && arg[1] >= 40700))
12761
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4755 set_option_value((char_u *)"ttym", 0L,
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4756 (char_u *)"sgr", 0);
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4757 // if xterm version >= 95 use mouse dragging
16058
012f03e583e2 patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
4758 else if (version >= 95)
12761
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4759 set_option_value((char_u *)"ttym", 0L,
2c502179c75d patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
4760 (char_u *)"xterm2", 0);
11731
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
4761 }
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
4762
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4763 // Detect terminals that set $TERM to something like
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4764 // "xterm-256colors" but are not fully xterm
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4765 // compatible.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4766
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4767 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4768 // xfce4-terminal sends 1;2802;0.
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4769 // screen sends 83;40500;0
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4770 // Assuming any version number over 2500 is not an
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4771 // xterm (without the limit for rxvt and screen).
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4772 if (arg[1] >= 2500)
12295
270256b6d0b8 patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents: 12283
diff changeset
4773 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
4774
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4775 // PuTTY sends 0;136;0
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4776 // vandyke SecureCRT sends 1;136;0
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4777 else if (version == 136 && arg[2] == 0)
12295
270256b6d0b8 patch 8.0.1027: more terminals can't handle requesting cursor mode
Christian Brabandt <cb@256bit.org>
parents: 12283
diff changeset
4778 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
4779
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4780 // Konsole sends 0;115;0
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4781 else if (version == 115 && arg[0] == 0 && arg[2] == 0)
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4782 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
4783
14224
85e0442b7a04 patch 8.1.0129: still some xterm-like terminals get a stray "p"
Christian Brabandt <cb@256bit.org>
parents: 14007
diff changeset
4784 // Xterm first responded to this request at patch level
85e0442b7a04 patch 8.1.0129: still some xterm-like terminals get a stray "p"
Christian Brabandt <cb@256bit.org>
parents: 14007
diff changeset
4785 // 95, so assume anything below 95 is not xterm.
85e0442b7a04 patch 8.1.0129: still some xterm-like terminals get a stray "p"
Christian Brabandt <cb@256bit.org>
parents: 14007
diff changeset
4786 if (version < 95)
85e0442b7a04 patch 8.1.0129: still some xterm-like terminals get a stray "p"
Christian Brabandt <cb@256bit.org>
parents: 14007
diff changeset
4787 is_not_xterm = TRUE;
85e0442b7a04 patch 8.1.0129: still some xterm-like terminals get a stray "p"
Christian Brabandt <cb@256bit.org>
parents: 14007
diff changeset
4788
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4789 // Only request the cursor style if t_SH and t_RS are
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4790 // set. Only supported properly by xterm since version
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4791 // 279 (otherwise it returns 0x18).
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4792 // Not for Terminal.app, it can't handle t_RS, it
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4793 // echoes the characters to the screen.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4794 if (rcs_status.tr_progress == 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
4795 && version >= 279
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4796 && !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
4797 && *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
4798 && *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
4799 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4800 LOG_TR(("Sending cursor style request"));
12232
1553d1a4bf7c patch 8.0.0996: Mac: t_RS is echoed on the screne in Terminal.app
Christian Brabandt <cb@256bit.org>
parents: 12226
diff changeset
4801 out_str(T_CRS);
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4802 termrequest_sent(&rcs_status);
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4803 need_flush = TRUE;
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4804 }
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4805
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4806 // Only request the cursor blink mode if t_RC set. Not
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4807 // for Gnome terminal, it can't handle t_RC, it
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4808 // echoes the characters to the screen.
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4809 if (rbm_status.tr_progress == STATUS_GET
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4810 && !is_not_xterm
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4811 && *T_CRC != NUL)
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4812 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4813 LOG_TR(("Sending cursor blink mode request"));
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4814 out_str(T_CRC);
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4815 termrequest_sent(&rbm_status);
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4816 need_flush = TRUE;
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4817 }
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4818
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4819 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
4820 out_flush();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4821 }
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4822 slen = csi_len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4823 # ifdef FEAT_EVAL
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4824 set_vim_var_string(VV_TERMRESPONSE, tp, slen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4825 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4826 apply_autocmds(EVENT_TERMRESPONSE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4827 NULL, NULL, FALSE, curbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4828 key_name[0] = (int)KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4829 key_name[1] = (int)KE_IGNORE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4830 }
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
4831
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4832 // Check blinking cursor from xterm:
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4833 // {lead}?12;1$y set
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4834 // {lead}?12;2$y not set
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4835 //
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4836 // {lead} can be <Esc>[ or CSI
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4837 else if (rbm_status.tr_progress == STATUS_SENT
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4838 && first == '?'
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4839 && ap == argp + 6
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4840 && arg[0] == 12
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4841 && ap[-1] == '$'
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4842 && trail == 'y')
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4843 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4844 initial_cursor_blink = (arg[1] == '1');
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4845 rbm_status.tr_progress = STATUS_GOT;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4846 LOG_TR(("Received cursor blinking mode response: %s", tp));
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4847 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
4848 key_name[1] = (int)KE_IGNORE;
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4849 slen = csi_len;
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4850 # ifdef FEAT_EVAL
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
4851 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
4852 # endif
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4853 }
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4854
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4855 // Check for a window position response from the terminal:
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4856 // {lead}3;{x};{y}t
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4857 else if (did_request_winpos && argc == 3 && arg[0] == 3
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4858 && trail == 't')
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
4859 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4860 winpos_x = arg[1];
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4861 winpos_y = arg[2];
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4862 // got finished code: consume it
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4863 key_name[0] = (int)KS_EXTRA;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4864 key_name[1] = (int)KE_IGNORE;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4865 slen = csi_len;
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4866
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4867 if (--did_request_winpos <= 0)
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4868 winpos_status.tr_progress = STATUS_GOT;
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
4869 }
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4870
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4871 // Key with modifier:
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4872 // {lead}27;{modifier};{key}~
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4873 // {lead}{key};{modifier}u
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4874 else if ((arg[0] == 27 && argc == 3 && trail == '~')
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4875 || (argc == 2 && trail == 'u'))
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4876 {
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4877 seenModifyOtherKeys = TRUE;
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4878 if (trail == 'u')
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4879 key = arg[0];
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4880 else
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4881 key = arg[2];
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4882
18295
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4883 modifiers = decode_modifiers(arg[1]);
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4884
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4885 // Some keys already have Shift included, pass them as
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4886 // normal keys. Not when Ctrl is also used, because <C-H>
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4887 // and <C-S-H> are different.
18295
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4888 if (modifiers == MOD_MASK_SHIFT
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4889 && ((key >= '@' && key <= 'Z')
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4890 || key == '^' || key == '_'
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4891 || (key >= '{' && key <= '~')))
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4892 modifiers = 0;
43e9523f6d84 patch 8.1.2142: some key mappings do not work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents: 18279
diff changeset
4893
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4894 // When used with Ctrl we always make a letter upper case,
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4895 // so that mapping <C-H> and <C-h> are the same. Typing
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4896 // <C-S-H> also uses "H" but modifier is different.
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4897 if ((modifiers & MOD_MASK_CTRL) && ASCII_ISALPHA(key))
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4898 key = TOUPPER_ASC(key);
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
4899
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4900 // insert modifiers with KS_MODIFIER
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4901 new_slen = modifiers2keycode(modifiers, &key, string);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4902 slen = csi_len;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4903
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4904 if (has_mbyte)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4905 new_slen += (*mb_char2bytes)(key, string + new_slen);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4906 else
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4907 string[new_slen++] = key;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4908
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4909 if (put_string_in_typebuf(offset, slen, string, new_slen,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4910 buf, bufsize, buflen) == FAIL)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4911 return -1;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4912 return len + new_slen - slen + offset;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4913 }
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4914
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4915 // else: Unknown CSI sequence. We could drop it, but then the
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
4916 // user can't create a map for it.
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4917 }
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4918
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4919 // Check for fore/background color response from the terminal:
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4920 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4921 // {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4922 // or {lead}{code};rgb:{rr}/{gg}/{bb}{tail}
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4923 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4924 // {code} is 10 for foreground, 11 for background
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4925 // {lead} can be <Esc>] or OSC
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4926 // {tail} can be '\007', <Esc>\ or STERM.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4927 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4928 // Consume any code that starts with "{lead}11;", it's also
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4929 // possible that "rgba" is following.
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4930 else if ((*T_RBG != NUL || *T_RFG != NUL)
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4931 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4932 || tp[0] == OSC))
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4933 {
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4934 j = 1 + (tp[0] == ESC);
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4935 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
4936 || (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
4937 || argp[2] != ';'))
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4938 i = 0; // no match
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4939 else
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4940 for (i = j; i < len; ++i)
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4941 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4942 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4943 {
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4944 int is_bg = argp[1] == '1';
16926
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4945 int is_4digit = i - j >= 21 && tp[j + 11] == '/'
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4946 && tp[j + 16] == '/';
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4947
16961
43c942a1938c patch 8.1.1481: length for two-digit rgb termresponse is off by one
Bram Moolenaar <Bram@vim.org>
parents: 16940
diff changeset
4948 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
16926
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4949 && (is_4digit
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4950 || (tp[j + 9] == '/' && tp[i + 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
4951 {
16940
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4952 char_u *tp_r = tp + j + 7;
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4953 char_u *tp_g = tp + j + (is_4digit ? 12 : 10);
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4954 char_u *tp_b = tp + j + (is_4digit ? 17 : 13);
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
4955 # ifdef FEAT_TERMINAL
16926
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4956 int rval, gval, bval;
bcc25f1a264d patch 8.1.1464: only 4-digit rgb termresponse is recognized
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
4957
16940
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4958 rval = hexhex2nr(tp_r);
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4959 gval = hexhex2nr(tp_b);
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4960 bval = hexhex2nr(tp_g);
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
4961 # 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
4962 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
4963 {
16940
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4964 char *new_bg_val = (3 * '6' < *tp_r + *tp_g +
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4965 *tp_b) ? "light" : "dark";
11453
ec47e673a021 patch 8.0.0610: the screen is redrawn when default 'background' is detected
Christian Brabandt <cb@256bit.org>
parents: 11368
diff changeset
4966
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4967 LOG_TR(("Received RBG response: %s", tp));
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4968 rbg_status.tr_progress = STATUS_GOT;
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
4969 # 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
4970 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
4971 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
4972 bg_b = bval;
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
4973 # 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
4974 if (!option_was_set((char_u *)"bg")
16940
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4975 && STRCMP(p_bg, new_bg_val) != 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
4976 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4977 // value differs, apply it
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4978 set_option_value((char_u *)"bg", 0L,
16940
1c264ca8f2e8 patch 8.1.1471: 'background' not correctly set for 2-digit rgb termresponse
Bram Moolenaar <Bram@vim.org>
parents: 16936
diff changeset
4979 (char_u *)new_bg_val, 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
4980 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
4981 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
4982 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4983 }
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
4984 # 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
4985 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
4986 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4987 LOG_TR(("Received RFG response: %s", tp));
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
4988 rfg_status.tr_progress = STATUS_GOT;
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4989 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
4990 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
4991 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
4992 }
16245
e0a6298bd70f patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents: 16200
diff changeset
4993 # endif
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4994 }
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4995
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4996 // got finished code: consume it
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4997 key_name[0] = (int)KS_EXTRA;
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4998 key_name[1] = (int)KE_IGNORE;
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
4999 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
5000 # 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
5001 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
5002 : VV_TERMRFGRESP, tp, slen);
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
5003 # endif
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5004 break;
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5005 }
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5006 if (i == len)
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
5007 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5008 LOG_TR(("not enough characters for RB"));
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5009 return -1;
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
5010 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5011 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5012
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5013 // Check for key code response from xterm:
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5014 // {lead}{flag}+r<hex bytes><{tail}
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5015 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5016 // {lead} can be <Esc>P or DCS
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5017 // {flag} can be '0' or '1'
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5018 // {tail} can be Esc>\ or STERM
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5019 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5020 // Check for cursor shape response from xterm:
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5021 // {lead}1$r<digit> q{tail}
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5022 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5023 // {lead} can be <Esc>P or DCS
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5024 // {tail} can be <Esc>\ or STERM
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5025 //
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5026 // Consume any code that starts with "{lead}.+r" or "{lead}.$r".
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
5027 else if ((check_for_codes || rcs_status.tr_progress == STATUS_SENT)
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5028 && ((tp[0] == ESC && len >= 2 && tp[1] == 'P')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5029 || tp[0] == DCS))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5030 {
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5031 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
5032 if (len < j + 3)
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5033 i = len; // need more chars
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
5034 else if ((argp[1] != '+' && argp[1] != '$') || argp[2] != 'r')
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5035 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
5036 else if (argp[1] == '+')
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5037 // key code response
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5038 for (i = j; i < len; ++i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5039 {
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5040 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5041 || tp[i] == STERM)
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5042 {
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5043 if (i - j >= 3)
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5044 got_code_from_term(tp + j, i);
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5045 key_name[0] = (int)KS_EXTRA;
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5046 key_name[1] = (int)KE_IGNORE;
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5047 slen = i + 1 + (tp[i] == ESC);
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5048 break;
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5049 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5050 }
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5051 else
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
5052 {
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5053 // Probably the cursor shape response. Make sure that "i"
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5054 // is equal to "len" when there are not sufficient
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5055 // characters.
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5056 for (i = j + 3; i < len; ++i)
12170
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
5057 {
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5058 if (i - j == 3 && !isdigit(tp[i]))
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5059 break;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5060 if (i - j == 4 && tp[i] != ' ')
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5061 break;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5062 if (i - j == 5 && tp[i] != 'q')
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5063 break;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5064 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5065 break;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5066 if ((i - j == 6 && tp[i] == STERM)
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5067 || (i - j == 7 && tp[i] == '\\'))
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5068 {
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5069 int number = argp[3] - '0';
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5070
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5071 // 0, 1 = block blink, 2 = block
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5072 // 3 = underline blink, 4 = underline
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5073 // 5 = vertical bar blink, 6 = vertical bar
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5074 number = number == 0 ? 1 : number;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5075 initial_cursor_shape = (number + 1) / 2;
16936
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5076 // The blink flag is actually inverted, compared to
73e6ed2f69a2 patch 8.1.1469: no test for checking the cursor style response
Bram Moolenaar <Bram@vim.org>
parents: 16926
diff changeset
5077 // the value set with T_SH.
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5078 initial_cursor_shape_blink =
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
5079 (number & 1) ? FALSE : TRUE;
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
5080 rcs_status.tr_progress = STATUS_GOT;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5081 LOG_TR(("Received cursor shape response: %s", tp));
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5082
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5083 key_name[0] = (int)KS_EXTRA;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5084 key_name[1] = (int)KE_IGNORE;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5085 slen = i + 1;
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
5086 # ifdef FEAT_EVAL
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5087 set_vim_var_string(VV_TERMSTYLERESP, tp, slen);
12273
c952a6af25e0 patch 8.0.1016: gnome terminal echoes t_RC
Christian Brabandt <cb@256bit.org>
parents: 12261
diff changeset
5088 # endif
13365
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5089 break;
c6bafddbfa33 patch 8.0.1556: may not parse the t_RS response correctly
Christian Brabandt <cb@256bit.org>
parents: 13316
diff changeset
5090 }
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
5091 }
1345621ecdfb patch 8.0.0965: not restoring cursor shape after it was set in a terminal
Christian Brabandt <cb@256bit.org>
parents: 12078
diff changeset
5092 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5093
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5094 if (i == len)
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
5095 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5096 // These codes arrive many together, each code can be
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5097 // truncated at any point.
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5098 LOG_TR(("not enough characters for XT"));
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
5099 return -1;
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
5100 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5101 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5102 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5103 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5104
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5105 if (key_name[0] == NUL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5106 continue; // No match at this position, try next one
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5107
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5108 // We only get here when we have a complete termcode match
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5109
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5110 #ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5111 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5112 * Only in the GUI: Fetch the pointer coordinates of the scroll event
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5113 * so that we know which window to scroll later.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5114 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5115 if (gui.in_use
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5116 && key_name[0] == (int)KS_EXTRA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5117 && (key_name[1] == (int)KE_X1MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5118 || 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
5119 || key_name[1] == (int)KE_MOUSELEFT
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2347
diff changeset
5120 || key_name[1] == (int)KE_MOUSERIGHT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5121 || key_name[1] == (int)KE_MOUSEDOWN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5122 || key_name[1] == (int)KE_MOUSEUP))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5123 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5124 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5125 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4);
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5126
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5127 if (num_bytes == -1) // not enough coordinates
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5128 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5129 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5130 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5131 slen += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5132 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5133 else
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5134 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5135 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5136 * If it is a mouse click, get the coordinates.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5137 */
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5138 if (key_name[0] == KS_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5139 #ifdef FEAT_MOUSE_GPM
16523
a72ad8a8b249 patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents: 16501
diff changeset
5140 || key_name[0] == KS_GPM_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5141 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5142 #ifdef FEAT_MOUSE_JSB
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5143 || key_name[0] == KS_JSBTERM_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5144 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5145 #ifdef FEAT_MOUSE_NET
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5146 || key_name[0] == KS_NETTERM_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5147 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5148 #ifdef FEAT_MOUSE_DEC
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5149 || key_name[0] == KS_DEC_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5150 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5151 #ifdef FEAT_MOUSE_PTERM
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5152 || key_name[0] == KS_PTERM_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5153 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5154 #ifdef FEAT_MOUSE_URXVT
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5155 || key_name[0] == KS_URXVT_MOUSE
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
5156 #endif
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
5157 || key_name[0] == KS_SGR_MOUSE
16058
012f03e583e2 patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
5158 || key_name[0] == KS_SGR_MOUSE_RELEASE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5159 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5160 if (check_termcode_mouse(tp, &slen, key_name, modifiers_start, idx,
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5161 &modifiers) == -1)
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5162 return -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5163 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5164
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5165 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5166 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5167 * If using the GUI, then we get menu and scrollbar events.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5168 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5169 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5170 * four bytes which are to be taken as a pointer to the vimmenu_T
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5171 * structure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5172 *
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1160
diff changeset
5173 * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr"
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5174 * is one byte with the tab index.
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5175 *
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5176 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5177 * by one byte representing the scrollbar number, and then four bytes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5178 * representing a long_u which is the new value of the scrollbar.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5179 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5180 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5181 * KE_FILLER followed by four bytes representing a long_u which is the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5182 * new value of the scrollbar.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5183 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5184 # ifdef FEAT_MENU
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5185 else if (key_name[0] == (int)KS_MENU)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5186 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5187 long_u val;
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5188 int num_bytes = get_long_from_buf(tp + slen, &val);
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5189
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5190 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5191 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5192 current_menu = (vimmenu_T *)val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5193 slen += num_bytes;
936
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
5194
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5195 // The menu may have been deleted right after it was used, check
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5196 // for that.
936
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
5197 if (check_menu_pointer(root_menu, current_menu) == FAIL)
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
5198 {
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
5199 key_name[0] = KS_EXTRA;
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
5200 key_name[1] = (int)KE_IGNORE;
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
5201 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5202 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5203 # endif
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5204 # ifdef FEAT_GUI_TABLINE
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5205 else if (key_name[0] == (int)KS_TABLINE)
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5206 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5207 // Selecting tabline tab or using its menu.
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5208 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5209 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1);
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5210
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5211 if (num_bytes == -1)
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5212 return -1;
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5213 current_tab = (int)bytes[0];
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5214 if (current_tab == 255) // -1 in a byte gives 255
1394
1002128c68db updated for version 7.1-109
vimboss
parents: 1221
diff changeset
5215 current_tab = -1;
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5216 slen += num_bytes;
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5217 }
688
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5218 else if (key_name[0] == (int)KS_TABMENU)
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5219 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5220 // Selecting tabline tab or using its menu.
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5221 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5222 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2);
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5223
688
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5224 if (num_bytes == -1)
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5225 return -1;
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5226 current_tab = (int)bytes[0];
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5227 current_tabmenu = (int)bytes[1];
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5228 slen += num_bytes;
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
5229 }
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
5230 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5231 # ifndef USE_ON_FLY_SCROLL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5232 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5233 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5234 long_u val;
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5235 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5236 int num_bytes;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5237
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5238 // Get the last scrollbar event in the queue of the same type
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5239 j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5240 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5241 && tp[j + 2] != NUL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5242 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5243 j += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5244 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5245 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5246 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5247 if (i == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5248 current_scrollbar = (int)bytes[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5249 else if (current_scrollbar != (int)bytes[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5250 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5251 j += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5252 num_bytes = get_long_from_buf(tp + j, &val);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5253 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5254 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5255 scrollbar_value = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5256 j += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5257 slen = j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5258 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5259 if (i == 0) // not enough characters to make one
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5260 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5261 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5262 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5263 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5264 long_u val;
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
5265 int num_bytes;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5266
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5267 // Get the last horiz. scrollbar event in the queue
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5268 j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5269 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5270 && tp[j + 2] != NUL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5271 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5272 j += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5273 num_bytes = get_long_from_buf(tp + j, &val);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5274 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5275 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5276 scrollbar_value = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5277 j += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5278 slen = j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5279 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5280 if (i == 0) // not enough characters to make one
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5281 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5282 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5283 # endif // !USE_ON_FLY_SCROLL
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5284 #endif // FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5285
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5286 /*
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5287 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5288 */
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5289 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5290
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5291 /*
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5292 * Add any modifier codes to our string.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5293 */
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5294 new_slen = modifiers2keycode(modifiers, &key, string);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5295
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5296 // Finally, add the special key code to our string
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5297 key_name[0] = KEY2TERMCAP0(key);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5298 key_name[1] = KEY2TERMCAP1(key);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5299 if (key_name[0] == KS_KEY)
1787
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
5300 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5301 // from ":set <M-b>=xx"
1787
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
5302 if (has_mbyte)
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
5303 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
5304 else
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
5305 string[new_slen++] = key_name[1];
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
5306 }
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
5307 else if (new_slen == 0 && key_name[0] == KS_EXTRA
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
5308 && key_name[1] == KE_IGNORE)
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
5309 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5310 // Do not put K_IGNORE into the buffer, do return KEYLEN_REMOVED
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5311 // to indicate what happened.
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
5312 retval = KEYLEN_REMOVED;
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
5313 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5314 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5315 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5316 string[new_slen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5317 string[new_slen++] = key_name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5318 string[new_slen++] = key_name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5319 }
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5320 if (put_string_in_typebuf(offset, slen, string, new_slen,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5321 buf, bufsize, buflen) == FAIL)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5322 return -1;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5323 return retval == 0 ? (len + new_slen - slen + offset) : retval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5324 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5325
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
5326 #ifdef FEAT_TERMRESPONSE
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5327 LOG_TR(("normal character"));
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
5328 #endif
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
5329
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5330 return 0; // no match found
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5331 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5332
12634
94566ecb55f0 patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 12632
diff changeset
5333 #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
5334 /*
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5335 * 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
5336 */
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5337 void
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
5338 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
5339 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
5340 if (rfg_status.tr_progress == STATUS_GOT)
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5341 {
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5342 *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
5343 *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
5344 *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
5345 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5346 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5347
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5348 /*
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5349 * 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
5350 */
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5351 void
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
5352 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
5353 {
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
5354 if (rbg_status.tr_progress == STATUS_GOT)
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5355 {
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5356 *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
5357 *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
5358 *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
5359 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5360 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5361 #endif
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
5362
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5363 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5364 * Replace any terminal code strings in from[] with the equivalent internal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5365 * vim representation. This is used for the "from" and "to" part of a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5366 * mapping, and the "to" part of a menu command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5367 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5368 * '<'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5369 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5370 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5371 * The replacement is done in result[] and finally copied into allocated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5372 * memory. If this all works well *bufp is set to the allocated memory and a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5373 * pointer to it is returned. If something fails *bufp is set to NULL and from
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5374 * is returned.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5375 *
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5376 * CTRL-V characters are removed. When "flags" has REPTERM_FROM_PART, a
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5377 * trailing CTRL-V is included, otherwise it is removed (for ":map xx ^V", maps
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5378 * xx to nothing). When 'cpoptions' does not contain 'B', a backslash can be
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5379 * used instead of a CTRL-V.
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5380 *
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5381 * Flags:
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5382 * REPTERM_FROM_PART see above
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5383 * REPTERM_DO_LT also translate <lt>
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5384 * REPTERM_SPECIAL always accept <key> notation
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5385 * REPTERM_NO_SIMPLIFY do not simplify <C-H> to 0x08 and set 8th bit for <A-x>
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5386 *
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5387 * "did_simplify" is set when some <C-H> or <A-x> code was simplified, unless
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5388 * it is NULL.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5389 */
859
99305c4c42d4 updated for version 7.0g02
vimboss
parents: 699
diff changeset
5390 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5391 replace_termcodes(
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5392 char_u *from,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5393 char_u **bufp,
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5394 int flags,
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5395 int *did_simplify)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5396 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5397 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5398 int slen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5399 int key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5400 int dlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5401 char_u *src;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5402 int do_backslash; // backslash is a special character
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5403 int do_special; // recognize <> key codes
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5404 int do_key_code; // recognize raw key codes
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5405 char_u *result; // buffer for resulting string
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5406
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5407 do_backslash = (vim_strchr(p_cpo, CPO_BSLASH) == NULL);
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5408 do_special = (vim_strchr(p_cpo, CPO_SPECI) == NULL)
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5409 || (flags & REPTERM_SPECIAL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5410 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5411
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5412 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5413 * Allocate space for the translation. Worst case a single character is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5414 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5415 */
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16642
diff changeset
5416 result = alloc(STRLEN(from) * 6 + 1);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5417 if (result == NULL) // out of memory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5418 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5419 *bufp = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5420 return from;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5421 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5422
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5423 src = from;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5424
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5425 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5426 * Check for #n at start only: function key n
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5427 */
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5428 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5429 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5430 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5431 result[dlen++] = 'k';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5432 if (src[1] == '0')
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5433 result[dlen++] = ';'; // #0 is F10 is "k;"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5434 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5435 result[dlen++] = src[1]; // #3 is F3 is "k3"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5436 src += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5437 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5438
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5439 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5440 * Copy each byte from *from to result[dlen]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5441 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5442 while (*src != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5443 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5444 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5445 * 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
5446 * like "<C-S-LeftMouse>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5447 */
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5448 if (do_special && ((flags & REPTERM_DO_LT)
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5449 || STRNCMP(src, "<lt>", 4) != 0))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5450 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5451 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5452 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5453 * Replace <SID> by K_SNR <script-nr> _.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5454 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5455 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5456 if (STRNICMP(src, "<SID>", 5) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5457 {
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14581
diff changeset
5458 if (current_sctx.sc_sid <= 0)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
5459 emsg(_(e_usingsid));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5460 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5461 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5462 src += 5;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5463 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5464 result[dlen++] = (int)KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5465 result[dlen++] = (int)KE_SNR;
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14581
diff changeset
5466 sprintf((char *)result + dlen, "%ld",
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14581
diff changeset
5467 (long)current_sctx.sc_sid);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5468 dlen += (int)STRLEN(result + dlen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5469 result[dlen++] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5470 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5471 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5472 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5473 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5474
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5475 slen = trans_special(&src, result + dlen, TRUE, FALSE,
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5476 (flags & REPTERM_NO_SIMPLIFY) == 0, did_simplify);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5477 if (slen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5478 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5479 dlen += slen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5480 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5481 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5482 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5483
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5484 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5485 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5486 * Note that this is also checked after replacing the <> form.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5487 * Single character codes are NOT replaced (e.g. ^H or DEL), because
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5488 * it could be a character in the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5489 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5490 if (do_key_code)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5491 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5492 i = find_term_bykeys(src);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5493 if (i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5494 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5495 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5496 result[dlen++] = termcodes[i].name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5497 result[dlen++] = termcodes[i].name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5498 src += termcodes[i].len;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5499 // If terminal code matched, continue after it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5500 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5501 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5502 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5503
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5504 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5505 if (do_special)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5506 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5507 char_u *p, *s, len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5509 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5510 * Replace <Leader> by the value of "mapleader".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5511 * Replace <LocalLeader> by the value of "maplocalleader".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5512 * If "mapleader" or "maplocalleader" isn't set use a backslash.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5513 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5514 if (STRNICMP(src, "<Leader>", 8) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5515 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5516 len = 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5517 p = get_var_value((char_u *)"g:mapleader");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5518 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5519 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5520 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5521 len = 13;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5522 p = get_var_value((char_u *)"g:maplocalleader");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5523 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5524 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5525 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5526 len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5527 p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5528 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5529 if (len != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5530 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5531 // Allow up to 8 * 6 characters for "mapleader".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5532 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5533 s = (char_u *)"\\";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5534 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5535 s = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5536 while (*s != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5537 result[dlen++] = *s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5538 src += len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5539 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5540 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5541 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5542 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5543
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5544 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5545 * Remove CTRL-V and ignore the next character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5546 * For "from" side the CTRL-V at the end is included, for the "to"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5547 * part it is removed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5548 * If 'cpoptions' does not contain 'B', also accept a backslash.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5549 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5550 key = *src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5551 if (key == Ctrl_V || (do_backslash && key == '\\'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5552 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5553 ++src; // skip CTRL-V or backslash
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5554 if (*src == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5555 {
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
5556 if (flags & REPTERM_FROM_PART)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5557 result[dlen++] = key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5558 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5559 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5560 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5561
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5562 // skip multibyte char correctly
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 344
diff changeset
5563 for (i = (*mb_ptr2len)(src); i > 0; --i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5564 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5565 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5566 * If the character is K_SPECIAL, replace it with K_SPECIAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5567 * KS_SPECIAL KE_FILLER.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5568 * If compiled with the GUI replace CSI with K_CSI.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5569 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5570 if (*src == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5571 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5572 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5573 result[dlen++] = KS_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5574 result[dlen++] = KE_FILLER;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5575 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5576 # ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5577 else if (*src == CSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5578 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5579 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5580 result[dlen++] = KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5581 result[dlen++] = (int)KE_CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5582 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5583 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5584 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5585 result[dlen++] = *src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5586 ++src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5587 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5588 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5589 result[dlen] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5590
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5591 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5592 * Copy the new string to allocated memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5593 * If this fails, just return from.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5594 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5595 if ((*bufp = vim_strsave(result)) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5596 from = *bufp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5597 vim_free(result);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5598 return from;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5599 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5600
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5601 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5602 * Find a termcode with keys 'src' (must be NUL terminated).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5603 * Return the index in termcodes[], or -1 if not found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5604 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
5605 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5606 find_term_bykeys(char_u *src)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5607 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5608 int i;
3290
821c8be2e9d6 updated for version 7.3.413
Bram Moolenaar <bram@vim.org>
parents: 3273
diff changeset
5609 int slen = (int)STRLEN(src);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5610
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5611 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5612 {
3273
c75a8d2404bd updated for version 7.3.405
Bram Moolenaar <bram@vim.org>
parents: 3188
diff changeset
5613 if (slen == termcodes[i].len
c75a8d2404bd updated for version 7.3.405
Bram Moolenaar <bram@vim.org>
parents: 3188
diff changeset
5614 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5615 return i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5616 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5617 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5618 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5619
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5620 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5621 * Gather the first characters in the terminal key codes into a string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5622 * Used to speed up check_termcode().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5623 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5624 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5625 gather_termleader(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5626 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5627 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5628 int len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5629
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5630 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5631 if (gui.in_use)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5632 termleader[len++] = CSI; // the GUI codes are not in termcodes[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5633 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5634 #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
5635 if (check_for_codes || *T_CRS != NUL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5636 termleader[len++] = DCS; // the termcode response starts with DCS
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5637 // in 8-bit mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5638 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5639 termleader[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5640
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5641 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5642 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5643 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5644 termleader[len++] = termcodes[i].code[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5645 termleader[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5646 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5647
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5648 need_gather = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5649 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5651 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5652 * Show all termcodes (for ":set termcap")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5653 * This code looks a lot like showoptions(), but is different.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5654 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5655 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5656 show_termcodes(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5657 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5658 int col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5659 int *items;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5660 int item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5661 int run;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5662 int row, rows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5663 int cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5664 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5665 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5666
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5667 #define INC3 27 // try to make three columns
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5668 #define INC2 40 // try to make two columns
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5669 #define GAP 2 // spaces between columns
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5670
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5671 if (tc_len == 0) // no terminal codes (must be GUI)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5672 return;
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
5673 items = ALLOC_MULT(int, tc_len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5674 if (items == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5675 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5676
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5677 // Highlight title
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5678 msg_puts_title(_("\n--- Terminal keys ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5679
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5680 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5681 * do the loop two times:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5682 * 1. display the short items (non-strings and short strings)
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5683 * 2. display the medium items (medium length strings)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5684 * 3. display the long items (remaining strings)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5685 */
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5686 for (run = 1; run <= 3 && !got_int; ++run)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5687 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5688 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5689 * collect the items in items[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5690 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5691 item_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5692 for (i = 0; i < tc_len; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5693 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5694 len = show_one_termcode(termcodes[i].name,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5695 termcodes[i].code, FALSE);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5696 if (len <= INC3 - GAP ? run == 1
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5697 : len <= INC2 - GAP ? run == 2
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5698 : run == 3)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5699 items[item_count++] = i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5700 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5701
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5702 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5703 * display the items
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5704 */
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5705 if (run <= 2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5706 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5707 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5708 if (cols == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5709 cols = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5710 rows = (item_count + cols - 1) / cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5711 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5712 else // run == 3
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5713 rows = item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5714 for (row = 0; row < rows && !got_int; ++row)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5715 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5716 msg_putchar('\n'); // go to next line
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5717 if (got_int) // 'q' typed in more
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5718 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5719 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5720 for (i = row; i < item_count; i += rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5721 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5722 msg_col = col; // make columns
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5723 show_one_termcode(termcodes[items[i]].name,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5724 termcodes[items[i]].code, TRUE);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5725 if (run == 2)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5726 col += INC2;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5727 else
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5728 col += INC3;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5729 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5730 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5731 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5732 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5733 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5734 vim_free(items);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5735 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5736
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5737 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5738 * Show one termcode entry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5739 * Output goes into IObuff[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5740 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5741 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5742 show_one_termcode(char_u *name, char_u *code, int printit)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5743 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5744 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5745 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5746
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5747 if (name[0] > '~')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5748 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5749 IObuff[0] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5750 IObuff[1] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5751 IObuff[2] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5752 IObuff[3] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5753 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5754 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5755 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5756 IObuff[0] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5757 IObuff[1] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5758 IObuff[2] = name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5759 IObuff[3] = name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5760 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5761 IObuff[4] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5762
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5763 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5764 if (p[1] != 't')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5765 STRCPY(IObuff + 5, p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5766 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5767 IObuff[5] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5768 len = (int)STRLEN(IObuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5769 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5770 IObuff[len++] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5771 while (len < 17);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5772 IObuff[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5773 if (code == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5774 len += 4;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5775 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5776 len += vim_strsize(code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5777
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5778 if (printit)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5779 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5780 msg_puts((char *)IObuff);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5781 if (code == NULL)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5782 msg_puts("NULL");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5783 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5784 msg_outtrans(code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5785 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5786 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5787 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5788
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5789 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5790 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5791 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5792 * termcap codes from the terminal itself.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5793 * We get them one by one to avoid a very long response string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5794 */
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
5795 static int xt_index_in = 0;
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
5796 static int xt_index_out = 0;
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
5797
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5798 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5799 req_codes_from_term(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5800 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5801 xt_index_out = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5802 xt_index_in = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5803 req_more_codes_from_term();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5804 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5805
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5806 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5807 req_more_codes_from_term(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5808 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5809 char buf[11];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5810 int old_idx = xt_index_out;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5811
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5812 // Don't do anything when going to exit.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5813 if (exiting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5814 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5815
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5816 // Send up to 10 more requests out than we received. Avoid sending too
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5817 // many, there can be a buffer overflow somewhere.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5818 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5819 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5820 char *key_name = key_names[xt_index_out];
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5821
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5822 LOG_TR(("Requesting XT %d: %s", xt_index_out, key_name));
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5823 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5824 out_str_nf((char_u *)buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5825 ++xt_index_out;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5826 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5827
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5828 // Send the codes out right away.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5829 if (xt_index_out != old_idx)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5830 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5831 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5832
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5833 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5834 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5835 * A "0" instead of the "1" indicates a code that isn't supported.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5836 * Both <name> and <string> are encoded in hex.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5837 * "code" points to the "0" or "1".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5838 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5839 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5840 got_code_from_term(char_u *code, int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5841 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5842 #define XT_LEN 100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5843 char_u name[3];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5844 char_u str[XT_LEN];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5845 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5846 int j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5847 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5848
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5849 // A '1' means the code is supported, a '0' means it isn't.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5850 // When half the length is > XT_LEN we can't use it.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5851 // Our names are currently all 2 characters.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5852 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5853 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5854 // Get the name from the response and find it in the table.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5855 name[0] = hexhex2nr(code + 3);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5856 name[1] = hexhex2nr(code + 5);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5857 name[2] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5858 for (i = 0; key_names[i] != NULL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5859 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5860 if (STRCMP(key_names[i], name) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5861 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5862 xt_index_in = i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5863 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5864 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5865 }
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5866
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5867 LOG_TR(("Received XT %d: %s", xt_index_in, (char *)name));
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
5868
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5869 if (key_names[i] != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5870 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5871 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5872 str[j++] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5873 str[j] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5874 if (name[0] == 'C' && name[1] == 'o')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5875 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5876 // Color count is not a key code.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5877 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
5878 may_adjust_color_count(i);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5879 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5880 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5881 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5882 // First delete any existing entry with the same code.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5883 i = find_term_bykeys(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5884 if (i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5885 del_termcode_idx(i);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5886 add_termcode(name, str, ATC_FROM_TERM);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5887 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5888 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5889 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5890
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5891 // May request more codes now that we received one.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5892 ++xt_index_in;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5893 req_more_codes_from_term();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5894 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5895
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5896 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5897 * Check if there are any unanswered requests and deal with them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5898 * This is called before starting an external program or getting direct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5899 * keyboard input. We don't want responses to be send to that program or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5900 * handled as typed text.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5901 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5902 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5903 check_for_codes_from_term(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5904 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5905 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5906
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5907 // If no codes requested or all are answered, no need to wait.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5908 if (xt_index_out == 0 || xt_index_out == xt_index_in)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5909 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5910
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5911 // Vgetc() will check for and handle any response.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5912 // Keep calling vpeekc() until we don't get any responses.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5913 ++no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5914 ++allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5915 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5916 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5917 c = vpeekc();
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5918 if (c == NUL) // nothing available
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5919 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5920
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5921 // If a response is recognized it's replaced with K_IGNORE, must read
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5922 // it from the input stream. If there is no K_IGNORE we can't do
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5923 // anything, break here (there might be some responses further on, but
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5924 // we don't want to throw away any typed chars).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5925 if (c != K_SPECIAL && c != K_IGNORE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5926 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5927 c = vgetc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5928 if (c != K_IGNORE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5929 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5930 vungetc(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5931 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5932 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5933 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5934 --no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5935 --allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5936 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5937 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5938
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
5939 #if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5940 static char ksme_str[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5941 static char ksmr_str[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5942 static char ksmd_str[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5943
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5944 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5945 * For Win32 console: update termcap codes for existing console attributes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5946 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5947 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5948 update_tcap(int attr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5949 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5950 struct builtin_term *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5951
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5952 p = find_builtin_term(DEFAULT_TERM);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5953 sprintf(ksme_str, IF_EB("\033|%dm", ESC_STR "|%dm"), attr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5954 sprintf(ksmd_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5955 attr | 0x08); // FOREGROUND_INTENSITY
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5956 sprintf(ksmr_str, IF_EB("\033|%dm", ESC_STR "|%dm"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5957 ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5959 while (p->bt_string != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5960 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5961 if (p->bt_entry == (int)KS_ME)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5962 p->bt_string = &ksme_str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5963 else if (p->bt_entry == (int)KS_MR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5964 p->bt_string = &ksmr_str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5965 else if (p->bt_entry == (int)KS_MD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5966 p->bt_string = &ksmd_str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5967 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5968 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5969 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5970
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
5971 # ifdef FEAT_TERMGUICOLORS
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
5972 # define KSSIZE 20
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5973 struct ks_tbl_s
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5974 {
14806
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5975 int code; // value of KS_
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5976 char *vtp; // code in vtp mode
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5977 char *vtp2; // code in vtp2 mode
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5978 char buf[KSSIZE]; // save buffer in non-vtp mode
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5979 char vbuf[KSSIZE]; // save buffer in vtp mode
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5980 char v2buf[KSSIZE]; // save buffer in vtp2 mode
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5981 char arr[KSSIZE]; // real buffer
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5982 };
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5983
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5984 static struct ks_tbl_s ks_tbl[] =
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
5985 {
14806
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5986 {(int)KS_ME, "\033|0m", "\033|0m"}, // normal
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5987 {(int)KS_MR, "\033|7m", "\033|7m"}, // reverse
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5988 {(int)KS_MD, "\033|1m", "\033|1m"}, // bold
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5989 {(int)KS_SO, "\033|91m", "\033|91m"}, // standout: bright red text
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5990 {(int)KS_SE, "\033|39m", "\033|39m"}, // standout end: default color
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5991 {(int)KS_CZH, "\033|95m", "\033|95m"}, // italic: bright magenta text
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5992 {(int)KS_CZR, "\033|0m", "\033|0m"}, // italic end
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5993 {(int)KS_US, "\033|4m", "\033|4m"}, // underscore
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5994 {(int)KS_UE, "\033|24m", "\033|24m"}, // underscore end
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
5995 # ifdef TERMINFO
14806
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5996 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm"}, // set background color
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
5997 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm"}, // set foreground color
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
5998 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR"},
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
5999 {(int)KS_CSV, "\033|%p1%d;%p2%dV", "\033|%p1%d;%p2%dV"},
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6000 # else
14806
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
6001 {(int)KS_CAB, "\033|%db", "\033|4%dm"}, // set background color
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
6002 {(int)KS_CAF, "\033|%df", "\033|3%dm"}, // set foreground color
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
6003 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR"},
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15782
diff changeset
6004 {(int)KS_CSV, "\033|%d;%dV", "\033|%d;%dV"},
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6005 # endif
14806
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
6006 {(int)KS_CCO, "256", "256"}, // colors
7cc2d28778ac patch 8.1.0415: not actually using 16 colors with vtp
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
6007 {(int)KS_NAME} // terminator
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6008 };
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6009
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6010 static struct builtin_term *
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6011 find_first_tcap(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6012 char_u *name,
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6013 int code)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6014 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6015 struct builtin_term *p;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6016
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6017 for (p = find_builtin_term(name); p->bt_string != NULL; ++p)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6018 if (p->bt_entry == code)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6019 return p;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6020 return NULL;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6021 }
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6022 # endif
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6023
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6024 /*
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6025 * For Win32 console: replace the sequence immediately after termguicolors.
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6026 */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6027 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6028 swap_tcap(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6029 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6030 # ifdef FEAT_TERMGUICOLORS
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6031 static int init_done = FALSE;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6032 static int curr_mode;
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6033 struct ks_tbl_s *ks;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6034 struct builtin_term *bt;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6035 int mode;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6036 enum
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6037 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6038 CMODEINDEX,
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6039 CMODE24,
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6040 CMODE256
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6041 };
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6042
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6043 // buffer initialization
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6044 if (!init_done)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6045 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6046 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6047 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6048 bt = find_first_tcap(DEFAULT_TERM, ks->code);
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6049 if (bt != NULL)
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6050 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6051 STRNCPY(ks->buf, bt->bt_string, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6052 STRNCPY(ks->vbuf, ks->vtp, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6053 STRNCPY(ks->v2buf, ks->vtp2, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6054
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6055 STRNCPY(ks->arr, bt->bt_string, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6056 bt->bt_string = &ks->arr[0];
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6057 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6058 }
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6059 init_done = TRUE;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6060 curr_mode = CMODEINDEX;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6061 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6062
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6063 if (p_tgc)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6064 mode = CMODE24;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6065 else if (t_colors >= 256)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6066 mode = CMODE256;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6067 else
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6068 mode = CMODEINDEX;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6069
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6070 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6071 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6072 bt = find_first_tcap(DEFAULT_TERM, ks->code);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6073 if (bt != NULL)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6074 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6075 switch (curr_mode)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6076 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6077 case CMODEINDEX:
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6078 STRNCPY(&ks->buf[0], bt->bt_string, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6079 break;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6080 case CMODE24:
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6081 STRNCPY(&ks->vbuf[0], bt->bt_string, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6082 break;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6083 default:
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6084 STRNCPY(&ks->v2buf[0], bt->bt_string, KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6085 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6086 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6087 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6088
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6089 if (mode != curr_mode)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6090 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6091 for (ks = ks_tbl; ks->code != (int)KS_NAME; ks++)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6092 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6093 bt = find_first_tcap(DEFAULT_TERM, ks->code);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6094 if (bt != NULL)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6095 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6096 switch (mode)
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6097 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6098 case CMODEINDEX:
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6099 STRNCPY(bt->bt_string, &ks->buf[0], KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6100 break;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6101 case CMODE24:
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6102 STRNCPY(bt->bt_string, &ks->vbuf[0], KSSIZE);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6103 break;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6104 default:
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6105 STRNCPY(bt->bt_string, &ks->v2buf[0], KSSIZE);
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
6106 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6107 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6108 }
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6109
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6110 curr_mode = mode;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6111 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6112 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6113 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
6114
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6115 #endif
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6116
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
6117 #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
6118 static int
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6119 hex_digit(int c)
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6120 {
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6121 if (isdigit(c))
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6122 return c - '0';
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6123 c = TOLOWER_ASC(c);
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6124 if (c >= 'a' && c <= 'f')
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6125 return c - 'a' + 10;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6126 return 0x1ffffff;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6127 }
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6128
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6129 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6130 static guicolor_T
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6131 gui_adjust_rgb(guicolor_T c)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6132 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6133 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6134 return c;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6135 else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6136 return ((c & 0xff) << 16) | (c & 0x00ff00) | ((c >> 16) & 0xff);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6137 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6138 # else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6139 # define gui_adjust_rgb(c) (c)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6140 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6141
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6142 guicolor_T
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6143 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
6144 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6145 // On MS-Windows an RGB macro is available and it produces 0x00bbggrr color
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6146 // values as used by the MS-Windows GDI api. It should be used only for
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6147 // MS-Windows GDI builds.
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
6148 # if defined(RGB) && defined(MSWIN) && !defined(FEAT_GUI)
10512
675dfe47ab69 commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
6149 # undef RGB
675dfe47ab69 commit https://github.com/vim/vim/commit/287266527abc163e191a06dd70518bbbdab4468f
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
6150 # endif
9021
bb6ca6366085 commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents: 9019
diff changeset
6151 # ifndef RGB
bb6ca6366085 commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents: 9019
diff changeset
6152 # 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
6153 # endif
bb6ca6366085 commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents: 9019
diff changeset
6154 # define LINE_LEN 100
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6155 FILE *fd;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6156 char line[LINE_LEN];
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6157 char_u *fname;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6158 int r, g, b, i;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6159 guicolor_T color;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6160
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6161 struct rgbcolor_table_S {
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6162 char_u *color_name;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6163 guicolor_T color;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6164 };
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6165
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6166 // Only non X11 colors (not present in rgb.txt) and colors in
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6167 // 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
6168 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
6169 {(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
6170 {(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
6171 {(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
6172 {(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
6173 {(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
6174 {(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
6175 {(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
6176 {(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
6177 {(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
6178 {(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
6179 {(char_u *)"darkred", RGB(0x8B, 0x00, 0x00)},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6180 {(char_u *)"darkyellow", RGB(0x8B, 0x8B, 0x00)}, // No X11
9021
bb6ca6366085 commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents: 9019
diff changeset
6181 {(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
6182 {(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
6183 {(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
6184 {(char_u *)"grey40", RGB(0x66, 0x66, 0x66)},
13489
24e8f9044bed patch 8.0.1618: color Grey50 is missing in the compiled-in table
Christian Brabandt <cb@256bit.org>
parents: 13406
diff changeset
6185 {(char_u *)"grey50", RGB(0x7F, 0x7F, 0x7F)},
9601
9cc49b86f613 commit https://github.com/vim/vim/commit/ca8942c6e331a69ddd533dd78931f399f7dcaa79
Christian Brabandt <cb@256bit.org>
parents: 9591
diff changeset
6186 {(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
6187 {(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
6188 {(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
6189 {(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
6190 {(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
6191 {(char_u *)"lightgrey", RGB(0xD3, 0xD3, 0xD3)},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6192 {(char_u *)"lightmagenta", RGB(0xFF, 0x8B, 0xFF)}, // No X11
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6193 {(char_u *)"lightred", RGB(0xFF, 0x8B, 0x8B)}, // No X11
9021
bb6ca6366085 commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents: 9019
diff changeset
6194 {(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
6195 {(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
6196 {(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
6197 {(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
6198 {(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
6199 {(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
6200 };
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6201
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6202 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
6203 static int size = 0;
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6204
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6205 if (name[0] == '#' && STRLEN(name) == 7)
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6206 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6207 // Name is in "#rrggbb" format
9021
bb6ca6366085 commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents: 9019
diff changeset
6208 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
6209 ((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
6210 ((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
6211 if (color > 0xffffff)
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6212 return INVALCOLOR;
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6213 return gui_adjust_rgb(color);
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6214 }
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6215
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6216 // Check if the name is one of the colors we know
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6217 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
6218 if (STRICMP(name, rgb_table[i].color_name) == 0)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6219 return gui_adjust_rgb(rgb_table[i].color);
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6220
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6221 /*
15782
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6222 * Last attempt. Look in the file "$VIMRUNTIME/rgb.txt".
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6223 */
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6224 if (size == 0)
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6225 {
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6226 int counting;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6227
15782
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6228 // colornames_table not yet initialized
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6229 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
6230 if (fname == NULL)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6231 return INVALCOLOR;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6232
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6233 fd = fopen((char *)fname, "rt");
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6234 vim_free(fname);
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6235 if (fd == NULL)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6236 {
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6237 if (p_verbose > 1)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
6238 verb_msg(_("Cannot open $VIMRUNTIME/rgb.txt"));
15782
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6239 size = -1; // don't try again
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6240 return INVALCOLOR;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6241 }
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6242
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6243 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
6244 {
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6245 if (!counting)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6246 {
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
6247 colornames_table = ALLOC_MULT(struct rgbcolor_table_S, size);
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6248 if (colornames_table == NULL)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6249 {
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6250 fclose(fd);
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6251 return INVALCOLOR;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6252 }
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6253 rewind(fd);
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6254 }
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6255 size = 0;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6256
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6257 while (!feof(fd))
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6258 {
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6259 size_t len;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6260 int pos;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6261
14730
193471015e1a patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents: 14700
diff changeset
6262 vim_ignoredp = fgets(line, LINE_LEN, fd);
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6263 len = strlen(line);
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6264
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6265 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
6266 continue;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6267
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6268 line[len - 1] = '\0';
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6269
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6270 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
6271 if (i != 3)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6272 continue;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6273
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6274 if (!counting)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6275 {
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6276 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
6277
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6278 if (s == NULL)
9628
fefd0551aa9d commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents: 9601
diff changeset
6279 {
fefd0551aa9d commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents: 9601
diff changeset
6280 fclose(fd);
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6281 return INVALCOLOR;
9628
fefd0551aa9d commit https://github.com/vim/vim/commit/2e45d21c819272051f7ef4436f483e4b2ecfb369
Christian Brabandt <cb@256bit.org>
parents: 9601
diff changeset
6282 }
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6283 colornames_table[size].color_name = s;
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6284 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
6285 }
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6286 size++;
15782
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6287
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6288 // The distributed rgb.txt has less than 1000 entries. Limit to
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6289 // 10000, just in case the file was messed up.
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6290 if (size == 10000)
5de143c7cd76 patch 8.1.0898: a messed up rgb.txt can crash Vim
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
6291 break;
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6292 }
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6293 }
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6294 fclose(fd);
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6295 }
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6296
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6297 for (i = 0; i < size; i++)
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6298 if (STRICMP(name, colornames_table[i].color_name) == 0)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6299 return gui_adjust_rgb(colornames_table[i].color);
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
6300
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6301 return INVALCOLOR;
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6302 }
11745
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11739
diff changeset
6303
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11739
diff changeset
6304 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
6305 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
6306 {
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11739
diff changeset
6307 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
6308
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11739
diff changeset
6309 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
6310 return INVALCOLOR;
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6311 return gui_adjust_rgb(color);
11745
5a5709918a98 patch 8.0.0755: terminal window does not have colors in the GUI
Christian Brabandt <cb@256bit.org>
parents: 11739
diff changeset
6312 }
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
6313 #endif
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6314
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16387
diff changeset
6315 #if (defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))) || defined(FEAT_TERMINAL) \
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6316 || defined(PROTO)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6317 static int cube_value[] = {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6318 0x00, 0x5F, 0x87, 0xAF, 0xD7, 0xFF
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6319 };
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6320
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6321 static int grey_ramp[] = {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6322 0x08, 0x12, 0x1C, 0x26, 0x30, 0x3A, 0x44, 0x4E, 0x58, 0x62, 0x6C, 0x76,
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6323 0x80, 0x8A, 0x94, 0x9E, 0xA8, 0xB2, 0xBC, 0xC6, 0xD0, 0xDA, 0xE4, 0xEE
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6324 };
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6325
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6326 # ifdef FEAT_TERMINAL
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6327 # include "libvterm/include/vterm.h" // for VTERM_ANSI_INDEX_NONE
13827
27e09f1a8e5c patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
6328 # else
27e09f1a8e5c patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
6329 # define VTERM_ANSI_INDEX_NONE 0
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6330 # endif
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6331
13839
ca8953d36264 patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents: 13827
diff changeset
6332 static char_u ansi_table[16][4] = {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6333 // R G B idx
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6334 { 0, 0, 0, 1}, // black
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6335 {224, 0, 0, 2}, // dark red
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6336 { 0, 224, 0, 3}, // dark green
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6337 {224, 224, 0, 4}, // dark yellow / brown
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6338 { 0, 0, 224, 5}, // dark blue
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6339 {224, 0, 224, 6}, // dark magenta
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6340 { 0, 224, 224, 7}, // dark cyan
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6341 {224, 224, 224, 8}, // light grey
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6342
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6343 {128, 128, 128, 9}, // dark grey
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6344 {255, 64, 64, 10}, // light red
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6345 { 64, 255, 64, 11}, // light green
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6346 {255, 255, 64, 12}, // yellow
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6347 { 64, 64, 255, 13}, // light blue
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6348 {255, 64, 255, 14}, // light magenta
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6349 { 64, 255, 255, 15}, // light cyan
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6350 {255, 255, 255, 16}, // white
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6351 };
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6352
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6353 void
13839
ca8953d36264 patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents: 13827
diff changeset
6354 cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx)
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6355 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6356 int idx;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6357
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6358 if (nr < 16)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6359 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6360 *r = ansi_table[nr][0];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6361 *g = ansi_table[nr][1];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6362 *b = ansi_table[nr][2];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6363 *ansi_idx = ansi_table[nr][3];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6364 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6365 else if (nr < 232)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6366 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6367 // 216 color cube
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6368 idx = nr - 16;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6369 *r = cube_value[idx / 36 % 6];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6370 *g = cube_value[idx / 6 % 6];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6371 *b = cube_value[idx % 6];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6372 *ansi_idx = VTERM_ANSI_INDEX_NONE;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6373 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6374 else if (nr < 256)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6375 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6376 // 24 grey scale ramp
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6377 idx = nr - 232;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6378 *r = grey_ramp[idx];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6379 *g = grey_ramp[idx];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6380 *b = grey_ramp[idx];
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6381 *ansi_idx = VTERM_ANSI_INDEX_NONE;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6382 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6383 else
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6384 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6385 *r = 0;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6386 *g = 0;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6387 *b = 0;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6388 *ansi_idx = 0;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6389 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6390 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
6391 #endif
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
6392
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6393 /*
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6394 * Replace K_BS by <BS> and K_DEL by <DEL>
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6395 */
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6396 void
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6397 term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6398 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6399 int i;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6400 int c;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6401
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6402 for (i = ta_len; i < ta_len + len; ++i)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6403 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6404 if (ta_buf[i] == CSI && len - i > 2)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6405 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6406 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6407 if (c == K_DEL || c == K_KDEL || c == K_BS)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6408 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6409 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6410 (size_t)(len - i - 2));
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6411 if (c == K_DEL || c == K_KDEL)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6412 ta_buf[i] = DEL;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6413 else
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6414 ta_buf[i] = Ctrl_H;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6415 len -= 2;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6416 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6417 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6418 else if (ta_buf[i] == '\r')
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6419 ta_buf[i] = '\n';
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6420 if (has_mbyte)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6421 i += (*mb_ptr2len_len)(ta_buf + i, ta_len + len - i) - 1;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6422 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
6423 }