annotate src/term.c @ 31305:216c01bb1f90 v9.0.0986

patch 9.0.0986: build failure with tiny version Commit: https://github.com/vim/vim/commit/5390c05a3ca712da8fc56b14517c99c740551c0b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 2 13:10:03 2022 +0000 patch 9.0.0986: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Fri, 02 Dec 2022 14:15:03 +0100
parents d2107f7b2155
children e352d200d096
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 */
27684
1761cc771623 patch 8.2.4368: Amiga: a few compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
40 # if defined(VMS) || defined(AMIGA)
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 23406
diff changeset
41 # define TPUTSFUNCAST (void (*)(unsigned int))
7
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
22091
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
46 # define TPUTSFUNCAST (int (*)(int))
7
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
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
53 // 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
54 #define BT_EXTRA_KEYS 0x101
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
56 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
57 static void gather_termleader(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 #ifdef FEAT_TERMRESPONSE
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
59 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
60 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
61 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
62 static void check_for_codes_from_term(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 #endif
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
64 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
65 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
66 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
67 static int term_7to8bit(char_u *p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
69 // Change this to "if 1" to debug what happens with termresponse.
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
70 # if 0
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
71 # define DEBUG_TERMRESPONSE
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
72 static void log_tr(const char *fmt, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2);
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
73 # define LOG_TR(msg) log_tr msg
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
74 # else
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
75 # define LOG_TR(msg) do { /**/ } while (0)
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
76 # endif
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
77
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 #ifdef HAVE_TGETENT
29230
3d3d629f5038 patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents: 29175
diff changeset
79 static char *invoke_tgetent(char_u *, char_u *);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 * Here is our own prototype for tgetstr(), any prototypes from the include
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 * files have been disabled by the define at the start of this file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 */
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
85 char *tgetstr(char *, char **);
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
86 #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
87
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
88 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
89 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
90 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
91 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
92 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
93 } 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
94
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
95 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
96 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
97 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
98 } 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
99
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
100 # define TERMREQUEST_INIT {STATUS_GET, -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
101
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
102 // 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
103 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
104
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
105 // 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
106 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
107
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
108 // Request xterm compatibility check:
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
109 static termrequest_T xcc_status = TERMREQUEST_INIT;
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
110
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
111 #ifdef FEAT_TERMRESPONSE
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
112 # 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
113 // 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
114 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
115 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
116 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
117 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
118 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
119 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
120 static int bg_b = 255;
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
121 # 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
122
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
123 // 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
124 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
125
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
126 // 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
127 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
128
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
129 // 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
130 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
131
19195
2ef19eed524a patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents: 19178
diff changeset
132 // 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
133 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
134
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
135 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
136 &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
137 &u7_status,
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
138 &xcc_status,
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
139 # 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
140 &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
141 # 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
142 &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
143 &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
144 &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
145 &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
146 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
147 };
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
148
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
149 // The t_8u code may default to a value but get reset when the term response is
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
150 // received. To avoid redrawing too often, only redraw when t_8u is not reset
30602
001c228efdab patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents: 29883
diff changeset
151 // and it was supposed to be written. Unless t_8u was set explicitly.
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
152 // FALSE -> don't output t_8u yet
30986
360f286b5869 patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents: 30984
diff changeset
153 // MAYBE -> tried outputting t_8u while FALSE
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
154 // OK -> can write t_8u
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
155 int write_t_8u_state = FALSE;
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
156 #endif
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
157
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
158 #ifdef HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 * Don't declare these variables if termcap.h contains them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 * Autoconf checks if these variables should be declared extern (not all
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 * systems have them).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 * Some versions define ospeed to be speed_t, but that is incompatible with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 * BSD, where ospeed is short and speed_t is long.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 # ifndef HAVE_OSPEED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 # ifdef OSPEED_EXTERN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 extern short ospeed;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 short ospeed;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 # ifndef HAVE_UP_BC_PC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 # ifdef UP_BC_PC_EXTERN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 extern char *UP, *BC, PC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 char *UP, *BC, PC;
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 # define TGETSTR(s, p) vim_tgetstr((s), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 # 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
183 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
184 #endif // HAVE_TGETENT
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
185
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
186 static int detected_8bit = FALSE; // detected 8-bit terminal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
188 #if (defined(UNIX) || defined(VMS))
27930
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
189 static int focus_state = MAYBE; // TRUE if the Vim window has focus
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
190 #endif
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
191
12184
76fbd85c3cea patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents: 12174
diff changeset
192 #ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
193 // 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
194 // 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
195 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
196
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
197 // 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
198 // 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
199 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
200
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
201 // 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
202 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
203 #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
204
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
205 /*
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
206 * The builtin termcap entries.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
207 *
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
208 * The entries are also included when HAVE_TGETENT is defined, the system
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
209 * termcap may be incomplete and a few Vim-specific entries are added.
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
210 *
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
211 * When HAVE_TGETENT is defined, the builtin entries can be accessed with
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
212 * "builtin_amiga", "builtin_ansi", "builtin_debug", etc.
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
213 *
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
214 * Each termcap is a list of tcap_entry_T. See parse_builtin_tcap() for all
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
215 * details.
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
216 *
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
217 * Entries marked with "guessed" may be wrong.
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
218 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
219 typedef struct
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
221 int bt_entry; // either a KS_xxx code (>= 0), or a K_xxx code.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
222 char *bt_string; // value
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
223 } tcap_entry_T;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 /*
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
226 * Standard ANSI terminal, default for Unix.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
228 static tcap_entry_T builtin_ansi[] = {
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
229 {(int)KS_CE, "\033[K"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
230 {(int)KS_AL, "\033[L"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
232 {(int)KS_CAL, "\033[%p1%dL"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
234 {(int)KS_CAL, "\033[%dL"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
236 {(int)KS_DL, "\033[M"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
238 {(int)KS_CDL, "\033[%p1%dM"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
240 {(int)KS_CDL, "\033[%dM"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
242 {(int)KS_CL, "\033[H\033[2J"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
243 {(int)KS_ME, "\033[0m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
244 {(int)KS_MR, "\033[7m"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 {(int)KS_MS, "y"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
246 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
249 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
251 {(int)KS_CM, "\033[%i%d;%dH"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
254 {(int)KS_CRI, "\033[%p1%dC"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
256 {(int)KS_CRI, "\033[%dC"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 # endif
29883
1342ee83ab97 patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents: 29869
diff changeset
258
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
259 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
260 };
29883
1342ee83ab97 patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents: 29869
diff changeset
261
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 * VT320 is working as an ANSI terminal compatible DEC terminal.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 * (it covers VT1x0, VT2x0 and VT3x0 up to VT320 on VMS as well)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 * TODO:- rewrite ESC[ codes to CSI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 * - keyboard languages (CSI ? 26 n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
268 static tcap_entry_T builtin_vt320[] = {
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
269 {(int)KS_CE, "\033[K"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
270 {(int)KS_AL, "\033[L"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
272 {(int)KS_CAL, "\033[%p1%dL"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
274 {(int)KS_CAL, "\033[%dL"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
276 {(int)KS_DL, "\033[M"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
278 {(int)KS_CDL, "\033[%p1%dM"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
280 {(int)KS_CDL, "\033[%dM"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
282 {(int)KS_CL, "\033[H\033[2J"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
283 {(int)KS_CD, "\033[J"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
284 {(int)KS_CCO, "8"}, // allow 8 colors
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
285 {(int)KS_ME, "\033[0m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
286 {(int)KS_MR, "\033[7m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
287 {(int)KS_MD, "\033[1m"}, // bold mode
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
288 {(int)KS_SE, "\033[22m"},// normal mode
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
289 {(int)KS_UE, "\033[24m"},// exit underscore mode
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
290 {(int)KS_US, "\033[4m"}, // underscore mode
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
291 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
292 {(int)KS_CZR, "\033[0m"}, // italic mode end
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
293 {(int)KS_CAB, "\033[4%dm"}, // set background color (ANSI)
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
294 {(int)KS_CAF, "\033[3%dm"}, // set foreground color (ANSI)
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
295 {(int)KS_CSB, "\033[102;%dm"}, // set screen background color
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
296 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 {(int)KS_MS, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 {(int)KS_UT, "y"},
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
299 {(int)KS_XN, "y"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
302 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
304 {(int)KS_CM, "\033[%i%d;%dH"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
307 {(int)KS_CRI, "\033[%p1%dC"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
309 {(int)KS_CRI, "\033[%dC"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
311 {K_UP, "\033[A"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
312 {K_DOWN, "\033[B"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
313 {K_RIGHT, "\033[C"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
314 {K_LEFT, "\033[D"},
14252
b557af8dedab patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents: 14224
diff changeset
315 // 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
316 // because they interfere with typed commands: <Esc>OA.
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
317 {K_F1, "\033[11~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
318 {K_F2, "\033[12~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
319 {K_F3, "\033[13~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
320 {K_F4, "\033[14~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
321 {K_F5, "\033[15~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
322 {K_F6, "\033[17~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
323 {K_F7, "\033[18~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
324 {K_F8, "\033[19~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
325 {K_F9, "\033[20~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
326 {K_F10, "\033[21~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
327 {K_F11, "\033[23~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
328 {K_F12, "\033[24~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
329 {K_F13, "\033[25~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
330 {K_F14, "\033[26~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
331 {K_F15, "\033[28~"}, // Help
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
332 {K_F16, "\033[29~"}, // Select
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
333 {K_F17, "\033[31~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
334 {K_F18, "\033[32~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
335 {K_F19, "\033[33~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
336 {K_F20, "\033[34~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
337 {K_INS, "\033[2~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
338 {K_DEL, "\033[3~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
339 {K_HOME, "\033[1~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
340 {K_END, "\033[4~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
341 {K_PAGEUP, "\033[5~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
342 {K_PAGEDOWN, "\033[6~"},
14252
b557af8dedab patch 8.1.0142: xterm and vt320 builtin termcap missing keypad keys
Christian Brabandt <cb@256bit.org>
parents: 14224
diff changeset
343 // 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
344 // is typing. Remove these if that bothers you.
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
345 {K_KPLUS, "\033Ok"}, // keypad plus
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
346 {K_KMINUS, "\033Om"}, // keypad minus
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
347 {K_KDIVIDE, "\033Oo"}, // keypad /
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
348 {K_KMULTIPLY, "\033Oj"}, // keypad *
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
349 {K_KENTER, "\033OM"}, // keypad Enter
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
350 {K_K0, "\033Op"}, // keypad 0
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
351 {K_K1, "\033Oq"}, // keypad 1
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
352 {K_K2, "\033Or"}, // keypad 2
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
353 {K_K3, "\033Os"}, // keypad 3
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
354 {K_K4, "\033Ot"}, // keypad 4
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
355 {K_K5, "\033Ou"}, // keypad 5
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
356 {K_K6, "\033Ov"}, // keypad 6
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
357 {K_K7, "\033Ow"}, // keypad 7
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
358 {K_K8, "\033Ox"}, // keypad 8
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
359 {K_K9, "\033Oy"}, // keypad 9
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
360 {K_BS, "\x7f"}, // for some reason 0177 doesn't work
29883
1342ee83ab97 patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents: 29869
diff changeset
361
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
362 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
363 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
364
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 * Ordinary vt52
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
368 static tcap_entry_T builtin_vt52[] = {
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
369 {(int)KS_CE, "\033K"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
370 {(int)KS_CD, "\033J"},
7264
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
371 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
372 {(int)KS_CM, "\033Y%p1%' '%+%c%p2%' '%+%c"},
7264
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
373 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
374 {(int)KS_CM, "\033Y%+ %+ "},
7264
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
375 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 {(int)KS_LE, "\b"},
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
377 {(int)KS_SR, "\033I"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
378 {(int)KS_AL, "\033L"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
379 {(int)KS_DL, "\033M"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
380 {K_UP, "\033A"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
381 {K_DOWN, "\033B"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
382 {K_LEFT, "\033D"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
383 {K_RIGHT, "\033C"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
384 {K_F1, "\033P"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
385 {K_F2, "\033Q"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
386 {K_F3, "\033R"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
387 {(int)KS_CL, "\033H\033J"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 {(int)KS_MS, "y"},
29883
1342ee83ab97 patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents: 29869
diff changeset
389
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
390 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
391 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
392
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
393 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
394 * Builtin xterm with Vim-specific entries.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
395 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
396 static tcap_entry_T builtin_xterm[] = {
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
397 {(int)KS_CE, "\033[K"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
398 {(int)KS_AL, "\033[L"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
400 {(int)KS_CAL, "\033[%p1%dL"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
402 {(int)KS_CAL, "\033[%dL"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
404 {(int)KS_DL, "\033[M"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
406 {(int)KS_CDL, "\033[%p1%dM"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
408 {(int)KS_CDL, "\033[%dM"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
411 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
413 {(int)KS_CS, "\033[%i%d;%dr"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
415 {(int)KS_CL, "\033[H\033[2J"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
416 {(int)KS_CD, "\033[J"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
417 {(int)KS_ME, "\033[m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
418 {(int)KS_MR, "\033[7m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
419 {(int)KS_MD, "\033[1m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
420 {(int)KS_UE, "\033[m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
421 {(int)KS_US, "\033[4m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
422 {(int)KS_STE, "\033[29m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
423 {(int)KS_STS, "\033[9m"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 {(int)KS_MS, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 {(int)KS_UT, "y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 {(int)KS_LE, "\b"},
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
427 {(int)KS_VI, "\033[?25l"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
428 {(int)KS_VE, "\033[?25h"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
429 {(int)KS_VS, "\033[?12h"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
430 {(int)KS_CVS, "\033[?12l"},
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
431 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
432 {(int)KS_CSH, "\033[%p1%d q"},
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
433 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
434 {(int)KS_CSH, "\033[%d q"},
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
435 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
436 {(int)KS_CRC, "\033[?12$p"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
437 {(int)KS_CRS, "\033P$q q\033\\"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
439 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
441 {(int)KS_CM, "\033[%i%d;%dH"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
443 {(int)KS_SR, "\033M"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
445 {(int)KS_CRI, "\033[%p1%dC"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
447 {(int)KS_CRI, "\033[%dC"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
449 {(int)KS_KS, "\033[?1h\033="},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
450 {(int)KS_KE, "\033[?1l\033>"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 # ifdef FEAT_XTERM_SAVE
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
452 {(int)KS_TI, "\0337\033[?47h"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
453 {(int)KS_TE, "\033[?47l\0338"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 # endif
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
455 {(int)KS_CTI, "\033[>4;2m"},
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
456 {(int)KS_CRK, "\033[?4m"}, // see "builtin_mok2"
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
457 {(int)KS_CTE, "\033[>4;m"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
458 {(int)KS_CIS, "\033]1;"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 {(int)KS_CIE, "\007"},
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
460 {(int)KS_TS, "\033]2;"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 {(int)KS_FS, "\007"},
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
462 {(int)KS_CSC, "\033]12;"},
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
463 {(int)KS_CEC, "\007"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 # ifdef TERMINFO
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
465 {(int)KS_CWS, "\033[8;%p1%d;%p2%dt"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
466 {(int)KS_CWP, "\033[3;%p1%d;%p2%dt"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
467 {(int)KS_CGP, "\033[13t"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 # else
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
469 {(int)KS_CWS, "\033[8;%d;%dt"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
470 {(int)KS_CWP, "\033[3;%d;%dt"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
471 {(int)KS_CGP, "\033[13t"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
473 {(int)KS_CRV, "\033[>c"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
474 {(int)KS_RFG, "\033]10;?\007"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
475 {(int)KS_RBG, "\033]11;?\007"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
476 {(int)KS_U7, "\033[6n"},
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
477 # ifdef FEAT_TERMGUICOLORS
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
478 // These are printf strings, not terminal codes.
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
479 {(int)KS_8F, "\033[38;2;%lu;%lu;%lum"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
480 {(int)KS_8B, "\033[48;2;%lu;%lu;%lum"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
481 {(int)KS_8U, "\033[58;2;%lu;%lu;%lum"},
8985
42eb58c9da92 commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents: 8981
diff changeset
482 # endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
483 {(int)KS_CAU, "\033[58;5;%dm"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
484 {(int)KS_CBE, "\033[?2004h"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
485 {(int)KS_CBD, "\033[?2004l"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
486 {(int)KS_CST, "\033[22;2t"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
487 {(int)KS_CRT, "\033[23;2t"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
488 {(int)KS_SSI, "\033[22;1t"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
489 {(int)KS_SRI, "\033[23;1t"},
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
490 # if (defined(UNIX) || defined(VMS))
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
491 {(int)KS_FD, "\033[?1004l"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
492 {(int)KS_FE, "\033[?1004h"},
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
493 # endif
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
494
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
495 {K_UP, "\033O*A"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
496 {K_DOWN, "\033O*B"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
497 {K_RIGHT, "\033O*C"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
498 {K_LEFT, "\033O*D"},
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
499 // An extra set of cursor keys for vt100 mode
30914
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
500 {K_XUP, "\033[@;*A"}, // Esc [ A or Esc [ 1 ; A
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
501 {K_XDOWN, "\033[@;*B"}, // Esc [ B or Esc [ 1 ; B
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
502 {K_XRIGHT, "\033[@;*C"}, // Esc [ C or Esc [ 1 ; C
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
503 {K_XLEFT, "\033[@;*D"}, // Esc [ D or Esc [ 1 ; D
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
504 // An extra set of function keys for vt100 mode
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
505 {K_XF1, "\033O*P"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
506 {K_XF2, "\033O*Q"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
507 {K_XF3, "\033O*R"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
508 {K_XF4, "\033O*S"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
509 {K_F1, "\033[11;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
510 {K_F2, "\033[12;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
511 {K_F3, "\033[13;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
512 {K_F4, "\033[14;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
513 {K_F5, "\033[15;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
514 {K_F6, "\033[17;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
515 {K_F7, "\033[18;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
516 {K_F8, "\033[19;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
517 {K_F9, "\033[20;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
518 {K_F10, "\033[21;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
519 {K_F11, "\033[23;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
520 {K_F12, "\033[24;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
521 {K_S_TAB, "\033[Z"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
522 {K_HELP, "\033[28;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
523 {K_UNDO, "\033[26;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
524 {K_INS, "\033[2;*~"},
30914
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
525 {K_HOME, "\033[@;*H"}, // Esc [ H or Esc 1 ; H
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
526 // {K_S_HOME, "\033O2H"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
527 // {K_C_HOME, "\033O5H"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
528 {K_KHOME, "\033[1;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
529 {K_XHOME, "\033O*H"}, // other Home
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
530 {K_ZHOME, "\033[7;*~"}, // other Home
30914
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
531 {K_END, "\033[@;*F"}, // Esc [ F or Esc 1 ; F
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
532 // {K_S_END, "\033O2F"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
533 // {K_C_END, "\033O5F"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
534 {K_KEND, "\033[4;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
535 {K_XEND, "\033O*F"}, // other End
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
536 {K_ZEND, "\033[8;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
537 {K_PAGEUP, "\033[5;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
538 {K_PAGEDOWN, "\033[6;*~"},
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
539 {K_KPLUS, "\033O*k"}, // keypad plus
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
540 {K_KMINUS, "\033O*m"}, // keypad minus
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
541 {K_KDIVIDE, "\033O*o"}, // keypad /
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
542 {K_KMULTIPLY, "\033O*j"}, // keypad *
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
543 {K_KENTER, "\033O*M"}, // keypad Enter
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
544 {K_KPOINT, "\033O*n"}, // keypad .
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
545 {K_K0, "\033O*p"}, // keypad 0
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
546 {K_K1, "\033O*q"}, // keypad 1
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
547 {K_K2, "\033O*r"}, // keypad 2
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
548 {K_K3, "\033O*s"}, // keypad 3
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
549 {K_K4, "\033O*t"}, // keypad 4
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
550 {K_K5, "\033O*u"}, // keypad 5
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
551 {K_K6, "\033O*v"}, // keypad 6
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
552 {K_K7, "\033O*w"}, // keypad 7
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
553 {K_K8, "\033O*x"}, // keypad 8
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
554 {K_K9, "\033O*y"}, // keypad 9
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
555 {K_KDEL, "\033[3;*~"}, // keypad Del
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
556 {K_PS, "\033[200~"}, // paste start
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
557 {K_PE, "\033[201~"}, // paste end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 {BT_EXTRA_KEYS, ""},
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
560 {TERMCAP2KEY('k', '0'), "\033[10;*~"}, // F0
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
561 {TERMCAP2KEY('F', '3'), "\033[25;*~"}, // F13
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
562 // 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
563 // and help key, although they don't work on all keyboards.
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
564 {TERMCAP2KEY('F', '6'), "\033[29;*~"}, // F16
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
565 {TERMCAP2KEY('F', '7'), "\033[31;*~"}, // F17
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
566 {TERMCAP2KEY('F', '8'), "\033[32;*~"}, // F18
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
567 {TERMCAP2KEY('F', '9'), "\033[33;*~"}, // F19
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
568 {TERMCAP2KEY('F', 'A'), "\033[34;*~"}, // F20
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
569
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
570 {TERMCAP2KEY('F', 'B'), "\033[42;*~"}, // F21
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
571 {TERMCAP2KEY('F', 'C'), "\033[43;*~"}, // F22
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
572 {TERMCAP2KEY('F', 'D'), "\033[44;*~"}, // F23
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
573 {TERMCAP2KEY('F', 'E'), "\033[45;*~"}, // F24
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
574 {TERMCAP2KEY('F', 'F'), "\033[46;*~"}, // F25
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
575 {TERMCAP2KEY('F', 'G'), "\033[47;*~"}, // F26
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
576 {TERMCAP2KEY('F', 'H'), "\033[48;*~"}, // F27
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
577 {TERMCAP2KEY('F', 'I'), "\033[49;*~"}, // F28
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
578 {TERMCAP2KEY('F', 'J'), "\033[50;*~"}, // F29
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
579 {TERMCAP2KEY('F', 'K'), "\033[51;*~"}, // F30
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
580
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
581 {TERMCAP2KEY('F', 'L'), "\033[52;*~"}, // F31
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
582 {TERMCAP2KEY('F', 'M'), "\033[53;*~"}, // F32
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
583 {TERMCAP2KEY('F', 'N'), "\033[54;*~"}, // F33
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
584 {TERMCAP2KEY('F', 'O'), "\033[55;*~"}, // F34
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
585 {TERMCAP2KEY('F', 'P'), "\033[56;*~"}, // F35
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
586 {TERMCAP2KEY('F', 'Q'), "\033[57;*~"}, // F36
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
587 {TERMCAP2KEY('F', 'R'), "\033[58;*~"}, // F37
29883
1342ee83ab97 patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents: 29869
diff changeset
588
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
589 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
590 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
591
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592 /*
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
593 * Additions for using modifyOtherKeys level 2. Same as what is used for
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
594 * xterm.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
595 */
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
596 static tcap_entry_T builtin_mok2[] = {
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
597 // t_TI enables modifyOtherKeys level 2
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
598 {(int)KS_CTI, "\033[>4;2m"},
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
599
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
600 // XTQMODKEYS was added in xterm version 377: "CSI ? 4 m" which should
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
601 // return "{lead} > 4 ; Pv m". Before version 377 we expect it to have no
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
602 // effect.
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
603 {(int)KS_CRK, "\033[?4m"},
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
604
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
605 // t_TE disables modifyOtherKeys
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
606 {(int)KS_CTE, "\033[>4;m"},
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
607
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
608 {(int)KS_NAME, NULL} // end marker
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
609 };
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
610
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
611 /*
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
612 * Additions for using the Kitty keyboard protocol.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
613 */
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
614 static tcap_entry_T builtin_kitty[] = {
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
615 // t_TI enables the kitty keyboard protocol.
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
616 {(int)KS_CTI, "\033[=1;1u"},
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
617
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
618 // t_RK requests the kitty keyboard protocol state
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
619 {(int)KS_CRK, "\033[?u"},
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
620
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
621 // t_TE also disables modifyOtherKeys, because t_TI from xterm may already
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
622 // have been used.
31285
76acee969543 patch 9.0.0976: enabling the kitty keyboard protocol uses push/pop
Bram Moolenaar <Bram@vim.org>
parents: 31281
diff changeset
623 {(int)KS_CTE, "\033[>4;m\033[=0;1u"},
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
624
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
625 {(int)KS_NAME, NULL} // end marker
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
626 };
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
627
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
628 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 * iris-ansi for Silicon Graphics machines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
631 static tcap_entry_T builtin_iris_ansi[] = {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
632 {(int)KS_CE, "\033[K"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
633 {(int)KS_CD, "\033[J"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
634 {(int)KS_AL, "\033[L"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
636 {(int)KS_CAL, "\033[%p1%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 {(int)KS_CAL, "\033[%dL"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
639 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 {(int)KS_DL, "\033[M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 {(int)KS_CDL, "\033[%p1%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 {(int)KS_CDL, "\033[%dM"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
646 #if 0 // The scroll region is not working as Vim expects.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 {(int)KS_CS, "\033[%i%p1%d;%p2%dr"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 {(int)KS_CS, "\033[%i%d;%dr"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 {(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
654 {(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
655 {(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
656 {(int)KS_TI, "\033[=6h"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 {(int)KS_TE, "\033[=6l"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 {(int)KS_SE, "\033[21;27m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 {(int)KS_SO, "\033[1;7m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 {(int)KS_ME, "\033[m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 {(int)KS_MR, "\033[7m"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 {(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
663 {(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
664 {(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
665 {(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
666 {(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
667 {(int)KS_UE, "\033[24m"}, // underline off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 # ifdef TERMINFO
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
669 {(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
670 {(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
671 {(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
672 {(int)KS_CSF, "\033[101;%p1%dm"}, // set screen foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
674 {(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
675 {(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
676 {(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
677 {(int)KS_CSF, "\033[101;%dm"}, // set screen foreground color
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 # endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
679 {(int)KS_MS, "y"}, // guessed
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
680 {(int)KS_UT, "y"}, // guessed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 {(int)KS_LE, "\b"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 {(int)KS_CM, "\033[%i%d;%dH"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 {(int)KS_SR, "\033M"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 {(int)KS_CRI, "\033[%p1%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 {(int)KS_CRI, "\033[%dC"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 {(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
694 {(int)KS_CIE, "\234"}, // ST "String Terminator"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 {(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
696 {(int)KS_FS, "\234"}, // ST "String Terminator"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 {(int)KS_CWS, "\033[203;%p1%d;%p2%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 {(int)KS_CWP, "\033[205;%p1%d;%p2%d/y"},
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_CWS, "\033[203;%d;%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 {(int)KS_CWP, "\033[205;%d;%d/y"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 {K_UP, "\033[A"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 {K_DOWN, "\033[B"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 {K_LEFT, "\033[D"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 {K_RIGHT, "\033[C"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 {K_S_UP, "\033[161q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 {K_S_DOWN, "\033[164q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 {K_S_LEFT, "\033[158q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711 {K_S_RIGHT, "\033[167q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 {K_F1, "\033[001q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 {K_F2, "\033[002q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 {K_F3, "\033[003q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 {K_F4, "\033[004q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 {K_F5, "\033[005q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 {K_F6, "\033[006q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 {K_F7, "\033[007q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 {K_F8, "\033[008q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720 {K_F9, "\033[009q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 {K_F10, "\033[010q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 {K_F11, "\033[011q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723 {K_F12, "\033[012q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 {K_S_F1, "\033[013q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 {K_S_F2, "\033[014q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726 {K_S_F3, "\033[015q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 {K_S_F4, "\033[016q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728 {K_S_F5, "\033[017q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 {K_S_F6, "\033[018q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 {K_S_F7, "\033[019q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
731 {K_S_F8, "\033[020q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 {K_S_F9, "\033[021q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 {K_S_F10, "\033[022q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
734 {K_S_F11, "\033[023q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
735 {K_S_F12, "\033[024q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 {K_INS, "\033[139q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 {K_HOME, "\033[H"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 {K_END, "\033[146q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
739 {K_PAGEUP, "\033[150q"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740 {K_PAGEDOWN, "\033[154q"},
29883
1342ee83ab97 patch 9.0.0280: the builtin termcap list depends on the version
Bram Moolenaar <Bram@vim.org>
parents: 29869
diff changeset
741
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
742 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
743 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
744
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745 /*
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
746 * These codes are valid when nansi.sys or equivalent has been installed.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
747 * Function keys on a PC are preceded with a NUL. These are converted into
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
748 * K_NUL '\316' in mch_inchar(), because we cannot handle NULs in key codes.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
749 * CTRL-arrow is used instead of SHIFT-arrow.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
750 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
751 static tcap_entry_T builtin_pcansi[] = {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
752 {(int)KS_DL, "\033[M"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
753 {(int)KS_AL, "\033[L"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
754 {(int)KS_CE, "\033[K"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
755 {(int)KS_CL, "\033[2J"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
756 {(int)KS_ME, "\033[0m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
757 {(int)KS_MR, "\033[5m"}, // reverse: black on lightgrey
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
758 {(int)KS_MD, "\033[1m"}, // bold: white text
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
759 {(int)KS_SE, "\033[0m"}, // standout end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
760 {(int)KS_SO, "\033[31m"}, // standout: white on blue
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
761 {(int)KS_CZH, "\033[34;43m"}, // italic mode: blue text on yellow
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
762 {(int)KS_CZR, "\033[0m"}, // italic mode end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
763 {(int)KS_US, "\033[36;41m"}, // underscore mode: cyan text on red
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
764 {(int)KS_UE, "\033[0m"}, // underscore mode end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
765 {(int)KS_CCO, "8"}, // allow 8 colors
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
766 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
767 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
768 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
769 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
770 {(int)KS_CAB, "\033[4%dm"}, // set background color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
771 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
772 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
773 {(int)KS_OP, "\033[0m"}, // reset colors
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
774 {(int)KS_MS, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
775 {(int)KS_UT, "y"}, // guessed
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
776 {(int)KS_LE, "\b"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
777 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
778 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
779 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
780 {(int)KS_CM, "\033[%i%d;%dH"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
781 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
782 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
783 {(int)KS_CRI, "\033[%p1%dC"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
784 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
785 {(int)KS_CRI, "\033[%dC"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
786 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
787 {K_UP, "\316H"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
788 {K_DOWN, "\316P"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
789 {K_LEFT, "\316K"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
790 {K_RIGHT, "\316M"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
791 {K_S_LEFT, "\316s"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
792 {K_S_RIGHT, "\316t"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
793 {K_F1, "\316;"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
794 {K_F2, "\316<"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
795 {K_F3, "\316="},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
796 {K_F4, "\316>"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
797 {K_F5, "\316?"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
798 {K_F6, "\316@"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
799 {K_F7, "\316A"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
800 {K_F8, "\316B"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
801 {K_F9, "\316C"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
802 {K_F10, "\316D"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
803 {K_F11, "\316\205"}, // guessed
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
804 {K_F12, "\316\206"}, // guessed
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
805 {K_S_F1, "\316T"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
806 {K_S_F2, "\316U"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
807 {K_S_F3, "\316V"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
808 {K_S_F4, "\316W"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
809 {K_S_F5, "\316X"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
810 {K_S_F6, "\316Y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
811 {K_S_F7, "\316Z"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
812 {K_S_F8, "\316["},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
813 {K_S_F9, "\316\\"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
814 {K_S_F10, "\316]"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
815 {K_S_F11, "\316\207"}, // guessed
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
816 {K_S_F12, "\316\210"}, // guessed
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
817 {K_INS, "\316R"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
818 {K_DEL, "\316S"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
819 {K_HOME, "\316G"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
820 {K_END, "\316O"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
821 {K_PAGEDOWN, "\316Q"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
822 {K_PAGEUP, "\316I"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
823
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
824 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
825 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
826
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
827 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
828 * These codes are valid for the Win32 Console . The entries that start with
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
829 * ESC | are translated into console calls in os_win32.c. The function keys
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
830 * are also translated in os_win32.c.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
832 static tcap_entry_T builtin_win32[] = {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
833 {(int)KS_CE, "\033|K"}, // clear to end of line
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
834 {(int)KS_AL, "\033|L"}, // add new blank line
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
835 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
836 {(int)KS_CAL, "\033|%p1%dL"}, // add number of new blank lines
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
837 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
838 {(int)KS_CAL, "\033|%dL"}, // add number of new blank lines
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
839 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
840 {(int)KS_DL, "\033|M"}, // delete line
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
841 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
842 {(int)KS_CDL, "\033|%p1%dM"}, // delete number of lines
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
843 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
844 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
845 {(int)KS_CDL, "\033|%dM"}, // delete number of lines
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
846 {(int)KS_CSV, "\033|%d;%dV"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
847 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
848 {(int)KS_CL, "\033|J"}, // clear screen
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
849 {(int)KS_CD, "\033|j"}, // clear to end of display
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
850 {(int)KS_VI, "\033|v"}, // cursor invisible
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
851 {(int)KS_VE, "\033|V"}, // cursor visible
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
852
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
853 {(int)KS_ME, "\033|0m"}, // normal
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
854 {(int)KS_MR, "\033|112m"}, // reverse: black on lightgray
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
855 {(int)KS_MD, "\033|15m"}, // bold: white on black
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
856 #if 1
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
857 {(int)KS_SO, "\033|31m"}, // standout: white on blue
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
858 {(int)KS_SE, "\033|0m"}, // standout end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
859 #else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
860 {(int)KS_SO, "\033|F"}, // standout: high intensity
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
861 {(int)KS_SE, "\033|f"}, // standout end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
862 #endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
863 {(int)KS_CZH, "\033|225m"}, // italic: blue text on yellow
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
864 {(int)KS_CZR, "\033|0m"}, // italic end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
865 {(int)KS_US, "\033|67m"}, // underscore: cyan text on red
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
866 {(int)KS_UE, "\033|0m"}, // underscore end
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
867 {(int)KS_CCO, "16"}, // allow 16 colors
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
868 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
869 {(int)KS_CAB, "\033|%p1%db"}, // set background color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
870 {(int)KS_CAF, "\033|%p1%df"}, // set foreground color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
871 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
872 {(int)KS_CAB, "\033|%db"}, // set background color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
873 {(int)KS_CAF, "\033|%df"}, // set foreground color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
874 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
875
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
876 {(int)KS_MS, "y"}, // save to move cur in reverse mode
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
877 {(int)KS_UT, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
878 {(int)KS_XN, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
879 {(int)KS_LE, "\b"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
880 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
881 {(int)KS_CM, "\033|%i%p1%d;%p2%dH"}, // cursor motion
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
882 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
883 {(int)KS_CM, "\033|%i%d;%dH"}, // cursor motion
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
884 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
885 {(int)KS_VB, "\033|B"}, // visual bell
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
886 {(int)KS_TI, "\033|S"}, // put terminal in termcap mode
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
887 {(int)KS_TE, "\033|E"}, // out of termcap mode
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
888 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
889 {(int)KS_CS, "\033|%i%p1%d;%p2%dr"}, // scroll region
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
890 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
891 {(int)KS_CS, "\033|%i%d;%dr"}, // scroll region
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
892 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
893 # ifdef FEAT_TERMGUICOLORS
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
894 {(int)KS_8F, "\033|38;2;%lu;%lu;%lum"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
895 {(int)KS_8B, "\033|48;2;%lu;%lu;%lum"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
896 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
897
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
898 {K_UP, "\316H"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
899 {K_DOWN, "\316P"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
900 {K_LEFT, "\316K"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
901 {K_RIGHT, "\316M"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
902 {K_S_UP, "\316\304"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
903 {K_S_DOWN, "\316\317"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
904 {K_S_LEFT, "\316\311"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
905 {K_C_LEFT, "\316s"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
906 {K_S_RIGHT, "\316\313"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
907 {K_C_RIGHT, "\316t"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
908 {K_S_TAB, "\316\017"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
909 {K_F1, "\316;"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
910 {K_F2, "\316<"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
911 {K_F3, "\316="},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
912 {K_F4, "\316>"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
913 {K_F5, "\316?"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
914 {K_F6, "\316@"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
915 {K_F7, "\316A"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
916 {K_F8, "\316B"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
917 {K_F9, "\316C"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
918 {K_F10, "\316D"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
919 {K_F11, "\316\205"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
920 {K_F12, "\316\206"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
921 {K_S_F1, "\316T"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
922 {K_S_F2, "\316U"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
923 {K_S_F3, "\316V"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
924 {K_S_F4, "\316W"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
925 {K_S_F5, "\316X"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
926 {K_S_F6, "\316Y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
927 {K_S_F7, "\316Z"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
928 {K_S_F8, "\316["},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
929 {K_S_F9, "\316\\"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
930 {K_S_F10, "\316]"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
931 {K_S_F11, "\316\207"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
932 {K_S_F12, "\316\210"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
933 {K_INS, "\316R"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
934 {K_DEL, "\316S"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
935 {K_HOME, "\316G"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
936 {K_S_HOME, "\316\302"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
937 {K_C_HOME, "\316w"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
938 {K_END, "\316O"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
939 {K_S_END, "\316\315"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
940 {K_C_END, "\316u"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
941 {K_PAGEDOWN, "\316Q"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
942 {K_PAGEUP, "\316I"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
943 {K_KPLUS, "\316N"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
944 {K_KMINUS, "\316J"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
945 {K_KMULTIPLY, "\316\067"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
946 {K_K0, "\316\332"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
947 {K_K1, "\316\336"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
948 {K_K2, "\316\342"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
949 {K_K3, "\316\346"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
950 {K_K4, "\316\352"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
951 {K_K5, "\316\356"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
952 {K_K6, "\316\362"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
953 {K_K7, "\316\366"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
954 {K_K8, "\316\372"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
955 {K_K9, "\316\376"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
956 {K_BS, "\316x"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
957 {K_S_BS, "\316y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
958
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
959 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
960 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
961
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
962 #if defined(FEAT_GUI)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
963 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
964 * GUI uses made-up codes, only used inside Vim.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
965 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
966 static tcap_entry_T builtin_gui[] = {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
967 {(int)KS_CE, "\033|$"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
968 {(int)KS_AL, "\033|i"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
969 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
970 {(int)KS_CAL, "\033|%p1%dI"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
971 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
972 {(int)KS_CAL, "\033|%dI"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
973 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
974 {(int)KS_DL, "\033|d"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
975 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
976 {(int)KS_CDL, "\033|%p1%dD"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
977 {(int)KS_CS, "\033|%p1%d;%p2%dR"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
978 {(int)KS_CSV, "\033|%p1%d;%p2%dV"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
979 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
980 {(int)KS_CDL, "\033|%dD"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
981 {(int)KS_CS, "\033|%d;%dR"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
982 {(int)KS_CSV, "\033|%d;%dV"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
983 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
984 {(int)KS_CL, "\033|C"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
985 // attributes switched on with 'h', off with * 'H'
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
986 {(int)KS_ME, "\033|31H"}, // HL_ALL
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
987 {(int)KS_MR, "\033|1h"}, // HL_INVERSE
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
988 {(int)KS_MD, "\033|2h"}, // HL_BOLD
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
989 {(int)KS_SE, "\033|16H"}, // HL_STANDOUT
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
990 {(int)KS_SO, "\033|16h"}, // HL_STANDOUT
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
991 {(int)KS_UE, "\033|8H"}, // HL_UNDERLINE
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
992 {(int)KS_US, "\033|8h"}, // HL_UNDERLINE
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
993 {(int)KS_UCE, "\033|8C"}, // HL_UNDERCURL
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
994 {(int)KS_UCS, "\033|8c"}, // HL_UNDERCURL
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
995 {(int)KS_STE, "\033|4C"}, // HL_STRIKETHROUGH
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
996 {(int)KS_STS, "\033|4c"}, // HL_STRIKETHROUGH
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
997 {(int)KS_CZR, "\033|4H"}, // HL_ITALIC
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
998 {(int)KS_CZH, "\033|4h"}, // HL_ITALIC
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
999 {(int)KS_VB, "\033|f"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1000 {(int)KS_MS, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1001 {(int)KS_UT, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1002 {(int)KS_XN, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1003 {(int)KS_LE, "\b"}, // cursor-left = BS
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1004 {(int)KS_ND, "\014"}, // cursor-right = CTRL-L
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1005 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1006 {(int)KS_CM, "\033|%p1%d;%p2%dM"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1007 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1008 {(int)KS_CM, "\033|%d;%dM"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1009 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1010 // there are no key sequences here, the GUI sequences are recognized
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1011 // in check_termcode()
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1012
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1013 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1014 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1015 #endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1016
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1017 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1018 * Amiga console window, default for Amiga.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1019 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1020 static tcap_entry_T builtin_amiga[] = {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1021 {(int)KS_CE, "\033[K"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1022 {(int)KS_CD, "\033[J"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1023 {(int)KS_AL, "\033[L"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1024 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1025 {(int)KS_CAL, "\033[%p1%dL"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1026 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1027 {(int)KS_CAL, "\033[%dL"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1028 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1029 {(int)KS_DL, "\033[M"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1030 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1031 {(int)KS_CDL, "\033[%p1%dM"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1032 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1033 {(int)KS_CDL, "\033[%dM"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1034 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1035 {(int)KS_CL, "\014"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1036 {(int)KS_VI, "\033[0 p"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1037 {(int)KS_VE, "\033[1 p"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1038 {(int)KS_ME, "\033[0m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1039 {(int)KS_MR, "\033[7m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1040 {(int)KS_MD, "\033[1m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1041 {(int)KS_SE, "\033[0m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1042 {(int)KS_SO, "\033[33m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1043 {(int)KS_US, "\033[4m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1044 {(int)KS_UE, "\033[0m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1045 {(int)KS_CZH, "\033[3m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1046 {(int)KS_CZR, "\033[0m"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1047 #if defined(__amigaos4__) || defined(__MORPHOS__) || defined(__AROS__)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1048 {(int)KS_CCO, "8"}, // allow 8 colors
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1049 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1050 {(int)KS_CAB, "\033[4%p1%dm"},// set background color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1051 {(int)KS_CAF, "\033[3%p1%dm"},// set foreground color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1052 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1053 {(int)KS_CAB, "\033[4%dm"}, // set background color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1054 {(int)KS_CAF, "\033[3%dm"}, // set foreground color
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1055 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1056 {(int)KS_OP, "\033[m"}, // reset colors
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1057 #endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1058 {(int)KS_MS, "y"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1059 {(int)KS_UT, "y"}, // guessed
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1060 {(int)KS_LE, "\b"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1061 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1062 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1063 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1064 {(int)KS_CM, "\033[%i%d;%dH"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1065 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1066 #if defined(__MORPHOS__)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1067 {(int)KS_SR, "\033M"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1068 #endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1069 # ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1070 {(int)KS_CRI, "\033[%p1%dC"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1071 # else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1072 {(int)KS_CRI, "\033[%dC"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1073 # endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1074 {K_UP, "\233A"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1075 {K_DOWN, "\233B"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1076 {K_LEFT, "\233D"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1077 {K_RIGHT, "\233C"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1078 {K_S_UP, "\233T"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1079 {K_S_DOWN, "\233S"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1080 {K_S_LEFT, "\233 A"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1081 {K_S_RIGHT, "\233 @"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1082 {K_S_TAB, "\233Z"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1083 {K_F1, "\233\060~"},// some compilers don't dig "\2330"
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1084 {K_F2, "\233\061~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1085 {K_F3, "\233\062~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1086 {K_F4, "\233\063~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1087 {K_F5, "\233\064~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1088 {K_F6, "\233\065~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1089 {K_F7, "\233\066~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1090 {K_F8, "\233\067~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1091 {K_F9, "\233\070~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1092 {K_F10, "\233\071~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1093 {K_S_F1, "\233\061\060~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1094 {K_S_F2, "\233\061\061~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1095 {K_S_F3, "\233\061\062~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1096 {K_S_F4, "\233\061\063~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1097 {K_S_F5, "\233\061\064~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1098 {K_S_F6, "\233\061\065~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1099 {K_S_F7, "\233\061\066~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1100 {K_S_F8, "\233\061\067~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1101 {K_S_F9, "\233\061\070~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1102 {K_S_F10, "\233\061\071~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1103 {K_HELP, "\233?~"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1104 {K_INS, "\233\064\060~"}, // 101 key keyboard
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1105 {K_PAGEUP, "\233\064\061~"}, // 101 key keyboard
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1106 {K_PAGEDOWN, "\233\064\062~"}, // 101 key keyboard
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1107 {K_HOME, "\233\064\064~"}, // 101 key keyboard
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1108 {K_END, "\233\064\065~"}, // 101 key keyboard
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1109
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1110 {BT_EXTRA_KEYS, ""},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1111 {TERMCAP2KEY('#', '2'), "\233\065\064~"}, // shifted home key
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1112 {TERMCAP2KEY('#', '3'), "\233\065\060~"}, // shifted insert key
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1113 {TERMCAP2KEY('*', '7'), "\233\065\065~"}, // shifted end key
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1114
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1115 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1116 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1117
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1118 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1119 * The most minimal terminal: only clear screen and cursor positioning.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1120 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1121 static tcap_entry_T builtin_dumb[] = {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1122 {(int)KS_CL, "\014"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1123 #ifdef TERMINFO
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1124 {(int)KS_CM, "\033[%i%p1%d;%p2%dH"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1125 #else
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1126 {(int)KS_CM, "\033[%i%d;%dH"},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1127 #endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1128
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1129 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1130 };
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1131
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1132 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1133 * Terminal used for debugging.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1134 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1135 static tcap_entry_T builtin_debug[] = {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136 {(int)KS_CE, "[CE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 {(int)KS_CD, "[CD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1138 {(int)KS_AL, "[AL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1139 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 {(int)KS_CAL, "[CAL%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1141 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1142 {(int)KS_CAL, "[CAL%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144 {(int)KS_DL, "[DL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146 {(int)KS_CDL, "[CDL%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1147 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1148 {(int)KS_CDL, "[CDL%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1149 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1150 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1151 {(int)KS_CS, "[%p1%dCS%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1152 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 {(int)KS_CS, "[%dCS%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 # endif
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12429
diff changeset
1155 # ifdef TERMINFO
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1156 {(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
1157 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1158 {(int)KS_CSV, "[%dCSV%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1159 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1161 {(int)KS_CAB, "[CAB%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1162 {(int)KS_CAF, "[CAF%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1163 {(int)KS_CSB, "[CSB%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1164 {(int)KS_CSF, "[CSF%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1165 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1166 {(int)KS_CAB, "[CAB%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1167 {(int)KS_CAF, "[CAF%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1168 {(int)KS_CSB, "[CSB%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1169 {(int)KS_CSF, "[CSF%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 # endif
20619
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
1171 {(int)KS_CAU, "[CAU%d]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 {(int)KS_OP, "[OP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 {(int)KS_LE, "[LE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 {(int)KS_CL, "[CL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 {(int)KS_VI, "[VI]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176 {(int)KS_VE, "[VE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1177 {(int)KS_VS, "[VS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 {(int)KS_ME, "[ME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 {(int)KS_MR, "[MR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1180 {(int)KS_MB, "[MB]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181 {(int)KS_MD, "[MD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 {(int)KS_SE, "[SE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 {(int)KS_SO, "[SO]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184 {(int)KS_UE, "[UE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185 {(int)KS_US, "[US]"},
205
d292c40ca788 updated for version 7.0060
vimboss
parents: 180
diff changeset
1186 {(int)KS_UCE, "[UCE]"},
d292c40ca788 updated for version 7.0060
vimboss
parents: 180
diff changeset
1187 {(int)KS_UCS, "[UCS]"},
29328
60977de70684 patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents: 29286
diff changeset
1188 {(int)KS_USS, "[USS]"},
60977de70684 patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents: 29286
diff changeset
1189 {(int)KS_DS, "[DS]"},
60977de70684 patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents: 29286
diff changeset
1190 {(int)KS_CDS, "[CDS]"},
12317
2a8890b80923 patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents: 12307
diff changeset
1191 {(int)KS_STE, "[STE]"},
2a8890b80923 patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents: 12307
diff changeset
1192 {(int)KS_STS, "[STS]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 {(int)KS_MS, "[MS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 {(int)KS_UT, "[UT]"},
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
1195 {(int)KS_XN, "[XN]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1196 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 {(int)KS_CM, "[%p1%dCM%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1198 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199 {(int)KS_CM, "[%dCM%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_SR, "[SR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 {(int)KS_CRI, "[CRI%p1%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 {(int)KS_CRI, "[CRI%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 {(int)KS_VB, "[VB]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 {(int)KS_KS, "[KS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209 {(int)KS_KE, "[KE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 {(int)KS_TI, "[TI]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 {(int)KS_TE, "[TE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 {(int)KS_CIS, "[CIS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 {(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
1214 {(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
1215 {(int)KS_CEC, "[CEC]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216 {(int)KS_TS, "[TS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 {(int)KS_FS, "[FS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 {(int)KS_CWS, "[%p1%dCWS%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 {(int)KS_CWP, "[%p1%dCWP%p2%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 {(int)KS_CWS, "[%dCWS%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 {(int)KS_CWP, "[%dCWP%d]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 {(int)KS_CRV, "[CRV]"},
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
1226 {(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
1227 {(int)KS_RFG, "[RFG]"},
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
1228 {(int)KS_RBG, "[RBG]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 {K_UP, "[KU]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 {K_DOWN, "[KD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 {K_LEFT, "[KL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232 {K_RIGHT, "[KR]"},
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1233 {K_XUP, "[xKU]"},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1234 {K_XDOWN, "[xKD]"},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1235 {K_XLEFT, "[xKL]"},
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
1236 {K_XRIGHT, "[xKR]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1237 {K_S_UP, "[S-KU]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 {K_S_DOWN, "[S-KD]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239 {K_S_LEFT, "[S-KL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1240 {K_C_LEFT, "[C-KL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1241 {K_S_RIGHT, "[S-KR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 {K_C_RIGHT, "[C-KR]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 {K_F1, "[F1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 {K_XF1, "[xF1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245 {K_F2, "[F2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 {K_XF2, "[xF2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 {K_F3, "[F3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 {K_XF3, "[xF3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 {K_F4, "[F4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250 {K_XF4, "[xF4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 {K_F5, "[F5]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 {K_F6, "[F6]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 {K_F7, "[F7]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 {K_F8, "[F8]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 {K_F9, "[F9]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 {K_F10, "[F10]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 {K_F11, "[F11]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 {K_F12, "[F12]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1259 {K_S_F1, "[S-F1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1260 {K_S_XF1, "[S-xF1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 {K_S_F2, "[S-F2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 {K_S_XF2, "[S-xF2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 {K_S_F3, "[S-F3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264 {K_S_XF3, "[S-xF3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 {K_S_F4, "[S-F4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 {K_S_XF4, "[S-xF4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 {K_S_F5, "[S-F5]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 {K_S_F6, "[S-F6]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1269 {K_S_F7, "[S-F7]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1270 {K_S_F8, "[S-F8]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1271 {K_S_F9, "[S-F9]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272 {K_S_F10, "[S-F10]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 {K_S_F11, "[S-F11]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 {K_S_F12, "[S-F12]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1275 {K_HELP, "[HELP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 {K_UNDO, "[UNDO]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 {K_BS, "[BS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 {K_INS, "[INS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 {K_KINS, "[KINS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 {K_DEL, "[DEL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281 {K_KDEL, "[KDEL]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282 {K_HOME, "[HOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283 {K_S_HOME, "[C-HOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 {K_C_HOME, "[C-HOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 {K_KHOME, "[KHOME]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 {K_XHOME, "[XHOME]"},
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 227
diff changeset
1287 {K_ZHOME, "[ZHOME]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 {K_END, "[END]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1289 {K_S_END, "[C-END]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1290 {K_C_END, "[C-END]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1291 {K_KEND, "[KEND]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1292 {K_XEND, "[XEND]"},
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 227
diff changeset
1293 {K_ZEND, "[ZEND]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1294 {K_PAGEUP, "[PAGEUP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1295 {K_PAGEDOWN, "[PAGEDOWN]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296 {K_KPAGEUP, "[KPAGEUP]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1297 {K_KPAGEDOWN, "[KPAGEDOWN]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1298 {K_MOUSE, "[MOUSE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1299 {K_KPLUS, "[KPLUS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1300 {K_KMINUS, "[KMINUS]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1301 {K_KDIVIDE, "[KDIVIDE]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1302 {K_KMULTIPLY, "[KMULTIPLY]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1303 {K_KENTER, "[KENTER]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1304 {K_KPOINT, "[KPOINT]"},
10640
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10512
diff changeset
1305 {K_PS, "[PASTE-START]"},
27be410d6d29 patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents: 10512
diff changeset
1306 {K_PE, "[PASTE-END]"},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1307 {K_K0, "[K0]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1308 {K_K1, "[K1]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1309 {K_K2, "[K2]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1310 {K_K3, "[K3]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1311 {K_K4, "[K4]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1312 {K_K5, "[K5]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1313 {K_K6, "[K6]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1314 {K_K7, "[K7]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 {K_K8, "[K8]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 {K_K9, "[K9]"},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1318 {(int)KS_NAME, NULL} // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1319 };
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1320
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1321 /*
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1322 * List of builtin terminals.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1324 typedef struct {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1325 char *bitc_name; // name, such as "xterm"
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1326 tcap_entry_T *bitc_table; // table with entries for bitc_name
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1327 } builtin_tcap_T;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1328
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1329 builtin_tcap_T builtin_terminals[] = {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1330 // Unix and Generic
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1331 {"ansi", builtin_ansi},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1332 {"vt320", builtin_vt320},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1333 {"vt52", builtin_vt52},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1334 {"xterm", builtin_xterm},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1335 {"iris-ansi", builtin_iris_ansi},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1336
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1337 // MS-Windows
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1338 {"pcansi", builtin_pcansi},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1339 {"win32", builtin_win32},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1340
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1341 // Other systems
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1342 #if defined(FEAT_GUI)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1343 {"gui", builtin_gui},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1344 #endif
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1345 {"amiga", builtin_amiga},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1346 {"dumb", builtin_dumb},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1347 {"debug", builtin_debug},
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1348
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1349 {NULL, NULL}, // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1350 };
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1351
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1352 #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
1353 static guicolor_T
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1354 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
1355 {
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
1356 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
1357 }
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1358
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1359 guicolor_T
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1360 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
1361 {
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1362 guicolor_T t;
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1363
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1364 if (*name == NUL)
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1365 return INVALCOLOR;
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1366 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
1367
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1368 if (t == INVALCOLOR)
26057
92c424550367 patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents: 25475
diff changeset
1369 semsg(_(e_cannot_allocate_color_str), name);
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1370 return t;
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1371 }
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1372
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
1373 guicolor_T
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
1374 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
1375 {
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
1376 return color;
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1377 }
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1378 #endif
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1379
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381 * DEFAULT_TERM is used, when no terminal is specified with -T option or $TERM.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1382 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1383 #ifdef AMIGA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1384 # define DEFAULT_TERM (char_u *)"amiga"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1386
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1387 #ifdef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1388 # define DEFAULT_TERM (char_u *)"win32"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1389 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1390
21329
bb3f60b0aca0 patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 21226
diff changeset
1391 #if defined(UNIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1392 # define DEFAULT_TERM (char_u *)"ansi"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1393 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1394
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1395 #ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 # define DEFAULT_TERM (char_u *)"vt320"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1397 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1398
19526
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
1399 #ifdef __HAIKU__
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
1400 # undef DEFAULT_TERM
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
1401 # define DEFAULT_TERM (char_u *)"xterm"
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
1402 #endif
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
1403
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404 #ifndef DEFAULT_TERM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405 # define DEFAULT_TERM (char_u *)"dumb"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1406 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1408 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1409 * Term_strings contains currently used terminal output strings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1410 * It is initialized with the default values by parse_builtin_tcap().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 * The values can be changed by setting the option with the same name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1412 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 char_u *(term_strings[(int)KS_LAST + 1]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1415 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
1416 static char_u termleader[256 + 1]; // for check_termcode()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417 #ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1418 static int check_for_codes = FALSE; // check for key code response
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1419 #endif
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1420
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1421 /*
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1422 * Structure and table to store terminal features that can be detected by
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1423 * querying the terminal. Either by inspecting the termresponse or a more
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1424 * specific request. Besides this there are:
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1425 * t_colors - number of colors supported
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1426 */
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1427 typedef struct {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1428 char *tpr_name;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1429 int tpr_set_by_termresponse;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1430 int tpr_status;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1431 } termprop_T;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1432
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1433 // Values for tpr_status.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1434 #define TPR_UNKNOWN 'u'
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1435 #define TPR_YES 'y'
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1436 #define TPR_NO 'n'
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1437 #define TPR_MOUSE_XTERM 'x' // use "xterm" for 'ttymouse'
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1438 #define TPR_MOUSE_XTERM2 '2' // use "xterm2" for 'ttymouse'
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1439 #define TPR_MOUSE_SGR 's' // use "sgr" for 'ttymouse'
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1440
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1441 // can request the cursor style without messing up the display
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1442 #define TPR_CURSOR_STYLE 0
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1443 // can request the cursor blink mode without messing up the display
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1444 #define TPR_CURSOR_BLINK 1
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1445 // can set the underline color with t_8u without resetting other colors
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1446 #define TPR_UNDERLINE_RGB 2
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1447 // mouse support - TPR_MOUSE_XTERM, TPR_MOUSE_XTERM2 or TPR_MOUSE_SGR
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1448 #define TPR_MOUSE 3
30958
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
1449 // term response indicates kitty
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
1450 #define TPR_KITTY 4
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1451 // table size
30958
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
1452 #define TPR_COUNT 5
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1453
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1454 static termprop_T term_props[TPR_COUNT];
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1455
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1456 /*
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1457 * Initialize the term_props table.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1458 * When "all" is FALSE only set those that are detected from the version
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1459 * response.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1460 */
20836
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1461 void
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1462 init_term_props(int all)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1463 {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1464 int i;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1465
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1466 term_props[TPR_CURSOR_STYLE].tpr_name = "cursor_style";
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1467 term_props[TPR_CURSOR_STYLE].tpr_set_by_termresponse = FALSE;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1468 term_props[TPR_CURSOR_BLINK].tpr_name = "cursor_blink_mode";
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1469 term_props[TPR_CURSOR_BLINK].tpr_set_by_termresponse = FALSE;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1470 term_props[TPR_UNDERLINE_RGB].tpr_name = "underline_rgb";
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1471 term_props[TPR_UNDERLINE_RGB].tpr_set_by_termresponse = TRUE;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1472 term_props[TPR_MOUSE].tpr_name = "mouse";
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1473 term_props[TPR_MOUSE].tpr_set_by_termresponse = TRUE;
30958
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
1474 term_props[TPR_KITTY].tpr_name = "kitty";
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
1475 term_props[TPR_KITTY].tpr_set_by_termresponse = FALSE;
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1476
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1477 for (i = 0; i < TPR_COUNT; ++i)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1478 if (all || term_props[i].tpr_set_by_termresponse)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1479 term_props[i].tpr_status = TPR_UNKNOWN;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
1480 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1481
20836
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1482 #if defined(FEAT_EVAL) || defined(PROTO)
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1483 void
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1484 f_terminalprops(typval_T *argvars UNUSED, typval_T *rettv)
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1485 {
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1486 # ifdef FEAT_TERMRESPONSE
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1487 int i;
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1488 # endif
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1489
29175
755ab148288b patch 8.2.5107: some callers of rettv_list_alloc() check for not OK
Bram Moolenaar <Bram@vim.org>
parents: 29105
diff changeset
1490 if (rettv_dict_alloc(rettv) == FAIL)
20836
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1491 return;
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1492 # ifdef FEAT_TERMRESPONSE
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1493 for (i = 0; i < TPR_COUNT; ++i)
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1494 {
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1495 char_u value[2];
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1496
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1497 value[0] = term_props[i].tpr_status;
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1498 value[1] = NUL;
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1499 dict_add_string(rettv->vval.v_dict, term_props[i].tpr_name, value);
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1500 }
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1501 # endif
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1502 }
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1503 #endif
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1504
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1505 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1506 * Find the builtin termcap entries for "term".
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1507 * This also recognizes similar names. E.g. "xterm-256color" finds the "xterm"
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1508 * entry.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1509 * Returns NULL when "term" is not found.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1510 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1511 static tcap_entry_T *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1512 find_builtin_term(char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1514 for (int i = 0; ; ++i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1515 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1516 char_u *name = (char_u *)builtin_terminals[i].bitc_name;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1517 if (name == NULL) // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1518 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1519 #ifdef UNIX
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1520 if (STRCMP(name, "iris-ansi") == 0 && vim_is_iris(term))
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1521 return builtin_terminals[i].bitc_table;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1522 if (STRCMP(name, "xterm") == 0 && vim_is_xterm(term))
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1523 return builtin_terminals[i].bitc_table;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1524 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 #ifdef VMS
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1526 if (STRCMP(name, "vt320") == 0 && vim_is_vt300(term))
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1527 return builtin_terminals[i].bitc_table;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528 #endif
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1529 if (STRCMP(term, name) == 0)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1530 return builtin_terminals[i].bitc_table;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 }
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1532 return NULL;
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 /*
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1536 * Apply entries from a builtin termcap.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 static void
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1539 apply_builtin_tcap(char_u *term, tcap_entry_T *entries, int overwrite)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1540 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1541 int term_8bit = term_is_8bit(term);
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1542
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1543 for (tcap_entry_T *p = entries;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1544 p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1546 if ((int)p->bt_entry >= 0) // KS_xx entry
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 {
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1548 // Only set the value if it wasn't set yet or "overwrite" is TRUE.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 if (term_strings[p->bt_entry] == NULL
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1550 || term_strings[p->bt_entry] == empty_option
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1551 || overwrite)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 {
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1553 #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
1554 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
1555 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1556 // 8bit terminal: use CSI instead of <Esc>[
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 if (term_8bit && term_7to8bit((char_u *)p->bt_string) != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 char_u *s, *t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561 s = vim_strsave((char_u *)p->bt_string);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1562 if (s != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1563 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564 for (t = s; *t; ++t)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 if (term_7to8bit(t))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1566 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1567 *t = term_7to8bit(t);
14321
6bcac243b9de patch 8.1.0176: overlapping string argument for strcpy()
Christian Brabandt <cb@256bit.org>
parents: 14282
diff changeset
1568 STRMOVE(t + 1, t + 2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1569 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1570 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
1571 #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
1572 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
1573 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1574 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
1575 &term_strings[p->bt_entry]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1576 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1578 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
1579 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1580 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
1581 #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
1582 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
1583 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1584 }
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1585 #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
1586 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
1587 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1588 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1589 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1590 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1591 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1592 char_u name[2];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1593 name[0] = KEY2TERMCAP0((int)p->bt_entry);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 name[1] = KEY2TERMCAP1((int)p->bt_entry);
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1595 if (find_termcode(name) == NULL || overwrite)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1596 add_termcode(name, (char_u *)p->bt_string, term_8bit);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1597 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1598 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 }
11739
5c69c6d9e2eb patch 8.0.0752: build fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11731
diff changeset
1600
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 /*
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1602 * Parsing of the builtin termcap entries.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1603 * Caller should check if "term" is a valid builtin terminal name.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1604 * The terminal's name is not set, as this is already done in termcapinit().
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1605 */
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1606 static void
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1607 parse_builtin_tcap(char_u *term)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1608 {
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1609 tcap_entry_T *entries = find_builtin_term(term);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1610 if (entries != NULL)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1611 apply_builtin_tcap(term, entries, FALSE);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1612 }
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1613
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1614 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1615 * Set number of colors.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1616 * Store it as a number in t_colors.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1617 * Store it as a string in T_CCO (using nr_colors[]).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1618 */
19997
3d1de9093c01 patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
1619 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1620 set_color_count(int nr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1621 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1622 char_u nr_colors[20]; // string for number of colors
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1624 t_colors = nr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1625 if (t_colors > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1626 sprintf((char *)nr_colors, "%d", t_colors);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1628 *nr_colors = NUL;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
1629 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
1630 }
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
1631
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
1632 /*
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
1633 * 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
1634 */
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
1635 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
1636 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
1637 {
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
1638 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
1639 {
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1640 // Nr of colors changed, initialize highlighting and redraw everything.
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1641 // This causes a redraw, which usually clears the message. Try keeping
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1642 // the message if it 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
1643 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
1644 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
1645 init_highlight(TRUE, FALSE);
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1646 #ifdef DEBUG_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
1647 {
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
1648 int r = redraw_asap(UPD_CLEAR);
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1649
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
1650 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
1651 }
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1652 #else
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
1653 redraw_asap(UPD_CLEAR);
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
1654 #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
1655 }
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
1656 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1657
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1658 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1659 static char *(key_names[]) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1660 {
20524
bed30e6b5a09 patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents: 20500
diff changeset
1661 # ifdef FEAT_TERMRESPONSE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1662 // Do this one first, it may cause a screen redraw.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1663 "Co",
20524
bed30e6b5a09 patch 8.2.0816: terminal test fails when compiled with Athena
Bram Moolenaar <Bram@vim.org>
parents: 20500
diff changeset
1664 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1665 "ku", "kd", "kr", "kl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1666 "#2", "#4", "%i", "*7",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1667 "k1", "k2", "k3", "k4", "k5", "k6",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1668 "k7", "k8", "k9", "k;", "F1", "F2",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1669 "%1", "&8", "kb", "kI", "kD", "kh",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1670 "@7", "kP", "kN", "K1", "K3", "K4", "K5", "kB",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1671 NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1672 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1673 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1674
13874
fc2f175e8169 patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents: 13872
diff changeset
1675 #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
1676 static void
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1677 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
1678 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1679 static struct {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1680 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
1681 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
1682 } string_names[] =
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1683 { {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
1684 {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
1685 {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
1686 {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
1687 {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
1688 {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
1689 {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
1690 {KS_US, "us"}, {KS_UCE, "Ce"}, {KS_UCS, "Cs"},
29328
60977de70684 patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents: 29286
diff changeset
1691 {KS_USS, "Us"}, {KS_DS, "ds"}, {KS_CDS, "Ds"},
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1692 {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
1693 {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
1694 {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
1695 {KS_KE, "ke"}, {KS_TI, "ti"}, {KS_TE, "te"},
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1696 {KS_CTI, "TI"}, {KS_CRK, "RK"}, {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
1697 {KS_BC, "bc"}, {KS_CSB,"Sb"}, {KS_CSF,"Sf"},
20619
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
1698 {KS_CAB,"AB"}, {KS_CAF,"AF"}, {KS_CAU,"AU"},
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
1699 {KS_LE, "le"},
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1700 {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
1701 {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
1702 {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
1703 {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
1704 {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
1705 {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
1706 {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
1707 {KS_U7, "u7"}, {KS_RFG, "RF"}, {KS_RBG, "RB"},
20619
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
1708 {KS_8F, "8f"}, {KS_8B, "8b"}, {KS_8U, "8u"},
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1709 {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
1710 {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
1711 {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
1712 {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
1713 {(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
1714 };
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1715 int i;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1716 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
1717 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
1718 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
1719
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1720 /*
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1721 * 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
1722 */
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1723 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
1724 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1725 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
1726 || 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
1727 {
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1728 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
1729 #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
1730 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
1731 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1732 }
13872
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
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1735 // 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
1736 // 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
1737 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
1738 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
1739 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
1740 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
1741 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
1742 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
1743 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
1744 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
1745 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
1746 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
1747 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
1748 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
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 * 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
1752 */
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1753 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
1754 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
1755 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1756 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
1757 // 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
1758 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
1759 && (*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
1760 || 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
1761 || 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
1762 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
1763 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1764
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1765 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
1766 *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
1767 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
1768 *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
1769
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1770 /*
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1771 * 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
1772 */
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1773 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
1774 {
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1775 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
1776 #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
1777 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
1778 #endif
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
1779 }
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1780
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1781 # ifndef hpux
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1782 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
1783 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
1784 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
1785 if (p)
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1786 PC = *p;
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1787 # endif
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1788 }
13874
fc2f175e8169 patch 8.0.1808: can't build without TGETENT
Christian Brabandt <cb@256bit.org>
parents: 13872
diff changeset
1789 #endif
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1790
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1791 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1792 * Report "term" is not found and list the ones we do know about.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1793 */
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1794 static void
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
1795 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
1796 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1797 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
1798 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
1799 {
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
1800 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
1801 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
1802 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1803 mch_errmsg("'");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1804 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
1805 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
1806 mch_errmsg("\r\n");
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1807
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1808 for (int i = 0; ; ++i)
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1809 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1810 char *name = builtin_terminals[i].bitc_name;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1811 if (name == NULL) // end marker
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1812 break;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1813 // Do not mention the "gui" entry, the user won't need to type it.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1814 if (STRCMP(name, "gui") != 0)
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1815 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1816 #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
1817 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
1818 #else
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1819 mch_errmsg(" ");
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1820 #endif
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1821 mch_errmsg(name);
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1822 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
1823 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1824 }
21624
1d75baa22d9a patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents: 21329
diff changeset
1825 // Output extra 'cmdheight' line breaks to avoid that the following error
1d75baa22d9a patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents: 21329
diff changeset
1826 // message overwrites the last terminal name.
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1827 for (int i = 1; i < p_ch; ++i)
21624
1d75baa22d9a patch 8.2.1362: last entry of ":set term=xxx" overwritten by error message
Bram Moolenaar <Bram@vim.org>
parents: 21329
diff changeset
1828 mch_errmsg("\r\n");
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1829 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1830
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1831 static void
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1832 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
1833 {
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1834 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
1835 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
1836 mch_errmsg("'\r\n");
22742
f7f2d73ff85e patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents: 22522
diff changeset
1837 if (emsg_silent == 0 && !in_assert_fails)
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1838 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1839 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
1840 out_flush();
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1841 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
1842 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
1843 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1844 }
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1845
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1846 /*
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1847 * Parse the 'keyprotocol' option, match against "term" and return the protocol
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1848 * for the first matching entry.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1849 * When "term" is NULL then compile all patterns to check for any errors.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1850 * Returns KEYPROTOCOL_FAIL if a pattern cannot be compiled.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1851 * Returns KEYPROTOCOL_NONE if there is no match.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1852 */
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1853 keyprot_T
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1854 match_keyprotocol(char_u *term)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1855 {
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1856 int len = (int)STRLEN(p_kpc) + 1;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1857 char_u *buf = alloc(len);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1858 if (buf == NULL)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1859 return KEYPROTOCOL_FAIL;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1860
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1861 keyprot_T ret = KEYPROTOCOL_FAIL;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1862 char_u *p = p_kpc;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1863 while (*p != NUL)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1864 {
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1865 // Isolate one comma separated item.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1866 (void)copy_option_part(&p, buf, len, ",");
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1867 char_u *colon = vim_strchr(buf, ':');
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1868 if (colon == NULL || colon == buf || colon[1] == NUL)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1869 goto theend;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1870 *colon = NUL;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1871
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1872 keyprot_T prot;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1873 if (STRCMP(colon + 1, "none") == 0)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1874 prot = KEYPROTOCOL_NONE;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1875 else if (STRCMP(colon + 1, "mok2") == 0)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1876 prot = KEYPROTOCOL_MOK2;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1877 else if (STRCMP(colon + 1, "kitty") == 0)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1878 prot = KEYPROTOCOL_KITTY;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1879 else
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1880 goto theend;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1881
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1882 regmatch_T regmatch;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1883 CLEAR_FIELD(regmatch);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1884 regmatch.rm_ic = TRUE;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1885 regmatch.regprog = vim_regcomp(buf, RE_MAGIC);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1886 if (regmatch.regprog == NULL)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1887 goto theend;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1888
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1889 int match = term != NULL && vim_regexec(&regmatch, term, (colnr_T)0);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1890 vim_regfree(regmatch.regprog);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1891 if (match)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1892 {
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1893 ret = prot;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1894 goto theend;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1895 }
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1896
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1897 }
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1898
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1899 // No match found, use "none".
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1900 ret = KEYPROTOCOL_NONE;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1901
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1902 theend:
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1903 vim_free(buf);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1904 return ret;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1905 }
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1906
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
1907 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1908 * Set terminal options for terminal "term".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1909 * Return OK if terminal 'term' was found in a termcap, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1910 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1911 * While doing this, until ttest(), some options may be NULL, be careful.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1912 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1913 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1914 set_termname(char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1915 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1916 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1917 int builtin_first = p_tbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1918 int try;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1919 int termcap_cleared = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1920 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1921 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
1922 char *error_msg = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1923 char_u *bs_p, *del_p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1924
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1925 // In silect mode (ex -s) we don't use the 'term' option.
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
1926 if (silent_mode)
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
1927 return OK;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
1928
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1929 detected_8bit = FALSE; // reset 8-bit detection
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1930
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1931 if (term_is_builtin(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1932 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1933 term += 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1934 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1935 builtin_first = 1;
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1940 * If HAVE_TGETENT is not defined, only the builtin termcap is used, otherwise:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1941 * If builtin_first is TRUE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1942 * 0. try builtin termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1943 * 1. try external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1944 * 2. if both fail default to a builtin terminal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1945 * If builtin_first is FALSE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1946 * 1. try external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1947 * 2. try builtin termcap, if both fail default to a builtin terminal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1948 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1949 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1950 for (try = builtin_first ? 0 : 1; try < 3; ++try)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1951 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1952 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1953 * Use external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1954 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1955 if (try == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1956 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 char_u tbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 * If the external termcap does not have a matching entry, try the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 * builtin ones.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962 */
29230
3d3d629f5038 patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents: 29175
diff changeset
1963 if ((error_msg = invoke_tgetent(tbuf, term)) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1964 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1965 if (!termcap_cleared)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1967 clear_termoptions(); // clear old options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968 termcap_cleared = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
1971 get_term_entries(&height, &width);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1974 else // try == 0 || try == 2
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
1975 #endif // HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1976 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1977 * Use builtin termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1978 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1979 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1980 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1981 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1982 * If builtin termcap was already used, there is no need to search
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1983 * for the builtin termcap again, quit now.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1984 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1985 if (try == 2 && builtin_first && termcap_cleared)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1986 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1987 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1988 /*
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1989 * Search for 'term' in builtin_terminals[].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1990 */
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1991 tcap_entry_T *termp = find_builtin_term(term);
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
1992 if (termp == NULL) // did not find it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1993 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1994 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1995 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1996 * If try == 0, first try the external termcap. If that is not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1997 * found we'll get back here with try == 2.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1998 * If termcap_cleared is set we used the external termcap,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1999 * don't complain about not finding the term in the builtin
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2000 * termcap.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2001 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2002 if (try == 0) // try external one
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2003 continue;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2004 if (termcap_cleared) // found in external termcap
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2005 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2006 #endif
13872
9d3ddfa88a56 patch 8.0.1807: function to set terminal name is too long
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
2007 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
2008
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2009 // when user typed :set term=xxx, quit here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2010 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2011 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2012 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2013 wait_return(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2014 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2015 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2016 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
2017 report_default_term(term);
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
2018 set_string_option_direct((char_u *)"term", -1, term,
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
2019 OPT_FREE, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 display_errors();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2021 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2022 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2023 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2024 if (!termcap_cleared)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2025 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2026 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2027 clear_termoptions(); // clear old options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2028 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2029 termcap_cleared = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2030 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2031 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2032 parse_builtin_tcap(term);
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2033
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2034 // Use the 'keyprotocol' option to adjust the t_TE and t_TI
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2035 // termcap entries if there is an entry maching "term".
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2036 keyprot_T kpc = match_keyprotocol(term);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2037 if (kpc == KEYPROTOCOL_KITTY)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2038 apply_builtin_tcap(term, builtin_kitty, TRUE);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2039 else if (kpc == KEYPROTOCOL_MOK2)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2040 apply_builtin_tcap(term, builtin_mok2, TRUE);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
2041
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 if (term_is_gui(term))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2044 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2045 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2046 gui_init();
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2047 // 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
2048 // things for this terminal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2049 if (!gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2050 return FAIL;
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
2051 # ifdef HAVE_TGETENT
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2052 break; // don't try using external termcap
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
2053 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2054 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2055 #endif // FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2056 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2057 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2058 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2059 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2060
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2061 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2062 * special: There is no info in the termcap about whether the cursor
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2063 * 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
2064 * scrolling region. We just guess here. Only msdos pcterm is known to do it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2065 * relative.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2066 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2067 if (STRCMP(term, "pcterm") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2068 T_CCS = (char_u *)"yes";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2069 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2070 T_CCS = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2071
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2072 #ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2073 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2074 * Any "stty" settings override the default for t_kb from the termcap.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075 * 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
2076 * is being used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2077 * 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
2078 */
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
2079 # ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2080 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
2081 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2082 get_stty();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2083 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2084
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2085 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2086 * 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
2087 * didn't work, use the default CTRL-H
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2088 * The default for t_kD is DEL, unless t_kb is DEL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2089 * The vim_strsave'd strings are probably lost forever, well it's only two
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2090 * 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
2091 * directly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2092 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2093 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2094 if (!gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2095 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2096 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2097 bs_p = find_termcode((char_u *)"kb");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2098 del_p = find_termcode((char_u *)"kD");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2099 if (bs_p == NULL || *bs_p == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2100 add_termcode((char_u *)"kb", (bs_p = (char_u *)CTRL_H_STR), FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2101 if ((del_p == NULL || *del_p == NUL) &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2102 (bs_p == NULL || *bs_p != DEL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2103 add_termcode((char_u *)"kD", (char_u *)DEL_STR, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2104 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2105
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2106 #if defined(UNIX) || defined(VMS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2107 term_is_xterm = vim_is_xterm(term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2108 #endif
18352
94e1a49b879e patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 18350
diff changeset
2109 #ifdef FEAT_TERMRESPONSE
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
2110 // Reset terminal properties that are set based on the termresponse, which
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
2111 // will be sent out soon.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
2112 init_term_props(FALSE);
18352
94e1a49b879e patch 8.1.2170: cannot build without the +termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 18350
diff changeset
2113 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2114
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2115 #if defined(UNIX) || defined(VMS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2116 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2117 * For Unix, set the 'ttymouse' option to the type of mouse to be used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2118 * The termcode for the mouse is added as a side effect in option.c.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2119 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2120 {
11563
2547bbe6716e patch 8.0.0664: mouse does not work in tmux
Christian Brabandt <cb@256bit.org>
parents: 11557
diff changeset
2121 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
2122
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2123 # ifdef FEAT_MOUSE_XTERM
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1552
diff changeset
2124 if (use_xterm_like_mouse(term))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2125 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2126 if (use_xterm_mouse())
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2127 p = NULL; // keep existing value, might be "xterm2"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2128 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2129 p = (char_u *)"xterm";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2130 }
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2131 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2132 if (p != NULL)
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3885
diff changeset
2133 {
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28453
diff changeset
2134 set_option_value_give_err((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
2135 // 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
2136 // "xterm2" in check_termcode().
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3885
diff changeset
2137 reset_option_was_set((char_u *)"ttym");
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3885
diff changeset
2138 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2139 if (p == NULL
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2140 # ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2141 || gui.in_use
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2142 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 )
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2144 check_mouse_termcode(); // set mouse termcode anyway
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2145 }
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
2146 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2147 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
2148 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149
23632
8da1d91d751c patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents: 23620
diff changeset
2150 #ifdef FEAT_MOUSE_XTERM
27930
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
2151 // Focus reporting is supported by xterm compatible terminals and tmux.
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2152 if (use_xterm_like_mouse(term))
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2153 {
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2154 char_u name[3];
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2155
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2156 // handle focus in event
23632
8da1d91d751c patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents: 23620
diff changeset
2157 name[0] = KS_EXTRA;
8da1d91d751c patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents: 23620
diff changeset
2158 name[1] = KE_FOCUSGAINED;
8da1d91d751c patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents: 23620
diff changeset
2159 name[2] = NUL;
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2160 add_termcode(name, (char_u *)"\033[I", FALSE);
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2161
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2162 // handle focus out event
23632
8da1d91d751c patch 8.2.2358: wrong #ifdef for use_xterm_like_mouse()
Bram Moolenaar <Bram@vim.org>
parents: 23620
diff changeset
2163 name[1] = KE_FOCUSLOST;
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2164 add_termcode(name, (char_u *)"\033[O", FALSE);
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2165
24045
1b56d4c75d19 patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents: 23774
diff changeset
2166 need_gather = TRUE;
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2167 }
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2168 #endif
27930
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
2169 #if (defined(UNIX) || defined(VMS))
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
2170 // First time after setting 'term' a focus event is always reported.
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
2171 focus_state = MAYBE;
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
2172 #endif
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2173
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 #ifdef USE_TERM_CONSOLE
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2175 // DEFAULT_TERM indicates that it is the machine console.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176 if (STRCMP(term, DEFAULT_TERM) != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 term_console = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2179 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2180 term_console = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2181 # ifdef AMIGA
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2182 win_resize_on(); // enable window resizing reports
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2183 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2184 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2185 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2186
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2187 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
2188
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2189 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
2190 set_term_defaults(); // use current values as defaults
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191 #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
2192 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
2193 crv_status.tr_progress = STATUS_GET; // Get terminal version later
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
2194 write_t_8u_state = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2195 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2196
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2197 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 * Initialize the terminal with the appropriate termcap codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2199 * Set the mouse and window title if possible.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200 * Don't do this when starting, need to parse the .vimrc first, because it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201 * may redefine t_TI etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2202 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2203 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2204 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2205 starttermcap(); // may change terminal mode
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2206 setmouse(); // may start using the mouse
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2207 maketitle(); // may display window title
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2208 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2209
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2210 // display initial screen after ttest() checking. jw.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211 if (width <= 0 || height <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2213 // termcap failed to report size
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2214 // set defaults, in case ui_get_shellsize() also fails
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215 width = 80;
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
2216 #if defined(MSWIN)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2217 height = 25; // console is often 25 lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2218 #else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2219 height = 24; // most terminals are 24 lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2222 set_shellsize(width, height, FALSE); // may change Rows
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 if (scroll_region)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2226 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
2227 check_map_keycodes(); // check mappings for terminal codes used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2228
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2229 {
19489
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2230 buf_T *buf;
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2231 aco_save_T aco;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2234 * Execute the TermChanged autocommands for each buffer that is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2235 * loaded.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 */
19489
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2237 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 if (curbuf->b_ml.ml_mfp != NULL)
19489
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2240 {
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2241 aucmd_prepbuf(&aco, buf);
31263
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31241
diff changeset
2242 if (curbuf == buf)
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31241
diff changeset
2243 {
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31241
diff changeset
2244 apply_autocmds(EVENT_TERMCHANGED, NULL, NULL, FALSE,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 curbuf);
31263
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31241
diff changeset
2246 // restore curwin/curbuf and a few other things
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31241
diff changeset
2247 aucmd_restbuf(&aco);
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31241
diff changeset
2248 }
19489
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2249 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254 #ifdef FEAT_TERMRESPONSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2255 may_req_termresponse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2259 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2260
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2261 #if defined(EXITFREE) || defined(PROTO)
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2262
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2263 # ifdef HAVE_DEL_CURTERM
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2264 # include <term.h> // declares cur_term
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2265 # endif
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2266
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2267 /*
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2268 * If supported, delete "cur_term", which caches terminal related entries.
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2269 * Avoids that valgrind reports possibly lost memory.
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2270 */
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2271 void
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2272 free_cur_term()
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2273 {
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2274 # ifdef HAVE_DEL_CURTERM
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2275 if (cur_term)
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2276 del_curterm(cur_term);
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2277 # endif
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2278 }
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2279
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2280 #endif
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
2281
7
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2284 * Call tgetent()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 * Return error message if it fails, NULL if it's OK.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15111
diff changeset
2287 static char *
29230
3d3d629f5038 patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents: 29175
diff changeset
2288 invoke_tgetent(char_u *tbuf, char_u *term)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291
18838
8dabdfc7c799 patch 8.1.2406: leaking memory in test_paste and test_registers
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
2292 // 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
2293 // buffer around that we can't ever free.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2294 i = TGETENT(tbuf, term);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2295 if (i < 0 // -1 is always an error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2296 # ifdef TGETENT_ZERO_ERR
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2297 || i == 0 // sometimes zero is also an error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2299 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2300 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2301 // 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
2302 // 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
2303 // hang.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2304 (void)TGETENT(tbuf, "dumb");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2305
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2306 if (i < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307 # ifdef TGETENT_ZERO_ERR
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
2308 return _(e_cannot_open_termcap_file);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2309 if (i == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2310 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2311 #ifdef TERMINFO
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
2312 return _(e_terminal_entry_not_found_in_terminfo);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2313 #else
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
2314 return _(e_terminal_entry_not_found_in_termcap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2315 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2316 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2317 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2318 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2319
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2320 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2321 * Some versions of tgetstr() have been reported to return -1 instead of NULL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2322 * Fix that here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2323 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2324 static char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2325 vim_tgetstr(char *s, char_u **pp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2326 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2327 char *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2328
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2329 p = tgetstr(s, (char **)pp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2330 if (p == (char *)-1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2331 p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2332 return (char_u *)p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2333 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2334 #endif // HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
2336 #if defined(HAVE_TGETENT) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2337 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2338 * Get Columns and Rows from the termcap. Used after a window signal if the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2339 * 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
2340 * and "li" entries never change. But on some systems this works.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2341 * Errors while getting the entries are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2342 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2343 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2344 getlinecol(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2345 long *cp, // pointer to columns
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2346 long *rp) // pointer to rows
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2347 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2348 char_u tbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2349
29230
3d3d629f5038 patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents: 29175
diff changeset
2350 if (T_NAME != NULL && *T_NAME != NUL && invoke_tgetent(tbuf, T_NAME) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2351 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2352 if (*cp == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2353 *cp = tgetnum("co");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2354 if (*rp == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2355 *rp = tgetnum("li");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2356 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2357 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2358 #endif // defined(HAVE_TGETENT) && defined(UNIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2359
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2360 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2361 * 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
2362 * Used for <t_xx> special keys.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2363 * Give an error message for failure when not sourcing.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2364 * If force given, replace an existing entry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2365 * Return FAIL if the entry was not found, OK if the entry was added.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2366 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2367 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2368 add_termcap_entry(char_u *name, int force)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2369 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2370 char_u *term;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2371 int key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2372 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2373 char_u *string;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2374 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2375 int builtin_first;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2376 char_u tbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2377 char_u tstrbuf[TBUFSZ];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2378 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
2379 char *error_msg = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383 * 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
2384 * that the GUI can produce.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2385 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2387 if (gui.in_use || gui.starting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2388 return gui_mch_haskey(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2389 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2390
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2391 if (!force && find_termcode(name) != NULL) // it's already there
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2392 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2393
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2394 term = T_NAME;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2395 if (term == NULL || *term == NUL) // 'term' not defined yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2396 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2397
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2398 if (term_is_builtin(term)) // name starts with "builtin_"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2399 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2400 term += 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2401 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2402 builtin_first = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2403 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2404 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2405 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2406 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2407 builtin_first = p_tbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2408 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2410 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2411 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2412 * We can get the entry from the builtin termcap and from the external one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2413 * If 'ttybuiltin' is on or the terminal name starts with "builtin_", try
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2414 * builtin termcap first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2415 * If 'ttybuiltin' is off, try external termcap first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2416 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2417 for (i = 0; i < 2; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2418 {
7210
08b50e436093 commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents: 6901
diff changeset
2419 if ((!builtin_first) == i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2420 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2421 /*
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
2422 * Search in builtin termcaps
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2423 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2424 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
2425 tcap_entry_T *termp = find_builtin_term(term);
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
2426 if (termp != NULL) // found it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2427 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2428 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
2429 ++termp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2430 while (termp->bt_entry != (int)KS_NAME)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2431 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2432 if ((int)termp->bt_entry == key)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2433 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2434 add_termcode(name, (char_u *)termp->bt_string,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2435 term_is_8bit(term));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2436 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2437 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2438 ++termp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2439 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2440 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2441 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2442 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2443 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2444 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2445 * Search in external termcap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2446 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2447 {
29230
3d3d629f5038 patch 8.2.5134: function has confusing name
Bram Moolenaar <Bram@vim.org>
parents: 29175
diff changeset
2448 error_msg = invoke_tgetent(tbuf, term);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2449 if (error_msg == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2450 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2451 string = TGETSTR((char *)name, &tp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2452 if (string != NULL && *string != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2453 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2454 add_termcode(name, string, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2456 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2457 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2458 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2459 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2460 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2461
18991
847cc7932c42 patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents: 18838
diff changeset
2462 if (SOURCING_NAME == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2463 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2464 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2465 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
2466 emsg(error_msg);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2468 #endif
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
2469 semsg(_(e_no_str_entry_in_termcap), name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2470 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2471 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2472 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2473
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2474 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2475 term_is_builtin(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2476 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2477 return (STRNCMP(name, "builtin_", (size_t)8) == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2478 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2480 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2481 * Return TRUE if terminal "name" uses CSI instead of <Esc>[.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2482 * Assume that the terminal is using 8-bit controls when the name contains
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2483 * "8bit", like in "xterm-8bit".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2484 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2485 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2486 term_is_8bit(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2487 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2488 return (detected_8bit || strstr((char *)name, "8bit") != NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2489 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2490
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2491 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2492 * 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
2493 * <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
2494 * <Esc>] -> OSC <M-C-]>
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2495 * <Esc>O -> <M-C-O>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2496 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2497 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2498 term_7to8bit(char_u *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2499 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2500 if (*p == ESC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2501 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2502 if (p[1] == '[')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2503 return CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2504 if (p[1] == ']')
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
2505 return OSC;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2506 if (p[1] == 'O')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2507 return 0x8f;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2508 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2509 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2510 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2511
13762
9de2b25932eb patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents: 13573
diff changeset
2512 #if defined(FEAT_GUI) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2513 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2514 term_is_gui(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2515 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2516 return (STRCMP(name, "builtin_gui") == 0 || STRCMP(name, "gui") == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2517 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2518 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2519
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2520 #if !defined(HAVE_TGETENT) || defined(AMIGA) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2521
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2522 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2523 tltoa(unsigned long i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2524 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 static char_u buf[16];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2526 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2528 p = buf + 15;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2529 *p = '\0';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2530 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2531 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2532 --p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2533 *p = (char_u) (i % 10 + '0');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2534 i /= 10;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2535 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 while (i > 0 && p > buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2537 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2538 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2540
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2541 #ifndef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2542
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2544 * minimal tgoto() implementation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 * no padding and we only parse for %i %d and %+char
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546 */
298
f9de3e679a04 updated for version 7.0078
vimboss
parents: 230
diff changeset
2547 static char *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2548 tgoto(char *cm, int x, int y)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550 static char buf[30];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 char *p, *s, *e;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2552
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2553 if (!cm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554 return "OOPS";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2555 e = buf + 29;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556 for (s = buf; s < e && *cm; cm++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2557 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2558 if (*cm != '%')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2559 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2560 *s++ = *cm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2561 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2562 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563 switch (*++cm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 case 'd':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 p = (char *)tltoa((unsigned long)y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2567 y = x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568 while (*p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 *s++ = *p++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2570 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2571 case 'i':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 x++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2573 y++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2575 case '+':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2576 *s++ = (char)(*++cm + y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2577 y = x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2578 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2579 case '%':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2580 *s++ = *cm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2583 return "OOPS";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2584 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2586 *s = '\0';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2587 return buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2588 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2589
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2590 #endif // HAVE_TGETENT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2591
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2592 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2593 * Set the terminal name and initialize the terminal options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2594 * If "name" is NULL or empty, get the terminal name from the environment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2595 * If that fails, use the default terminal name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2596 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2597 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2598 termcapinit(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2599 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2600 char_u *term;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2601
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2602 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
2603 name = NULL; // empty name is equal to no name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2604 term = name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2605
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2606 #ifndef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2607 if (term == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2608 term = mch_getenv((char_u *)"TERM");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2610 if (term == NULL || *term == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 term = DEFAULT_TERM;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 688
diff changeset
2612 set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2613
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2614 // Set the default terminal name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2615 set_string_default("term", term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2616 set_string_default("ttytype", term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2617
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2618 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2619 * Avoid using "term" here, because the next mch_getenv() may overwrite it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2620 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2621 set_termname(T_NAME != NULL ? T_NAME : term);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2622 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2624 /*
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2625 * The number of calls to ui_write is reduced by using "out_buf".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2626 */
9536
b2aada04d84e commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
2627 #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
2628
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2629 // 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
2630 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
2631
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2632 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
2633
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2634 // 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
2635 // 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
2636 #define MAX_ESC_SEQ_LEN 80
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2638 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 * out_flush(): flush the output buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2641 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2642 out_flush(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2643 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 if (out_pos != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2648 // set out_pos to 0 before ui_write, to avoid recursiveness
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2649 len = out_pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2650 out_pos = 0;
24194
9f64c420f280 patch 8.2.2638: cannot write a message to the terminal from the GUI
Bram Moolenaar <Bram@vim.org>
parents: 24045
diff changeset
2651 ui_write(out_buf, len, FALSE);
31287
fa309d9af73c patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents: 31285
diff changeset
2652 #ifdef FEAT_EVAL
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
2653 if (ch_log_output != FALSE)
22091
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2654 {
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2655 out_buf[len] = NUL;
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2656 ch_log(NULL, "raw %s output: \"%s\"",
23610
07f9e4a54178 patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents: 23606
diff changeset
2657 # ifdef FEAT_GUI
07f9e4a54178 patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents: 23606
diff changeset
2658 (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
07f9e4a54178 patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents: 23606
diff changeset
2659 # endif
07f9e4a54178 patch 8.2.2347: build failure without GUI
Bram Moolenaar <Bram@vim.org>
parents: 23606
diff changeset
2660 "terminal",
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
2661 out_buf);
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
2662 if (ch_log_output == TRUE)
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
2663 ch_log_output = FALSE; // only log once
22091
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2664 }
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2665 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2666 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2667 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2668
13150
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2669 /*
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
2670 * 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
2671 * 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
2672 */
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2673 void
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2674 out_flush_cursor(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2675 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
2676 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
2677 {
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2678 mch_disable_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2679 out_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2680 mch_enable_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2681 #ifdef FEAT_GUI
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2682 if (gui.in_use)
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2683 {
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2684 gui_update_cursor(force, clear_selection);
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2685 gui_may_flush();
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2686 }
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2687 #endif
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2688 }
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2689
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 13008
diff changeset
2690
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692 * Sometimes a byte out of a multi-byte character is written with out_char().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 * To avoid flushing half of the character, call this function first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2696 out_flush_check(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698 if (enc_dbcs != 0 && out_pos >= OUT_SIZE - MB_MAXBYTES)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2699 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2701
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2702 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704 * out_trash(): Throw away the contents of the output buffer
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 out_trash(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 out_pos = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2710 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2711 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2712
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2713 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 * out_char(c): put a byte into the output buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715 * Flush it if it becomes full.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2716 * This should not be used for outputting text on the screen (use functions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717 * like msg_puts() and screen_putchar() for that).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718 */
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 out_char(unsigned c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 {
12716
351cf7c67bbe patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents: 12640
diff changeset
2722 #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
2723 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
2724 out_char('\r');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727 out_buf[out_pos++] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2728
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2729 // For testing we flush each time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 if (out_pos >= OUT_SIZE || p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2731 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2733
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2734 /*
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
2735 * 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
2736 */
22091
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2737 static int
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2738 out_char_nf(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2739 {
22091
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2740 out_buf[out_pos++] = (unsigned)c;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2741
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 if (out_pos >= OUT_SIZE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 out_flush();
22091
9bb1c984c4da patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2744 return (unsigned)c;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2746
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2747 /*
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
2748 * 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
2749 * 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
2750 * tputs() above is harmless, but tputs() from the termcap library
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2751 * is likely to strip off leading digits, that it mistakes for padding
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2752 * information, and "%i", "%d", etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2753 * This should only be used for writing terminal codes, not for outputting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2754 * normal text (use functions like msg_puts() and screen_putchar() for that).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2755 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2756 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2757 out_str_nf(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2758 {
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2759 // 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
2760 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2761 out_flush();
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2762
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2763 while (*s)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2764 out_char_nf(*s++);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2765
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2766 // For testing we write one string at a time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2767 if (p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2768 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2769 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2770
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2771 /*
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2772 * 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
2773 * 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
2774 * it at the wrong time.
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2775 * Note: Only for terminal strings.
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2776 */
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2777 void
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2778 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
2779 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2780 if (s != NULL && *s)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2781 {
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2782 #ifdef HAVE_TGETENT
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2783 char_u *p;
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2784 #endif
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2785
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2786 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2787 // 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
2788 if (gui.in_use)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2789 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2790 out_str_nf(s);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2791 return;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2792 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2793 #endif
16200
ce6de8dab779 patch 8.1.1105: long escape sequences may be split up
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
2794 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
2795 out_flush();
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2796 #ifdef HAVE_TGETENT
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2797 for (p = s; *s; ++s)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2798 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2799 // 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
2800 if (*s == '$' && *(s + 1) == '<')
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2801 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2802 char_u save_c = *s;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2803 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
2804
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2805 *s = NUL;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2806 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
2807 *s = save_c;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2808 out_flush();
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2809 # ifdef ELAPSED_FUNC
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2810 // 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
2811 // vim_beep().
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2812 p = vim_strchr(s, '>');
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2813 if (p == NULL || duration <= 0)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2814 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2815 // 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
2816 p = s;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2817 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2818 else
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2819 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2820 ++p;
23648
b7d3c79075c5 patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents: 23632
diff changeset
2821 do_sleep(duration, FALSE);
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2822 }
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2823 # else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2824 // 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
2825 p = s;
11615
568ea579d20e patch 8.0.0690: compiler warning on non-Unix system
Christian Brabandt <cb@256bit.org>
parents: 11601
diff changeset
2826 # endif
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2827 break;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2828 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2829 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2830 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
2831 #else
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2832 while (*s)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2833 out_char_nf(*s++);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2834 #endif
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2835
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2836 // 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
2837 if (p_wd)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2838 out_flush();
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2839 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2840 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2841
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11567
diff changeset
2842 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2843 * 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
2844 * If HAVE_TGETENT is defined use tputs(), the termcap parser. (jw)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2845 * This should only be used for writing terminal codes, not for outputting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2846 * normal text (use functions like msg_puts() and screen_putchar() for that).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2847 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2848 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2849 out_str(char_u *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2850 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2851 if (s != NULL && *s)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2852 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2853 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2854 // Don't use tputs() when GUI is used, ncurses crashes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2855 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2856 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2857 out_str_nf(s);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2858 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2859 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2860 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2861 // 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
2862 if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2863 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2864 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2865 tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2866 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2867 while (*s)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2868 out_char_nf(*s++);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2869 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2870
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2871 // For testing we write one string at a time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2872 if (p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2873 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2874 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2875 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2876
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2877 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2878 * cursor positioning using termcap parser. (jw)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2879 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2880 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2881 term_windgoto(int row, int col)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2882 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2883 OUT_STR(tgoto((char *)T_CM, col, row));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2884 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2885
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2886 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2887 term_cursor_right(int i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2888 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2889 OUT_STR(tgoto((char *)T_CRI, 0, i));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2890 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2891
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2892 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2893 term_append_lines(int line_count)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2894 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2895 OUT_STR(tgoto((char *)T_CAL, 0, line_count));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2896 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2897
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2898 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2899 term_delete_lines(int line_count)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2900 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2901 OUT_STR(tgoto((char *)T_CDL, 0, line_count));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2902 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2903
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2904 #if defined(HAVE_TGETENT) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2905 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2906 term_set_winpos(int x, int y)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2907 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2908 // Can't handle a negative value here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2909 if (x < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2910 x = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2911 if (y < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2912 y = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2913 OUT_STR(tgoto((char *)T_CWP, y, x));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2914 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2915
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2916 # 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
2917 /*
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2918 * 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
2919 */
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2920 static int
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2921 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
2922 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2923 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
2924 && 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
2925 # 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
2926 && (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
2927 # endif
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2928 && p_ek;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2929 }
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2930
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
2931 /*
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
2932 * 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
2933 */
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
2934 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
2935 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
2936 {
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
2937 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
2938 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
2939 }
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
2940
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
2941 /*
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
2942 * 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
2943 */
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
2944 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
2945 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
2946 {
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
2947 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
2948 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
2949
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
2950 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
2951 {
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
2952 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
2953 {
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
2954 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
2955 && 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
2956 // 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
2957 // 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
2958 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
2959 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
2960 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
2961 }
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
2962 }
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
2963 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
2964 }
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
2965
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
2966 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
2967 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
2968 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
2969
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
2970 # 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
2971 /*
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2972 * 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
2973 * 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
2974 */
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2975 int
13379
0f9dd1b43244 patch 8.0.1563: timeout of getwinposx() can be too short
Christian Brabandt <cb@256bit.org>
parents: 13365
diff changeset
2976 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
2977 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2978 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
2979 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
2980 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
2981
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2982 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
2983 return FAIL;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2984 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
2985 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
2986 ++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
2987 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
2988 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
2989 out_flush();
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2990
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
2991 // 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
2992 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
2993 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2994 (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
2995 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
2996 {
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
2997 *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
2998 *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
2999 return OK;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3000 }
18642
bbea1f108187 patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents: 18430
diff changeset
3001 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
3002 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3003 // 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
3004 // 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
3005
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
3006 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
3007 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
3008 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
3009 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3010 // 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
3011 *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
3012 *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
3013 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
3014 }
aef75fbfc07d patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
3015
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3016 return FALSE;
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3017 }
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
3018 # endif
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3019 # endif
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
3020
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3021 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
3022 term_set_winsize(int height, int width)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3023 {
11731
d06f3576823a patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents: 11615
diff changeset
3024 OUT_STR(tgoto((char *)T_CWS, width, height));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3028 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3029 term_color(char_u *s, int n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3030 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3031 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
3032 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
3033 // 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
3034
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3035 // 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
3036 // 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
3037 // Also accept CSI instead of <Esc>[
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3038 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
3039 && ((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
3040 #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
3041 || (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
3042 #endif
20437
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20425
diff changeset
3043 || (s[0] == CSI && (i = 1) == 1))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3044 && s[i] != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3045 && (STRCMP(s + i + 1, "%p1%dm") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3046 || STRCMP(s + i + 1, "%dm") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3047 && (s[i] == '3' || s[i] == '4'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3049 #ifdef TERMINFO
9068
0a3bc9fdea20 commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents: 9027
diff changeset
3050 char *format = "%s%s%%p1%%dm";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3051 #else
9068
0a3bc9fdea20 commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents: 9027
diff changeset
3052 char *format = "%s%s%%dm";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3053 #endif
14007
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
3054 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
3055 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
3056 s[1] == '|' ? "\033|" :
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
3057 #endif
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
3058 "\033[") : "\233";
14007
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
3059 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
3060 : (n >= 16 ? "48;5;" : "10");
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
3061
5d6e8dedfc73 patch 8.1.0021: clang warns for undefined behavior
Christian Brabandt <cb@256bit.org>
parents: 13874
diff changeset
3062 sprintf(buf, format, lead, tail);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3063 OUT_STR(tgoto(buf, 0, n >= 16 ? n : n - 8));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3064 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3065 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3066 OUT_STR(tgoto((char *)s, 0, n));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3067 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3069 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3070 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
3071 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3072 // 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
3073 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
3074 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
3075 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
3076 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
3077 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3078
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3079 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3080 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
3081 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3082 // 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
3083 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
3084 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
3085 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
3086 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
3087 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3088
20619
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3089 void
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3090 term_ul_color(int n)
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3091 {
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3092 if (*T_CAU)
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3093 term_color(T_CAU, n);
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3094 }
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3095
18679
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3096 /*
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3097 * 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
3098 * 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
3099 * "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
3100 * "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
3101 * "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
3102 * "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
3103 * 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
3104 * 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
3105 * 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
3106 * 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
3107 */
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3108 char_u *
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3109 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
3110 {
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3111 #if defined(MSWIN)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3112 // 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
3113 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
3114 #else
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3115 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
3116
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3117 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
3118 || 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
3119 || 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
3120 || 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
3121 || ((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
3122 && (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
3123 && ((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
3124 && 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
3125 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
3126 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
3127 #endif
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3128 }
fd95d4dbeb37 patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3129
9027
773d627cac0b commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents: 9025
diff changeset
3130 #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
3131
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3132 #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
3133 #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
3134 #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
3135
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
3136 static void
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3137 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
3138 {
8975
9c097bfad637 commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents: 8969
diff changeset
3139 #define MAX_COLOR_STR_LEN 100
9c097bfad637 commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents: 8969
diff changeset
3140 char buf[MAX_COLOR_STR_LEN];
9c097bfad637 commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents: 8969
diff changeset
3141
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3142 if (*s == NUL)
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3143 return;
8981
3b51b0aeb9a3 commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents: 8977
diff changeset
3144 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
3145 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb));
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3146 #ifdef FEAT_VTP
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 30986
diff changeset
3147 if (has_vtp_working())
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3148 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3149 out_flush();
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3150 buf[1] = '[';
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3151 vtp_printf(buf);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3152 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3153 else
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3154 #endif
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20524
diff changeset
3155 OUT_STR(buf);
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
3156 }
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3157
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3158 void
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3159 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
3160 {
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 30986
diff changeset
3161 if (rgb != INVALCOLOR)
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 30986
diff changeset
3162 term_rgb_color(T_8F, rgb);
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3163 }
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3164
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3165 void
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3166 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
3167 {
28763
b01bca69b1d5 patch 8.2.4906: MS-Windows: cannot use transparent background
Bram Moolenaar <Bram@vim.org>
parents: 28739
diff changeset
3168 if (rgb != INVALCOLOR)
b01bca69b1d5 patch 8.2.4906: MS-Windows: cannot use transparent background
Bram Moolenaar <Bram@vim.org>
parents: 28739
diff changeset
3169 term_rgb_color(T_8B, rgb);
9939
ccb6461b82df commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents: 9929
diff changeset
3170 }
20619
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3171
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3172 void
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3173 term_ul_rgb_color(guicolor_T rgb)
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3174 {
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3175 # ifdef FEAT_TERMRESPONSE
30602
001c228efdab patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents: 29883
diff changeset
3176 // If the user explicitly sets t_8u then use it. Otherwise wait for
001c228efdab patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents: 29883
diff changeset
3177 // termresponse to be received, which is when t_8u would be set and a
001c228efdab patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents: 29883
diff changeset
3178 // redraw is needed if it was used.
001c228efdab patch 9.0.0636: underline color may not work in some terminals
Bram Moolenaar <Bram@vim.org>
parents: 29883
diff changeset
3179 if (!option_was_set((char_u *)"t_8u") && write_t_8u_state != OK)
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3180 write_t_8u_state = MAYBE;
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3181 else
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3182 # endif
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
3183 term_rgb_color(T_8U, rgb);
20619
68c206d3a251 patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents: 20603
diff changeset
3184 }
8969
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
3185 #endif
c83e2c1e7f2b commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
3186
26336
a2e6da79274d patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
3187 #if (defined(UNIX) || defined(VMS) || defined(MACOS_X)) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3188 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3189 * Generic function to set window title, using t_ts and t_fs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3190 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3191 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3192 term_settitle(char_u *title)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3193 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3194 MAY_WANT_TO_LOG_THIS;
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3195
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
3196 // 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
3197 OUT_STR(tgoto((char *)T_TS, 0, 0)); // set title start
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3198 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
3199 out_str(T_FS); // set title end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3200 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3201 }
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3202
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3203 /*
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3204 * 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
3205 * 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
3206 */
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3207 void
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3208 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
3209 {
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
3210 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
3211 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3212 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
3213 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
3214 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3215
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
3216 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
3217 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3218 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
3219 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
3220 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3221 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3222
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3223 /*
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3224 * 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
3225 */
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3226 void
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3227 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
3228 {
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
3229 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
3230 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3231 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
3232 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
3233 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3234
16586
5ebb2c87d1f5 patch 8.1.1296: crash when using invalid command line argument
Bram Moolenaar <Bram@vim.org>
parents: 16523
diff changeset
3235 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
3236 {
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3237 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
3238 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
3239 }
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14461
diff changeset
3240 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3241 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3242
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3243 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3244 * Make sure we have a valid set or terminal options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3245 * Replace all entries that are NULL by empty_option
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3246 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3247 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3248 ttest(int pairs)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3249 {
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
3250 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
3251
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3252 check_options(); // make sure no options are NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3253
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3254 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3255 * MUST have "cm": cursor motion.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3256 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3257 if (*T_CM == NUL)
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
3258 emsg(_(e_terminal_capability_cm_required));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3259
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3260 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3261 * if "cs" defined, use a scroll region, it's faster.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3262 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3263 if (*T_CS != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3264 scroll_region = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3265 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3266 scroll_region = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3268 if (pairs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3269 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3270 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3271 * optional pairs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3272 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3273 // TP goes to normal mode for TI (invert) and TB (bold)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3274 if (*T_ME == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3275 T_ME = T_MR = T_MD = T_MB = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3276 if (*T_SO == NUL || *T_SE == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3277 T_SO = T_SE = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3278 if (*T_US == NUL || *T_UE == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3279 T_US = T_UE = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3280 if (*T_CZH == NUL || *T_CZR == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3281 T_CZH = T_CZR = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3282
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3283 // T_VE is needed even though T_VI is not defined
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3284 if (*T_VE == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3285 T_VI = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3286
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3287 // if 'mr' or 'me' is not defined use 'so' and 'se'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3288 if (*T_ME == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3289 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3290 T_ME = T_SE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3291 T_MR = T_SO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3292 T_MD = T_SO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3293 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3294
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3295 // if 'so' or 'se' is not defined use 'mr' and 'me'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3296 if (*T_SO == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3297 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3298 T_SE = T_ME;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3299 if (*T_MR == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3300 T_SO = T_MD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3301 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3302 T_SO = T_MR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3303 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3304
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3305 // if 'ZH' or 'ZR' is not defined use 'mr' and 'me'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3306 if (*T_CZH == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3307 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3308 T_CZR = T_ME;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3309 if (*T_MR == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3310 T_CZH = T_MD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3311 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3312 T_CZH = T_MR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3315 // "Sb" and "Sf" come in pairs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3316 if (*T_CSB == NUL || *T_CSF == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3317 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3318 T_CSB = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3319 T_CSF = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3320 }
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 // "AB" and "AF" come in pairs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3323 if (*T_CAB == NUL || *T_CAF == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3324 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3325 T_CAB = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3326 T_CAF = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3327 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3328
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3329 // if 'Sb' and 'AB' are not defined, reset "Co"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3330 if (*T_CSB == NUL && *T_CAB == NUL)
1941
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1902
diff changeset
3331 free_one_termoption(T_CCO);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3332
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3333 // Set 'weirdinvert' according to value of 't_xs'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3334 p_wiv = (*T_XS != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3335 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3336 need_gather = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3337
20181
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3338 // Set t_colors to the value of $COLORS or t_Co. Ignore $COLORS in the
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3339 // GUI.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3340 t_colors = atoi((char *)T_CCO);
20181
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3341 #ifdef FEAT_GUI
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3342 if (!gui.in_use)
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3343 #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
3344 {
20181
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3345 env_colors = mch_getenv((char_u *)"COLORS");
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3346 if (env_colors != NULL && isdigit(*env_colors))
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3347 {
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3348 int colors = atoi((char *)env_colors);
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3349
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3350 if (colors != t_colors)
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3351 set_color_count(colors);
0ab9d7469ce7 patch 8.2.0646: t_Co uses the value of $COLORS in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 20065
diff changeset
3352 }
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
3353 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3354 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3355
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3356 #if (defined(FEAT_GUI) && (defined(FEAT_MENU) || !defined(USE_ON_FLY_SCROLL))) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3357 || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3358 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3359 * Represent the given long_u as individual bytes, with the most significant
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3360 * byte first, and store them in dst.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3361 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3362 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3363 add_long_to_buf(long_u val, char_u *dst)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3364 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3365 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3366 int shift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3367
1883
c8f343a465a2 updated for version 7.2-180
vimboss
parents: 1787
diff changeset
3368 for (i = 1; i <= (int)sizeof(long_u); i++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3369 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3370 shift = 8 * (sizeof(long_u) - i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3371 dst[i - 1] = (char_u) ((val >> shift) & 0xff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3372 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3373 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3374
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3375 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3376 * 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
3377 * significant byte first. Note that it is assumed that buf has been through
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3378 * inchar(), so that NUL and K_SPECIAL will be represented as three bytes each.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3379 * Puts result in val, and returns the number of bytes read from buf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3380 * (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
3381 * were present.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3382 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3383 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3384 get_long_from_buf(char_u *buf, long_u *val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3385 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3386 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3387 char_u bytes[sizeof(long_u)];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3388 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3389 int shift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3390
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3391 *val = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3392 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3393 if (len != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3394 {
1883
c8f343a465a2 updated for version 7.2-180
vimboss
parents: 1787
diff changeset
3395 for (i = 0; i < (int)sizeof(long_u); i++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3396 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3397 shift = 8 * (sizeof(long_u) - 1 - i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3398 *val += (long_u)bytes[i] << shift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3399 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3400 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3401 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3402 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3403 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3404
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3405 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3406 * Read the next num_bytes bytes from buf, and store them in bytes. Assume
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3407 * that buf has been through inchar(). Returns the actual number of bytes used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3408 * 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
3409 * available.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3410 */
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
3411 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3412 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3413 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3414 int len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3415 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3416 char_u c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3417
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3418 for (i = 0; i < num_bytes; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3419 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3420 if ((c = buf[len++]) == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3421 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3422 if (c == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3423 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3424 if (buf[len] == NUL || buf[len + 1] == NUL) // cannot happen?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3425 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3426 if (buf[len++] == (int)KS_ZERO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3427 c = NUL;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3428 // 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
3429 // 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
3430 if (buf[len++] == (int)KE_CSI)
19ed30f7cef7 updated for version 7.3.1281
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
3431 c = CSI;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3432 }
1160
4d649198593f updated for version 7.1a
vimboss
parents: 1024
diff changeset
3433 else if (c == CSI && buf[len] == KS_EXTRA
4d649198593f updated for version 7.1a
vimboss
parents: 1024
diff changeset
3434 && 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
3435 // 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
3436 // the start of a special key, see add_to_input_buf_csi().
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 648
diff changeset
3437 len += 2;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3438 bytes[i] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3440 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 /*
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3444 * 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
3445 * too big.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3446 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3447 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3448 check_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3449 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3450 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
3451 Rows = min_rows();
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3452 limit_screen_size();
29286
45af13649a34 patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents: 29230
diff changeset
3453
45af13649a34 patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents: 29230
diff changeset
3454 // make sure these values are not invalid
45af13649a34 patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents: 29230
diff changeset
3455 if (cmdline_row >= Rows)
45af13649a34 patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents: 29230
diff changeset
3456 cmdline_row = Rows - 1;
45af13649a34 patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents: 29230
diff changeset
3457 if (msg_row >= Rows)
45af13649a34 patch 8.2.5160: accessing invalid memory after changing terminal size
Bram Moolenaar <Bram@vim.org>
parents: 29230
diff changeset
3458 msg_row = Rows - 1;
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3459 }
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3460
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3461 /*
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3462 * 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
3463 */
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3464 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3465 limit_screen_size(void)
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3466 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3467 if (Columns < MIN_COLUMNS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3468 Columns = MIN_COLUMNS;
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3469 else if (Columns > 10000)
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3470 Columns = 10000;
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3471 if (Rows > 1000)
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 4395
diff changeset
3472 Rows = 1000;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3473 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3474
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
3475 /*
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
3476 * Invoked just before the screen structures are going to be (re)allocated.
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
3477 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3479 win_new_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3481 static int old_Rows = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3482 static int old_Columns = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3483
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3484 if (old_Rows != Rows || old_Columns != Columns)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3485 ui_new_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3486 if (old_Rows != Rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3487 {
24228
1e85e76f9e76 patch 8.2.2655: The -w command line argument doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 24194
diff changeset
3488 // If 'window' uses the whole screen, keep it using that.
1e85e76f9e76 patch 8.2.2655: The -w command line argument doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 24194
diff changeset
3489 // Don't change it when set with "-w size" on the command line.
27996
3ae5bc51d39d patch 8.2.4523: when gvim is started maximized the 'window' option isn't set
Bram Moolenaar <Bram@vim.org>
parents: 27930
diff changeset
3490 if (p_window == old_Rows - 1
3ae5bc51d39d patch 8.2.4523: when gvim is started maximized the 'window' option isn't set
Bram Moolenaar <Bram@vim.org>
parents: 27930
diff changeset
3491 || (old_Rows == 0 && !option_was_set((char_u *)"window")))
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 41
diff changeset
3492 p_window = Rows - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3493 old_Rows = Rows;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3494 shell_new_rows(); // update window sizes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3495 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3496 if (old_Columns != Columns)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3497 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3498 old_Columns = Columns;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3499 shell_new_columns(); // update window sizes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3500 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3501 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3502
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3503 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3504 * Call this function when the Vim shell has been resized in any way.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3505 * Will obtain the current size and redraw (also when size didn't change).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3506 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3507 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3508 shell_resized(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3509 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3510 set_shellsize(0, 0, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3511 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 * Check if the shell size changed. Handle a resize.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 * When the size didn't change, nothing happens.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3516 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3517 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3518 shell_resized_check(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3519 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3520 int old_Rows = Rows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3521 int old_Columns = Columns;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3522
3770
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3523 if (!exiting
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3524 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3525 // 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
3526 // startup.
3770
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3527 && !gui.starting
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3528 #endif
fdac34e3afa5 updated for version 7.3.643
Bram Moolenaar <bram@vim.org>
parents: 3746
diff changeset
3529 )
2673
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3530 {
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3531 (void)ui_get_shellsize();
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3532 check_shellsize();
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3533 if (old_Rows != Rows || old_Columns != Columns)
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3534 shell_resized();
5a1fe35a6eaf updated for version 7.3.092
Bram Moolenaar <bram@vim.org>
parents: 2672
diff changeset
3535 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3536 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3538 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3539 * Set size of the Vim shell.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3540 * 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
3541 * window size (this is used for the :win command).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3542 * 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
3543 * it fails use 'width' and 'height'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3544 */
31178
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3545 static void
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3546 set_shellsize_inner(int width, int height, int mustset)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3547 {
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
3548 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
3549 // 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
3550 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
3551
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3552 // curwin->w_buffer can be NULL when we are closing a window and the
23410
ae3421daa981 patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
3553 // buffer (or window) has already been closed and removing a scrollbar
ae3421daa981 patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
3554 // causes a resize event. Don't resize then, it will happen after entering
ae3421daa981 patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
3555 // another buffer.
ae3421daa981 patch 8.2.2248: ASAN error on exit with GUI
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
3556 if (curwin->w_buffer == NULL || curwin->w_lines == NULL)
3068
0787bb5f387b updated for version 7.3.306
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
3557 return;
0787bb5f387b updated for version 7.3.306
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
3558
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3559 #ifdef AMIGA
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3560 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
3561 // some obscure reason
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3564 if (mustset || (ui_get_shellsize() == FAIL && height != 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3565 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3566 Rows = height;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3567 Columns = width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3568 check_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3569 ui_set_shellsize(mustset);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572 check_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3573
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3574 // 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
3575 // 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
3576 // "busy" check above may skip this, but not screenalloc().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3577
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
3578 if (State != MODE_ASKMORE && State != MODE_EXTERNCMD
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
3579 && State != MODE_CONFIRM)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 screenclear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3582 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3583
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3584 if (starting != NO_SCREEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3585 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3586 maketitle();
26336
a2e6da79274d patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
3587
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3588 changed_line_abv_curs();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3589 invalidate_botline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3590
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3591 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3592 * We only redraw when it's needed:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3593 * - While at the more prompt or executing an external command, don't
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3594 * redraw, but position the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3595 * - While editing the command line, only redraw that.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3596 * - in Ex mode, don't redraw anything.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3597 * - Otherwise, redraw right now, and position the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3598 * Always need to call update_screen() or screenalloc(), to make
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3599 * sure Rows/Columns and the size of ScreenLines[] is correct!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3600 */
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
3601 if (State == MODE_ASKMORE || State == MODE_EXTERNCMD
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
3602 || State == MODE_CONFIRM || exmode_active)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3603 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3604 screenalloc(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3605 repeat_message();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3606 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3607 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3608 {
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3609 if (curwin->w_p_scb)
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3610 do_check_scrollbind(TRUE);
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
3611 if (State & MODE_CMDLINE)
648
9032e4668296 updated for version 7.0189
vimboss
parents: 647
diff changeset
3612 {
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
3613 update_screen(UPD_NOT_VALID);
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3614 redrawcmdline();
648
9032e4668296 updated for version 7.0189
vimboss
parents: 647
diff changeset
3615 }
9032e4668296 updated for version 7.0189
vimboss
parents: 647
diff changeset
3616 else
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3617 {
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3618 update_topline();
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3619 if (pum_visible())
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3620 {
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
3621 redraw_later(UPD_NOT_VALID);
12566
33a900199c25 patch 8.0.1161: popup menu drawing problem when resizing terminal
Christian Brabandt <cb@256bit.org>
parents: 12513
diff changeset
3622 ins_compl_show_pum();
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3623 }
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
3624 update_screen(UPD_NOT_VALID);
1024
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3625 if (redrawing())
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3626 setcursor();
39aaf0cc59e8 updated for version 7.0-150
vimboss
parents: 936
diff changeset
3627 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3629 cursor_on(); // redrawing may have switched it off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 out_flush();
31178
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3632 }
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3633
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3634 void
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3635 set_shellsize(int width, int height, int mustset)
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3636 {
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3637 static int busy = FALSE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3638 static int do_run = FALSE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3639
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3640 if (width < 0 || height < 0) // just checking...
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3641 return;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3642
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3643 if (State == MODE_HITRETURN || State == MODE_SETWSIZE)
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3644 {
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3645 // postpone the resizing
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3646 State = MODE_SETWSIZE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3647 return;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3648 }
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3649
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3650 // Avoid recursiveness. This can happen when setting the window size
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3651 // causes another window-changed signal or when two SIGWINCH signals come
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3652 // very close together. There needs to be another run then after the
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3653 // current one is done to pick up the latest size.
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3654 do_run = TRUE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3655 if (busy)
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3656 return;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3657
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3658 while (do_run)
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3659 {
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3660 do_run = FALSE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3661 busy = TRUE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3662 set_shellsize_inner(width, height, mustset);
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3663 busy = FALSE;
f1c345ae4d89 patch 9.0.0923: second SIGWINCH signal may be ignored
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
3664 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3665 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3666
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3667 /*
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3668 * Output T_CTE, the t_TE termcap entry, and handle expected effects.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3669 * The code possibly disables modifyOtherKeys and the Kitty keyboard protocol.
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3670 */
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3671 void
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3672 out_str_t_TE(void)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3673 {
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3674 out_str(T_CTE);
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3675
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
3676 // The seenModifyOtherKeys flag is not reset here. We do expect t_TE to
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3677 // disable modifyOtherKeys, but until Xterm version 377 there is no way to
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3678 // detect it's enabled again after the following t_TI. We assume that when
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3679 // seenModifyOtherKeys was set before it will still be valid.
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3680
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3681 // When the modifyOtherKeys level is detected to be 2 we expect t_TE to
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3682 // disable it. Remembering that it was detected to be enabled is useful in
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3683 // some situations.
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3684 // The following t_TI is expected to request the state and then
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3685 // modify_otherkeys_state will be set again.
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3686 if (modify_otherkeys_state == MOKS_ENABLED
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3687 || modify_otherkeys_state == MOKS_DISABLED)
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3688 modify_otherkeys_state = MOKS_DISABLED;
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3689 else if (modify_otherkeys_state != MOKS_INITIAL)
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
3690 modify_otherkeys_state = MOKS_AFTER_T_KE;
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
3691
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3692 // When the kitty keyboard protocol is enabled we expect t_TE to disable
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3693 // it. Remembering that it was detected to be enabled is useful in some
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3694 // situations.
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
3695 // The following t_TI is expected to request the state and then
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
3696 // kitty_protocol_state will be set again.
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3697 if (kitty_protocol_state == KKPS_ENABLED
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3698 || kitty_protocol_state == KKPS_DISABLED)
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3699 kitty_protocol_state = KKPS_DISABLED;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3700 else
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3701 kitty_protocol_state = KKPS_AFTER_T_KE;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3702 }
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3703
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3704 static int send_t_RK = FALSE;
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3705
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3706 /*
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3707 * Output T_TI and setup for what follows.
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3708 */
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3709 void
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3710 out_str_t_TI(void)
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3711 {
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3712 out_str(T_CTI);
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3713
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3714 // Send t_RK when there is no more work to do.
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3715 send_t_RK = TRUE;
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3716 }
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3717
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3718 /*
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3719 * If t_TI was recently sent and there is no typeahead or work to do, now send
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3720 * t_RK. This is postponed to avoid the response arriving in a shell command
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3721 * or after Vim exits.
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3722 */
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3723 void
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3724 may_send_t_RK(void)
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3725 {
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3726 if (send_t_RK
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3727 && !work_pending()
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3728 && !ex_normal_busy
31295
311e11e63356 patch 9.0.0981: build error in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 31293
diff changeset
3729 #ifdef FEAT_EVAL
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3730 && !in_feedkeys
31295
311e11e63356 patch 9.0.0981: build error in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 31293
diff changeset
3731 #endif
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3732 && !exiting)
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3733 {
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3734 send_t_RK = FALSE;
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3735 out_str(T_CRK);
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3736 out_flush();
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3737 }
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3738 }
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3739
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3740 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3741 * Set the terminal to TMODE_RAW (for Normal mode) or TMODE_COOK (for external
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3742 * commands and Ex mode).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3743 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3744 void
20450
d5d89c24eec7 patch 8.2.0779: tmode_T not used everywhere
Bram Moolenaar <Bram@vim.org>
parents: 20439
diff changeset
3745 settmode(tmode_T tmode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3746 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3747 #ifdef FEAT_GUI
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3748 // don't set the term where gvim was started to any mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3749 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3750 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3751 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3752
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3753 if (full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3754 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3755 /*
20437
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20425
diff changeset
3756 * When returning after calling a shell cur_tmode is TMODE_UNKNOWN,
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20425
diff changeset
3757 * set the terminal to raw mode, even though we think it already is,
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20425
diff changeset
3758 * because the shell program may have reset the terminal mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3759 * When we think the terminal is normal, don't try to set it to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3760 * normal again, because that causes problems (logout!) on some
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3761 * machines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3762 */
20437
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20425
diff changeset
3763 if (tmode != cur_tmode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3764 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3765 #ifdef FEAT_TERMRESPONSE
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3766 # ifdef FEAT_GUI
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3767 if (!gui.in_use && !gui.starting)
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3768 # endif
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3769 {
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
3770 // 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
3771 // 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
3772 // 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
3773 if (tmode != TMODE_RAW && termrequest_any_pending())
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3774 (void)vpeekc_nomap();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3775 check_for_codes_from_term();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3776 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3777 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3778 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
3779 mch_setmouse(FALSE); // switch mouse off
20439
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
3780
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
3781 // Disable bracketed paste and modifyOtherKeys in cooked mode.
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
3782 // Avoid doing this too often, on some terminals the codes are not
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
3783 // handled properly.
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
3784 if (termcap_active && tmode != TMODE_SLEEP
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
3785 && cur_tmode != TMODE_SLEEP)
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3786 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3787 MAY_WANT_TO_LOG_THIS;
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3788
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3789 if (tmode != TMODE_RAW)
20425
426ef48be465 patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents: 20181
diff changeset
3790 {
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3791 out_str(T_BD); // disable bracketed paste mode
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3792 out_str_t_TE(); // possibly disables modifyOtherKeys
20425
426ef48be465 patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents: 20181
diff changeset
3793 }
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3794 else
20425
426ef48be465 patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents: 20181
diff changeset
3795 {
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3796 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
3797 // be before mch_settmode().
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3798 out_str_t_TI(); // possibly enables modifyOtherKeys
20425
426ef48be465 patch 8.2.0767: modifyOtherKeys active when using a shell command in autocmd
Bram Moolenaar <Bram@vim.org>
parents: 20181
diff changeset
3799 }
16387
12d57853ddb2 patch 8.1.1198: bracketed paste may remain active after Vim exists
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3800 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3801 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
3802 mch_settmode(tmode); // machine specific function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3803 cur_tmode = tmode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3804 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
3805 setmouse(); // may switch mouse on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3806 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3807 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3808 #ifdef FEAT_TERMRESPONSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3809 may_req_termresponse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3810 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3811 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3812 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3813
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3814 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3815 starttermcap(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3816 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3817 if (full_screen && !termcap_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3818 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3819 MAY_WANT_TO_LOG_THIS;
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3820
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3821 out_str(T_TI); // start termcap mode
31293
ff4473b3fc58 patch 9.0.0980: the keyboard state response may end up in a shell command
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
3822 out_str_t_TI(); // start "raw" mode
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3823 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
3824 out_str(T_BE); // enable bracketed paste mode
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3825
24045
1b56d4c75d19 patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents: 23774
diff changeset
3826 #if defined(UNIX) || defined(VMS)
1b56d4c75d19 patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents: 23774
diff changeset
3827 // Enable xterm's focus reporting mode when 'esckeys' is set.
27930
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
3828 if (p_ek && *T_FE != NUL)
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3829 out_str(T_FE);
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3830 #endif
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3831
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3832 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3833 termcap_active = TRUE;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3834 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3835 #ifdef FEAT_TERMRESPONSE
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3836 # ifdef FEAT_GUI
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3837 if (!gui.in_use && !gui.starting)
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3838 # endif
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3839 {
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3840 may_req_termresponse();
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3841 // 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
3842 // 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
3843 if (crv_status.tr_progress == STATUS_SENT)
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3844 check_for_codes_from_term();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3845 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3846 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3847 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3848 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3849
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3850 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3851 stoptermcap(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3852 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3853 screen_stop_highlight();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3854 reset_cterm_colors();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3855 if (termcap_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3856 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3857 #ifdef FEAT_TERMRESPONSE
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3858 # ifdef FEAT_GUI
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3859 if (!gui.in_use && !gui.starting)
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3860 # endif
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3861 {
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
3862 // 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
3863 if (termrequest_any_pending())
4391
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3864 {
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3865 # 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
3866 // Give the terminal a chance to respond.
21927
88070e222e82 patch 8.2.1513: cannot interrupt shell used for filename expansion
Bram Moolenaar <Bram@vim.org>
parents: 21624
diff changeset
3867 mch_delay(100L, 0);
4391
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3868 # endif
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3869 # 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
3870 // Discard data received but not read.
4391
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3871 if (exiting)
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3872 tcflush(fileno(stdin), TCIFLUSH);
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3873 # endif
71fa86c8fd4a updated for version 7.3.944
Bram Moolenaar <bram@vim.org>
parents: 4267
diff changeset
3874 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3875 // 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
3876 // get them.
1691
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3877 check_for_codes_from_term();
4842e7421b52 updated for version 7.2b-024
vimboss
parents: 1623
diff changeset
3878 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3879 #endif
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3880 MAY_WANT_TO_LOG_THIS;
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3881
24045
1b56d4c75d19 patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents: 23774
diff changeset
3882 #if defined(UNIX) || defined(VMS)
1b56d4c75d19 patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set
Bram Moolenaar <Bram@vim.org>
parents: 23774
diff changeset
3883 // Disable xterm's focus reporting mode if 'esckeys' is set.
27930
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
3884 if (p_ek && *T_FD != NUL)
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3885 out_str(T_FD);
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3886 #endif
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
3887
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3888 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
3889 out_str(T_KE); // stop "keypad transmit" mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3890 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3891 termcap_active = FALSE;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3892 cursor_on(); // just in case it is still off
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3893 out_str_t_TE(); // stop "raw" mode, modifyOtherKeys and
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
3894 // Kitty keyboard protocol
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3895 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
3896 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3897 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3898 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3899 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3900
5932
06c10522d321 updated for version 7.4.307
Bram Moolenaar <bram@vim.org>
parents: 5927
diff changeset
3901 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3902 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3903 * Request version string (for xterm) when needed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3904 * Only do this after switching to raw mode, otherwise the result will be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3905 * echoed.
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 620
diff changeset
3906 * 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
3907 * while executing "-c !cmd" or even after "-c quit".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3908 * Only do this after termcap mode has been started, otherwise the codes for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3909 * the cursor keys may be wrong.
620
9e359e5759f6 updated for version 7.0177
vimboss
parents: 474
diff changeset
3910 * Only do this when 'esckeys' is on, otherwise the response causes trouble in
9e359e5759f6 updated for version 7.0177
vimboss
parents: 474
diff changeset
3911 * Insert mode.
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 41
diff changeset
3912 * 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
3913 * request to terminal while reading from a file).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3914 * The result is caught in check_termcode().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3915 */
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 620
diff changeset
3916 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3917 may_req_termresponse(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3918 {
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
3919 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
3920 && can_get_termresponse()
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 620
diff changeset
3921 && starting == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3922 && *T_CRV != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3923 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3924 MAY_WANT_TO_LOG_THIS;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
3925 LOG_TR(("Sending CRV request"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3926 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
3927 termrequest_sent(&crv_status);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3928 // 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
3929 // get_keystroke()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3930 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3931 (void)vpeekc_nomap();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3932 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3933 }
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3934
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3935 /*
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3936 * Send sequences to the terminal and check with t_u7 how the cursor moves, to
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3937 * find out properties of the terminal.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
3938 * Note that this goes out before T_CRV, so that the result can be used when
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
3939 * the termresponse arrives.
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3940 */
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3941 void
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3942 check_terminal_behavior(void)
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3943 {
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3944 int did_send = FALSE;
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3945
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3946 if (!can_get_termresponse() || starting != 0 || *T_U7 == NUL)
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3947 return;
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3948
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
3949 if (u7_status.tr_progress == STATUS_GET
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3950 && !option_was_set((char_u *)"ambiwidth"))
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
3951 {
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
3952 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
3953
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3954 // Ambiguous width check.
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3955 // Check how the terminal treats ambiguous character width (UAX #11).
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3956 // First, we move the cursor to (1, 0) and print a test ambiguous
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3957 // character \u25bd (WHITE DOWN-POINTING TRIANGLE) and then query
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3958 // the current cursor position. If the terminal treats \u25bd as
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3959 // single width, the position is (1, 1), or if it is treated as double
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3960 // width, that will be (1, 2). This function has the side effect that
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3961 // changes cursor position, so it must be called immediately after
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3962 // entering termcap mode.
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3963 MAY_WANT_TO_LOG_THIS;
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3964 LOG_TR(("Sending request for ambiwidth check"));
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3965 // 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
3966 // 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
3967 term_windgoto(1, 0);
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3968 buf[mb_char2bytes(0x25bd, buf)] = NUL;
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3969 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
3970 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
3971 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
3972 out_flush();
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3973 did_send = TRUE;
16625
d4e74f9f7ae9 patch 8.1.1315: there is always a delay if a termrequest is never answered
Bram Moolenaar <Bram@vim.org>
parents: 16586
diff changeset
3974
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
3975 // 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
3976 // 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
3977 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
3978 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
3979 out_str((char_u *)" ");
21226
421c4ed6b949 patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents: 20935
diff changeset
3980 line_was_clobbered(1);
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3981 }
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3982
27004
671664c5faa4 patch 8.2.4031: crash in xterm with only two lines
Bram Moolenaar <Bram@vim.org>
parents: 26917
diff changeset
3983 if (xcc_status.tr_progress == STATUS_GET && Rows > 2)
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3984 {
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3985 // 2. Check compatibility with xterm.
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3986 // We move the cursor to (2, 0), print a test sequence and then query
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3987 // the current cursor position. If the terminal properly handles
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3988 // unknown DCS string and CSI sequence with intermediate byte, the test
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3989 // sequence is ignored and the cursor does not move. If the terminal
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3990 // handles test sequence incorrectly, a garbage string is displayed and
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3991 // the cursor does move.
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
3992 MAY_WANT_TO_LOG_THIS;
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3993 LOG_TR(("Sending xterm compatibility test sequence."));
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3994 // Do this in the third row. Second row is used by ambiguous
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 22956
diff changeset
3995 // character width check.
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3996 term_windgoto(2, 0);
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3997 // send the test DCS string.
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3998 out_str((char_u *)"\033Pzz\033\\");
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
3999 // send the test CSI sequence with intermediate byte.
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4000 out_str((char_u *)"\033[0%m");
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4001 out_str(T_U7);
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4002 termrequest_sent(&xcc_status);
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4003 out_flush();
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4004 did_send = TRUE;
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4005
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4006 // If the terminal handles test sequence incorrectly, garbage text is
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4007 // displayed. Clear them out for now.
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4008 screen_stop_highlight();
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4009 term_windgoto(2, 0);
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4010 out_str((char_u *)" ");
21226
421c4ed6b949 patch 8.2.1164: text cleared by checking terminal properties not redrawn
Bram Moolenaar <Bram@vim.org>
parents: 20935
diff changeset
4011 line_was_clobbered(2);
20768
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4012 }
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4013
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4014 if (did_send)
1e2e81dbb958 patch 8.2.0936: some terminals misinterpret the code for getting cursor style
Bram Moolenaar <Bram@vim.org>
parents: 20727
diff changeset
4015 {
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
4016 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
4017
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4018 // 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
4019 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
4020
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4021 // 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
4022 // 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
4023 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
4024 (void)vpeekc_nomap();
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4025 }
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4026 }
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4027
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4028 /*
6885
ce209c5103a3 patch 7.4.762
Bram Moolenaar <bram@vim.org>
parents: 6882
diff changeset
4029 * Similar to requesting the version string: Request the terminal background
ce209c5103a3 patch 7.4.762
Bram Moolenaar <bram@vim.org>
parents: 6882
diff changeset
4030 * color when it is the right moment.
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4031 */
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4032 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4033 may_req_bg_color(void)
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4034 {
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
4035 if (can_get_termresponse() && starting == 0)
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4036 {
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4037 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
4038
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
4039 # ifdef FEAT_TERMINAL
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4040 // 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
4041 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
4042 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
4043 MAY_WANT_TO_LOG_THIS;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4044 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
4045 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
4046 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
4047 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
4048 }
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
4049 # 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
4050
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4051 // 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
4052 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
4053 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
4054 MAY_WANT_TO_LOG_THIS;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4055 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
4056 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
4057 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
4058 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
4059 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4060
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
4061 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
4062 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4063 // 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
4064 // 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
4065 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
4066 (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
4067 }
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4068 }
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4069 }
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
4070
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4071 # ifdef DEBUG_TERMRESPONSE
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4072 static void
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4073 log_tr(const char *fmt, ...)
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4074 {
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4075 static FILE *fd_tr = NULL;
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4076 static proftime_T start;
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4077 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
4078 va_list ap;
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4079
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4080 if (fd_tr == NULL)
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4081 {
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4082 fd_tr = fopen("termresponse.log", "w");
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4083 profile_start(&start);
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4084 }
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4085 now = start;
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4086 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
4087 fprintf(fd_tr, "%s: %s ", profile_msg(&now),
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
4088 must_redraw == UPD_NOT_VALID ? "NV"
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
4089 : must_redraw == UPD_CLEAR ? "CL" : " ");
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4090 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
4091 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
4092 va_end(ap);
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
4093 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
4094 fflush(fd_tr);
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4095 }
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
4096 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4097 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4098
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4099 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4100 * Return TRUE when saving and restoring the screen.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4101 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4102 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4103 swapping_screen(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4104 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4105 return (full_screen && *T_TI != NUL);
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4109 * By outputting the 'cursor very visible' termcap code, for some windowed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4110 * terminals this makes the screen scrolled to the correct position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4111 * Used when starting Vim or returning from a shell.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4112 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4113 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4114 scroll_start(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4115 {
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
4116 if (*T_VS != NUL && *T_CVS != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4117 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
4118 MAY_WANT_TO_LOG_THIS;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4119 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
4120 out_str(T_CVS);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4121 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4122 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4123 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4124
24428
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4125 // True if cursor is not visible
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4126 static int cursor_is_off = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4127
24428
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4128 // True if cursor is not visible due to an ongoing cursor-less sleep
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4129 static int cursor_is_asleep = FALSE;
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4130
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 /*
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
4132 * 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
4133 */
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
4134 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
4135 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
4136 {
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
4137 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
4138 cursor_is_off = FALSE;
24428
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4139 cursor_is_asleep = FALSE;
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
4140 }
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
4141
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
4142 /*
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
4143 * Enable the cursor if it's currently off.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4144 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4145 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4146 cursor_on(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4147 {
24428
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4148 if (cursor_is_off && !cursor_is_asleep)
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
4149 cursor_on_force();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4151
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4153 * Disable the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4154 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4155 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4156 cursor_off(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4157 {
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
4158 if (full_screen && !cursor_is_off)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4159 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4160 out_str(T_VI); // disable cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4161 cursor_is_off = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4162 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4163 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4164
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 27004
diff changeset
4165 #ifdef FEAT_GUI
24428
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4166 /*
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4167 * Check whether the cursor is invisible due to an ongoing cursor-less sleep
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4168 */
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4169 int
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4170 cursor_is_sleeping(void)
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4171 {
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4172 return cursor_is_asleep;
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4173 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 27004
diff changeset
4174 #endif
24428
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4175
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4176 /*
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4177 * Disable the cursor and mark it disabled by cursor-less sleep
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4178 */
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4179 void
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4180 cursor_sleep(void)
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4181 {
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4182 cursor_is_asleep = TRUE;
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4183 cursor_off();
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4184 }
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4185
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4186 /*
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4187 * Enable the cursor and mark it not disabled by cursor-less sleep
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4188 */
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4189 void
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4190 cursor_unsleep(void)
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4191 {
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4192 cursor_is_asleep = FALSE;
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4193 cursor_on();
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4194 }
9299d21d1d5d patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents: 24228
diff changeset
4195
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
4196 #if defined(CURSOR_SHAPE) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4197 /*
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4198 * Set cursor shape to match Insert or Replace mode.
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4199 */
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4200 void
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4201 term_cursor_mode(int forced)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4202 {
12078
d21b8f31b296 patch 8.0.0919: cursor color isn't set on startup
Christian Brabandt <cb@256bit.org>
parents: 12076
diff changeset
4203 static int showing_mode = -1;
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4204 char_u *p;
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4205
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4206 // 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
4207 // mode.
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4208 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
4209 {
12184
76fbd85c3cea patch 8.0.0972: compiler warnings for unused variables
Christian Brabandt <cb@256bit.org>
parents: 12174
diff changeset
4210 # 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
4211 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
4212 // 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
4213 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
4214 # endif
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4215 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
4216 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4217
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4218 if ((State & MODE_REPLACE) == MODE_REPLACE)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4219 {
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4220 if (forced || showing_mode != MODE_REPLACE)
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4221 {
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4222 if (*T_CSR != NUL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4223 p = T_CSR; // Replace mode cursor
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4224 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4225 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
4226 if (*p != NUL)
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4227 {
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4228 out_str(p);
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4229 showing_mode = MODE_REPLACE;
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4230 }
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4231 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4232 }
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4233 else if (State & MODE_INSERT)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4234 {
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4235 if ((forced || showing_mode != MODE_INSERT) && *T_CSI != NUL)
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4236 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4237 out_str(T_CSI); // Insert mode cursor
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4238 showing_mode = MODE_INSERT;
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4239 }
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4240 }
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4241 else if (forced || showing_mode != MODE_NORMAL)
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4242 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4243 out_str(T_CEI); // non-Insert mode cursor
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
4244 showing_mode = MODE_NORMAL;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4245 }
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4246 }
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4247
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4248 # 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
4249 void
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4250 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
4251 {
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4252 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
4253 {
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
4254 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
4255 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
4256 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
4257 out_flush();
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4258 }
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4259 }
12172
444793fce117 patch 8.0.0966: build failure without terminal feature
Christian Brabandt <cb@256bit.org>
parents: 12170
diff changeset
4260 # endif
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4261
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4262 int
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4263 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
4264 {
12261
875d7cc9b127 patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
4265 #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
4266 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
4267 && 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
4268 && 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
4269 #else
875d7cc9b127 patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
4270 return FALSE;
875d7cc9b127 patch 8.0.1010: build failure without termresponse feature
Christian Brabandt <cb@256bit.org>
parents: 12259
diff changeset
4271 #endif
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4272 }
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4273
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4274 /*
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
4275 * "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
4276 */
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4277 void
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4278 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
4279 {
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4280 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
4281 {
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4282 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
4283 out_flush();
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4284 }
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4285 else
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
4286 {
12259
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4287 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
4288
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4289 // 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
4290 // 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
4291 // 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
4292 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
4293 do_blink = !blink;
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4294
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4295 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
4296 {
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4297 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
4298 out_flush();
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4299 }
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4300 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
4301 {
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4302 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
4303 out_flush();
48eac9bc2f82 patch 8.0.1009: Xterm cursor blinking status may be inverted
Christian Brabandt <cb@256bit.org>
parents: 12234
diff changeset
4304 }
12186
36456f237c59 patch 8.0.0973: initial info about blinking cursor is wrong
Christian Brabandt <cb@256bit.org>
parents: 12184
diff changeset
4305 }
12076
ca4931a20f8c patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents: 11784
diff changeset
4306 }
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
4307 #endif
36
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4308
125e80798a85 updated for version 7.0021
vimboss
parents: 22
diff changeset
4309 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4310 * Set scrolling region for window 'wp'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4311 * The region starts 'off' lines from the start of the window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4312 * Also set the vertical scroll region for a vertically split window. Always
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4313 * the full width of the window, excluding the vertical separator.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4314 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4315 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4316 scroll_region_set(win_T *wp, int off)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4317 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4318 OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4319 W_WINROW(wp) + off));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4320 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
4321 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
4322 wp->w_wincol));
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4323 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4324 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4325
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4326 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4327 * Reset scrolling region to the whole screen.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4328 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4329 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4330 scroll_region_reset(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4331 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4332 OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4333 if (*T_CSV != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4334 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
4335 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4336 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4337
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4338
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4339 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4340 * List of terminal codes that are currently recognized.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4341 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4342
298
f9de3e679a04 updated for version 7.0078
vimboss
parents: 230
diff changeset
4343 static struct termcode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4344 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4345 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
4346 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
4347 int len; // STRLEN(code)
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4348 int modlen; // length of part before ";*~".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4349 } *termcodes = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4350
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4351 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
4352 static int tc_len = 0; // current number of entries in termcodes[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4353
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
4354 static int termcode_star(char_u *code, int len);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4355
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4356 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4357 clear_termcodes(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4358 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4359 while (tc_len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4360 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
4361 VIM_CLEAR(termcodes);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4362 tc_max_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4364 #ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4365 BC = (char *)empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4366 UP = (char *)empty_option;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4367 PC = NUL; // set pad character to NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4368 ospeed = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4369 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4370
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4371 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4372 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4373
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4374 #define ATC_FROM_TERM 55
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4375
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4376 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4377 * Add a new entry to the list of terminal codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4378 * The list is kept alphabetical for ":set termcap"
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4379 * "flags" is TRUE when replacing 7-bit by 8-bit controls is desired.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4380 * "flags" can also be ATC_FROM_TERM for got_code_from_term().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4381 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4382 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4383 add_termcode(char_u *name, char_u *string, int flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4384 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4385 struct termcode *new_tc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4386 int i, j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4387 char_u *s;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4388 int len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4389
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4390 if (string == NULL || *string == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4391 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4392 del_termcode(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4393 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4394 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4395
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
4396 #if defined(MSWIN) && !defined(FEAT_GUI)
20830
9064044fd4f6 patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents: 20778
diff changeset
4397 s = vim_strnsave(string, STRLEN(string) + 1);
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4398 #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
4399 # 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
4400 if (!gui.in_use)
20830
9064044fd4f6 patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents: 20778
diff changeset
4401 s = vim_strnsave(string, STRLEN(string) + 1);
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
4402 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
4403 # 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
4404 s = vim_strsave(string);
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4405 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4406 if (s == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4407 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4408
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4409 // Change leading <Esc>[ to CSI, change <Esc>O to <M-O>.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4410 if (flags != 0 && flags != ATC_FROM_TERM && term_7to8bit(string) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4411 {
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1552
diff changeset
4412 STRMOVE(s, s + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4413 s[0] = term_7to8bit(string);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4414 }
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4415
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
4416 #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
4417 # 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
4418 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
4419 # endif
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4420 {
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
4421 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
4422 {
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
4423 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
4424 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
4425 }
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4426 }
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4427 #endif
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
4428
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4429 len = (int)STRLEN(s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4430
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4431 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4432
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4433 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4434 * need to make space for more entries
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4435 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4436 if (tc_len == tc_max_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4437 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4438 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
4439 new_tc = ALLOC_MULT(struct termcode, tc_max_len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 if (new_tc == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442 tc_max_len -= 20;
24737
e97a14604f65 patch 8.2.2907: memory leak when running out of memory
Bram Moolenaar <Bram@vim.org>
parents: 24428
diff changeset
4443 vim_free(s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4444 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4445 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4446 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4447 new_tc[i] = termcodes[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4448 vim_free(termcodes);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4449 termcodes = new_tc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4452 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4453 * Look for existing entry with the same name, it is replaced.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4454 * Look for an existing entry that is alphabetical higher, the new entry
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4455 * is inserted in front of it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4456 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4457 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4458 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4459 if (termcodes[i].name[0] < name[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4460 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4461 if (termcodes[i].name[0] == name[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4462 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4463 if (termcodes[i].name[1] < name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4464 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4465 /*
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4466 * Exact match: May replace old code.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4467 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4468 if (termcodes[i].name[1] == name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4469 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4470 if (flags == ATC_FROM_TERM && (j = termcode_star(
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4471 termcodes[i].code, termcodes[i].len)) > 0)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4472 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4473 // 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
4474 // invoked from got_code_from_term().
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4475 if (len == termcodes[i].len - j
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4476 && STRNCMP(s, termcodes[i].code, len - 1) == 0
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4477 && s[len - 1]
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4478 == termcodes[i].code[termcodes[i].len - 1])
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4479 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4480 // They are equal but for the ";*": don't add it.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4481 vim_free(s);
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4482 return;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4483 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4484 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4485 else
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4486 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4487 // Replace old code.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4488 vim_free(termcodes[i].code);
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4489 --tc_len;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4490 break;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4491 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4492 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4493 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4494 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4495 * Found alphabetical larger entry, move rest to insert new entry
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4496 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4497 for (j = tc_len; j > i; --j)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4498 termcodes[j] = termcodes[j - 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4499 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4500 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4501
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4502 termcodes[i].name[0] = name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4503 termcodes[i].name[1] = name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4504 termcodes[i].code = s;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
4505 termcodes[i].len = len;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4506
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4507 // 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
4508 // accept modifiers.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4509 termcodes[i].modlen = 0;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4510 j = termcode_star(s, len);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4511 if (j > 0)
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
4512 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4513 termcodes[i].modlen = len - 1 - j;
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
4514 // For "CSI[@;X" the "@" is not included in "modlen".
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
4515 if (termcodes[i].code[termcodes[i].modlen - 1] == '@')
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
4516 --termcodes[i].modlen;
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
4517 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4518 ++tc_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4519 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4520
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4521 /*
11557
7e5e76d8d451 patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents: 11455
diff changeset
4522 * Check termcode "code[len]" for ending in ;*X or *X.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4523 * 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
4524 * Return 0 if not found, 2 for ;*X and 1 for *X.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4525 */
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4526 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4527 termcode_star(char_u *code, int len)
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4528 {
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
4529 // Shortest is <M-O>*X. With ; shortest is <CSI>@;*X
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4530 if (len >= 3 && code[len - 2] == '*')
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4531 {
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4532 if (len >= 5 && code[len - 3] == ';')
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4533 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
4534 else
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4535 return 1;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4536 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4537 return 0;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4538 }
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
4539
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4540 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4541 find_termcode(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4542 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4543 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4544
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4545 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4546 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4547 return termcodes[i].code;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4548 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4549 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4550
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4551 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4552 get_termcode(int i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4553 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4554 if (i >= tc_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4555 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4556 return &termcodes[i].name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4557 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4558
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4559 /*
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4560 * 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
4561 */
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4562 int
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4563 get_termcode_len(int idx)
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4564 {
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4565 return termcodes[idx].len;
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4566 }
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4567
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17809
diff changeset
4568 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4569 del_termcode(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4570 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4571 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4572
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4573 if (termcodes == NULL) // nothing there yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4574 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4575
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4576 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4577
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4578 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4579 if (termcodes[i].name[0] == name[0] && termcodes[i].name[1] == name[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4580 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4581 del_termcode_idx(i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4582 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4583 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4584 // not found. Give error message?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4585 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4586
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4587 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4588 del_termcode_idx(int idx)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4589 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4590 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4591
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4592 vim_free(termcodes[idx].code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4593 --tc_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4594 for (i = idx; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4595 termcodes[i] = termcodes[i + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4596 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4597
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4598 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4599 * Called when detected that the terminal sends 8-bit codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4600 * Convert all 7-bit codes to their 8-bit equivalent.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4601 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4602 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4603 switch_to_8bit(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4604 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4605 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4606 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4607
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4608 // Only need to do something when not already using 8-bit codes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4609 if (!term_is_8bit(T_NAME))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4610 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4611 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4612 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4613 c = term_7to8bit(termcodes[i].code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4614 if (c != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4615 {
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1552
diff changeset
4616 STRMOVE(termcodes[i].code + 1, termcodes[i].code + 2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4617 termcodes[i].code[0] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4618 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4619 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
4620 need_gather = TRUE; // need to fill termleader[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4621 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4622 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
4623 LOG_TR(("Switching to 8 bit"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4624 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4625
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4626 #ifdef CHECK_DOUBLE_CLICK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4627 static linenr_T orig_topline = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4628 # ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4629 static int orig_topfill = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4630 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4631 #endif
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12429
diff changeset
4632 #if defined(CHECK_DOUBLE_CLICK) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4633 /*
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26670
diff changeset
4634 * Checking for double-clicks ourselves.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4635 * "orig_topline" is used to avoid detecting a double-click when the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4636 * contents scrolled (e.g., when 'scrolloff' is non-zero).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4637 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4638 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4639 * Set orig_topline. Used when jumping to another window, so that a double
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4640 * click still works.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4641 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4642 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4643 set_mouse_topline(win_T *wp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4644 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4645 orig_topline = wp->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4646 # ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4647 orig_topfill = wp->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4648 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4649 }
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4650
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4651 /*
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4652 * 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
4653 * topline and topfill.
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4654 */
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4655 int
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4656 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
4657 {
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4658 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
4659 #ifdef FEAT_DIFF
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4660 && orig_topfill == wp->w_topfill
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4661 #endif
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4662 ;
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
4663 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4664 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4665
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4666 /*
28616
6ff407067190 patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents: 28548
diff changeset
4667 * If "buf" is NULL put "string[new_slen]" in typebuf; "buflen" is not used.
6ff407067190 patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents: 28548
diff changeset
4668 * If "buf" is not NULL put "string[new_slen]" in "buf[bufsize]" and adjust
6ff407067190 patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents: 28548
diff changeset
4669 * "buflen".
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4670 * Remove "slen" bytes.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4671 * Returns FAIL for error.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4672 */
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20705
diff changeset
4673 int
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4674 put_string_in_typebuf(
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4675 int offset,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4676 int slen,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4677 char_u *string,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4678 int new_slen,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4679 char_u *buf,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4680 int bufsize,
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4681 int *buflen)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4682 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4683 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
4684
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4685 string[new_slen] = NUL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4686 if (buf == NULL)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4687 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4688 if (extra < 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4689 // 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
4690 del_typebuf(-extra, offset);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4691 else if (extra > 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4692 // insert the extra space we need
28618
daad4c7b39be patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents: 28616
diff changeset
4693 if (ins_typebuf(string + slen, REMAP_YES, offset, FALSE, FALSE)
daad4c7b39be patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents: 28616
diff changeset
4694 == FAIL)
daad4c7b39be patch 8.2.4833: failure of mapping not checked for
Bram Moolenaar <Bram@vim.org>
parents: 28616
diff changeset
4695 return FAIL;
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4696
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4697 // 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
4698 // typebuf.tb_buf[]!
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4699 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
4700 (size_t)new_slen);
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4701 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4702 else
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4703 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4704 if (extra < 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4705 // remove matched characters
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4706 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
4707 (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
4708 else if (extra > 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4709 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4710 // 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
4711 // space return -1.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4712 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
4713 return FAIL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4714 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
4715 (size_t)(*buflen - offset));
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4716 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4717 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
4718 *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
4719 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4720 return OK;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4721 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4722
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4723 /*
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4724 * 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
4725 */
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
4726 int
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4727 decode_modifiers(int n)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4728 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4729 int code = n - 1;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4730 int modifiers = 0;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4731
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4732 if (code & 1)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4733 modifiers |= MOD_MASK_SHIFT;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4734 if (code & 2)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4735 modifiers |= MOD_MASK_ALT;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4736 if (code & 4)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4737 modifiers |= MOD_MASK_CTRL;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4738 if (code & 8)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4739 modifiers |= MOD_MASK_META;
31279
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
4740 // Any further modifiers are silently dropped.
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
4741
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4742 return modifiers;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4743 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4744
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4745 static int
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4746 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
4747 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4748 int new_slen = 0;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4749
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4750 if (modifiers != 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4751 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4752 // Some keys have the modifier included. Need to handle that here to
22764
d03221aa54f3 patch 8.2.1930: wrong input if removing shift results in special key code
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
4753 // make mappings work. This may result in a special key, such as
d03221aa54f3 patch 8.2.1930: wrong input if removing shift results in special key code
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
4754 // K_S_TAB.
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4755 *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
4756 if (modifiers != 0)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4757 {
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4758 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
4759 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
4760 string[new_slen++] = modifiers;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4761 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4762 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4763 return new_slen;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4764 }
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
4765
20776
7728e309e013 patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents: 20774
diff changeset
4766 /*
7728e309e013 patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents: 20774
diff changeset
4767 * Handle a cursor position report.
7728e309e013 patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents: 20774
diff changeset
4768 */
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4769 static void
20776
7728e309e013 patch 8.2.0940: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents: 20774
diff changeset
4770 handle_u7_response(int *arg, char_u *tp UNUSED, int csi_len UNUSED)
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4771 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4772 if (arg[0] == 2 && arg[1] >= 2)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4773 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4774 char *aw = NULL;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4775
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4776 LOG_TR(("Received U7 status: %s", tp));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4777 u7_status.tr_progress = STATUS_GOT;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4778 did_cursorhold = TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4779 if (arg[1] == 2)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4780 aw = "single";
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4781 else if (arg[1] == 3)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4782 aw = "double";
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4783 if (aw != NULL && STRCMP(aw, p_ambw) != 0)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4784 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4785 // Setting the option causes a screen redraw. Do
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4786 // that right away if possible, keeping any
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4787 // messages.
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28453
diff changeset
4788 set_option_value_give_err((char_u *)"ambw", 0L, (char_u *)aw, 0);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
4789 #ifdef DEBUG_TERMRESPONSE
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4790 {
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
4791 int r = redraw_asap(UPD_CLEAR);
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4792
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4793 log_tr("set 'ambiwidth', redraw_asap(): %d", r);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4794 }
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
4795 #else
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
4796 redraw_asap(UPD_CLEAR);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
4797 #endif
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
4798 #ifdef FEAT_EVAL
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4799 set_vim_var_string(VV_TERMU7RESP, tp, csi_len);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
4800 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4801 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4802 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4803 else if (arg[0] == 3)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4804 {
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4805 int value;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4806
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4807 LOG_TR(("Received compatibility test result: %s", tp));
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4808 xcc_status.tr_progress = STATUS_GOT;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4809
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4810 // Third row: xterm compatibility test.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4811 // If the cursor is on the first column then the terminal can handle
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4812 // the request for cursor style and blinking.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4813 value = arg[1] == 1 ? TPR_YES : TPR_NO;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4814 term_props[TPR_CURSOR_STYLE].tpr_status = value;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4815 term_props[TPR_CURSOR_BLINK].tpr_status = value;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4816 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4817 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4818
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4819 /*
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4820 * Handle a response to T_CRV: {lead}{first}{x};{vers};{y}c
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 22956
diff changeset
4821 * Xterm and alike use '>' for {first}.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4822 * Rxvt sends "{lead}?1;2c".
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4823 */
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4824 static void
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4825 handle_version_response(int first, int *arg, int argc, char_u *tp)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4826 {
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4827 // The xterm version. It is set to zero when it can't be an actual xterm
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4828 // version.
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4829 int version = arg[1];
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4830
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4831 LOG_TR(("Received CRV response: %s", tp));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4832 crv_status.tr_progress = STATUS_GOT;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4833 did_cursorhold = TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4834
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4835 // Reset terminal properties that are set based on the termresponse.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4836 // Mainly useful for tests that send the termresponse multiple times.
20836
2616c5a337e0 patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
4837 // For testing all props can be reset.
20838
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4838 init_term_props(
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4839 #ifdef FEAT_EVAL
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4840 reset_term_props_on_termresponse
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4841 #else
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4842 FALSE
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4843 #endif
020aec2e8de9 patch 8.2.0971: build with tiny features fails
Bram Moolenaar <Bram@vim.org>
parents: 20836
diff changeset
4844 );
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4845
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4846 // If this code starts with CSI, you can bet that the
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4847 // terminal uses 8-bit codes.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4848 if (tp[0] == CSI)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4849 switch_to_8bit();
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4850
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4851 // Screen sends 40500.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4852 // rxvt sends its version number: "20703" is 2.7.3.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4853 // Ignore it for when the user has set 'term' to xterm,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4854 // even though it's an rxvt.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4855 if (version > 20000)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4856 version = 0;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4857
28616
6ff407067190 patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents: 28548
diff changeset
4858 // Figure out more if the response is CSI > 99 ; 99 ; 99 c
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4859 if (first == '>' && argc == 3)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4860 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4861 // mintty 2.9.5 sends 77;20905;0c.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4862 // (77 is ASCII 'M' for mintty.)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4863 if (arg[0] == 77)
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4864 {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4865 // mintty can do SGR mouse reporting
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4866 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4867 }
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4868
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
4869 #ifdef FEAT_TERMRESPONSE
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4870 // If xterm version >= 141 try to get termcap codes. For other
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4871 // terminals the request should be ignored.
26670
a77b661439f9 patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents: 26439
diff changeset
4872 if (version >= 141 && p_xtermcodes)
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4873 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4874 LOG_TR(("Enable checking for XT codes"));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4875 check_for_codes = TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4876 need_gather = TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4877 req_codes_from_term();
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4878 }
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
4879 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4880
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4881 // libvterm sends 0;100;0
29869
0eab537e9ccb patch 9.0.0273: Konsole termresponse not recognized
Bram Moolenaar <Bram@vim.org>
parents: 29732
diff changeset
4882 // Konsole sends 0;115;0 and works the same way
0eab537e9ccb patch 9.0.0273: Konsole termresponse not recognized
Bram Moolenaar <Bram@vim.org>
parents: 29732
diff changeset
4883 if ((version == 100 || version == 115) && arg[0] == 0 && arg[2] == 0)
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4884 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4885 // If run from Vim $COLORS is set to the number of
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4886 // colors the terminal supports. Otherwise assume
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4887 // 256, libvterm supports even more.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4888 if (mch_getenv((char_u *)"COLORS") == NULL)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4889 may_adjust_color_count(256);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4890 // Libvterm can handle SGR mouse reporting.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4891 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4892 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4893
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4894 if (version == 95)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4895 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4896 // Mac Terminal.app sends 1;95;0
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4897 if (arg[0] == 1 && arg[2] == 0)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4898 {
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4899 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4900 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4901 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4902 // iTerm2 sends 0;95;0
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4903 else if (arg[0] == 0 && arg[2] == 0)
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4904 {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4905 // iTerm2 can do SGR mouse reporting
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4906 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4907 }
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4908 // old iTerm2 sends 0;95;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4909 else if (arg[0] == 0 && arg[2] == -1)
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4910 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4911 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4912
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4913 // screen sends 83;40500;0 83 is 'S' in ASCII.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4914 if (arg[0] == 83)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4915 {
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4916 // screen supports SGR mouse codes since 4.7.0
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4917 if (arg[1] >= 40700)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4918 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4919 else
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4920 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4921 }
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4922
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4923 // If no recognized terminal has set mouse behavior, assume xterm.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4924 if (term_props[TPR_MOUSE].tpr_status == TPR_UNKNOWN)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4925 {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4926 // Xterm version 277 supports SGR.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4927 // Xterm version >= 95 supports mouse dragging.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4928 if (version >= 277)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4929 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4930 else if (version >= 95)
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4931 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_XTERM2;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4932 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4933
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4934 // Detect terminals that set $TERM to something like
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4935 // "xterm-256color" but are not fully xterm compatible.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4936 //
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4937 // Gnome terminal sends 1;3801;0, 1;4402;0 or 1;2501;0.
20850
bf7453768034 patch 8.2.0977: t_8u is made empty for the wrong terminals
Bram Moolenaar <Bram@vim.org>
parents: 20838
diff changeset
4938 // Newer Gnome-terminal sends 65;6001;1.
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4939 // xfce4-terminal sends 1;2802;0.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4940 // screen sends 83;40500;0
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4941 // Assuming any version number over 2500 is not an
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4942 // xterm (without the limit for rxvt and screen).
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4943 if (arg[1] >= 2500)
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4944 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4945
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4946 else if (version == 136 && arg[2] == 0)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4947 {
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4948 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4949
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4950 // PuTTY sends 0;136;0
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4951 if (arg[0] == 0)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4952 {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4953 // supports sgr-like mouse reporting.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4954 term_props[TPR_MOUSE].tpr_status = TPR_MOUSE_SGR;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4955 }
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4956 // vandyke SecureCRT sends 1;136;0
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4957 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4958
28501
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
4959 // Konsole sends 0;115;0 - but t_u8 does not actually work, therefore
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
4960 // commented out.
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
4961 // else if (version == 115 && arg[0] == 0 && arg[2] == 0)
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
4962 // term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4963
31111
f1cb6b4dbf72 patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
4964 // Kitty up to 9.x sends 1;400{version};{secondary-version}
30958
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
4965 if (arg[0] == 1 && arg[1] >= 4000 && arg[1] <= 4009)
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
4966 {
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
4967 term_props[TPR_KITTY].tpr_status = TPR_YES;
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
4968 term_props[TPR_KITTY].tpr_set_by_termresponse = TRUE;
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
4969 }
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
4970
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4971 // GNU screen sends 83;30600;0, 83;40500;0, etc.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4972 // 30600/40500 is a version number of GNU screen. DA2 support is added
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4973 // on 3.6. DCS string has a special meaning to GNU screen, but xterm
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4974 // compatibility checking does not detect GNU screen.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4975 if (arg[0] == 83 && arg[1] >= 30600)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4976 {
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4977 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4978 term_props[TPR_CURSOR_BLINK].tpr_status = TPR_NO;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4979 }
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4980
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4981 // Xterm first responded to this request at patch level
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4982 // 95, so assume anything below 95 is not xterm and hopefully supports
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4983 // the underline RGB color sequence.
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
4984 if (version < 95)
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4985 term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4986
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4987 // Getting the cursor style is only supported properly by xterm since
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4988 // version 279 (otherwise it returns 0x18).
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4989 if (version < 279)
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4990 term_props[TPR_CURSOR_STYLE].tpr_status = TPR_NO;
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4991
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4992 /*
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4993 * Take action on the detected properties.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4994 */
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4995
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4996 // Unless the underline RGB color is expected to work, disable "t_8u".
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
4997 // It does not work for the real Xterm, it resets the background color.
28501
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
4998 // This may cause some flicker. Alternative would be to set "t_8u"
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
4999 // here if the terminal is expected to support it, but that might
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
5000 // conflict with what was set in the .vimrc.
28548
a54564337e89 patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents: 28505
diff changeset
5001 if (term_props[TPR_UNDERLINE_RGB].tpr_status != TPR_YES
a54564337e89 patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents: 28505
diff changeset
5002 && *T_8U != NUL
a54564337e89 patch 8.2.4798: t_8u option was reset even when set by the user
Bram Moolenaar <Bram@vim.org>
parents: 28505
diff changeset
5003 && !option_was_set((char_u *)"t_8u"))
28501
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
5004 {
20854
bd56f4045f37 patch 8.2.0979: a couple of screendump tests fail
Bram Moolenaar <Bram@vim.org>
parents: 20852
diff changeset
5005 set_string_option_direct((char_u *)"t_8u", -1, (char_u *)"",
bd56f4045f37 patch 8.2.0979: a couple of screendump tests fail
Bram Moolenaar <Bram@vim.org>
parents: 20852
diff changeset
5006 OPT_FREE, 0);
28501
e1c6e1f3c1bb patch 8.2.4775: SpellBad highlighting does not work in Konsole
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
5007 }
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5008 #ifdef FEAT_TERMRESPONSE
28505
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
5009 if (*T_8U != NUL && write_t_8u_state == MAYBE)
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
5010 // Did skip writing t_8u, a complete redraw is needed.
8751e815864e patch 8.2.4777: screendump tests fail because of a redraw
Bram Moolenaar <Bram@vim.org>
parents: 28501
diff changeset
5011 redraw_later_clear();
28616
6ff407067190 patch 8.2.4832: passing zero instead of NULL to a pointer argument
Bram Moolenaar <Bram@vim.org>
parents: 28548
diff changeset
5012 write_t_8u_state = OK; // can output t_8u now
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5013 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5014
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5015 // Only set 'ttymouse' automatically if it was not set
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5016 // by the user already.
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5017 if (!option_was_set((char_u *)"ttym")
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5018 && (term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_XTERM2
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5019 || term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR))
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5020 {
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28453
diff changeset
5021 set_option_value_give_err((char_u *)"ttym", 0L,
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5022 term_props[TPR_MOUSE].tpr_status == TPR_MOUSE_SGR
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5023 ? (char_u *)"sgr" : (char_u *)"xterm2", 0);
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5024 }
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5025
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5026 #ifdef FEAT_TERMRESPONSE
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5027 int need_flush = FALSE;
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5028
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5029 // Only request the cursor style if t_SH and t_RS are
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5030 // set. Only supported properly by xterm since version
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5031 // 279 (otherwise it returns 0x18).
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5032 // Only when getting the cursor style was detected to work.
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5033 // Not for Terminal.app, it can't handle t_RS, it
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5034 // echoes the characters to the screen.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5035 if (rcs_status.tr_progress == STATUS_GET
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5036 && term_props[TPR_CURSOR_STYLE].tpr_status == TPR_YES
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5037 && *T_CSH != NUL
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5038 && *T_CRS != NUL)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5039 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
5040 MAY_WANT_TO_LOG_THIS;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5041 LOG_TR(("Sending cursor style request"));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5042 out_str(T_CRS);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5043 termrequest_sent(&rcs_status);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5044 need_flush = TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5045 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5046
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5047 // Only request the cursor blink mode if t_RC set. Not
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5048 // for Gnome terminal, it can't handle t_RC, it
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5049 // echoes the characters to the screen.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5050 // Only when getting the cursor style was detected to work.
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5051 if (rbm_status.tr_progress == STATUS_GET
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5052 && term_props[TPR_CURSOR_BLINK].tpr_status == TPR_YES
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5053 && *T_CRC != NUL)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5054 {
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
5055 MAY_WANT_TO_LOG_THIS;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5056 LOG_TR(("Sending cursor blink mode request"));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5057 out_str(T_CRC);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5058 termrequest_sent(&rbm_status);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5059 need_flush = TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5060 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5061
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5062 if (need_flush)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5063 out_flush();
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5064 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5065 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5066 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5067
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5068 /*
30827
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5069 * Add "key" to "buf" and return the number of bytes used.
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5070 * Handles special keys and multi-byte characters.
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5071 */
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5072 static int
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5073 add_key_to_buf(int key, char_u *buf)
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5074 {
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5075 int idx = 0;
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5076
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5077 if (IS_SPECIAL(key))
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5078 {
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5079 buf[idx++] = K_SPECIAL;
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5080 buf[idx++] = KEY2TERMCAP0(key);
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5081 buf[idx++] = KEY2TERMCAP1(key);
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5082 }
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5083 else if (has_mbyte)
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5084 idx += (*mb_char2bytes)(key, buf + idx);
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5085 else
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5086 buf[idx++] = key;
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5087 return idx;
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5088 }
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5089
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5090 /*
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5091 * Shared between handle_key_with_modifier() and handle_csi_function_key().
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5092 */
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5093 static int
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5094 put_key_modifiers_in_typebuf(
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5095 int key_arg,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5096 int modifiers_arg,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5097 int csi_len,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5098 int offset,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5099 char_u *buf,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5100 int bufsize,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5101 int *buflen)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5102 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5103 int key = key_arg;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5104 int modifiers = modifiers_arg;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5105
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5106 // Some keys need adjustment when the Ctrl modifier is used.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5107 key = may_adjust_key_for_ctrl(modifiers, key);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5108
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5109 // May remove the shift modifier if it's already included in the key.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5110 modifiers = may_remove_shift_modifier(modifiers, key);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5111
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5112 // Produce modifiers with K_SPECIAL KS_MODIFIER {mod}
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5113 char_u string[MAX_KEY_CODE_LEN + 1];
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5114 int new_slen = modifiers2keycode(modifiers, &key, string);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5115
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5116 // Add the bytes for the key.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5117 new_slen += add_key_to_buf(key, string + new_slen);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5118
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5119 string[new_slen] = NUL;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5120 if (put_string_in_typebuf(offset, csi_len, string, new_slen,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5121 buf, bufsize, buflen) == FAIL)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5122 return -1;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5123 return new_slen - csi_len + offset;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5124 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5125
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5126 /*
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5127 * Handle a sequence with key and modifier, one of:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5128 * {lead}27;{modifier};{key}~
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5129 * {lead}{key};{modifier}u
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5130 * Returns the difference in length.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5131 */
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5132 static int
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5133 handle_key_with_modifier(
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5134 int *arg,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5135 int trail,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5136 int csi_len,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5137 int offset,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5138 char_u *buf,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5139 int bufsize,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5140 int *buflen)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5141 {
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5142 // Only set seenModifyOtherKeys for the "{lead}27;" code to avoid setting
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5143 // it for terminals using the kitty keyboard protocol. Xterm sends
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5144 // the form ending in "u" when the formatOtherKeys resource is set. We do
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5145 // not support this.
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5146 //
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5147 // Do not set seenModifyOtherKeys if there was a positive response at any
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5148 // time from requesting the kitty keyboard protocol state, these are not
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5149 // expected to support modifyOtherKeys level 2.
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5150 //
30958
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
5151 // Do not set seenModifyOtherKeys for kitty, it does send some sequences
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
5152 // like this but does not have the modifyOtherKeys feature.
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5153 if (trail != 'u'
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5154 && (kitty_protocol_state == KKPS_INITIAL
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5155 || kitty_protocol_state == KKPS_OFF
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5156 || kitty_protocol_state == KKPS_AFTER_T_KE)
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5157 && term_props[TPR_KITTY].tpr_status != TPR_YES)
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5158 {
31305
216c01bb1f90 patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 31303
diff changeset
5159 #ifdef FEAT_EVAL
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5160 ch_log(NULL, "setting seenModifyOtherKeys to TRUE");
31305
216c01bb1f90 patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 31303
diff changeset
5161 #endif
30958
122f883d7237 patch 9.0.0813: Kitty terminal is not recognized
Bram Moolenaar <Bram@vim.org>
parents: 30934
diff changeset
5162 seenModifyOtherKeys = TRUE;
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5163 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5164
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5165 int key = trail == 'u' ? arg[0] : arg[2];
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5166 int modifiers = decode_modifiers(arg[1]);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5167 return put_key_modifiers_in_typebuf(key, modifiers,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5168 csi_len, offset, buf, bufsize, buflen);
30827
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5169 }
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5170
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5171 /*
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5172 * Handle a sequence with key without a modifier:
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5173 * {lead}{key}u
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5174 * Returns the difference in length.
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5175 */
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5176 static int
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5177 handle_key_without_modifier(
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5178 int *arg,
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5179 int csi_len,
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5180 int offset,
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5181 char_u *buf,
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5182 int bufsize,
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5183 int *buflen)
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5184 {
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5185 char_u string[MAX_KEY_CODE_LEN + 1];
31281
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5186 int new_slen;
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5187
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5188 if (arg[0] == ESC)
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5189 {
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5190 // Putting Esc in the buffer creates ambiguity, it can be the start of
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5191 // an escape sequence. Use K_ESC to avoid that.
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5192 string[0] = K_SPECIAL;
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5193 string[1] = KS_EXTRA;
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5194 string[2] = KE_ESC;
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5195 new_slen = 3;
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5196 }
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5197 else
cab7d8accab7 patch 9.0.0974: even when Esc is encoded a timeout is used
Bram Moolenaar <Bram@vim.org>
parents: 31279
diff changeset
5198 new_slen = add_key_to_buf(arg[0], string);
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5199
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5200 if (put_string_in_typebuf(offset, csi_len, string, new_slen,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5201 buf, bufsize, buflen) == FAIL)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5202 return -1;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5203 return new_slen - csi_len + offset;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5204 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5205
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5206 /*
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5207 * CSI function key without or with modifiers:
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5208 * {lead}[ABCDEFHPQRS]
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5209 * {lead}1;{modifier}[ABCDEFHPQRS]
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5210 * Returns zero when nog recognized, a positive number when recognized.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5211 */
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5212 static int
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5213 handle_csi_function_key(
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5214 int argc,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5215 int *arg,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5216 int trail,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5217 int csi_len,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5218 char_u *key_name,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5219 int offset,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5220 char_u *buf,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5221 int bufsize,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5222 int *buflen)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5223 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5224 key_name[0] = 'k';
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5225 switch (trail)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5226 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5227 case 'A': key_name[1] = 'u'; break; // K_UP
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5228 case 'B': key_name[1] = 'd'; break; // K_DOWN
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5229 case 'C': key_name[1] = 'r'; break; // K_RIGHT
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5230 case 'D': key_name[1] = 'l'; break; // K_LEFT
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5231
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5232 // case 'E': keypad BEGIN - not supported
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5233 case 'F': key_name[0] = '@'; key_name[1] = '7'; break; // K_END
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5234 case 'H': key_name[1] = 'h'; break; // K_HOME
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5235
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5236 case 'P': key_name[1] = '1'; break; // K_F1
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5237 case 'Q': key_name[1] = '2'; break; // K_F2
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5238 case 'R': key_name[1] = '3'; break; // K_F3
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5239 case 'S': key_name[1] = '4'; break; // K_F4
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5240
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5241 default: return 0; // not recognized
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5242 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5243
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5244 int key = TERMCAP2KEY(key_name[0], key_name[1]);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5245 int modifiers = argc == 2 ? decode_modifiers(arg[1]) : 0;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5246 put_key_modifiers_in_typebuf(key, modifiers,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5247 csi_len, offset, buf, bufsize, buflen);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5248 return csi_len;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5249 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5250
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5251 /*
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5252 * Handle a CSI escape sequence.
20778
6d5e233bac9c patch 8.2.0941: detecting terminal properties is unstructured
Bram Moolenaar <Bram@vim.org>
parents: 20776
diff changeset
5253 * - Xterm version string.
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5254 *
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5255 * - Response to XTQMODKEYS: "{lead} > 4 ; Pv m".
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5256 *
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5257 * - Cursor position report: {lead}{row};{col}R
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5258 * The final byte must be 'R'. It is used for checking the
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5259 * ambiguous-width character state.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5260 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5261 * - window position reply: {lead}3;{x};{y}t
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5262 *
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5263 * - key with modifiers when modifyOtherKeys is enabled or the Kitty keyboard
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5264 * protocol is used:
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5265 * {lead}27;{modifier};{key}~
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5266 * {lead}{key};{modifier}u
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5267 *
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5268 * - function key with or without modifiers:
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5269 * {lead}[ABCDEFHPQRS]
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5270 * {lead}1;{modifier}[ABCDEFHPQRS]
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5271 *
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5272 * Return 0 for no match, -1 for partial match, > 0 for full match.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5273 */
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5274 static int
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5275 handle_csi(
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5276 char_u *tp,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5277 int len,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5278 char_u *argp,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5279 int offset,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5280 char_u *buf,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5281 int bufsize,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5282 int *buflen,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5283 char_u *key_name,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5284 int *slen)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5285 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5286 int first = -1; // optional char right after {lead}
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5287 int trail; // char that ends CSI sequence
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5288 int arg[3] = {-1, -1, -1}; // argument numbers
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5289 int argc = 0; // number of arguments
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5290 char_u *ap = argp;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5291 int csi_len;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5292
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5293 // Check for non-digit after CSI.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5294 if (!VIM_ISDIGIT(*ap))
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5295 first = *ap++;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5296
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5297 if (ASCII_ISUPPER(first))
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5298 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5299 // If "first" is in [ABCDEFHPQRS] then it is actually the "trail" and
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5300 // no argument follows.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5301 trail = first;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5302 first = -1;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5303 --ap;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5304 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5305 else
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5306 {
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5307 // Find up to three argument numbers.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5308 for (argc = 0; argc < 3; )
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5309 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5310 if (ap >= tp + len)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5311 return -1;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5312 if (*ap == ';')
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5313 arg[argc++] = -1; // omitted number
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5314 else if (VIM_ISDIGIT(*ap))
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5315 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5316 arg[argc] = 0;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5317 for (;;)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5318 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5319 if (ap >= tp + len)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5320 return -1;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5321 if (!VIM_ISDIGIT(*ap))
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5322 break;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5323 arg[argc] = arg[argc] * 10 + (*ap - '0');
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5324 ++ap;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5325 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5326 ++argc;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5327 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5328 if (*ap == ';')
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5329 ++ap;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5330 else
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5331 break;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5332 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5333
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5334 // mrxvt has been reported to have "+" in the version. Assume
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5335 // the escape sequence ends with a letter or one of "{|}~".
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5336 while (ap < tp + len
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5337 && !(*ap >= '{' && *ap <= '~')
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5338 && !ASCII_ISALPHA(*ap))
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5339 ++ap;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5340 if (ap >= tp + len)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5341 return -1;
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5342 trail = *ap;
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5343 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5344
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5345 csi_len = (int)(ap - tp) + 1;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5346
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5347 // Response to XTQMODKEYS: "CSI > 4 ; Pv m" where Pv indicates the
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5348 // modifyOtherKeys level. Drop similar responses.
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5349 if (first == '>' && (argc == 1 || argc == 2) && trail == 'm')
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5350 {
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5351 if (arg[0] == 4 && argc == 2)
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5352 modify_otherkeys_state = arg[1] == 2 ? MOKS_ENABLED : MOKS_OFF;
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5353
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5354 key_name[0] = (int)KS_EXTRA;
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5355 key_name[1] = (int)KE_IGNORE;
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5356 *slen = csi_len;
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5357 }
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5358
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5359 // Function key starting with CSI:
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5360 // {lead}[ABCDEFHPQRS]
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5361 // {lead}1;{modifier}[ABCDEFHPQRS]
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5362 else if (first == -1 && ASCII_ISUPPER(trail)
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5363 && (argc == 0 || (argc == 2 && arg[0] == 1)))
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5364 {
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5365 int res = handle_csi_function_key(argc, arg, trail,
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5366 csi_len, key_name, offset, buf, bufsize, buflen);
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5367 return res <= 0 ? res : len + res;
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5368 }
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5369
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5370 // Cursor position report: {lead}{row};{col}R
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5371 // Eat it when there are 2 arguments and it ends in 'R'.
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5372 // Also when u7_status is not "sent", it may be from a previous Vim that
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5373 // just exited. But not for <S-F3>, it sends something similar, check for
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5374 // row and column to make sense.
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
5375 else if (first == -1 && argc == 2 && trail == 'R')
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5376 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5377 handle_u7_response(arg, tp, csi_len);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5378
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5379 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5380 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5381 *slen = csi_len;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5382 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5383
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5384 // Version string: Eat it when there is at least one digit and
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5385 // it ends in 'c'
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5386 else if (*T_CRV != NUL && ap > argp + 1 && trail == 'c')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5387 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5388 handle_version_response(first, arg, argc, tp);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5389
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5390 *slen = csi_len;
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5391 #ifdef FEAT_EVAL
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5392 set_vim_var_string(VV_TERMRESPONSE, tp, *slen);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5393 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5394 apply_autocmds(EVENT_TERMRESPONSE,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5395 NULL, NULL, FALSE, curbuf);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5396 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5397 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5398 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5399
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5400 #ifdef FEAT_TERMRESPONSE
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5401 // Check blinking cursor from xterm:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5402 // {lead}?12;1$y set
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5403 // {lead}?12;2$y not set
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5404 //
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5405 // {lead} can be <Esc>[ or CSI
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5406 else if (rbm_status.tr_progress == STATUS_SENT
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5407 && first == '?'
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5408 && ap == argp + 6
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5409 && arg[0] == 12
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5410 && ap[-1] == '$'
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5411 && trail == 'y')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5412 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5413 initial_cursor_blink = (arg[1] == '1');
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5414 rbm_status.tr_progress = STATUS_GOT;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5415 LOG_TR(("Received cursor blinking mode response: %s", tp));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5416 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5417 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5418 *slen = csi_len;
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5419 # ifdef FEAT_EVAL
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5420 set_vim_var_string(VV_TERMBLINKRESP, tp, *slen);
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5421 # endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5422 }
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5423 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5424
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5425 // Kitty keyboard protocol status response: CSI ? flags u
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5426 else if (first == '?' && argc == 1 && trail == 'u')
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5427 {
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5428 // The protocol has various "progressive enhancement flags" values, but
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5429 // we only check for zero and non-zero here.
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5430 if (arg[0] == '0')
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5431 {
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5432 kitty_protocol_state = KKPS_OFF;
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5433 }
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5434 else
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5435 {
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5436 kitty_protocol_state = KKPS_ENABLED;
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5437
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5438 // Reset seenModifyOtherKeys just in case some key combination has
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5439 // been seen that set it before we get the status response.
31305
216c01bb1f90 patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 31303
diff changeset
5440 #ifdef FEAT_EVAL
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
5441 ch_log(NULL, "setting seenModifyOtherKeys to FALSE");
31305
216c01bb1f90 patch 9.0.0986: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 31303
diff changeset
5442 #endif
31211
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5443 seenModifyOtherKeys = FALSE;
d6355c3af211 patch 9.0.0939: still using simplified mappings when using kitty protocol
Bram Moolenaar <Bram@vim.org>
parents: 31198
diff changeset
5444 }
31198
b4491e73d6d1 patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5445
b4491e73d6d1 patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5446 key_name[0] = (int)KS_EXTRA;
b4491e73d6d1 patch 9.0.0933: Kitty shows "already at oldest change" on startup
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5447 key_name[1] = (int)KE_IGNORE;
31192
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5448 *slen = csi_len;
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5449 }
dcde141f2d1e patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents: 31180
diff changeset
5450
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5451 #ifdef FEAT_TERMRESPONSE
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5452 // Check for a window position response from the terminal:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5453 // {lead}3;{x};{y}t
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5454 else if (did_request_winpos && argc == 3 && arg[0] == 3
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5455 && trail == 't')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5456 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5457 winpos_x = arg[1];
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5458 winpos_y = arg[2];
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5459 // got finished code: consume it
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5460 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5461 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5462 *slen = csi_len;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5463
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5464 if (--did_request_winpos <= 0)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5465 winpos_status.tr_progress = STATUS_GOT;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5466 }
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5467 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5468
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5469 // Key with modifier:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5470 // {lead}27;{modifier};{key}~
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5471 // {lead}{key};{modifier}u
31279
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
5472 // Even though we only handle four modifiers and the {modifier} value
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
5473 // should be 16 or lower, we accept all modifier values to avoid the raw
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
5474 // sequence to be passed through.
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
5475 else if ((arg[0] == 27 && argc == 3 && trail == '~')
30934
a07193ed51cd patch 9.0.0801: the modifyOtherKeys flag is set when it should not
Bram Moolenaar <Bram@vim.org>
parents: 30914
diff changeset
5476 || (argc == 2 && trail == 'u'))
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5477 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5478 return len + handle_key_with_modifier(arg, trail,
31279
7e51449ab768 patch 9.0.0973: Kitty keyboard protocol key with NumLock not decoded
Bram Moolenaar <Bram@vim.org>
parents: 31277
diff changeset
5479 csi_len, offset, buf, bufsize, buflen);
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5480 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5481
31168
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5482 // Key without modifier (Kitty sends this for Esc):
30827
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5483 // {lead}{key}u
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5484 else if (argc == 1 && trail == 'u')
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5485 {
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5486 return len + handle_key_without_modifier(arg,
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5487 csi_len, offset, buf, bufsize, buflen);
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5488 }
0c30130f8c94 patch 9.0.0748: Kitty may send key without modifiers with CSI u code
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
5489
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5490 // else: Unknown CSI sequence. We could drop it, but then the
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5491 // user can't create a map for it.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5492 return 0;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5493 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5494
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5495 /*
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5496 * Handle an OSC sequence, fore/background color response from the terminal:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5497 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5498 * {lead}{code};rgb:{rrrr}/{gggg}/{bbbb}{tail}
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5499 * or {lead}{code};rgb:{rr}/{gg}/{bb}{tail}
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5500 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5501 * {code} is 10 for foreground, 11 for background
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5502 * {lead} can be <Esc>] or OSC
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5503 * {tail} can be '\007', <Esc>\ or STERM.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5504 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5505 * Consume any code that starts with "{lead}11;", it's also
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5506 * possible that "rgba" is following.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5507 */
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5508 static int
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5509 handle_osc(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5510 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5511 int i, j;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5512
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5513 j = 1 + (tp[0] == ESC);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5514 if (len >= j + 3 && (argp[0] != '1'
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5515 || (argp[1] != '1' && argp[1] != '0')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5516 || argp[2] != ';'))
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5517 i = 0; // no match
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5518 else
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5519 for (i = j; i < len; ++i)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5520 if (tp[i] == '\007' || (tp[0] == OSC ? tp[i] == STERM
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5521 : (tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')))
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5522 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5523 int is_bg = argp[1] == '1';
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5524 int is_4digit = i - j >= 21 && tp[j + 11] == '/'
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5525 && tp[j + 16] == '/';
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5526
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5527 if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5528 && (is_4digit
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5529 || (tp[j + 9] == '/' && tp[i + 12 == '/'])))
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5530 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5531 char_u *tp_r = tp + j + 7;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5532 char_u *tp_g = tp + j + (is_4digit ? 12 : 10);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5533 char_u *tp_b = tp + j + (is_4digit ? 17 : 13);
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5534 #if defined(FEAT_TERMRESPONSE) && defined(FEAT_TERMINAL)
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5535 int rval, gval, bval;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5536
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5537 rval = hexhex2nr(tp_r);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5538 gval = hexhex2nr(tp_b);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5539 bval = hexhex2nr(tp_g);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5540 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5541 if (is_bg)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5542 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5543 char *new_bg_val = (3 * '6' < *tp_r + *tp_g +
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5544 *tp_b) ? "light" : "dark";
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5545
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5546 LOG_TR(("Received RBG response: %s", tp));
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5547 #ifdef FEAT_TERMRESPONSE
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5548 rbg_status.tr_progress = STATUS_GOT;
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5549 # ifdef FEAT_TERMINAL
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5550 bg_r = rval;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5551 bg_g = gval;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5552 bg_b = bval;
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5553 # endif
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5554 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5555 if (!option_was_set((char_u *)"bg")
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5556 && STRCMP(p_bg, new_bg_val) != 0)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5557 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5558 // value differs, apply it
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28453
diff changeset
5559 set_option_value_give_err((char_u *)"bg",
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28453
diff changeset
5560 0L, (char_u *)new_bg_val, 0);
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5561 reset_option_was_set((char_u *)"bg");
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29350
diff changeset
5562 redraw_asap(UPD_CLEAR);
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5563 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5564 }
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5565 #if defined(FEAT_TERMRESPONSE) && defined(FEAT_TERMINAL)
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5566 else
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5567 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5568 LOG_TR(("Received RFG response: %s", tp));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5569 rfg_status.tr_progress = STATUS_GOT;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5570 fg_r = rval;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5571 fg_g = gval;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5572 fg_b = bval;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5573 }
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5574 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5575 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5576
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5577 // got finished code: consume it
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5578 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5579 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5580 *slen = i + 1 + (tp[i] == ESC);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5581 #ifdef FEAT_EVAL
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5582 set_vim_var_string(is_bg ? VV_TERMRBGRESP
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5583 : VV_TERMRFGRESP, tp, *slen);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5584 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5585 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5586 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5587 if (i == len)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5588 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5589 LOG_TR(("not enough characters for RB"));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5590 return FAIL;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5591 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5592 return OK;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5593 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5594
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5595 /*
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5596 * Check for key code response from xterm:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5597 * {lead}{flag}+r<hex bytes><{tail}
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5598 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5599 * {lead} can be <Esc>P or DCS
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5600 * {flag} can be '0' or '1'
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5601 * {tail} can be Esc>\ or STERM
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5602 *
31137
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5603 * Check for resource response from xterm (and drop it):
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5604 * {lead}{flag}+R<hex bytes>=<value>{tail}
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5605 *
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5606 * Check for cursor shape response from xterm:
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5607 * {lead}1$r<digit> q{tail}
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5608 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5609 * {lead} can be <Esc>P or DCS
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5610 * {tail} can be <Esc>\ or STERM
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5611 *
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5612 * Consume any code that starts with "{lead}.+r" or "{lead}.$r".
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5613 */
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5614 static int
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5615 handle_dcs(char_u *tp, char_u *argp, int len, char_u *key_name, int *slen)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5616 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5617 int i, j;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5618
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5619 j = 1 + (tp[0] == ESC);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5620 if (len < j + 3)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5621 i = len; // need more chars
31137
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5622 else if ((argp[1] != '+' && argp[1] != '$')
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5623 || (argp[2] != 'r' && argp[2] != 'R'))
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5624 i = 0; // no match
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5625 else if (argp[1] == '+')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5626 // key code response
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5627 for (i = j; i < len; ++i)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5628 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5629 if ((tp[i] == ESC && i + 1 < len && tp[i + 1] == '\\')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5630 || tp[i] == STERM)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5631 {
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5632 #ifdef FEAT_TERMRESPONSE
31137
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5633 // handle a key code response, drop a resource response
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
5634 if (i - j >= 3 && argp[2] == 'r')
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5635 got_code_from_term(tp + j, i);
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5636 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5637 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5638 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5639 *slen = i + 1 + (tp[i] == ESC);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5640 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5641 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5642 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5643 else
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5644 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5645 // Probably the cursor shape response. Make sure that "i"
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5646 // is equal to "len" when there are not sufficient
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5647 // characters.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5648 for (i = j + 3; i < len; ++i)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5649 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5650 if (i - j == 3 && !isdigit(tp[i]))
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5651 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5652 if (i - j == 4 && tp[i] != ' ')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5653 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5654 if (i - j == 5 && tp[i] != 'q')
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5655 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5656 if (i - j == 6 && tp[i] != ESC && tp[i] != STERM)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5657 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5658 if ((i - j == 6 && tp[i] == STERM)
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5659 || (i - j == 7 && tp[i] == '\\'))
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5660 {
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5661 #ifdef FEAT_TERMRESPONSE
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5662 int number = argp[3] - '0';
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5663
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5664 // 0, 1 = block blink, 2 = block
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5665 // 3 = underline blink, 4 = underline
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5666 // 5 = vertical bar blink, 6 = vertical bar
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5667 number = number == 0 ? 1 : number;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5668 initial_cursor_shape = (number + 1) / 2;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5669 // The blink flag is actually inverted, compared to
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5670 // the value set with T_SH.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5671 initial_cursor_shape_blink =
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5672 (number & 1) ? FALSE : TRUE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5673 rcs_status.tr_progress = STATUS_GOT;
31277
68d13970fe8b patch 9.0.0972: build failure on some systems
Bram Moolenaar <Bram@vim.org>
parents: 31275
diff changeset
5674 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5675 LOG_TR(("Received cursor shape response: %s", tp));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5676
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5677 key_name[0] = (int)KS_EXTRA;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5678 key_name[1] = (int)KE_IGNORE;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5679 *slen = i + 1;
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5680 #ifdef FEAT_EVAL
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5681 set_vim_var_string(VV_TERMSTYLERESP, tp, *slen);
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5682 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5683 break;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5684 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5685 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5686 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5687
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5688 if (i == len)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5689 {
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5690 // These codes arrive many together, each code can be
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5691 // truncated at any point.
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5692 LOG_TR(("not enough characters for XT"));
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5693 return FAIL;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5694 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5695 return OK;
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5696 }
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
5697
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5698 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5699 * Check if typebuf.tb_buf[] contains a terminal key code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5700 * Check from typebuf.tb_buf[typebuf.tb_off] to typebuf.tb_buf[typebuf.tb_off
20727
5ffe112b1afd patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents: 20705
diff changeset
5701 * + "max_offset"].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5702 * 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
5703 * Return KEYLEN_REMOVED when a key code was deleted.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5704 * With a match, the match is removed, the replacement code is inserted in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5705 * typebuf.tb_buf[] and the number of characters in typebuf.tb_buf[] is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5706 * returned.
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
5707 * 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
5708 * "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
5709 * inserts and deletes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5710 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5711 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5712 check_termcode(
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5713 int max_offset,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5714 char_u *buf,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5715 int bufsize,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5716 int *buflen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5717 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5718 char_u *tp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5719 char_u *p;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5720 int slen = 0; // init for GCC
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5721 int modslen;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5722 int len;
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
5723 int retval = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5724 int offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5725 char_u key_name[2];
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5726 int modifiers;
11565
91519a14ec1f patch 8.0.0665: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 11563
diff changeset
5727 char_u *modifiers_start = NULL;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5728 int key;
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5729 int new_slen; // Length of what will replace the termcode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5730 char_u string[MAX_KEY_CODE_LEN + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5731 int i, j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5732 int idx = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5733 int cpo_koffset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5734
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5735 cpo_koffset = (vim_strchr(p_cpo, CPO_KOFFSET) != NULL);
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 * Speed up the checks for terminal codes by gathering all first bytes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5739 * used in termleader[]. Often this is just a single <Esc>.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5740 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5741 if (need_gather)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5742 gather_termleader();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5743
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5744 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5745 * Check at several positions in typebuf.tb_buf[], to catch something like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5746 * "x<Up>" that can be mapped. Stop at max_offset, because characters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5747 * 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
5748 * typebuf.tb_buf[] can become very long.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5749 * This is used often, KEEP IT FAST!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5750 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5751 for (offset = 0; offset < max_offset; ++offset)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5752 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5753 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5754 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5755 if (offset >= typebuf.tb_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5756 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5757 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
5758 len = typebuf.tb_len - offset; // length of the input
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5759 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5760 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5761 {
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
5762 if (offset >= *buflen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5763 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5764 tp = buf + offset;
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3290
diff changeset
5765 len = *buflen - offset;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5766 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5767
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5768 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5769 * Don't check characters after K_SPECIAL, those are already
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5770 * translated terminal chars (avoid translating ~@^Hx).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5771 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5772 if (*tp == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5773 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5774 offset += 2; // there are always 2 extra characters
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5775 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5776 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5777
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5778 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5779 * Skip this position if the character does not appear as the first
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5780 * character in term_strings. This speeds up a lot, since most
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5781 * termcodes start with the same character (ESC or CSI).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5782 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5783 i = *tp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5784 for (p = termleader; *p && *p != i; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5785 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5786 if (*p == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5787 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5788
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5789 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5790 * 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
5791 * are in Insert mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5792 */
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
5793 if (*tp == ESC && !p_ek && (State & MODE_INSERT))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5794 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5795
29350
8a822186f1ab patch 9.0.0018: going over the end of the typahead
Bram Moolenaar <Bram@vim.org>
parents: 29328
diff changeset
5796 tp[len] = NUL;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5797 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
5798 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
5799 modifiers = 0; // no modifiers yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5800
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5801 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5802 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5803 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5804 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5805 * GUI special key codes are all of the form [CSI xx].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5806 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5807 if (*tp == CSI) // Special key from GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5808 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5809 if (len < 3)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5810 return -1; // Shouldn't happen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5811 slen = 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5812 key_name[0] = tp[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5813 key_name[1] = tp[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5814 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5815 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5816 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5817 #endif // FEAT_GUI
31168
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5818 #ifdef MSWIN
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5819 if (len >= 3 && tp[0] == CSI && tp[1] == KS_EXTRA
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5820 && (tp[2] == KE_MOUSEUP
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5821 || tp[2] == KE_MOUSEDOWN
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5822 || tp[2] == KE_MOUSELEFT
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5823 || tp[2] == KE_MOUSERIGHT))
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5824 {
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5825 // MS-Windows console sends mouse scroll events encoded:
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5826 // - CSI
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5827 // - KS_EXTRA
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5828 // - {KE_MOUSE[UP|DOWN|LEFT|RIGHT]}
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5829 slen = 3;
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5830 key_name[0] = tp[1];
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5831 key_name[1] = tp[2];
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5832 }
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5833 else
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31137
diff changeset
5834 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5835 {
23774
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5836 int mouse_index_found = -1;
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5837
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5838 for (idx = 0; idx < tc_len; ++idx)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5839 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5840 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5841 * Ignore the entry if we are not at the start of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5842 * typebuf.tb_buf[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5843 * and there are not enough characters to make a match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5844 * But only when the 'K' flag is in 'cpoptions'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5845 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5846 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
5847 modifiers_start = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5848 if (cpo_koffset && offset && len < slen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5849 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5850 if (STRNCMP(termcodes[idx].code, tp,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5851 (size_t)(slen > len ? len : slen)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5852 {
26392
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5853 int looks_like_mouse_start = FALSE;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5854
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5855 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
5856 return -1; // need to get more chars
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5857
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5858 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5859 * When found a keypad key, check if there is another key
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5860 * that matches and use that one. This makes <Home> to be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5861 * found instead of <kHome> when they produce the same
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5862 * key code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5863 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5864 if (termcodes[idx].name[0] == 'K'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5865 && VIM_ISDIGIT(termcodes[idx].name[1]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5866 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5867 for (j = idx + 1; j < tc_len; ++j)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5868 if (termcodes[j].len == slen &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5869 STRNCMP(termcodes[idx].code,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5870 termcodes[j].code, slen) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5871 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5872 idx = j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5873 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5874 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5875 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5876
23774
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5877 if (slen == 2 && len > 2
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5878 && termcodes[idx].code[0] == ESC
26392
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5879 && termcodes[idx].code[1] == '[')
23774
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5880 {
26392
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5881 // The mouse termcode "ESC [" is also the prefix of
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5882 // "ESC [ I" (focus gained) and other keys. Check some
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5883 // more bytes to find out.
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5884 if (!isdigit(tp[2]))
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5885 {
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5886 // ESC [ without number following: Only use it when
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5887 // there is no other match.
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5888 looks_like_mouse_start = TRUE;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5889 }
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5890 else if (termcodes[idx].name[0] == KS_DEC_MOUSE)
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5891 {
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5892 char_u *nr = tp + 2;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5893 int count = 0;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5894
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5895 // If a digit is following it could be a key with
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5896 // modifier, e.g., ESC [ 1;2P. Can be confused
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5897 // with DEC_MOUSE, which requires four numbers
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5898 // following. If not then it can't be a DEC_MOUSE
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5899 // code.
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5900 for (;;)
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5901 {
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5902 ++count;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5903 (void)getdigits(&nr);
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5904 if (nr >= tp + len)
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5905 return -1; // partial sequence
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5906 if (*nr != ';')
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5907 break;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5908 ++nr;
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5909 if (nr >= tp + len)
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5910 return -1; // partial sequence
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5911 }
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5912 if (count < 4)
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5913 continue; // no match
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5914 }
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5915 }
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5916 if (looks_like_mouse_start)
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5917 {
201243ceaa18 patch 8.2.3727: in a gnome terminal keys are recognized as mouse events
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5918 // Only use it when there is no other match.
23774
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5919 if (mouse_index_found < 0)
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5920 mouse_index_found = idx;
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5921 }
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5922 else
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5923 {
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5924 key_name[0] = termcodes[idx].name[0];
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5925 key_name[1] = termcodes[idx].name[1];
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5926 break;
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5927 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5928 }
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5929
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5930 /*
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5931 * Check for code with modifier, like xterm uses:
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5932 * <Esc>[123;*X (modslen == slen - 3)
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
5933 * <Esc>[@;*X (matches <Esc>[X and <Esc>[1;9X )
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5934 * Also <Esc>O*X and <M-O>*X (modslen == slen - 2).
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5935 * When there is a modifier the * matches a number.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5936 * When there is no modifier the ;* or * is omitted.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5937 */
23774
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5938 if (termcodes[idx].modlen > 0 && mouse_index_found < 0)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5939 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5940 modslen = termcodes[idx].modlen;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5941 if (cpo_koffset && offset && len < modslen)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5942 continue;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5943 if (STRNCMP(termcodes[idx].code, tp,
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5944 (size_t)(modslen > len ? len : modslen)) == 0)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5945 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5946 int n;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5947
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5948 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
5949 return -1; // need to get more chars
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5950
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5951 if (tp[modslen] == termcodes[idx].code[slen - 1])
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
5952 // no modifiers
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
5953 slen = modslen + 1;
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5954 else if (tp[modslen] != ';' && modslen == slen - 3)
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
5955 // no match for "code;*X" with "code;"
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
5956 continue;
30914
58cb6591ad12 patch 9.0.0791: at the hit-Enter prompt the End and Home keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 30827
diff changeset
5957 else if (termcodes[idx].code[modslen] == '@'
31111
f1cb6b4dbf72 patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
5958 && (tp[modslen] != '1'
f1cb6b4dbf72 patch 9.0.0890: no test for what patch 9.0.0827 fixes
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
5959 || tp[modslen + 1] != ';'))
30984
a82629ff46c8 patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"
Bram Moolenaar <Bram@vim.org>
parents: 30958
diff changeset
5960 // no match for "<Esc>[@" with "<Esc>[1;"
23406
24ce202a7d68 patch 8.2.2246: cursor keys not recognized at the hit-Enter prompt
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
5961 continue;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5962 else
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5963 {
16485
b870146e09e1 patch 8.1.1246: cannot handle negative mouse coordinate from urxvt
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
5964 // 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
5965 // 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
5966 // 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
5967 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
5968 || tp[j] == '-' || tp[j] == ';'); ++j)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5969 ;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5970 ++j;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
5971 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
5972 return -1; // need to get more chars
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
5973 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
5974 continue; // no match
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5975
11557
7e5e76d8d451 patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents: 11455
diff changeset
5976 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
5977
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5978 // Match! Convert modifier bits.
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
5979 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
5980 modifiers |= decode_modifiers(n);
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5981
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5982 slen = j;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5983 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5984 key_name[0] = termcodes[idx].name[0];
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5985 key_name[1] = termcodes[idx].name[1];
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5986 break;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5987 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 168
diff changeset
5988 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5989 }
23774
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5990 if (idx == tc_len && mouse_index_found >= 0)
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5991 {
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5992 key_name[0] = termcodes[mouse_index_found].name[0];
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5993 key_name[1] = termcodes[mouse_index_found].name[1];
646ca2893d85 patch 8.2.2428: FocusGained does not work when 'ttymouse' is empty
Bram Moolenaar <Bram@vim.org>
parents: 23648
diff changeset
5994 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5995 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5996
3166
12bb368fef2c updated for version 7.3.353
Bram Moolenaar <bram@vim.org>
parents: 3068
diff changeset
5997 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
5998 // 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
5999 // 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
6000 // another key code or terminal response.
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
6001 #ifdef FEAT_MOUSE_DEC
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6002 || key_name[0] == KS_DEC_MOUSE
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
6003 #endif
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
6004 #ifdef FEAT_MOUSE_PTERM
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6005 || key_name[0] == KS_PTERM_MOUSE
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
6006 #endif
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6007 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6008 {
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6009 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
6010
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6011 /*
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6012 * Check for responses from the terminal starting with {lead}:
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6013 * "<Esc>[" or CSI followed by [0-9>?].
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6014 * Also for function keys without a modifier:
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6015 * "<Esc>[" or CSI followed by [ABCDEFHPQRS].
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
6016 *
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6017 * - 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
6018 * 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
6019 * "{lead}?1;2c".
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
6020 *
31241
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
6021 * - Response to XTQMODKEYS: "{lead} > 4 ; Pv m".
ee50174810ac patch 9.0.0954: cannot detect whether modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 31229
diff changeset
6022 *
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6023 * - Cursor position report: {lead}{row};{col}R
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6024 * 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
6025 * 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
6026 *
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6027 * - 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
6028 *
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6029 * - 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
6030 * {lead}27;{modifier};{key}~
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6031 * {lead}{key};{modifier}u
4215
ecf21be84def updated for version 7.3.859
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
6032 */
18257
f5a6c8261f64 patch 8.1.2123: parsing CSI sequence is messy
Bram Moolenaar <Bram@vim.org>
parents: 18150
diff changeset
6033 if (((tp[0] == ESC && len >= 3 && tp[1] == '[')
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6034 || (tp[0] == CSI && len >= 2))
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6035 && vim_strchr((char_u *)"0123456789>?ABCDEFHPQRS",
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6036 *argp) != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6037 {
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6038 int resp = handle_csi(tp, len, argp, offset, buf,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6039 bufsize, buflen, key_name, &slen);
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6040 if (resp != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6041 {
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
6042 #ifdef DEBUG_TERMRESPONSE
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6043 if (resp == -1)
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6044 LOG_TR(("Not enough characters for CSI sequence"));
31275
0851a1a22a38 patch 9.0.0971: escape sequences not recognized without termresponse feature
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
6045 #endif
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6046 return resp;
11315
0c091a7c588c patch 8.0.0543: test_edit causes older xfce4-terminal to close
Christian Brabandt <cb@256bit.org>
parents: 11307
diff changeset
6047 }
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6048 }
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6049
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6050 // Check for fore/background color response from the terminal,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6051 // starting} with <Esc>] or OSC
12632
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6052 else if ((*T_RBG != NUL || *T_RFG != NUL)
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6053 && ((tp[0] == ESC && len >= 2 && tp[1] == ']')
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6054 || tp[0] == OSC))
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6055 {
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6056 if (handle_osc(tp, argp, len, key_name, &slen) == FAIL)
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6057 return -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6058 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6059
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6060 // Check for key code response from xterm,
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6061 // starting with <Esc>P or DCS
31137
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
6062 // It would only be needed with this condition:
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
6063 // (check_for_codes || rcs_status.tr_progress == STATUS_SENT)
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
6064 // Now this is always done so that DCS codes don't mess up things.
548241980a27 patch 9.0.0903: key code checker doesn't check modifyOtherKeys resource
Bram Moolenaar <Bram@vim.org>
parents: 31129
diff changeset
6065 else if ((tp[0] == ESC && len >= 2 && tp[1] == 'P') || tp[0] == DCS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6066 {
20774
10535993e913 patch 8.2.0939: checking for term escape sequences is long and confusing
Bram Moolenaar <Bram@vim.org>
parents: 20768
diff changeset
6067 if (handle_dcs(tp, argp, len, key_name, &slen) == FAIL)
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
6068 return -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6069 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6070 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6071
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6072 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
6073 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
6074
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6075 // We only get here when we have a complete termcode match
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6076
31194
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6077 #if defined(FEAT_GUI) || defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6078 /*
31194
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6079 * For scroll events from the GUI or MS-Windows console, fetch the
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6080 * pointer coordinates so that we know which window to scroll later.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6081 */
31194
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6082 if (TRUE
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6083 # if defined(FEAT_GUI) && !defined(MSWIN)
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6084 && gui.in_use
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31192
diff changeset
6085 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6086 && key_name[0] == (int)KS_EXTRA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6087 && (key_name[1] == (int)KE_X1MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6088 || key_name[1] == (int)KE_X2MOUSE
24850
f8906bd5b277 patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
6089 || key_name[1] == (int)KE_MOUSEMOVE_XY
2409
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2347
diff changeset
6090 || key_name[1] == (int)KE_MOUSELEFT
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2347
diff changeset
6091 || key_name[1] == (int)KE_MOUSERIGHT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6092 || key_name[1] == (int)KE_MOUSEDOWN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6093 || key_name[1] == (int)KE_MOUSEUP))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6094 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6095 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6096 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
6097
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6098 if (num_bytes == -1) // not enough coordinates
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6099 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6100 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6101 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6102 slen += num_bytes;
24850
f8906bd5b277 patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
6103 // equal to K_MOUSEMOVE
f8906bd5b277 patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
6104 if (key_name[1] == (int)KE_MOUSEMOVE_XY)
f8906bd5b277 patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
6105 key_name[1] = (int)KE_MOUSEMOVE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6106 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6107 else
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
6108 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6109 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6110 * If it is a mouse click, get the coordinates.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6111 */
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6112 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
6113 #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
6114 || 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
6115 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
6116 #ifdef FEAT_MOUSE_JSB
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6117 || 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
6118 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
6119 #ifdef FEAT_MOUSE_NET
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6120 || 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
6121 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
6122 #ifdef FEAT_MOUSE_DEC
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6123 || 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
6124 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
6125 #ifdef FEAT_MOUSE_PTERM
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6126 || 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
6127 #endif
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18352
diff changeset
6128 #ifdef FEAT_MOUSE_URXVT
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6129 || 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
6130 #endif
3746
44038a9777aa updated for version 7.3.632
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
6131 || key_name[0] == KS_SGR_MOUSE
16058
012f03e583e2 patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
6132 || key_name[0] == KS_SGR_MOUSE_RELEASE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6133 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6134 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
6135 &modifiers) == -1)
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6136 return -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6137 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6138
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6139 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6140 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6141 * If using the GUI, then we get menu and scrollbar events.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6142 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6143 * A menu event is encoded as K_SPECIAL, KS_MENU, KE_FILLER followed by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6144 * four bytes which are to be taken as a pointer to the vimmenu_T
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6145 * structure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6146 *
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1160
diff changeset
6147 * 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
6148 * is one byte with the tab index.
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6149 *
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6150 * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6151 * by one byte representing the scrollbar number, and then four bytes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6152 * representing a long_u which is the new value of the scrollbar.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6153 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6154 * A horizontal scrollbar event is K_SPECIAL, KS_HOR_SCROLLBAR,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6155 * KE_FILLER followed by four bytes representing a long_u which is the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6156 * new value of the scrollbar.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6157 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6158 # ifdef FEAT_MENU
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6159 else if (key_name[0] == (int)KS_MENU)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6160 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6161 long_u val;
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6162 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
6163
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6164 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6165 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6166 current_menu = (vimmenu_T *)val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6167 slen += num_bytes;
936
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
6168
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6169 // 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
6170 // for that.
936
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
6171 if (check_menu_pointer(root_menu, current_menu) == FAIL)
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
6172 {
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
6173 key_name[0] = KS_EXTRA;
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
6174 key_name[1] = (int)KE_IGNORE;
77f8a648d2e6 updated for version 7.0-062
vimboss
parents: 859
diff changeset
6175 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6176 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6177 # endif
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6178 # ifdef FEAT_GUI_TABLINE
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6179 else if (key_name[0] == (int)KS_TABLINE)
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6180 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6181 // 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
6182 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6183 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
6184
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6185 if (num_bytes == -1)
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6186 return -1;
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6187 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
6188 if (current_tab == 255) // -1 in a byte gives 255
1394
1002128c68db updated for version 7.1-109
vimboss
parents: 1221
diff changeset
6189 current_tab = -1;
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6190 slen += num_bytes;
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6191 }
688
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6192 else if (key_name[0] == (int)KS_TABMENU)
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6193 {
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6194 // 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
6195 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6196 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
6197
688
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6198 if (num_bytes == -1)
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6199 return -1;
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6200 current_tab = (int)bytes[0];
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6201 current_tabmenu = (int)bytes[1];
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6202 slen += num_bytes;
bcd2edc4539e updated for version 7.0207
vimboss
parents: 685
diff changeset
6203 }
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 683
diff changeset
6204 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6205 # ifndef USE_ON_FLY_SCROLL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6206 else if (key_name[0] == (int)KS_VER_SCROLLBAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6207 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6208 long_u val;
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6209 char_u bytes[6];
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6210 int num_bytes;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6211
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6212 // Get the last scrollbar event in the queue of the same type
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6213 j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6214 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_VER_SCROLLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6215 && tp[j + 2] != NUL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6216 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6217 j += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6218 num_bytes = get_bytes_from_buf(tp + j, bytes, 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6219 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6220 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6221 if (i == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6222 current_scrollbar = (int)bytes[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6223 else if (current_scrollbar != (int)bytes[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6224 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6225 j += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6226 num_bytes = get_long_from_buf(tp + j, &val);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6227 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6228 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6229 scrollbar_value = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6230 j += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6231 slen = j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6232 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6233 if (i == 0) // not enough characters to make one
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6234 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6235 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6236 else if (key_name[0] == (int)KS_HOR_SCROLLBAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6237 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6238 long_u val;
18150
0ec6521e9d80 patch 8.1.2070: mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
6239 int num_bytes;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6240
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6241 // Get the last horiz. scrollbar event in the queue
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6242 j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6243 for (i = 0; tp[j] == CSI && tp[j + 1] == KS_HOR_SCROLLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6244 && tp[j + 2] != NUL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6245 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6246 j += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6247 num_bytes = get_long_from_buf(tp + j, &val);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6248 if (num_bytes == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6249 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6250 scrollbar_value = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6251 j += num_bytes;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6252 slen = j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6253 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6254 if (i == 0) // not enough characters to make one
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6255 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6256 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6257 # endif // !USE_ON_FLY_SCROLL
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6258 #endif // FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6259
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6260 #if (defined(UNIX) || defined(VMS))
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6261 /*
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6262 * Handle FocusIn/FocusOut event sequences reported by XTerm.
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6263 * (CSI I/CSI O)
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6264 */
27930
1a702abffaf3 patch 8.2.4490: terminal focus reporting only works for xterm-like terminals
Bram Moolenaar <Bram@vim.org>
parents: 27684
diff changeset
6265 if (key_name[0] == KS_EXTRA
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6266 # ifdef FEAT_GUI
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6267 && !gui.in_use
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6268 # endif
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6269 )
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6270 {
23620
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6271 if (key_name[1] == KE_FOCUSGAINED)
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6272 {
23620
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6273 if (!focus_state)
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6274 {
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6275 ui_focus_change(TRUE);
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6276 did_cursorhold = TRUE;
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6277 focus_state = TRUE;
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6278 }
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6279 key_name[1] = (int)KE_IGNORE;
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6280 }
23620
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6281 else if (key_name[1] == KE_FOCUSLOST)
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6282 {
23620
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6283 if (focus_state)
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6284 {
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6285 ui_focus_change(FALSE);
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6286 did_cursorhold = TRUE;
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6287 focus_state = FALSE;
24beca855c59 patch 8.2.2352: if focus lost/gained is received twice code is not ignored
Bram Moolenaar <Bram@vim.org>
parents: 23612
diff changeset
6288 }
23606
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6289 key_name[1] = (int)KE_IGNORE;
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6290 }
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6291 }
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6292 #endif
f98939164e91 patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents: 23410
diff changeset
6293
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6294 /*
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6295 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6296 */
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6297 key = handle_x_keys(TERMCAP2KEY(key_name[0], key_name[1]));
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6298
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6299 /*
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6300 * Add any modifier codes to our string.
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6301 */
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
6302 new_slen = modifiers2keycode(modifiers, &key, string);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6303
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6304 // Finally, add the special key code to our string
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6305 key_name[0] = KEY2TERMCAP0(key);
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6306 key_name[1] = KEY2TERMCAP1(key);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6307 if (key_name[0] == KS_KEY)
1787
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
6308 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6309 // from ":set <M-b>=xx"
1787
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
6310 if (has_mbyte)
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
6311 new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
6312 else
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
6313 string[new_slen++] = key_name[1];
cba9c4003cb5 updated for version 7.2-085
vimboss
parents: 1691
diff changeset
6314 }
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
6315 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
6316 && key_name[1] == KE_IGNORE)
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
6317 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6318 // 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
6319 // to indicate what happened.
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
6320 retval = KEYLEN_REMOVED;
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2409
diff changeset
6321 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6322 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6323 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6324 string[new_slen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6325 string[new_slen++] = key_name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6326 string[new_slen++] = key_name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6327 }
18279
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
6328 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
6329 buf, bufsize, buflen) == FAIL)
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
6330 return -1;
e8d1f3209dcd patch 8.1.2134: modifier keys are not always recognized
Bram Moolenaar <Bram@vim.org>
parents: 18257
diff changeset
6331 return retval == 0 ? (len + new_slen - slen + offset) : retval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6332 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6333
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
6334 #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
6335 LOG_TR(("normal character"));
5090
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
6336 #endif
8b7baf39a345 updated for version 7.3.1288
Bram Moolenaar <bram@vim.org>
parents: 5076
diff changeset
6337
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6338 return 0; // no match found
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6339 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6340
12634
94566ecb55f0 patch 8.0.1195: can't build on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 12632
diff changeset
6341 #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
6342 /*
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6343 * 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
6344 */
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6345 void
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
6346 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
6347 {
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
6348 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
6349 {
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6350 *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
6351 *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
6352 *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
6353 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6354 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6355
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6356 /*
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6357 * 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
6358 */
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6359 void
12640
a715f0b44532 patch 8.0.1198: older compilers don't know uint8_t
Christian Brabandt <cb@256bit.org>
parents: 12634
diff changeset
6360 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
6361 {
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
6362 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
6363 {
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6364 *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
6365 *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
6366 *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
6367 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6368 }
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6369 #endif
b1a7e3968a31 patch 8.0.1194: actual fg and bg colors of terminal are unknown
Christian Brabandt <cb@256bit.org>
parents: 12592
diff changeset
6370
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6371 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6372 * Replace any terminal code strings in from[] with the equivalent internal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6373 * vim representation. This is used for the "from" and "to" part of a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6374 * mapping, and the "to" part of a menu command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6375 * Any strings like "<C-UP>" are also replaced, unless 'cpoptions' contains
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6376 * '<'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6377 * K_SPECIAL by itself is replaced by K_SPECIAL KS_SPECIAL KE_FILLER.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6378 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6379 * The replacement is done in result[] and finally copied into allocated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6380 * 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
6381 * 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
6382 * is returned.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6383 *
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6384 * 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
6385 * 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
6386 * 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
6387 * 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
6388 *
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6389 * Flags:
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6390 * 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
6391 * 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
6392 * 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
6393 * 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
6394 *
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6395 * "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
6396 * it is NULL.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6397 */
859
99305c4c42d4 updated for version 7.0g02
vimboss
parents: 699
diff changeset
6398 char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6399 replace_termcodes(
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6400 char_u *from,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6401 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
6402 int flags,
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6403 int *did_simplify)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6404 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6405 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6406 int slen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6407 int key;
28497
7c4a9e20c178 patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28457
diff changeset
6408 size_t dlen = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6409 char_u *src;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6410 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
6411 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
6412 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
6413 char_u *result; // buffer for resulting string
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6414 garray_T ga;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6415
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6416 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
6417 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
6418 || (flags & REPTERM_SPECIAL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6419 do_key_code = (vim_strchr(p_cpo, CPO_KEYCODE) == NULL);
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6420 src = from;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6421
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6422 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6423 * Allocate space for the translation. Worst case a single character is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6424 * replaced by 6 bytes (shifted special key), plus a NUL at the end.
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6425 * In the rare case more might be needed ga_grow() must be called again.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6426 */
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6427 ga_init2(&ga, 1L, 100);
28497
7c4a9e20c178 patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28457
diff changeset
6428 if (ga_grow(&ga, (int)(STRLEN(src) * 6 + 1)) == FAIL) // out of memory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6429 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6430 *bufp = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6431 return from;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6432 }
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6433 result = ga.ga_data;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6434
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6435 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6436 * Check for #n at start only: function key n
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6437 */
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6438 if ((flags & REPTERM_FROM_PART) && src[0] == '#' && VIM_ISDIGIT(src[1]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6439 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6440 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6441 result[dlen++] = 'k';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6442 if (src[1] == '0')
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6443 result[dlen++] = ';'; // #0 is F10 is "k;"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6444 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6445 result[dlen++] = src[1]; // #3 is F3 is "k3"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6446 src += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6447 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6448
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6449 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6450 * Copy each byte from *from to result[dlen]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6451 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6452 while (*src != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6453 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6454 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6455 * 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
6456 * like "<C-S-LeftMouse>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6457 */
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6458 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
6459 || STRNCMP(src, "<lt>", 4) != 0))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6460 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6461 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6462 /*
28447
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6463 * Change <SID>Func to K_SNR <script-nr> _Func. This name is used
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6464 * for script-locla user functions.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6465 * (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
28447
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6466 * Also change <SID>name.Func to K_SNR <import-script-nr> _Func.
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6467 * Only if "name" is recognized as an import.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6468 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6469 if (STRNICMP(src, "<SID>", 5) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6470 {
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
6471 if (current_sctx.sc_sid <= 0)
26439
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
6472 emsg(_(e_using_sid_not_in_script_context));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6473 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6474 {
28447
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6475 char_u *dot;
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6476 long sid = current_sctx.sc_sid;
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6477
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6478 src += 5;
28447
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6479 if (in_vim9script()
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6480 && (dot = vim_strchr(src, '.')) != NULL)
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6481 {
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6482 imported_T *imp = find_imported(src, dot - src, FALSE);
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6483
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6484 if (imp != NULL)
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6485 {
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6486 scriptitem_T *si = SCRIPT_ITEM(imp->imp_sid);
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6487 size_t len;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6488
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6489 src = dot + 1;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6490 if (si->sn_autoload_prefix != NULL)
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6491 {
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6492 // Turn "<SID>name.Func"
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6493 // into "scriptname#Func".
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6494 len = STRLEN(si->sn_autoload_prefix);
28497
7c4a9e20c178 patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28457
diff changeset
6495 if (ga_grow(&ga,
7c4a9e20c178 patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28457
diff changeset
6496 (int)(STRLEN(src) * 6 + len + 1)) == FAIL)
28453
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6497 {
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6498 ga_clear(&ga);
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6499 *bufp = NULL;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6500 return from;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6501 }
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6502 result = ga.ga_data;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6503 STRCPY(result + dlen, si->sn_autoload_prefix);
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6504 dlen += len;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6505 continue;
862068e9e2a7 patch 8.2.4751: mapping <SID>name.Func does not work for autoload script
Bram Moolenaar <Bram@vim.org>
parents: 28447
diff changeset
6506 }
28447
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6507 sid = imp->imp_sid;
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6508 }
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6509 }
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6510
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6511 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6512 result[dlen++] = (int)KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6513 result[dlen++] = (int)KE_SNR;
28447
6f753a8125f0 patch 8.2.4748: cannot use an imported function in a mapping
Bram Moolenaar <Bram@vim.org>
parents: 28013
diff changeset
6514 sprintf((char *)result + dlen, "%ld", sid);
28497
7c4a9e20c178 patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28457
diff changeset
6515 dlen += STRLEN(result + dlen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6516 result[dlen++] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6517 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6518 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6519 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6520 #endif
20603
c2570baa2e4c patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents: 20591
diff changeset
6521 slen = trans_special(&src, result + dlen, FSK_KEYCODE
c2570baa2e4c patch 8.2.0855: GUI tests fail because the test doesn't use a modifier
Bram Moolenaar <Bram@vim.org>
parents: 20591
diff changeset
6522 | ((flags & REPTERM_NO_SIMPLIFY) ? 0 : FSK_SIMPLIFY),
28668
53c608c7ea9e patch 8.2.4858: K_SPECIAL may be escaped twice
Bram Moolenaar <Bram@vim.org>
parents: 28660
diff changeset
6523 TRUE, did_simplify);
31303
d2107f7b2155 patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Bram Moolenaar <Bram@vim.org>
parents: 31295
diff changeset
6524 if (slen > 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6525 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6526 dlen += slen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6527 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6528 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6529 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6530
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6531 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6532 * If 'cpoptions' does not contain 'k', see if it's an actual key-code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6533 * Note that this is also checked after replacing the <> form.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6534 * Single character codes are NOT replaced (e.g. ^H or DEL), because
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6535 * it could be a character in the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6536 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6537 if (do_key_code)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6538 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6539 i = find_term_bykeys(src);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6540 if (i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6541 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6542 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6543 result[dlen++] = termcodes[i].name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6544 result[dlen++] = termcodes[i].name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6545 src += termcodes[i].len;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6546 // If terminal code matched, continue after it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6547 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6548 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6549 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6550
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6551 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6552 if (do_special)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6553 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6554 char_u *p, *s, len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6555
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6556 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6557 * Replace <Leader> by the value of "mapleader".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6558 * Replace <LocalLeader> by the value of "maplocalleader".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6559 * If "mapleader" or "maplocalleader" isn't set use a backslash.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6560 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6561 if (STRNICMP(src, "<Leader>", 8) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6562 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6563 len = 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6564 p = get_var_value((char_u *)"g:mapleader");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6565 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6566 else if (STRNICMP(src, "<LocalLeader>", 13) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6567 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6568 len = 13;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6569 p = get_var_value((char_u *)"g:maplocalleader");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6571 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6572 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6573 len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6574 p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6575 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6576 if (len != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6577 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6578 // Allow up to 8 * 6 characters for "mapleader".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6579 if (p == NULL || *p == NUL || STRLEN(p) > 8 * 6)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6580 s = (char_u *)"\\";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6581 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6582 s = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6583 while (*s != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6584 result[dlen++] = *s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6585 src += len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6586 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6587 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6588 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6589 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6590
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6591 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6592 * Remove CTRL-V and ignore the next character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6593 * For "from" side the CTRL-V at the end is included, for the "to"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6594 * part it is removed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6595 * If 'cpoptions' does not contain 'B', also accept a backslash.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6596 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6597 key = *src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6598 if (key == Ctrl_V || (do_backslash && key == '\\'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6599 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6600 ++src; // skip CTRL-V or backslash
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6601 if (*src == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6602 {
18301
506bf60a30a0 patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabled
Bram Moolenaar <Bram@vim.org>
parents: 18299
diff changeset
6603 if (flags & REPTERM_FROM_PART)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6604 result[dlen++] = key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6605 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6606 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6607 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6608
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6609 // skip multibyte char correctly
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 344
diff changeset
6610 for (i = (*mb_ptr2len)(src); i > 0; --i)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6611 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6612 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6613 * If the character is K_SPECIAL, replace it with K_SPECIAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6614 * KS_SPECIAL KE_FILLER.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6615 * If compiled with the GUI replace CSI with K_CSI.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6616 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6617 if (*src == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6618 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6619 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6620 result[dlen++] = KS_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6621 result[dlen++] = KE_FILLER;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6622 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6623 # ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6624 else if (*src == CSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6625 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6626 result[dlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6627 result[dlen++] = KS_EXTRA;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6628 result[dlen++] = (int)KE_CSI;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6629 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6630 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6631 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6632 result[dlen++] = *src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6633 ++src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6634 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6635 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6636 result[dlen] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6638 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6639 * Copy the new string to allocated memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6640 * If this fails, just return from.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6641 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6642 if ((*bufp = vim_strsave(result)) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6643 from = *bufp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6644 vim_free(result);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6645 return from;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6646 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6647
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6648 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6649 * Find a termcode with keys 'src' (must be NUL terminated).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6650 * Return the index in termcodes[], or -1 if not found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6651 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
6652 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6653 find_term_bykeys(char_u *src)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6654 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6655 int i;
3290
821c8be2e9d6 updated for version 7.3.413
Bram Moolenaar <bram@vim.org>
parents: 3273
diff changeset
6656 int slen = (int)STRLEN(src);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6657
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6658 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6659 {
3273
c75a8d2404bd updated for version 7.3.405
Bram Moolenaar <bram@vim.org>
parents: 3188
diff changeset
6660 if (slen == termcodes[i].len
c75a8d2404bd updated for version 7.3.405
Bram Moolenaar <bram@vim.org>
parents: 3188
diff changeset
6661 && STRNCMP(termcodes[i].code, src, (size_t)slen) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6662 return i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6663 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6664 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6665 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6666
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6667 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6668 * Gather the first characters in the terminal key codes into a string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6669 * Used to speed up check_termcode().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6670 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6671 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6672 gather_termleader(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6673 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6674 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6675 int len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6676
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6677 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6678 if (gui.in_use)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6679 termleader[len++] = CSI; // the GUI codes are not in termcodes[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6680 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6681 #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
6682 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
6683 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
6684 // in 8-bit mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6685 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6686 termleader[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6688 for (i = 0; i < tc_len; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6689 if (vim_strchr(termleader, termcodes[i].code[0]) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6690 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6691 termleader[len++] = termcodes[i].code[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6692 termleader[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6693 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6694
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6695 need_gather = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6696 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6697
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6698 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6699 * Show all termcodes (for ":set termcap")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6700 * This code looks a lot like showoptions(), but is different.
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6701 * "flags" can have OPT_ONECOLUMN.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6702 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6703 void
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6704 show_termcodes(int flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6705 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6706 int col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6707 int *items;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6708 int item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6709 int run;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6710 int row, rows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6711 int cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6712 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6713 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6714
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6715 #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
6716 #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
6717 #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
6718
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6719 if (tc_len == 0) // no terminal codes (must be GUI)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6720 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
6721 items = ALLOC_MULT(int, tc_len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6722 if (items == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6723 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6724
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6725 // Highlight title
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
6726 msg_puts_title(_("\n--- Terminal keys ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6727
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6728 /*
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6729 * Do the loop three times:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6730 * 1. display the short items (non-strings and short strings)
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6731 * 2. display the medium items (medium length strings)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6732 * 3. display the long items (remaining strings)
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6733 * When "flags" has OPT_ONECOLUMN do everything in 3.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6734 */
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6735 for (run = (flags & OPT_ONECOLUMN) ? 3 : 1; run <= 3 && !got_int; ++run)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6736 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6737 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6738 * collect the items in items[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6739 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6740 item_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6741 for (i = 0; i < tc_len; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6743 len = show_one_termcode(termcodes[i].name,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6744 termcodes[i].code, FALSE);
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6745 if ((flags & OPT_ONECOLUMN) ||
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6746 (len <= INC3 - GAP ? run == 1
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6747 : len <= INC2 - GAP ? run == 2
26400
d26bab4f6aca patch 8.2.3731: "set! termcap" shows codes in one column, but not keys
Bram Moolenaar <Bram@vim.org>
parents: 26392
diff changeset
6748 : run == 3))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6749 items[item_count++] = i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6750 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6751
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6752 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6753 * display the items
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6754 */
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6755 if (run <= 2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6756 {
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6757 cols = (Columns + GAP) / (run == 1 ? INC3 : INC2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6758 if (cols == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6759 cols = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6760 rows = (item_count + cols - 1) / cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6761 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6762 else // run == 3
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6763 rows = item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6764 for (row = 0; row < rows && !got_int; ++row)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6765 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6766 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
6767 if (got_int) // 'q' typed in more
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6768 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6769 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6770 for (i = row; i < item_count; i += rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6771 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6772 msg_col = col; // make columns
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6773 show_one_termcode(termcodes[items[i]].name,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6774 termcodes[items[i]].code, TRUE);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6775 if (run == 2)
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6776 col += INC2;
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6777 else
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6778 col += INC3;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6779 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6780 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6781 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6782 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6783 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6784 vim_free(items);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6785 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6786
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6787 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6788 * Show one termcode entry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6789 * Output goes into IObuff[]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6790 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6791 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6792 show_one_termcode(char_u *name, char_u *code, int printit)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6793 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6794 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6795 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6797 if (name[0] > '~')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6798 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6799 IObuff[0] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6800 IObuff[1] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6801 IObuff[2] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6802 IObuff[3] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6803 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6804 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6805 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6806 IObuff[0] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6807 IObuff[1] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6808 IObuff[2] = name[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6809 IObuff[3] = name[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6810 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6811 IObuff[4] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6812
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6813 p = get_special_key_name(TERMCAP2KEY(name[0], name[1]), 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6814 if (p[1] != 't')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6815 STRCPY(IObuff + 5, p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6816 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6817 IObuff[5] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6818 len = (int)STRLEN(IObuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6819 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6820 IObuff[len++] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6821 while (len < 17);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6822 IObuff[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6823 if (code == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6824 len += 4;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6825 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6826 len += vim_strsize(code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6827
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6828 if (printit)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6829 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
6830 msg_puts((char *)IObuff);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6831 if (code == NULL)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
6832 msg_puts("NULL");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6833 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6834 msg_outtrans(code);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6835 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6836 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6837 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6838
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6839 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6840 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6841 * For Xterm >= 140 compiled with OPT_TCAP_QUERY: Obtain the actually used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6842 * termcap codes from the terminal itself.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6843 * We get them one by one to avoid a very long response string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6844 */
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6845 static int xt_index_in = 0;
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6846 static int xt_index_out = 0;
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
6847
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6848 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6849 req_codes_from_term(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6850 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6851 xt_index_out = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6852 xt_index_in = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6853 req_more_codes_from_term();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6854 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6855
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6856 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6857 req_more_codes_from_term(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6858 {
28013
dbf6d5ea7a1f patch 8.2.4531: LGTM warnings for condition and buffer size
Bram Moolenaar <Bram@vim.org>
parents: 27996
diff changeset
6859 char buf[23]; // extra size to shut up LGTM
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6860 int old_idx = xt_index_out;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6861
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6862 // Don't do anything when going to exit.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6863 if (exiting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6864 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6865
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6866 // 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
6867 // many, there can be a buffer overflow somewhere.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6868 while (xt_index_out < xt_index_in + 10 && key_names[xt_index_out] != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6869 {
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
6870 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
6871
29069
be6c32395444 patch 8.2.5056: the channel log only contains some of the raw terminal output
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
6872 MAY_WANT_TO_LOG_THIS;
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
6873 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
6874 sprintf(buf, "\033P+q%02x%02x\033\\", key_name[0], key_name[1]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6875 out_str_nf((char_u *)buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6876 ++xt_index_out;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6877 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6878
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6879 // Send the codes out right away.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6880 if (xt_index_out != old_idx)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6881 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6882 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6883
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6884 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6885 * Decode key code response from xterm: '<Esc>P1+r<name>=<string><Esc>\'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6886 * A "0" instead of the "1" indicates a code that isn't supported.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6887 * Both <name> and <string> are encoded in hex.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6888 * "code" points to the "0" or "1".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6889 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6890 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6891 got_code_from_term(char_u *code, int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6892 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6893 #define XT_LEN 100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6894 char_u name[3];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6895 char_u str[XT_LEN];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6896 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6897 int j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6898 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6899
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6900 // 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
6901 // 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
6902 // Our names are currently all 2 characters.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6903 if (code[0] == '1' && code[7] == '=' && len / 2 < XT_LEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6904 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6905 // Get the name from the response and find it in the table.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6906 name[0] = hexhex2nr(code + 3);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6907 name[1] = hexhex2nr(code + 5);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6908 name[2] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6909 for (i = 0; key_names[i] != NULL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6910 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6911 if (STRCMP(key_names[i], name) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6912 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6913 xt_index_in = i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6914 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6915 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6916 }
13780
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
6917
5cf4a504bcc0 patch 8.0.1762: terminal debug logging is a bit complicated
Christian Brabandt <cb@256bit.org>
parents: 13762
diff changeset
6918 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
6919
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6920 if (key_names[i] != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6921 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6922 for (i = 8; (c = hexhex2nr(code + i)) >= 0; i += 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6923 str[j++] = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6924 str[j] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6925 if (name[0] == 'C' && name[1] == 'o')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6926 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6927 // Color count is not a key code.
26670
a77b661439f9 patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents: 26439
diff changeset
6928 may_adjust_color_count(atoi((char *)str));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6929 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6930 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6931 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6932 // First delete any existing entry with the same code.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6933 i = find_term_bykeys(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6934 if (i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6935 del_termcode_idx(i);
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 179
diff changeset
6936 add_termcode(name, str, ATC_FROM_TERM);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6937 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6938 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6939 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6940
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6941 // May request more codes now that we received one.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6942 ++xt_index_in;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6943 req_more_codes_from_term();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6944 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6945
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6946 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6947 * Check if there are any unanswered requests and deal with them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6948 * This is called before starting an external program or getting direct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6949 * keyboard input. We don't want responses to be send to that program or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6950 * handled as typed text.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6951 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6952 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6953 check_for_codes_from_term(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6954 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6955 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6956
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6957 // If no codes requested or all are answered, no need to wait.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6958 if (xt_index_out == 0 || xt_index_out == xt_index_in)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6959 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6960
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6961 // 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
6962 // Keep calling vpeekc() until we don't get any responses.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6963 ++no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6964 ++allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6965 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6966 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6967 c = vpeekc();
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6968 if (c == NUL) // nothing available
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6969 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6970
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
6971 // 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
6972 // 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
6973 // 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
6974 // we don't want to throw away any typed chars).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6975 if (c != K_SPECIAL && c != K_IGNORE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6976 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6977 c = vgetc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6978 if (c != K_IGNORE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6979 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6980 vungetc(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6981 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6982 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6983 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6984 --no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6985 --allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6986 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6987 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6988
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
6989 #if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6990 static char ksme_str[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6991 static char ksmr_str[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6992 static char ksmd_str[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6993
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6994 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6995 * For Win32 console: update termcap codes for existing console attributes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6996 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6997 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6998 update_tcap(int attr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6999 {
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
7000 sprintf(ksme_str, "\033|%dm", attr);
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
7001 sprintf(ksmd_str, "\033|%dm", attr | 0x08); // FOREGROUND_INTENSITY
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
7002 sprintf(ksmr_str, "\033|%dm", ((attr & 0x0F) << 4) | ((attr & 0xF0) >> 4));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7003
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7004 tcap_entry_T *p = find_builtin_term(DEFAULT_TERM);
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7005 if (p == NULL) // did not find it
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7006 return;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7007 while (p->bt_string != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7008 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7009 if (p->bt_entry == (int)KS_ME)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7010 p->bt_string = &ksme_str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7011 else if (p->bt_entry == (int)KS_MR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7012 p->bt_string = &ksmr_str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7013 else if (p->bt_entry == (int)KS_MD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7014 p->bt_string = &ksmd_str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7015 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7016 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7017 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7018
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7019 # 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
7020 # define KSSIZE 20
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7021
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7022 typedef enum
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7023 {
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7024 CMODE_INDEXED = 0, // Use cmd.exe 4bit palette.
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7025 CMODE_RGB, // Use 24bit RGB colors using VTP.
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7026 CMODE_256COL, // Emulate xterm's 256-color palette using VTP.
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7027 CMODE_LAST,
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7028 } cmode_T;
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7029
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7030 struct ks_tbl_S
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7031 {
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7032 int code; // value of KS_
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7033 char *vtp; // code in RGB mode
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7034 char *vtp2; // code in 256color mode
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7035 char buf[CMODE_LAST][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
7036 };
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7037
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7038 static struct ks_tbl_S ks_tbl[] =
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7039 {
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7040 {(int)KS_ME, "\033|0m", "\033|0m", {""}}, // normal
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7041 {(int)KS_MR, "\033|7m", "\033|7m", {""}}, // reverse
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7042 {(int)KS_MD, "\033|1m", "\033|1m", {""}}, // bold
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7043 {(int)KS_SO, "\033|91m", "\033|91m", {""}}, // standout: bright red text
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7044 {(int)KS_SE, "\033|39m", "\033|39m", {""}}, // standout end: default color
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7045 {(int)KS_CZH, "\033|3m", "\033|3m", {""}}, // italic
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7046 {(int)KS_CZR, "\033|0m", "\033|0m", {""}}, // italic end
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7047 {(int)KS_US, "\033|4m", "\033|4m", {""}}, // underscore
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7048 {(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
7049 # ifdef TERMINFO
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7050 {(int)KS_CAB, "\033|%p1%db", "\033|%p14%dm", {""}}, // set background color
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7051 {(int)KS_CAF, "\033|%p1%df", "\033|%p13%dm", {""}}, // set foreground color
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7052 {(int)KS_CS, "\033|%p1%d;%p2%dR", "\033|%p1%d;%p2%dR", {""}},
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7053 {(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
7054 # else
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7055 {(int)KS_CAB, "\033|%db", "\033|4%dm", {""}}, // set background color
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7056 {(int)KS_CAF, "\033|%df", "\033|3%dm", {""}}, // set foreground color
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7057 {(int)KS_CS, "\033|%d;%dR", "\033|%d;%dR", {""}},
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7058 {(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
7059 # endif
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7060 {(int)KS_CCO, "256", "256", {""}}, // colors
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29069
diff changeset
7061 {(int)KS_NAME, NULL, NULL, {""}} // 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
7062 };
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7063
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7064 /*
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7065 * Find the first entry for "code" in the builtin termcap for "name".
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7066 * Returns NULL when not found.
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7067 */
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7068 static tcap_entry_T *
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7069 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
7070 char_u *name,
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7071 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
7072 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7073 tcap_entry_T *p = find_builtin_term(name);
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7074 if (p != NULL)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7075 {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7076 while (p->bt_string != NULL)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7077 {
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7078 if (p->bt_entry == code)
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7079 return p;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7080 ++p;
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7081 }
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7082 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7083 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
7084 }
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7085 # 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
7086
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7087 /*
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7088 * 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
7089 */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7090 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7091 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
7092 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7093 # ifdef FEAT_TERMGUICOLORS
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7094 static int init_done = FALSE;
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7095 static cmode_T curr_mode;
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7096 struct ks_tbl_S *ks;
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7097 cmode_T mode;
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7098
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7099 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
7100 {
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7101 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
7102 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7103 tcap_entry_T *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
7104 if (bt != NULL)
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7105 {
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7106 // Preserve the original value.
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7107 STRNCPY(ks->buf[CMODE_INDEXED], bt->bt_string, KSSIZE);
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7108 STRNCPY(ks->buf[CMODE_RGB], ks->vtp, KSSIZE);
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7109 STRNCPY(ks->buf[CMODE_256COL], ks->vtp2, KSSIZE);
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7110
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7111 bt->bt_string = ks->buf[CMODE_INDEXED];
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7112 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7113 }
13316
de19318319a6 patch 8.0.1532: compiler warnings without termguicolors feature
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
7114 init_done = TRUE;
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7115 curr_mode = CMODE_INDEXED;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7116 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7117
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7118 if (p_tgc)
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7119 mode = CMODE_RGB;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7120 else if (t_colors >= 256)
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7121 mode = CMODE_256COL;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7122 else
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7123 mode = CMODE_INDEXED;
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7124
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7125 if (mode == curr_mode)
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7126 return;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7127
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7128 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
7129 {
31129
9cc7b2cec8ad patch 9.0.0899: the builtin terminals are in one long list
Bram Moolenaar <Bram@vim.org>
parents: 31111
diff changeset
7130 tcap_entry_T *bt = find_first_tcap(DEFAULT_TERM, ks->code);
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7131 if (bt != NULL)
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7132 bt->bt_string = ks->buf[mode];
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7133 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7134
28739
40b087823dc7 patch 8.2.4894: MS-Windows: not using italics
Bram Moolenaar <Bram@vim.org>
parents: 28704
diff changeset
7135 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
7136 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7137 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
7138
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7139 #endif
9013
22c29a515b53 commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents: 9001
diff changeset
7140
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7141
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
7142 #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
7143 || 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
7144 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
7145 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
7146 };
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7147
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7148 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
7149 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
7150 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
7151 };
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7152
28919
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7153 static const char_u ansi_table[16][3] = {
28656
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7154 // R G B
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7155 { 0, 0, 0}, // black
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7156 {224, 0, 0}, // dark red
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7157 { 0, 224, 0}, // dark green
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7158 {224, 224, 0}, // dark yellow / brown
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7159 { 0, 0, 224}, // dark blue
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7160 {224, 0, 224}, // dark magenta
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7161 { 0, 224, 224}, // dark cyan
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7162 {224, 224, 224}, // light grey
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7163
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7164 {128, 128, 128}, // dark grey
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7165 {255, 64, 64}, // light red
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7166 { 64, 255, 64}, // light green
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7167 {255, 255, 64}, // yellow
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7168 { 64, 64, 255}, // light blue
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7169 {255, 64, 255}, // light magenta
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7170 { 64, 255, 255}, // light cyan
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7171 {255, 255, 255}, // white
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7172 };
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7173
28656
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7174 #if defined(MSWIN)
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7175 // Mapping between cterm indices < 16 and their counterpart in the ANSI palette.
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7176 static const char_u cterm_ansi_idx[] = {
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7177 0, 4, 2, 6, 1, 5, 3, 7, 8, 12, 10, 14, 9, 13, 11, 15
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7178 };
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7179 #endif
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7180
20500
03826c672315 patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents: 20450
diff changeset
7181 #define ANSI_INDEX_NONE 0
03826c672315 patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents: 20450
diff changeset
7182
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7183 void
28919
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7184 ansi_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx)
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7185 {
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7186 if (nr < 16)
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7187 {
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7188 *r = ansi_table[nr][0];
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7189 *g = ansi_table[nr][1];
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7190 *b = ansi_table[nr][2];
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7191 *ansi_idx = nr;
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7192 }
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7193 else
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7194 {
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7195 *r = 0;
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7196 *g = 0;
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7197 *b = 0;
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7198 *ansi_idx = ANSI_INDEX_NONE;
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7199 }
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7200 }
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7201
99c1356f4210 patch 8.2.4982: colors in terminal window are not 100% correct
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
7202 void
13839
ca8953d36264 patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents: 13827
diff changeset
7203 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
7204 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7205 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
7206
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7207 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
7208 {
28656
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7209 #if defined(MSWIN)
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7210 idx = cterm_ansi_idx[nr];
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7211 #else
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7212 idx = nr;
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7213 #endif
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7214 *r = ansi_table[idx][0];
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7215 *g = ansi_table[idx][1];
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7216 *b = ansi_table[idx][2];
3f4e1326a003 patch 8.2.4852: ANSI color index to RGB value not correct
Bram Moolenaar <Bram@vim.org>
parents: 28618
diff changeset
7217 *ansi_idx = idx + 1;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7218 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7219 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
7220 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
7221 // 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
7222 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
7223 *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
7224 *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
7225 *b = cube_value[idx % 6];
20500
03826c672315 patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents: 20450
diff changeset
7226 *ansi_idx = ANSI_INDEX_NONE;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7227 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7228 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
7229 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18717
diff changeset
7230 // 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
7231 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
7232 *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
7233 *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
7234 *b = grey_ramp[idx];
20500
03826c672315 patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents: 20450
diff changeset
7235 *ansi_idx = ANSI_INDEX_NONE;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7236 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7237 else
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7238 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7239 *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
7240 *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
7241 *b = 0;
20500
03826c672315 patch 8.2.0804: libvterm code lags behind the upstream version
Bram Moolenaar <Bram@vim.org>
parents: 20450
diff changeset
7242 *ansi_idx = ANSI_INDEX_NONE;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7243 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7244 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13780
diff changeset
7245 #endif
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15852
diff changeset
7246
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7247 /*
30637
ae1113e53ce3 patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents: 30602
diff changeset
7248 * Replace K_BS by <BS> and K_DEL by <DEL>.
30641
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7249 * Include any modifiers into the key and drop them.
30637
ae1113e53ce3 patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents: 30602
diff changeset
7250 * Returns "len" adjusted for replaced codes.
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7251 */
30637
ae1113e53ce3 patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents: 30602
diff changeset
7252 int
30641
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7253 term_replace_keycodes(char_u *ta_buf, int ta_len, int len_arg)
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7254 {
30637
ae1113e53ce3 patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents: 30602
diff changeset
7255 int len = len_arg;
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7256 int i;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7257 int c;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7258
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7259 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
7260 {
30641
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7261 if (ta_buf[i] == CSI && len - i > 3 && ta_buf[i + 1] == KS_MODIFIER)
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7262 {
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7263 int modifiers = ta_buf[i + 2];
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7264 int key = ta_buf[i + 3];
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7265
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7266 // Try to use the modifier to modify the key. In any case drop the
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7267 // modifier.
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7268 mch_memmove(ta_buf + i + 1, ta_buf + i + 4, (size_t)(len - i - 3));
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7269 len -= 3;
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7270 if (key < 0x80)
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7271 key = merge_modifyOtherKeys(key, &modifiers);
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7272 ta_buf[i] = key;
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7273 }
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7274 else if (ta_buf[i] == CSI && len - i > 2)
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7275 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7276 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
7277 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
7278 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7279 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
30641
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
7280 (size_t)(len - i - 2));
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7281 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
7282 ta_buf[i] = DEL;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7283 else
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7284 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
7285 len -= 2;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7286 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7287 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7288 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
7289 ta_buf[i] = '\n';
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7290 if (has_mbyte)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7291 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
7292 }
30637
ae1113e53ce3 patch 9.0.0653: BS and DEL do not work properly in an interacive shell
Bram Moolenaar <Bram@vim.org>
parents: 30602
diff changeset
7293 return len;
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19346
diff changeset
7294 }