Mercurial > vim
annotate src/term.h @ 11103:3335c3c75611 v8.0.0439
patch 8.0.0439: ":%argdel" gives an error for an empty arglist
commit https://github.com/vim/vim/commit/69a92fb5aecdf2f9d5f6947790b18991b22d0e4c
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 9 15:58:30 2017 +0100
patch 8.0.0439: ":%argdel" gives an error for an empty arglist
Problem: Using ":%argdel" while the argument list is already empty gives an
error. (Pavol Juhas)
Solution: Don't give an error. (closes #1546)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 09 Mar 2017 16:00:05 +0100 |
parents | 27be410d6d29 |
children | 501f46f7644c |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
10 * This file contains the defines for the machine dependent escape sequences | |
11 * that the editor needs to perform various operations. All of the sequences | |
12 * here are optional, except "cm" (cursor motion). | |
13 */ | |
14 | |
15 #if defined(SASC) && SASC < 658 | |
16 /* | |
17 * The SAS C compiler has a bug that makes typedefs being forgot in include | |
18 * files. Has been fixed in version 6.58. | |
19 */ | |
20 typedef unsigned char char_u; | |
21 #endif | |
22 | |
23 /* | |
24 * Index of the termcap codes in the term_strings array. | |
25 */ | |
26 enum SpecialKey | |
27 { | |
28 KS_NAME = 0,/* name of this terminal entry */ | |
29 KS_CE, /* clear to end of line */ | |
30 KS_AL, /* add new blank line */ | |
31 KS_CAL, /* add number of blank lines */ | |
32 KS_DL, /* delete line */ | |
33 KS_CDL, /* delete number of lines */ | |
34 KS_CS, /* scroll region */ | |
35 KS_CL, /* clear screen */ | |
36 KS_CD, /* clear to end of display */ | |
37 KS_UT, /* clearing uses current background color */ | |
38 KS_DA, /* text may be scrolled down from up */ | |
39 KS_DB, /* text may be scrolled up from down */ | |
40 KS_VI, /* cursor invisible */ | |
41 KS_VE, /* cursor visible */ | |
42 KS_VS, /* cursor very visible */ | |
43 KS_ME, /* normal mode */ | |
44 KS_MR, /* reverse mode */ | |
45 KS_MD, /* bold mode */ | |
46 KS_SE, /* normal mode */ | |
47 KS_SO, /* standout mode */ | |
48 KS_CZH, /* italic mode start */ | |
49 KS_CZR, /* italic mode end */ | |
213 | 50 KS_UE, /* exit underscore (underline) mode */ |
51 KS_US, /* underscore (underline) mode */ | |
52 KS_UCE, /* exit undercurl mode */ | |
53 KS_UCS, /* undercurl mode */ | |
7 | 54 KS_MS, /* save to move cur in reverse mode */ |
55 KS_CM, /* cursor motion */ | |
56 KS_SR, /* scroll reverse (backward) */ | |
57 KS_CRI, /* cursor number of chars right */ | |
58 KS_VB, /* visual bell */ | |
59 KS_KS, /* put term in "keypad transmit" mode */ | |
60 KS_KE, /* out of "keypad transmit" mode */ | |
61 KS_TI, /* put terminal in termcap mode */ | |
62 KS_TE, /* out of termcap mode */ | |
63 KS_BC, /* backspace character (cursor left) */ | |
64 KS_CCS, /* cur is relative to scroll region */ | |
65 KS_CCO, /* number of colors */ | |
66 KS_CSF, /* set foreground color */ | |
67 KS_CSB, /* set background color */ | |
68 KS_XS, /* standout not erased by overwriting (hpterm) */ | |
6602 | 69 KS_XN, /* newline glitch */ |
7 | 70 KS_MB, /* blink mode */ |
71 KS_CAF, /* set foreground color (ANSI) */ | |
72 KS_CAB, /* set background color (ANSI) */ | |
73 KS_LE, /* cursor left (mostly backspace) */ | |
74 KS_ND, /* cursor right */ | |
75 KS_CIS, /* set icon text start */ | |
76 KS_CIE, /* set icon text end */ | |
77 KS_TS, /* set window title start (to status line)*/ | |
78 KS_FS, /* set window title end (from status line) */ | |
79 KS_CWP, /* set window position in pixels */ | |
80 KS_CWS, /* set window size in characters */ | |
81 KS_CRV, /* request version string */ | |
6874 | 82 KS_RBG, /* request background color */ |
36 | 83 KS_CSI, /* start insert mode (bar cursor) */ |
84 KS_CEI, /* end insert mode (block cursor) */ | |
6727 | 85 KS_CSR, /* start replace mode (underline cursor) */ |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
6874
diff
changeset
|
86 #ifdef FEAT_WINDOWS |
7 | 87 KS_CSV, /* scroll region vertical */ |
88 #endif | |
4215 | 89 KS_OP, /* original color pair */ |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
90 KS_U7, /* request cursor position */ |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
91 KS_8F, /* set foreground color (RGB) */ |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
92 KS_8B, /* set background color (RGB) */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
93 KS_CBE, /* enable bracketed paste mode */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
94 KS_CBD, /* disable bracketed paste mode */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
95 KS_CPS, /* start of brackted paste */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
96 KS_CPE /* end of brackted paste */ |
7 | 97 }; |
98 | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
99 #define KS_LAST KS_CPE |
7 | 100 |
101 /* | |
102 * the terminal capabilities are stored in this array | |
103 * IMPORTANT: When making changes, note the following: | |
104 * - there should be an entry for each code in the builtin termcaps | |
105 * - there should be an option for each code in option.c | |
106 * - there should be code in term.c to obtain the value from the termcap | |
107 */ | |
108 | |
109 extern char_u *(term_strings[]); /* current terminal strings */ | |
110 | |
111 /* | |
112 * strings used for terminal | |
113 */ | |
114 #define T_NAME (term_str(KS_NAME)) /* terminal name */ | |
115 #define T_CE (term_str(KS_CE)) /* clear to end of line */ | |
116 #define T_AL (term_str(KS_AL)) /* add new blank line */ | |
117 #define T_CAL (term_str(KS_CAL)) /* add number of blank lines */ | |
118 #define T_DL (term_str(KS_DL)) /* delete line */ | |
119 #define T_CDL (term_str(KS_CDL)) /* delete number of lines */ | |
120 #define T_CS (term_str(KS_CS)) /* scroll region */ | |
121 #define T_CSV (term_str(KS_CSV)) /* scroll region vertical */ | |
122 #define T_CL (term_str(KS_CL)) /* clear screen */ | |
123 #define T_CD (term_str(KS_CD)) /* clear to end of display */ | |
124 #define T_UT (term_str(KS_UT)) /* clearing uses background color */ | |
125 #define T_DA (term_str(KS_DA)) /* text may be scrolled down from up */ | |
126 #define T_DB (term_str(KS_DB)) /* text may be scrolled up from down */ | |
127 #define T_VI (term_str(KS_VI)) /* cursor invisible */ | |
128 #define T_VE (term_str(KS_VE)) /* cursor visible */ | |
129 #define T_VS (term_str(KS_VS)) /* cursor very visible */ | |
130 #define T_ME (term_str(KS_ME)) /* normal mode */ | |
131 #define T_MR (term_str(KS_MR)) /* reverse mode */ | |
132 #define T_MD (term_str(KS_MD)) /* bold mode */ | |
133 #define T_SE (term_str(KS_SE)) /* normal mode */ | |
134 #define T_SO (term_str(KS_SO)) /* standout mode */ | |
135 #define T_CZH (term_str(KS_CZH)) /* italic mode start */ | |
136 #define T_CZR (term_str(KS_CZR)) /* italic mode end */ | |
213 | 137 #define T_UE (term_str(KS_UE)) /* exit underscore (underline) mode */ |
138 #define T_US (term_str(KS_US)) /* underscore (underline) mode */ | |
139 #define T_UCE (term_str(KS_UCE)) /* exit undercurl mode */ | |
140 #define T_UCS (term_str(KS_UCS)) /* undercurl mode */ | |
7 | 141 #define T_MS (term_str(KS_MS)) /* save to move cur in reverse mode */ |
142 #define T_CM (term_str(KS_CM)) /* cursor motion */ | |
143 #define T_SR (term_str(KS_SR)) /* scroll reverse (backward) */ | |
144 #define T_CRI (term_str(KS_CRI)) /* cursor number of chars right */ | |
145 #define T_VB (term_str(KS_VB)) /* visual bell */ | |
146 #define T_KS (term_str(KS_KS)) /* put term in "keypad transmit" mode */ | |
147 #define T_KE (term_str(KS_KE)) /* out of "keypad transmit" mode */ | |
148 #define T_TI (term_str(KS_TI)) /* put terminal in termcap mode */ | |
149 #define T_TE (term_str(KS_TE)) /* out of termcap mode */ | |
150 #define T_BC (term_str(KS_BC)) /* backspace character */ | |
151 #define T_CCS (term_str(KS_CCS)) /* cur is relative to scroll region */ | |
152 #define T_CCO (term_str(KS_CCO)) /* number of colors */ | |
153 #define T_CSF (term_str(KS_CSF)) /* set foreground color */ | |
154 #define T_CSB (term_str(KS_CSB)) /* set background color */ | |
155 #define T_XS (term_str(KS_XS)) /* standout not erased by overwriting */ | |
6602 | 156 #define T_XN (term_str(KS_XN)) /* newline glitch */ |
7 | 157 #define T_MB (term_str(KS_MB)) /* blink mode */ |
158 #define T_CAF (term_str(KS_CAF)) /* set foreground color (ANSI) */ | |
159 #define T_CAB (term_str(KS_CAB)) /* set background color (ANSI) */ | |
160 #define T_LE (term_str(KS_LE)) /* cursor left */ | |
161 #define T_ND (term_str(KS_ND)) /* cursor right */ | |
162 #define T_CIS (term_str(KS_CIS)) /* set icon text start */ | |
163 #define T_CIE (term_str(KS_CIE)) /* set icon text end */ | |
164 #define T_TS (term_str(KS_TS)) /* set window title start */ | |
165 #define T_FS (term_str(KS_FS)) /* set window title end */ | |
166 #define T_CWP (term_str(KS_CWP)) /* window position */ | |
167 #define T_CWS (term_str(KS_CWS)) /* window size */ | |
36 | 168 #define T_CSI (term_str(KS_CSI)) /* start insert mode */ |
169 #define T_CEI (term_str(KS_CEI)) /* end insert mode */ | |
6727 | 170 #define T_CSR (term_str(KS_CSR)) /* start replace mode */ |
7 | 171 #define T_CRV (term_str(KS_CRV)) /* request version string */ |
6874 | 172 #define T_RBG (term_str(KS_RBG)) /* request background RGB */ |
7 | 173 #define T_OP (term_str(KS_OP)) /* original color pair */ |
4215 | 174 #define T_U7 (term_str(KS_U7)) /* request cursor position */ |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
175 #define T_8F (term_str(KS_8F)) /* set foreground color (RGB) */ |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
176 #define T_8B (term_str(KS_8B)) /* set background color (RGB) */ |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
177 #define T_BE (term_str(KS_CBE)) /* enable bracketed paste mode */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
178 #define T_BD (term_str(KS_CBD)) /* disable bracketed paste mode */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
179 #define T_PS (term_str(KS_CPS)) /* start of bracketed paste */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
180 #define T_PE (term_str(KS_CPE)) /* end of bracketed paste */ |
7 | 181 |
182 #define TMODE_COOK 0 /* terminal mode for external cmds and Ex mode */ | |
183 #define TMODE_SLEEP 1 /* terminal mode for sleeping (cooked but no echo) */ | |
184 #define TMODE_RAW 2 /* terminal mode for Normal and Insert mode */ |