Mercurial > vim
annotate src/charset.c @ 23332:cdb706d5c43d v8.2.2209
patch 8.2.2209: Vim9: return type of => lambda not parsed
Commit: https://github.com/vim/vim/commit/9e68c32563d8c9ffe1ac04ecd4ccd730af66b97c
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 25 12:38:04 2020 +0100
patch 8.2.2209: Vim9: return type of => lambda not parsed
Problem: Vim9: return type of => lambda not parsed.
Solution: Parse and use the return type.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 25 Dec 2020 12:45:05 +0100 |
parents | c4bce986c31a |
children | ee43d943c3bb |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9399
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 #include "vim.h" | |
11 | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
12 #if defined(HAVE_WCHAR_H) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
13 # include <wchar.h> // for towupper() and towlower() |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
14 #endif |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
15 static int win_nolbr_chartabsize(win_T *wp, char_u *s, colnr_T col, int *headp); |
7 | 16 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
17 static unsigned nr2hex(unsigned c); |
7 | 18 |
19 static int chartab_initialized = FALSE; | |
20 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
21 // b_chartab[] is an array of 32 bytes, each bit representing one of the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
22 // characters 0-255. |
7 | 23 #define SET_CHARTAB(buf, c) (buf)->b_chartab[(unsigned)(c) >> 3] |= (1 << ((c) & 0x7)) |
24 #define RESET_CHARTAB(buf, c) (buf)->b_chartab[(unsigned)(c) >> 3] &= ~(1 << ((c) & 0x7)) | |
25 #define GET_CHARTAB(buf, c) ((buf)->b_chartab[(unsigned)(c) >> 3] & (1 << ((c) & 0x7))) | |
26 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
27 // table used below, see init_chartab() for an explanation |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
28 static char_u g_chartab[256]; |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
29 |
7 | 30 /* |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
31 * Flags for g_chartab[]. |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
32 */ |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
33 #define CT_CELL_MASK 0x07 // mask: nr of display cells (1, 2 or 4) |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
34 #define CT_PRINT_CHAR 0x10 // flag: set for printable chars |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
35 #define CT_ID_CHAR 0x20 // flag: set for ID chars |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
36 #define CT_FNAME_CHAR 0x40 // flag: set for file name chars |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
37 |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
16819
diff
changeset
|
38 static int in_win_border(win_T *wp, colnr_T vcol); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
16819
diff
changeset
|
39 |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
40 /* |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
41 * Fill g_chartab[]. Also fills curbuf->b_chartab[] with flags for keyword |
7 | 42 * characters for current buffer. |
43 * | |
44 * Depends on the option settings 'iskeyword', 'isident', 'isfname', | |
45 * 'isprint' and 'encoding'. | |
46 * | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
47 * The index in g_chartab[] depends on 'encoding': |
7 | 48 * - For non-multi-byte index with the byte (same as the character). |
49 * - For DBCS index with the first byte. | |
50 * - For UTF-8 index with the character (when first byte is up to 0x80 it is | |
51 * the same as the character, if the first byte is 0x80 and above it depends | |
52 * on further bytes). | |
53 * | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
54 * The contents of g_chartab[]: |
7 | 55 * - The lower two bits, masked by CT_CELL_MASK, give the number of display |
56 * cells the character occupies (1 or 2). Not valid for UTF-8 above 0x80. | |
57 * - CT_PRINT_CHAR bit is set when the character is printable (no need to | |
58 * translate the character before displaying it). Note that only DBCS | |
59 * characters can have 2 display cells and still be printable. | |
60 * - CT_FNAME_CHAR bit is set when the character can be in a file name. | |
61 * - CT_ID_CHAR bit is set when the character can be in an identifier. | |
62 * | |
63 * Return FAIL if 'iskeyword', 'isident', 'isfname' or 'isprint' option has an | |
64 * error, OK otherwise. | |
65 */ | |
66 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
67 init_chartab(void) |
7 | 68 { |
69 return buf_init_chartab(curbuf, TRUE); | |
70 } | |
71 | |
72 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
73 buf_init_chartab( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
74 buf_T *buf, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
75 int global) // FALSE: only set buf->b_chartab[] |
7 | 76 { |
77 int c; | |
78 int c2; | |
79 char_u *p; | |
80 int i; | |
81 int tilde; | |
82 int do_isalpha; | |
83 | |
84 if (global) | |
85 { | |
86 /* | |
87 * Set the default size for printable characters: | |
88 * From <Space> to '~' is 1 (printable), others are 2 (not printable). | |
89 * This also inits all 'isident' and 'isfname' flags to FALSE. | |
90 * | |
91 * EBCDIC: all chars below ' ' are not printable, all others are | |
92 * printable. | |
93 */ | |
94 c = 0; | |
95 while (c < ' ') | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
96 g_chartab[c++] = (dy_flags & DY_UHEX) ? 4 : 2; |
7 | 97 #ifdef EBCDIC |
98 while (c < 255) | |
99 #else | |
100 while (c <= '~') | |
101 #endif | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
102 g_chartab[c++] = 1 + CT_PRINT_CHAR; |
7 | 103 while (c < 256) |
104 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
105 // UTF-8: bytes 0xa0 - 0xff are printable (latin1) |
7 | 106 if (enc_utf8 && c >= 0xa0) |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
107 g_chartab[c++] = CT_PRINT_CHAR + 1; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
108 // euc-jp characters starting with 0x8e are single width |
7 | 109 else if (enc_dbcs == DBCS_JPNU && c == 0x8e) |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
110 g_chartab[c++] = CT_PRINT_CHAR + 1; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
111 // other double-byte chars can be printable AND double-width |
7 | 112 else if (enc_dbcs != 0 && MB_BYTE2LEN(c) == 2) |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
113 g_chartab[c++] = CT_PRINT_CHAR + 2; |
7 | 114 else |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
115 // the rest is unprintable by default |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
116 g_chartab[c++] = (dy_flags & DY_UHEX) ? 4 : 2; |
7 | 117 } |
118 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
119 // Assume that every multi-byte char is a filename character. |
7 | 120 for (c = 1; c < 256; ++c) |
121 if ((enc_dbcs != 0 && MB_BYTE2LEN(c) > 1) | |
122 || (enc_dbcs == DBCS_JPNU && c == 0x8e) | |
123 || (enc_utf8 && c >= 0xa0)) | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
124 g_chartab[c] |= CT_FNAME_CHAR; |
7 | 125 } |
126 | |
127 /* | |
128 * Init word char flags all to FALSE | |
129 */ | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
130 CLEAR_FIELD(buf->b_chartab); |
227 | 131 if (enc_dbcs != 0) |
132 for (c = 0; c < 256; ++c) | |
133 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
134 // double-byte characters are probably word characters |
227 | 135 if (MB_BYTE2LEN(c) == 2) |
136 SET_CHARTAB(buf, c); | |
137 } | |
7 | 138 |
139 #ifdef FEAT_LISP | |
140 /* | |
141 * In lisp mode the '-' character is included in keywords. | |
142 */ | |
143 if (buf->b_p_lisp) | |
144 SET_CHARTAB(buf, '-'); | |
145 #endif | |
146 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
147 // Walk through the 'isident', 'iskeyword', 'isfname' and 'isprint' |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
148 // options Each option is a list of characters, character numbers or |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
149 // ranges, separated by commas, e.g.: "200-210,x,#-178,-" |
7 | 150 for (i = global ? 0 : 3; i <= 3; ++i) |
151 { | |
152 if (i == 0) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
153 p = p_isi; // first round: 'isident' |
7 | 154 else if (i == 1) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
155 p = p_isp; // second round: 'isprint' |
7 | 156 else if (i == 2) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
157 p = p_isf; // third round: 'isfname' |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
158 else // i == 3 |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
159 p = buf->b_p_isk; // fourth round: 'iskeyword' |
7 | 160 |
161 while (*p) | |
162 { | |
163 tilde = FALSE; | |
164 do_isalpha = FALSE; | |
165 if (*p == '^' && p[1] != NUL) | |
166 { | |
167 tilde = TRUE; | |
168 ++p; | |
169 } | |
170 if (VIM_ISDIGIT(*p)) | |
171 c = getdigits(&p); | |
172 else | |
1955 | 173 if (has_mbyte) |
174 c = mb_ptr2char_adv(&p); | |
175 else | |
7 | 176 c = *p++; |
177 c2 = -1; | |
178 if (*p == '-' && p[1] != NUL) | |
179 { | |
180 ++p; | |
181 if (VIM_ISDIGIT(*p)) | |
182 c2 = getdigits(&p); | |
183 else | |
1979 | 184 if (has_mbyte) |
185 c2 = mb_ptr2char_adv(&p); | |
186 else | |
7 | 187 c2 = *p++; |
188 } | |
1979 | 189 if (c <= 0 || c >= 256 || (c2 < c && c2 != -1) || c2 >= 256 |
7 | 190 || !(*p == NUL || *p == ',')) |
191 return FAIL; | |
192 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
193 if (c2 == -1) // not a range |
7 | 194 { |
195 /* | |
196 * A single '@' (not "@-@"): | |
197 * Decide on letters being ID/printable/keyword chars with | |
198 * standard function isalpha(). This takes care of locale for | |
199 * single-byte characters). | |
200 */ | |
201 if (c == '@') | |
202 { | |
203 do_isalpha = TRUE; | |
204 c = 1; | |
205 c2 = 255; | |
206 } | |
207 else | |
208 c2 = c; | |
209 } | |
210 while (c <= c2) | |
211 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
212 // Use the MB_ functions here, because isalpha() doesn't |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
213 // work properly when 'encoding' is "latin1" and the locale is |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
214 // "C". |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
215 if (!do_isalpha || MB_ISLOWER(c) || MB_ISUPPER(c)) |
7 | 216 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
217 if (i == 0) // (re)set ID flag |
7 | 218 { |
219 if (tilde) | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
220 g_chartab[c] &= ~CT_ID_CHAR; |
7 | 221 else |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
222 g_chartab[c] |= CT_ID_CHAR; |
7 | 223 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
224 else if (i == 1) // (re)set printable |
7 | 225 { |
226 if ((c < ' ' | |
227 #ifndef EBCDIC | |
228 || c > '~' | |
229 #endif | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
230 // For double-byte we keep the cell width, so |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
231 // that we can detect it from the first byte. |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
232 ) && !(enc_dbcs && MB_BYTE2LEN(c) == 2)) |
7 | 233 { |
234 if (tilde) | |
235 { | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
236 g_chartab[c] = (g_chartab[c] & ~CT_CELL_MASK) |
7 | 237 + ((dy_flags & DY_UHEX) ? 4 : 2); |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
238 g_chartab[c] &= ~CT_PRINT_CHAR; |
7 | 239 } |
240 else | |
241 { | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
242 g_chartab[c] = (g_chartab[c] & ~CT_CELL_MASK) + 1; |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
243 g_chartab[c] |= CT_PRINT_CHAR; |
7 | 244 } |
245 } | |
246 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
247 else if (i == 2) // (re)set fname flag |
7 | 248 { |
249 if (tilde) | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
250 g_chartab[c] &= ~CT_FNAME_CHAR; |
7 | 251 else |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
252 g_chartab[c] |= CT_FNAME_CHAR; |
7 | 253 } |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
254 else // i == 3 (re)set keyword flag |
7 | 255 { |
256 if (tilde) | |
257 RESET_CHARTAB(buf, c); | |
258 else | |
259 SET_CHARTAB(buf, c); | |
260 } | |
261 } | |
262 ++c; | |
263 } | |
4096 | 264 |
265 c = *p; | |
7 | 266 p = skip_to_option_part(p); |
4096 | 267 if (c == ',' && *p == NUL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
268 // Trailing comma is not allowed. |
4096 | 269 return FAIL; |
7 | 270 } |
271 } | |
272 chartab_initialized = TRUE; | |
273 return OK; | |
274 } | |
275 | |
276 /* | |
277 * Translate any special characters in buf[bufsize] in-place. | |
278 * The result is a string with only printable characters, but if there is not | |
279 * enough room, not all characters will be translated. | |
280 */ | |
281 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
282 trans_characters( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
283 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
284 int bufsize) |
7 | 285 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
286 int len; // length of string needing translation |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
287 int room; // room in buffer after string |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
288 char_u *trs; // translated character |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
289 int trs_len; // length of trs[] |
7 | 290 |
291 len = (int)STRLEN(buf); | |
292 room = bufsize - len; | |
293 while (*buf != 0) | |
294 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
295 // Assume a multi-byte character doesn't need translation. |
474 | 296 if (has_mbyte && (trs_len = (*mb_ptr2len)(buf)) > 1) |
7 | 297 len -= trs_len; |
298 else | |
299 { | |
300 trs = transchar_byte(*buf); | |
301 trs_len = (int)STRLEN(trs); | |
302 if (trs_len > 1) | |
303 { | |
304 room -= trs_len - 1; | |
305 if (room <= 0) | |
306 return; | |
307 mch_memmove(buf + trs_len, buf + 1, (size_t)len); | |
308 } | |
309 mch_memmove(buf, trs, (size_t)trs_len); | |
310 --len; | |
311 } | |
312 buf += trs_len; | |
313 } | |
314 } | |
315 | |
316 /* | |
317 * Translate a string into allocated memory, replacing special chars with | |
318 * printable chars. Returns NULL when out of memory. | |
319 */ | |
320 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
321 transstr(char_u *s) |
7 | 322 { |
323 char_u *res; | |
324 char_u *p; | |
325 int l, len, c; | |
326 char_u hexbuf[11]; | |
327 | |
328 if (has_mbyte) | |
329 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
330 // Compute the length of the result, taking account of unprintable |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
331 // multi-byte characters. |
7 | 332 len = 0; |
333 p = s; | |
334 while (*p != NUL) | |
335 { | |
474 | 336 if ((l = (*mb_ptr2len)(p)) > 1) |
7 | 337 { |
338 c = (*mb_ptr2char)(p); | |
339 p += l; | |
340 if (vim_isprintc(c)) | |
341 len += l; | |
342 else | |
343 { | |
344 transchar_hex(hexbuf, c); | |
835 | 345 len += (int)STRLEN(hexbuf); |
7 | 346 } |
347 } | |
348 else | |
349 { | |
350 l = byte2cells(*p++); | |
351 if (l > 0) | |
352 len += l; | |
353 else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
354 len += 4; // illegal byte sequence |
7 | 355 } |
356 } | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
357 res = alloc(len + 1); |
7 | 358 } |
359 else | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
360 res = alloc(vim_strsize(s) + 1); |
7 | 361 if (res != NULL) |
362 { | |
363 *res = NUL; | |
364 p = s; | |
365 while (*p != NUL) | |
366 { | |
474 | 367 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
7 | 368 { |
369 c = (*mb_ptr2char)(p); | |
370 if (vim_isprintc(c)) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
371 STRNCAT(res, p, l); // append printable multi-byte char |
7 | 372 else |
373 transchar_hex(res + STRLEN(res), c); | |
374 p += l; | |
375 } | |
376 else | |
377 STRCAT(res, transchar_byte(*p++)); | |
378 } | |
379 } | |
380 return res; | |
381 } | |
382 | |
383 /* | |
221 | 384 * Convert the string "str[orglen]" to do ignore-case comparing. Uses the |
385 * current locale. | |
130 | 386 * When "buf" is NULL returns an allocated string (NULL for out-of-memory). |
387 * Otherwise puts the result in "buf[buflen]". | |
7 | 388 */ |
389 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
390 str_foldcase( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
391 char_u *str, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
392 int orglen, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
393 char_u *buf, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
394 int buflen) |
7 | 395 { |
396 garray_T ga; | |
397 int i; | |
130 | 398 int len = orglen; |
7 | 399 |
400 #define GA_CHAR(i) ((char_u *)ga.ga_data)[i] | |
401 #define GA_PTR(i) ((char_u *)ga.ga_data + i) | |
130 | 402 #define STR_CHAR(i) (buf == NULL ? GA_CHAR(i) : buf[i]) |
403 #define STR_PTR(i) (buf == NULL ? GA_PTR(i) : buf + i) | |
7 | 404 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
405 // Copy "str" into "buf" or allocated memory, unmodified. |
130 | 406 if (buf == NULL) |
407 { | |
408 ga_init2(&ga, 1, 10); | |
409 if (ga_grow(&ga, len + 1) == FAIL) | |
410 return NULL; | |
411 mch_memmove(ga.ga_data, str, (size_t)len); | |
412 ga.ga_len = len; | |
413 } | |
414 else | |
415 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
416 if (len >= buflen) // Ugly! |
130 | 417 len = buflen - 1; |
418 mch_memmove(buf, str, (size_t)len); | |
419 } | |
420 if (buf == NULL) | |
421 GA_CHAR(len) = NUL; | |
422 else | |
423 buf[len] = NUL; | |
7 | 424 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
425 // Make each character lower case. |
7 | 426 i = 0; |
130 | 427 while (STR_CHAR(i) != NUL) |
7 | 428 { |
130 | 429 if (enc_utf8 || (has_mbyte && MB_BYTE2LEN(STR_CHAR(i)) > 1)) |
7 | 430 { |
431 if (enc_utf8) | |
432 { | |
1654 | 433 int c = utf_ptr2char(STR_PTR(i)); |
3263 | 434 int olen = utf_ptr2len(STR_PTR(i)); |
1654 | 435 int lc = utf_tolower(c); |
7 | 436 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
437 // Only replace the character when it is not an invalid |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
438 // sequence (ASCII character or more than one byte) and |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
439 // utf_tolower() doesn't return the original character. |
3263 | 440 if ((c < 0x80 || olen > 1) && c != lc) |
7 | 441 { |
3263 | 442 int nlen = utf_char2len(lc); |
7 | 443 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
444 // If the byte length changes need to shift the following |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
445 // characters forward or backward. |
3263 | 446 if (olen != nlen) |
7 | 447 { |
3263 | 448 if (nlen > olen) |
130 | 449 { |
3263 | 450 if (buf == NULL |
451 ? ga_grow(&ga, nlen - olen + 1) == FAIL | |
452 : len + nlen - olen >= buflen) | |
7 | 453 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
454 // out of memory, keep old char |
7 | 455 lc = c; |
3263 | 456 nlen = olen; |
7 | 457 } |
130 | 458 } |
3263 | 459 if (olen != nlen) |
7 | 460 { |
130 | 461 if (buf == NULL) |
462 { | |
3263 | 463 STRMOVE(GA_PTR(i) + nlen, GA_PTR(i) + olen); |
464 ga.ga_len += nlen - olen; | |
130 | 465 } |
466 else | |
467 { | |
3263 | 468 STRMOVE(buf + i + nlen, buf + i + olen); |
469 len += nlen - olen; | |
130 | 470 } |
7 | 471 } |
472 } | |
130 | 473 (void)utf_char2bytes(lc, STR_PTR(i)); |
7 | 474 } |
475 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
476 // skip to next multi-byte char |
474 | 477 i += (*mb_ptr2len)(STR_PTR(i)); |
7 | 478 } |
479 else | |
480 { | |
130 | 481 if (buf == NULL) |
482 GA_CHAR(i) = TOLOWER_LOC(GA_CHAR(i)); | |
483 else | |
484 buf[i] = TOLOWER_LOC(buf[i]); | |
7 | 485 ++i; |
486 } | |
487 } | |
488 | |
130 | 489 if (buf == NULL) |
490 return (char_u *)ga.ga_data; | |
491 return buf; | |
7 | 492 } |
493 | |
494 /* | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
495 * Catch 22: g_chartab[] can't be initialized before the options are |
7 | 496 * initialized, and initializing options may cause transchar() to be called! |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
497 * When chartab_initialized == FALSE don't use g_chartab[]. |
7 | 498 * Does NOT work for multi-byte characters, c must be <= 255. |
499 * Also doesn't work for the first byte of a multi-byte, "c" must be a | |
500 * character! | |
501 */ | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
502 static char_u transchar_charbuf[7]; |
7 | 503 |
504 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
505 transchar(int c) |
7 | 506 { |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
507 return transchar_buf(curbuf, c); |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
508 } |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
509 |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
510 char_u * |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
511 transchar_buf(buf_T *buf, int c) |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
512 { |
7 | 513 int i; |
514 | |
515 i = 0; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
516 if (IS_SPECIAL(c)) // special key code, display as ~@ char |
7 | 517 { |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
518 transchar_charbuf[0] = '~'; |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
519 transchar_charbuf[1] = '@'; |
7 | 520 i = 2; |
521 c = K_SECOND(c); | |
522 } | |
523 | |
524 if ((!chartab_initialized && ( | |
525 #ifdef EBCDIC | |
526 (c >= 64 && c < 255) | |
527 #else | |
528 (c >= ' ' && c <= '~') | |
529 #endif | |
530 )) || (c < 256 && vim_isprintc_strict(c))) | |
531 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
532 // printable character |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
533 transchar_charbuf[i] = c; |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
534 transchar_charbuf[i + 1] = NUL; |
7 | 535 } |
536 else | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
537 transchar_nonprint(buf, transchar_charbuf + i, c); |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
538 return transchar_charbuf; |
7 | 539 } |
540 | |
541 /* | |
542 * Like transchar(), but called with a byte instead of a character. Checks | |
543 * for an illegal UTF-8 byte. | |
544 */ | |
545 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
546 transchar_byte(int c) |
7 | 547 { |
548 if (enc_utf8 && c >= 0x80) | |
549 { | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
550 transchar_nonprint(curbuf, transchar_charbuf, c); |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
551 return transchar_charbuf; |
7 | 552 } |
553 return transchar(c); | |
554 } | |
555 | |
556 /* | |
557 * Convert non-printable character to two or more printable characters in | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
558 * "buf[]". "charbuf" needs to be able to hold five bytes. |
7 | 559 * Does NOT work for multi-byte characters, c must be <= 255. |
560 */ | |
561 void | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
562 transchar_nonprint(buf_T *buf, char_u *charbuf, int c) |
7 | 563 { |
564 if (c == NL) | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
565 c = NUL; // we use newline in place of a NUL |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
566 else if (c == CAR && get_fileformat(buf) == EOL_MAC) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
567 c = NL; // we use CR in place of NL in this case |
7 | 568 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
569 if (dy_flags & DY_UHEX) // 'display' has "uhex" |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
570 transchar_hex(charbuf, c); |
7 | 571 |
572 #ifdef EBCDIC | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
573 // For EBCDIC only the characters 0-63 and 255 are not printable |
7 | 574 else if (CtrlChar(c) != 0 || c == DEL) |
575 #else | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
576 else if (c <= 0x7f) // 0x00 - 0x1f and 0x7f |
7 | 577 #endif |
578 { | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
579 charbuf[0] = '^'; |
7 | 580 #ifdef EBCDIC |
581 if (c == DEL) | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
582 charbuf[1] = '?'; // DEL displayed as ^? |
7 | 583 else |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
584 charbuf[1] = CtrlChar(c); |
7 | 585 #else |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
586 charbuf[1] = c ^ 0x40; // DEL displayed as ^? |
7 | 587 #endif |
588 | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
589 charbuf[2] = NUL; |
7 | 590 } |
591 else if (enc_utf8 && c >= 0x80) | |
592 { | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
593 transchar_hex(charbuf, c); |
7 | 594 } |
595 #ifndef EBCDIC | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
596 else if (c >= ' ' + 0x80 && c <= '~' + 0x80) // 0xa0 - 0xfe |
7 | 597 { |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
598 charbuf[0] = '|'; |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
599 charbuf[1] = c - 0x80; |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
600 charbuf[2] = NUL; |
7 | 601 } |
602 #else | |
603 else if (c < 64) | |
604 { | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
605 charbuf[0] = '~'; |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
606 charbuf[1] = MetaChar(c); |
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
607 charbuf[2] = NUL; |
7 | 608 } |
609 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
610 else // 0x80 - 0x9f and 0xff |
7 | 611 { |
612 /* | |
613 * TODO: EBCDIC I don't know what to do with this chars, so I display | |
614 * them as '~?' for now | |
615 */ | |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
616 charbuf[0] = '~'; |
7 | 617 #ifdef EBCDIC |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
618 charbuf[1] = '?'; // 0xff displayed as ~? |
7 | 619 #else |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
620 charbuf[1] = (c - 0x80) ^ 0x40; // 0xff displayed as ~? |
7 | 621 #endif |
20782
c4bce986c31a
patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents:
20665
diff
changeset
|
622 charbuf[2] = NUL; |
7 | 623 } |
624 } | |
625 | |
626 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
627 transchar_hex(char_u *buf, int c) |
7 | 628 { |
629 int i = 0; | |
630 | |
631 buf[0] = '<'; | |
632 if (c > 255) | |
633 { | |
634 buf[++i] = nr2hex((unsigned)c >> 12); | |
635 buf[++i] = nr2hex((unsigned)c >> 8); | |
636 } | |
637 buf[++i] = nr2hex((unsigned)c >> 4); | |
1869 | 638 buf[++i] = nr2hex((unsigned)c); |
7 | 639 buf[++i] = '>'; |
640 buf[++i] = NUL; | |
641 } | |
642 | |
643 /* | |
644 * Convert the lower 4 bits of byte "c" to its hex character. | |
645 * Lower case letters are used to avoid the confusion of <F1> being 0xf1 or | |
646 * function key 1. | |
647 */ | |
1869 | 648 static unsigned |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
649 nr2hex(unsigned c) |
7 | 650 { |
651 if ((c & 0xf) <= 9) | |
652 return (c & 0xf) + '0'; | |
653 return (c & 0xf) - 10 + 'a'; | |
654 } | |
655 | |
656 /* | |
657 * Return number of display cells occupied by byte "b". | |
658 * Caller must make sure 0 <= b <= 255. | |
659 * For multi-byte mode "b" must be the first byte of a character. | |
660 * A TAB is counted as two cells: "^I". | |
661 * For UTF-8 mode this will return 0 for bytes >= 0x80, because the number of | |
662 * cells depends on further bytes. | |
663 */ | |
664 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
665 byte2cells(int b) |
7 | 666 { |
667 if (enc_utf8 && b >= 0x80) | |
668 return 0; | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
669 return (g_chartab[b] & CT_CELL_MASK); |
7 | 670 } |
671 | |
672 /* | |
673 * Return number of display cells occupied by character "c". | |
674 * "c" can be a special key (negative number) in which case 3 or 4 is returned. | |
675 * A TAB is counted as two cells: "^I" or four: "<09>". | |
676 */ | |
677 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
678 char2cells(int c) |
7 | 679 { |
680 if (IS_SPECIAL(c)) | |
681 return char2cells(K_SECOND(c)) + 2; | |
682 if (c >= 0x80) | |
683 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
684 // UTF-8: above 0x80 need to check the value |
7 | 685 if (enc_utf8) |
686 return utf_char2cells(c); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
687 // DBCS: double-byte means double-width, except for euc-jp with first |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
688 // byte 0x8e |
7 | 689 if (enc_dbcs != 0 && c >= 0x100) |
690 { | |
691 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e) | |
692 return 1; | |
693 return 2; | |
694 } | |
695 } | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
696 return (g_chartab[c & 0xff] & CT_CELL_MASK); |
7 | 697 } |
698 | |
699 /* | |
700 * Return number of display cells occupied by character at "*p". | |
701 * A TAB is counted as two cells: "^I" or four: "<09>". | |
702 */ | |
703 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
704 ptr2cells(char_u *p) |
7 | 705 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
706 // For UTF-8 we need to look at more bytes if the first byte is >= 0x80. |
7 | 707 if (enc_utf8 && *p >= 0x80) |
708 return utf_ptr2cells(p); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
709 // For DBCS we can tell the cell count from the first byte. |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
710 return (g_chartab[*p] & CT_CELL_MASK); |
7 | 711 } |
712 | |
713 /* | |
3292 | 714 * Return the number of character cells string "s" will take on the screen, |
7 | 715 * counting TABs as two characters: "^I". |
716 */ | |
717 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
718 vim_strsize(char_u *s) |
7 | 719 { |
720 return vim_strnsize(s, (int)MAXCOL); | |
721 } | |
722 | |
723 /* | |
3292 | 724 * Return the number of character cells string "s[len]" will take on the |
725 * screen, counting TABs as two characters: "^I". | |
7 | 726 */ |
727 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
728 vim_strnsize(char_u *s, int len) |
7 | 729 { |
730 int size = 0; | |
731 | |
732 while (*s != NUL && --len >= 0) | |
733 if (has_mbyte) | |
734 { | |
474 | 735 int l = (*mb_ptr2len)(s); |
7 | 736 |
737 size += ptr2cells(s); | |
738 s += l; | |
739 len -= l - 1; | |
740 } | |
741 else | |
742 size += byte2cells(*s++); | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
743 |
7 | 744 return size; |
745 } | |
746 | |
747 /* | |
748 * Return the number of characters 'c' will take on the screen, taking | |
749 * into account the size of a tab. | |
750 * Use a define to make it fast, this is used very often!!! | |
751 * Also see getvcol() below. | |
752 */ | |
753 | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
754 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
755 # define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \ |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
756 if (*(p) == TAB && (!(wp)->w_p_list || lcs_tab1)) \ |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
757 { \ |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
758 return tabstop_padding(col, (buf)->b_p_ts, (buf)->b_p_vts_array); \ |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
759 } \ |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
760 else \ |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
761 return ptr2cells(p); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
762 #else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
763 # define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \ |
7 | 764 if (*(p) == TAB && (!(wp)->w_p_list || lcs_tab1)) \ |
765 { \ | |
766 int ts; \ | |
767 ts = (buf)->b_p_ts; \ | |
768 return (int)(ts - (col % ts)); \ | |
769 } \ | |
770 else \ | |
771 return ptr2cells(p); | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
772 #endif |
7 | 773 |
774 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
775 chartabsize(char_u *p, colnr_T col) |
7 | 776 { |
777 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, p, col) | |
778 } | |
779 | |
780 #ifdef FEAT_LINEBREAK | |
781 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
782 win_chartabsize(win_T *wp, char_u *p, colnr_T col) |
7 | 783 { |
784 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, p, col) | |
785 } | |
786 #endif | |
787 | |
788 /* | |
2339
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
789 * Return the number of characters the string 's' will take on the screen, |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
790 * taking into account the size of a tab. |
7 | 791 */ |
792 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
793 linetabsize(char_u *s) |
7 | 794 { |
2339
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
795 return linetabsize_col(0, s); |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
796 } |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
797 |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
798 /* |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
799 * Like linetabsize(), but starting at column "startcol". |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
800 */ |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
801 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
802 linetabsize_col(int startcol, char_u *s) |
2339
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
803 { |
01e4b4d37842
Added strdisplaywidth() function.
Bram Moolenaar <bram@vim.org>
parents:
2108
diff
changeset
|
804 colnr_T col = startcol; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
805 char_u *line = s; // pointer to start of line, for breakindent |
7 | 806 |
807 while (*s != NUL) | |
5995 | 808 col += lbr_chartabsize_adv(line, &s, col); |
7 | 809 return (int)col; |
810 } | |
811 | |
812 /* | |
813 * Like linetabsize(), but for a given window instead of the current one. | |
814 */ | |
815 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
816 win_linetabsize(win_T *wp, char_u *line, colnr_T len) |
7 | 817 { |
818 colnr_T col = 0; | |
819 char_u *s; | |
820 | |
5995 | 821 for (s = line; *s != NUL && (len == MAXCOL || s < line + len); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
822 MB_PTR_ADV(s)) |
5995 | 823 col += win_lbr_chartabsize(wp, line, s, col, NULL); |
7 | 824 return (int)col; |
825 } | |
826 | |
827 /* | |
42 | 828 * Return TRUE if 'c' is a normal identifier character: |
829 * Letters and characters from the 'isident' option. | |
7 | 830 */ |
831 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
832 vim_isIDc(int c) |
7 | 833 { |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
834 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR)); |
7 | 835 } |
836 | |
837 /* | |
838 * return TRUE if 'c' is a keyword character: Letters and characters from | |
10549
055b1633aed7
patch 8.0.0164: outdated and misplaced comments
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
839 * 'iskeyword' option for the current buffer. |
7 | 840 * For multi-byte characters mb_get_class() is used (builtin rules). |
841 */ | |
842 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
843 vim_iswordc(int c) |
7 | 844 { |
4043 | 845 return vim_iswordc_buf(c, curbuf); |
846 } | |
847 | |
848 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
849 vim_iswordc_buf(int c, buf_T *buf) |
4043 | 850 { |
7 | 851 if (c >= 0x100) |
852 { | |
853 if (enc_dbcs != 0) | |
1869 | 854 return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2; |
7 | 855 if (enc_utf8) |
10724
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
856 return utf_class_buf(c, buf) >= 2; |
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
857 return FALSE; |
7 | 858 } |
10724
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
859 return (c > 0 && GET_CHARTAB(buf, c) != 0); |
7 | 860 } |
861 | |
862 /* | |
863 * Just like vim_iswordc() but uses a pointer to the (multi-byte) character. | |
864 */ | |
865 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
866 vim_iswordp(char_u *p) |
7 | 867 { |
10724
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
868 return vim_iswordp_buf(p, curbuf); |
7 | 869 } |
870 | |
871 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
872 vim_iswordp_buf(char_u *p, buf_T *buf) |
7 | 873 { |
10724
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
874 int c = *p; |
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
875 |
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
876 if (has_mbyte && MB_BYTE2LEN(c) > 1) |
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
877 c = (*mb_ptr2char)(p); |
ae1c6bf22e5f
patch 8.0.0252: not properly recognizing word characters between 128 and 255
Christian Brabandt <cb@256bit.org>
parents:
10720
diff
changeset
|
878 return vim_iswordc_buf(c, buf); |
7 | 879 } |
880 | |
881 /* | |
882 * return TRUE if 'c' is a valid file-name character | |
883 * Assume characters above 0x100 are valid (multi-byte). | |
884 */ | |
885 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
886 vim_isfilec(int c) |
7 | 887 { |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
888 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_FNAME_CHAR))); |
7 | 889 } |
890 | |
891 /* | |
1369 | 892 * return TRUE if 'c' is a valid file-name character or a wildcard character |
893 * Assume characters above 0x100 are valid (multi-byte). | |
894 * Explicitly interpret ']' as a wildcard character as mch_has_wildcard("]") | |
895 * returns false. | |
896 */ | |
897 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
898 vim_isfilec_or_wc(int c) |
1369 | 899 { |
900 char_u buf[2]; | |
901 | |
902 buf[0] = (char_u)c; | |
903 buf[1] = NUL; | |
904 return vim_isfilec(c) || c == ']' || mch_has_wildcard(buf); | |
905 } | |
906 | |
907 /* | |
11333
fef09eb74832
patch 8.0.0552: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
908 * Return TRUE if 'c' is a printable character. |
7 | 909 * Assume characters above 0x100 are printable (multi-byte), except for |
910 * Unicode. | |
911 */ | |
912 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
913 vim_isprintc(int c) |
7 | 914 { |
915 if (enc_utf8 && c >= 0x100) | |
916 return utf_printable(c); | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
917 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR))); |
7 | 918 } |
919 | |
920 /* | |
921 * Strict version of vim_isprintc(c), don't return TRUE if "c" is the head | |
922 * byte of a double-byte character. | |
923 */ | |
924 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
925 vim_isprintc_strict(int c) |
7 | 926 { |
927 if (enc_dbcs != 0 && c < 0x100 && MB_BYTE2LEN(c) > 1) | |
928 return FALSE; | |
929 if (enc_utf8 && c >= 0x100) | |
930 return utf_printable(c); | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
931 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR))); |
7 | 932 } |
933 | |
934 /* | |
935 * like chartabsize(), but also check for line breaks on the screen | |
936 */ | |
937 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
938 lbr_chartabsize( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
939 char_u *line UNUSED, // start of the line |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
940 unsigned char *s, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
941 colnr_T col) |
7 | 942 { |
943 #ifdef FEAT_LINEBREAK | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
944 if (!curwin->w_p_lbr && *get_showbreak_value(curwin) == NUL |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
945 && !curwin->w_p_bri) |
7 | 946 { |
947 #endif | |
948 if (curwin->w_p_wrap) | |
949 return win_nolbr_chartabsize(curwin, s, col, NULL); | |
950 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, s, col) | |
951 #ifdef FEAT_LINEBREAK | |
952 } | |
5995 | 953 return win_lbr_chartabsize(curwin, line == NULL ? s : line, s, col, NULL); |
7 | 954 #endif |
955 } | |
956 | |
957 /* | |
958 * Call lbr_chartabsize() and advance the pointer. | |
959 */ | |
960 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
961 lbr_chartabsize_adv( |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
962 char_u *line, // start of the line |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
963 char_u **s, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
964 colnr_T col) |
7 | 965 { |
966 int retval; | |
967 | |
5995 | 968 retval = lbr_chartabsize(line, *s, col); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
969 MB_PTR_ADV(*s); |
7 | 970 return retval; |
971 } | |
972 | |
973 /* | |
974 * This function is used very often, keep it fast!!!! | |
975 * | |
976 * If "headp" not NULL, set *headp to the size of what we for 'showbreak' | |
977 * string at start of line. Warning: *headp is only set if it's a non-zero | |
978 * value, init to 0 before calling. | |
979 */ | |
980 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
981 win_lbr_chartabsize( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
982 win_T *wp, |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
983 char_u *line UNUSED, // start of the line |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
984 char_u *s, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
985 colnr_T col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
986 int *headp UNUSED) |
7 | 987 { |
988 #ifdef FEAT_LINEBREAK | |
989 int c; | |
990 int size; | |
991 colnr_T col2; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
992 colnr_T col_adj = 0; // col + screen size of tab |
7 | 993 colnr_T colmax; |
994 int added; | |
995 int mb_added = 0; | |
996 int numberextra; | |
997 char_u *ps; | |
998 int tab_corr = (*s == TAB); | |
236 | 999 int n; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1000 char_u *sbr; |
7 | 1001 |
1002 /* | |
5995 | 1003 * No 'linebreak', 'showbreak' and 'breakindent': return quickly. |
7 | 1004 */ |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1005 if (!wp->w_p_lbr && !wp->w_p_bri && *get_showbreak_value(wp) == NUL) |
7 | 1006 #endif |
1007 { | |
1008 if (wp->w_p_wrap) | |
1009 return win_nolbr_chartabsize(wp, s, col, headp); | |
1010 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, s, col) | |
1011 } | |
1012 | |
1013 #ifdef FEAT_LINEBREAK | |
1014 /* | |
1015 * First get normal size, without 'linebreak' | |
1016 */ | |
1017 size = win_chartabsize(wp, s, col); | |
1018 c = *s; | |
6024 | 1019 if (tab_corr) |
1020 col_adj = size - 1; | |
7 | 1021 |
1022 /* | |
1023 * If 'linebreak' set check at a blank before a non-blank if the line | |
1024 * needs a break here | |
1025 */ | |
1026 if (wp->w_p_lbr | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1027 && VIM_ISBREAK(c) |
11133
d8e830e32be9
patch 8.0.0454: compiler warnings for "always true" comparison
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1028 && !VIM_ISBREAK((int)s[1]) |
7 | 1029 && wp->w_p_wrap |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
1030 && wp->w_width != 0) |
7 | 1031 { |
1032 /* | |
1033 * Count all characters from first non-blank after a blank up to next | |
1034 * non-blank after a blank. | |
1035 */ | |
1036 numberextra = win_col_off(wp); | |
1037 col2 = col; | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1038 colmax = (colnr_T)(wp->w_width - numberextra - col_adj); |
7 | 1039 if (col >= colmax) |
236 | 1040 { |
6024 | 1041 colmax += col_adj; |
1042 n = colmax + win_col_off2(wp); | |
236 | 1043 if (n > 0) |
6024 | 1044 colmax += (((col - colmax) / n) + 1) * n - col_adj; |
236 | 1045 } |
1046 | |
7 | 1047 for (;;) |
1048 { | |
1049 ps = s; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1050 MB_PTR_ADV(s); |
7 | 1051 c = *s; |
1052 if (!(c != NUL | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1053 && (VIM_ISBREAK(c) |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1054 || (!VIM_ISBREAK(c) |
11133
d8e830e32be9
patch 8.0.0454: compiler warnings for "always true" comparison
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1055 && (col2 == col || !VIM_ISBREAK((int)*ps)))))) |
7 | 1056 break; |
1057 | |
1058 col2 += win_chartabsize(wp, s, col2); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1059 if (col2 >= colmax) // doesn't fit |
7 | 1060 { |
6024 | 1061 size = colmax - col + col_adj; |
7 | 1062 break; |
1063 } | |
1064 } | |
1065 } | |
1066 else if (has_mbyte && size == 2 && MB_BYTE2LEN(*s) > 1 | |
1067 && wp->w_p_wrap && in_win_border(wp, col)) | |
1068 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1069 ++size; // Count the ">" in the last column. |
7 | 1070 mb_added = 1; |
1071 } | |
1072 | |
1073 /* | |
5995 | 1074 * May have to add something for 'breakindent' and/or 'showbreak' |
1075 * string at start of line. | |
7 | 1076 * Set *headp to the size of what we add. |
1077 */ | |
1078 added = 0; | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1079 sbr = get_showbreak_value(wp); |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1080 if ((*sbr != NUL || wp->w_p_bri) && wp->w_p_wrap && col != 0) |
7 | 1081 { |
6503 | 1082 colnr_T sbrlen = 0; |
1083 int numberwidth = win_col_off(wp); | |
1084 | |
1085 numberextra = numberwidth; | |
7 | 1086 col += numberextra + mb_added; |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1087 if (col >= (colnr_T)wp->w_width) |
7 | 1088 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1089 col -= wp->w_width; |
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1090 numberextra = wp->w_width - (numberextra - win_col_off2(wp)); |
6503 | 1091 if (col >= numberextra && numberextra > 0) |
6312 | 1092 col %= numberextra; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1093 if (*sbr != NUL) |
6288 | 1094 { |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1095 sbrlen = (colnr_T)MB_CHARLEN(sbr); |
6288 | 1096 if (col >= sbrlen) |
1097 col -= sbrlen; | |
1098 } | |
6503 | 1099 if (col >= numberextra && numberextra > 0) |
7 | 1100 col = col % numberextra; |
6503 | 1101 else if (col > 0 && numberextra > 0) |
1102 col += numberwidth - win_col_off2(wp); | |
1103 | |
1104 numberwidth -= win_col_off2(wp); | |
7 | 1105 } |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1106 if (col == 0 || col + size + sbrlen > (colnr_T)wp->w_width) |
7 | 1107 { |
5995 | 1108 added = 0; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1109 if (*sbr != NUL) |
6503 | 1110 { |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1111 if (size + sbrlen + numberwidth > (colnr_T)wp->w_width) |
6503 | 1112 { |
16819
91619e48e1a7
patch 8.1.1411: Coverity warns for divide by zero
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1113 // calculate effective window width |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1114 int width = (colnr_T)wp->w_width - sbrlen - numberwidth; |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1115 int prev_width = col |
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1116 ? ((colnr_T)wp->w_width - (sbrlen + col)) : 0; |
16819
91619e48e1a7
patch 8.1.1411: Coverity warns for divide by zero
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1117 |
91619e48e1a7
patch 8.1.1411: Coverity warns for divide by zero
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1118 if (width <= 0) |
91619e48e1a7
patch 8.1.1411: Coverity warns for divide by zero
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1119 width = (colnr_T)1; |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1120 added += ((size - prev_width) / width) * vim_strsize(sbr); |
6503 | 1121 if ((size - prev_width) % width) |
16819
91619e48e1a7
patch 8.1.1411: Coverity warns for divide by zero
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
1122 // wrapped, add another length of 'sbr' |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1123 added += vim_strsize(sbr); |
6503 | 1124 } |
1125 else | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1126 added += vim_strsize(sbr); |
6503 | 1127 } |
5995 | 1128 if (wp->w_p_bri) |
1129 added += get_breakindent_win(wp, line); | |
1130 | |
6160 | 1131 size += added; |
7 | 1132 if (col != 0) |
1133 added = 0; | |
1134 } | |
1135 } | |
1136 if (headp != NULL) | |
1137 *headp = added + mb_added; | |
1138 return size; | |
1139 #endif | |
1140 } | |
1141 | |
1142 /* | |
1143 * Like win_lbr_chartabsize(), except that we know 'linebreak' is off and | |
1144 * 'wrap' is on. This means we need to check for a double-byte character that | |
1145 * doesn't fit at the end of the screen line. | |
1146 */ | |
1147 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1148 win_nolbr_chartabsize( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1149 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1150 char_u *s, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1151 colnr_T col, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1152 int *headp) |
7 | 1153 { |
1154 int n; | |
1155 | |
1156 if (*s == TAB && (!wp->w_p_list || lcs_tab1)) | |
1157 { | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1158 # ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1159 return tabstop_padding(col, wp->w_buffer->b_p_ts, |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1160 wp->w_buffer->b_p_vts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1161 # else |
7 | 1162 n = wp->w_buffer->b_p_ts; |
1163 return (int)(n - (col % n)); | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1164 # endif |
7 | 1165 } |
1166 n = ptr2cells(s); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1167 // Add one cell for a double-width character in the last column of the |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1168 // window, displayed with a ">". |
7 | 1169 if (n == 2 && MB_BYTE2LEN(*s) > 1 && in_win_border(wp, col)) |
1170 { | |
1171 if (headp != NULL) | |
1172 *headp = 1; | |
1173 return 3; | |
1174 } | |
1175 return n; | |
1176 } | |
1177 | |
1178 /* | |
1179 * Return TRUE if virtual column "vcol" is in the rightmost column of window | |
1180 * "wp". | |
1181 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
16819
diff
changeset
|
1182 static int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1183 in_win_border(win_T *wp, colnr_T vcol) |
7 | 1184 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1185 int width1; // width of first line (after line number) |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1186 int width2; // width of further lines |
7 | 1187 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1188 if (wp->w_width == 0) // there is no border |
7 | 1189 return FALSE; |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1190 width1 = wp->w_width - win_col_off(wp); |
1869 | 1191 if ((int)vcol < width1 - 1) |
7 | 1192 return FALSE; |
1869 | 1193 if ((int)vcol == width1 - 1) |
7 | 1194 return TRUE; |
1195 width2 = width1 + win_col_off2(wp); | |
1970 | 1196 if (width2 <= 0) |
1197 return FALSE; | |
7 | 1198 return ((vcol - width1) % width2 == width2 - 1); |
1199 } | |
1200 | |
1201 /* | |
1202 * Get virtual column number of pos. | |
1203 * start: on the first position of this character (TAB, ctrl) | |
1204 * cursor: where the cursor is on this character (first char, except for TAB) | |
1205 * end: on the last position of this character (TAB, ctrl) | |
1206 * | |
1207 * This is used very often, keep it fast! | |
1208 */ | |
1209 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1210 getvcol( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1211 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1212 pos_T *pos, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1213 colnr_T *start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1214 colnr_T *cursor, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1215 colnr_T *end) |
7 | 1216 { |
1217 colnr_T vcol; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1218 char_u *ptr; // points to current char |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1219 char_u *posptr; // points to char at pos->col |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1220 char_u *line; // start of the line |
7 | 1221 int incr; |
1222 int head; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1223 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1224 int *vts = wp->w_buffer->b_p_vts_array; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1225 #endif |
7 | 1226 int ts = wp->w_buffer->b_p_ts; |
1227 int c; | |
1228 | |
1229 vcol = 0; | |
5995 | 1230 line = ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE); |
2108
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
1979
diff
changeset
|
1231 if (pos->col == MAXCOL) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1232 posptr = NULL; // continue until the NUL |
2108
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
1979
diff
changeset
|
1233 else |
10720
44a1661f4cfa
patch 8.0.0250: virtcol() does not work well for multi-byte characters
Christian Brabandt <cb@256bit.org>
parents:
10658
diff
changeset
|
1234 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1235 // Special check for an empty line, which can happen on exit, when |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1236 // ml_get_buf() always returns an empty string. |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10724
diff
changeset
|
1237 if (*ptr == NUL) |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10724
diff
changeset
|
1238 pos->col = 0; |
2108
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
1979
diff
changeset
|
1239 posptr = ptr + pos->col; |
10720
44a1661f4cfa
patch 8.0.0250: virtcol() does not work well for multi-byte characters
Christian Brabandt <cb@256bit.org>
parents:
10658
diff
changeset
|
1240 if (has_mbyte) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1241 // always start on the first byte |
10720
44a1661f4cfa
patch 8.0.0250: virtcol() does not work well for multi-byte characters
Christian Brabandt <cb@256bit.org>
parents:
10658
diff
changeset
|
1242 posptr -= (*mb_head_off)(line, posptr); |
44a1661f4cfa
patch 8.0.0250: virtcol() does not work well for multi-byte characters
Christian Brabandt <cb@256bit.org>
parents:
10658
diff
changeset
|
1243 } |
7 | 1244 |
1245 /* | |
1246 * This function is used very often, do some speed optimizations. | |
5995 | 1247 * When 'list', 'linebreak', 'showbreak' and 'breakindent' are not set |
1248 * use a simple loop. | |
7 | 1249 * Also use this when 'list' is set but tabs take their normal size. |
1250 */ | |
1251 if ((!wp->w_p_list || lcs_tab1 != NUL) | |
1252 #ifdef FEAT_LINEBREAK | |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18082
diff
changeset
|
1253 && !wp->w_p_lbr && *get_showbreak_value(wp) == NUL && !wp->w_p_bri |
7 | 1254 #endif |
1255 ) | |
1256 { | |
1257 for (;;) | |
1258 { | |
1259 head = 0; | |
1260 c = *ptr; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1261 // make sure we don't go past the end of the line |
7 | 1262 if (c == NUL) |
1263 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1264 incr = 1; // NUL at end of line only takes one column |
7 | 1265 break; |
1266 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1267 // A tab gets expanded, depending on the current column |
7 | 1268 if (c == TAB) |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1269 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1270 incr = tabstop_padding(vcol, ts, vts); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1271 #else |
7 | 1272 incr = ts - (vcol % ts); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14061
diff
changeset
|
1273 #endif |
7 | 1274 else |
1275 { | |
1276 if (has_mbyte) | |
1277 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1278 // For utf-8, if the byte is >= 0x80, need to look at |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1279 // further bytes to find the cell width. |
7 | 1280 if (enc_utf8 && c >= 0x80) |
1281 incr = utf_ptr2cells(ptr); | |
1282 else | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1283 incr = g_chartab[c] & CT_CELL_MASK; |
7 | 1284 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1285 // If a double-cell char doesn't fit at the end of a line |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1286 // it wraps to the next line, it's like this char is three |
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1287 // cells wide. |
1546 | 1288 if (incr == 2 && wp->w_p_wrap && MB_BYTE2LEN(*ptr) > 1 |
1289 && in_win_border(wp, vcol)) | |
7 | 1290 { |
1291 ++incr; | |
1292 head = 1; | |
1293 } | |
1294 } | |
1295 else | |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1296 incr = g_chartab[c] & CT_CELL_MASK; |
7 | 1297 } |
1298 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1299 if (posptr != NULL && ptr >= posptr) // character at pos->col |
7 | 1300 break; |
1301 | |
1302 vcol += incr; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1303 MB_PTR_ADV(ptr); |
7 | 1304 } |
1305 } | |
1306 else | |
1307 { | |
1308 for (;;) | |
1309 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1310 // A tab gets expanded, depending on the current column |
7 | 1311 head = 0; |
5995 | 1312 incr = win_lbr_chartabsize(wp, line, ptr, vcol, &head); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1313 // make sure we don't go past the end of the line |
7 | 1314 if (*ptr == NUL) |
1315 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1316 incr = 1; // NUL at end of line only takes one column |
7 | 1317 break; |
1318 } | |
1319 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1320 if (posptr != NULL && ptr >= posptr) // character at pos->col |
7 | 1321 break; |
1322 | |
1323 vcol += incr; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1324 MB_PTR_ADV(ptr); |
7 | 1325 } |
1326 } | |
1327 if (start != NULL) | |
1328 *start = vcol + head; | |
1329 if (end != NULL) | |
1330 *end = vcol + incr - 1; | |
1331 if (cursor != NULL) | |
1332 { | |
1333 if (*ptr == TAB | |
1334 && (State & NORMAL) | |
1335 && !wp->w_p_list | |
1336 && !virtual_active() | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1337 && !(VIsual_active |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1338 && (*p_sel == 'e' || LTOREQ_POS(*pos, VIsual))) |
7 | 1339 ) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1340 *cursor = vcol + incr - 1; // cursor at end |
7 | 1341 else |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1342 *cursor = vcol + head; // cursor at start |
7 | 1343 } |
1344 } | |
1345 | |
1346 /* | |
1347 * Get virtual cursor column in the current window, pretending 'list' is off. | |
1348 */ | |
1349 colnr_T | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1350 getvcol_nolist(pos_T *posp) |
7 | 1351 { |
1352 int list_save = curwin->w_p_list; | |
1353 colnr_T vcol; | |
1354 | |
1355 curwin->w_p_list = FALSE; | |
13786
0fa21ba32e21
patch 8.0.1765: CTRL-G j in Insert mode is incorrect when 'virtualedit' set
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
1356 if (posp->coladd) |
0fa21ba32e21
patch 8.0.1765: CTRL-G j in Insert mode is incorrect when 'virtualedit' set
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
1357 getvvcol(curwin, posp, NULL, &vcol, NULL); |
0fa21ba32e21
patch 8.0.1765: CTRL-G j in Insert mode is incorrect when 'virtualedit' set
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
1358 else |
0fa21ba32e21
patch 8.0.1765: CTRL-G j in Insert mode is incorrect when 'virtualedit' set
Christian Brabandt <cb@256bit.org>
parents:
13553
diff
changeset
|
1359 getvcol(curwin, posp, NULL, &vcol, NULL); |
7 | 1360 curwin->w_p_list = list_save; |
1361 return vcol; | |
1362 } | |
1363 | |
1364 /* | |
1365 * Get virtual column in virtual mode. | |
1366 */ | |
1367 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1368 getvvcol( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1369 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1370 pos_T *pos, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1371 colnr_T *start, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1372 colnr_T *cursor, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1373 colnr_T *end) |
7 | 1374 { |
1375 colnr_T col; | |
1376 colnr_T coladd; | |
1377 colnr_T endadd; | |
1378 char_u *ptr; | |
1379 | |
1380 if (virtual_active()) | |
1381 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1382 // For virtual mode, only want one value |
7 | 1383 getvcol(wp, pos, &col, NULL, NULL); |
1384 | |
1385 coladd = pos->coladd; | |
1386 endadd = 0; | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1387 // Cannot put the cursor on part of a wide character. |
7 | 1388 ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE); |
1869 | 1389 if (pos->col < (colnr_T)STRLEN(ptr)) |
7 | 1390 { |
1391 int c = (*mb_ptr2char)(ptr + pos->col); | |
1392 | |
1393 if (c != TAB && vim_isprintc(c)) | |
1394 { | |
1869 | 1395 endadd = (colnr_T)(char2cells(c) - 1); |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1396 if (coladd > endadd) // past end of line |
557 | 1397 endadd = 0; |
7 | 1398 else |
1399 coladd = 0; | |
1400 } | |
1401 } | |
1402 col += coladd; | |
1403 if (start != NULL) | |
1404 *start = col; | |
1405 if (cursor != NULL) | |
1406 *cursor = col; | |
1407 if (end != NULL) | |
1408 *end = col + endadd; | |
1409 } | |
1410 else | |
1411 getvcol(wp, pos, start, cursor, end); | |
1412 } | |
1413 | |
1414 /* | |
1415 * Get the leftmost and rightmost virtual column of pos1 and pos2. | |
1416 * Used for Visual block mode. | |
1417 */ | |
1418 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1419 getvcols( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1420 win_T *wp, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1421 pos_T *pos1, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1422 pos_T *pos2, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1423 colnr_T *left, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1424 colnr_T *right) |
7 | 1425 { |
1426 colnr_T from1, from2, to1, to2; | |
1427 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1428 if (LT_POSP(pos1, pos2)) |
7 | 1429 { |
1430 getvvcol(wp, pos1, &from1, NULL, &to1); | |
1431 getvvcol(wp, pos2, &from2, NULL, &to2); | |
1432 } | |
1433 else | |
1434 { | |
1435 getvvcol(wp, pos2, &from1, NULL, &to1); | |
1436 getvvcol(wp, pos1, &from2, NULL, &to2); | |
1437 } | |
1438 if (from2 < from1) | |
1439 *left = from2; | |
1440 else | |
1441 *left = from1; | |
1442 if (to2 > to1) | |
1443 { | |
1444 if (*p_sel == 'e' && from2 - 1 >= to1) | |
1445 *right = from2 - 1; | |
1446 else | |
1447 *right = to2; | |
1448 } | |
1449 else | |
1450 *right = to1; | |
1451 } | |
1452 | |
1453 /* | |
1454 * skipwhite: skip over ' ' and '\t'. | |
1455 */ | |
1456 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1457 skipwhite(char_u *q) |
7 | 1458 { |
1687 | 1459 char_u *p = q; |
1460 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1461 while (VIM_ISWHITE(*p)) // skip to next non-white |
7 | 1462 ++p; |
1463 return p; | |
1464 } | |
1465 | |
1466 /* | |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1467 * getwhitecols: return the number of whitespace |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1468 * columns (bytes) at the start of a given line |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1469 */ |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1470 int |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1471 getwhitecols_curline() |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1472 { |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1473 return getwhitecols(ml_get_curline()); |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1474 } |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1475 |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1476 int |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1477 getwhitecols(char_u *p) |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1478 { |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1479 return skipwhite(p) - p; |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1480 } |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1481 |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11337
diff
changeset
|
1482 /* |
293 | 1483 * skip over digits |
7 | 1484 */ |
1485 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1486 skipdigits(char_u *q) |
7 | 1487 { |
1687 | 1488 char_u *p = q; |
1489 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1490 while (VIM_ISDIGIT(*p)) // skip to next non-digit |
7 | 1491 ++p; |
1492 return p; | |
1493 } | |
1494 | |
741 | 1495 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) || defined(PROTO) |
301 | 1496 /* |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1497 * skip over binary digits |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1498 */ |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1499 char_u * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1500 skipbin(char_u *q) |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1501 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1502 char_u *p = q; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1503 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1504 while (vim_isbdigit(*p)) // skip to next non-digit |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1505 ++p; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1506 return p; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1507 } |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1508 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1509 /* |
301 | 1510 * skip over digits and hex characters |
1511 */ | |
1512 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1513 skiphex(char_u *q) |
301 | 1514 { |
1687 | 1515 char_u *p = q; |
1516 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1517 while (vim_isxdigit(*p)) // skip to next non-digit |
301 | 1518 ++p; |
1519 return p; | |
1520 } | |
1521 #endif | |
1522 | |
293 | 1523 /* |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1524 * skip to bin digit (or NUL after the string) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1525 */ |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1526 char_u * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1527 skiptobin(char_u *q) |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1528 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1529 char_u *p = q; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1530 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1531 while (*p != NUL && !vim_isbdigit(*p)) // skip to next digit |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1532 ++p; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1533 return p; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1534 } |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1535 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1536 /* |
293 | 1537 * skip to digit (or NUL after the string) |
1538 */ | |
1539 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1540 skiptodigit(char_u *q) |
293 | 1541 { |
1687 | 1542 char_u *p = q; |
1543 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1544 while (*p != NUL && !VIM_ISDIGIT(*p)) // skip to next digit |
293 | 1545 ++p; |
1546 return p; | |
1547 } | |
1548 | |
1549 /* | |
1550 * skip to hex character (or NUL after the string) | |
1551 */ | |
1552 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1553 skiptohex(char_u *q) |
293 | 1554 { |
1687 | 1555 char_u *p = q; |
1556 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1557 while (*p != NUL && !vim_isxdigit(*p)) // skip to next digit |
293 | 1558 ++p; |
1559 return p; | |
1560 } | |
1561 | |
7 | 1562 /* |
1563 * Variant of isdigit() that can handle characters > 0x100. | |
1564 * We don't use isdigit() here, because on some systems it also considers | |
1565 * superscript 1 to be a digit. | |
1566 * Use the VIM_ISDIGIT() macro for simple arguments. | |
1567 */ | |
1568 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1569 vim_isdigit(int c) |
7 | 1570 { |
1571 return (c >= '0' && c <= '9'); | |
1572 } | |
1573 | |
1574 /* | |
1575 * Variant of isxdigit() that can handle characters > 0x100. | |
1576 * We don't use isxdigit() here, because on some systems it also considers | |
1577 * superscript 1 to be a digit. | |
1578 */ | |
1579 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1580 vim_isxdigit(int c) |
7 | 1581 { |
1582 return (c >= '0' && c <= '9') | |
1583 || (c >= 'a' && c <= 'f') | |
1584 || (c >= 'A' && c <= 'F'); | |
1585 } | |
1586 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1587 /* |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1588 * Corollary of vim_isdigit and vim_isxdigit() that can handle |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1589 * characters > 0x100. |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1590 */ |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1591 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1592 vim_isbdigit(int c) |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1593 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1594 return (c == '0' || c == '1'); |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1595 } |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1596 |
492 | 1597 /* |
1598 * Vim's own character class functions. These exist because many library | |
1599 * islower()/toupper() etc. do not work properly: they crash when used with | |
1600 * invalid values or can't handle latin1 when the locale is C. | |
1601 * Speed is most important here. | |
1602 */ | |
1603 #define LATIN1LOWER 'l' | |
1604 #define LATIN1UPPER 'U' | |
1605 | |
497 | 1606 static char_u latin1flags[257] = " UUUUUUUUUUUUUUUUUUUUUUUUUU llllllllllllllllllllllllll UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll"; |
3533 | 1607 static char_u latin1upper[257] = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xf7\xd8\xd9\xda\xdb\xdc\xdd\xde\xff"; |
1608 static char_u latin1lower[257] = " !\"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xd7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"; | |
492 | 1609 |
1610 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1611 vim_islower(int c) |
492 | 1612 { |
1613 if (c <= '@') | |
1614 return FALSE; | |
1615 if (c >= 0x80) | |
1616 { | |
1617 if (enc_utf8) | |
1618 return utf_islower(c); | |
1619 if (c >= 0x100) | |
1620 { | |
1621 #ifdef HAVE_ISWLOWER | |
1622 if (has_mbyte) | |
1623 return iswlower(c); | |
1624 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1625 // islower() can't handle these chars and may crash |
492 | 1626 return FALSE; |
1627 } | |
1628 if (enc_latin1like) | |
1629 return (latin1flags[c] & LATIN1LOWER) == LATIN1LOWER; | |
1630 } | |
1631 return islower(c); | |
1632 } | |
1633 | |
1634 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1635 vim_isupper(int c) |
492 | 1636 { |
1637 if (c <= '@') | |
1638 return FALSE; | |
1639 if (c >= 0x80) | |
1640 { | |
1641 if (enc_utf8) | |
1642 return utf_isupper(c); | |
1643 if (c >= 0x100) | |
1644 { | |
1645 #ifdef HAVE_ISWUPPER | |
1646 if (has_mbyte) | |
1647 return iswupper(c); | |
1648 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1649 // islower() can't handle these chars and may crash |
492 | 1650 return FALSE; |
1651 } | |
1652 if (enc_latin1like) | |
1653 return (latin1flags[c] & LATIN1UPPER) == LATIN1UPPER; | |
1654 } | |
1655 return isupper(c); | |
1656 } | |
1657 | |
1658 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1659 vim_toupper(int c) |
492 | 1660 { |
1661 if (c <= '@') | |
1662 return c; | |
11333
fef09eb74832
patch 8.0.0552: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
1663 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII)) |
492 | 1664 { |
1665 if (enc_utf8) | |
1666 return utf_toupper(c); | |
1667 if (c >= 0x100) | |
1668 { | |
1669 #ifdef HAVE_TOWUPPER | |
1670 if (has_mbyte) | |
1671 return towupper(c); | |
1672 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1673 // toupper() can't handle these chars and may crash |
492 | 1674 return c; |
1675 } | |
1676 if (enc_latin1like) | |
1677 return latin1upper[c]; | |
1678 } | |
11337
f0fbebf19b80
patch 8.0.0554: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11333
diff
changeset
|
1679 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII)) |
f0fbebf19b80
patch 8.0.0554: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11333
diff
changeset
|
1680 return TOUPPER_ASC(c); |
492 | 1681 return TOUPPER_LOC(c); |
1682 } | |
1683 | |
1684 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1685 vim_tolower(int c) |
492 | 1686 { |
1687 if (c <= '@') | |
1688 return c; | |
11333
fef09eb74832
patch 8.0.0552: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11133
diff
changeset
|
1689 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII)) |
492 | 1690 { |
1691 if (enc_utf8) | |
1692 return utf_tolower(c); | |
1693 if (c >= 0x100) | |
1694 { | |
1695 #ifdef HAVE_TOWLOWER | |
1696 if (has_mbyte) | |
1697 return towlower(c); | |
1698 #endif | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1699 // tolower() can't handle these chars and may crash |
492 | 1700 return c; |
1701 } | |
1702 if (enc_latin1like) | |
1703 return latin1lower[c]; | |
1704 } | |
11337
f0fbebf19b80
patch 8.0.0554: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11333
diff
changeset
|
1705 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII)) |
f0fbebf19b80
patch 8.0.0554: toupper and tolower don't work properly for Turkish
Christian Brabandt <cb@256bit.org>
parents:
11333
diff
changeset
|
1706 return TOLOWER_ASC(c); |
492 | 1707 return TOLOWER_LOC(c); |
1708 } | |
1709 | |
7 | 1710 /* |
1711 * skiptowhite: skip over text until ' ' or '\t' or NUL. | |
1712 */ | |
1713 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1714 skiptowhite(char_u *p) |
7 | 1715 { |
1716 while (*p != ' ' && *p != '\t' && *p != NUL) | |
1717 ++p; | |
1718 return p; | |
1719 } | |
1720 | |
1721 /* | |
1722 * skiptowhite_esc: Like skiptowhite(), but also skip escaped chars | |
1723 */ | |
1724 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1725 skiptowhite_esc(char_u *p) |
7 | 1726 { |
1727 while (*p != ' ' && *p != '\t' && *p != NUL) | |
1728 { | |
1729 if ((*p == '\\' || *p == Ctrl_V) && *(p + 1) != NUL) | |
1730 ++p; | |
1731 ++p; | |
1732 } | |
1733 return p; | |
1734 } | |
1735 | |
1736 /* | |
1737 * Getdigits: Get a number from a string and skip over it. | |
1738 * Note: the argument is a pointer to a char_u pointer! | |
1739 */ | |
1740 long | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1741 getdigits(char_u **pp) |
7 | 1742 { |
1743 char_u *p; | |
1744 long retval; | |
1745 | |
1746 p = *pp; | |
1747 retval = atol((char *)p); | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1748 if (*p == '-') // skip negative sign |
7 | 1749 ++p; |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1750 p = skipdigits(p); // skip to next non-digit |
7 | 1751 *pp = p; |
1752 return retval; | |
1753 } | |
1754 | |
1755 /* | |
1756 * Return TRUE if "lbuf" is empty or only contains blanks. | |
1757 */ | |
1758 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1759 vim_isblankline(char_u *lbuf) |
7 | 1760 { |
1761 char_u *p; | |
1762 | |
1763 p = skipwhite(lbuf); | |
1764 return (*p == NUL || *p == '\r' || *p == '\n'); | |
1765 } | |
1766 | |
1767 /* | |
1768 * Convert a string into a long and/or unsigned long, taking care of | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1769 * hexadecimal, octal, and binary numbers. Accepts a '-' sign. |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1770 * If "prep" is not NULL, returns a flag to indicate the type of the number: |
7 | 1771 * 0 decimal |
1772 * '0' octal | |
20665
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1773 * 'O' octal |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1774 * 'o' octal |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1775 * 'B' bin |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1776 * 'b' bin |
7 | 1777 * 'X' hex |
1778 * 'x' hex | |
1779 * If "len" is not NULL, the length of the number in characters is returned. | |
1780 * If "nptr" is not NULL, the signed result is returned in it. | |
1781 * If "unptr" is not NULL, the unsigned result is returned in it. | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1782 * If "what" contains STR2NR_BIN recognize binary numbers |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1783 * If "what" contains STR2NR_OCT recognize octal numbers |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1784 * If "what" contains STR2NR_HEX recognize hex numbers |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1785 * If "what" contains STR2NR_FORCE always assume bin/oct/hex. |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1786 * If "what" contains STR2NR_QUOTE ignore embedded single quotes |
12704
ee5f3f5d3c55
patch 8.0.1230: CTRL-A in Visual mode uses character after selection
Christian Brabandt <cb@256bit.org>
parents:
12702
diff
changeset
|
1787 * If maxlen > 0, check at a maximum maxlen chars. |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1788 * If strict is TRUE, check the number strictly. return *len = 0 if fail. |
7 | 1789 */ |
1790 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1791 vim_str2nr( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1792 char_u *start, |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1793 int *prep, // return: type of number 0 = decimal, 'x' |
20665
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1794 // or 'X' is hex, '0', 'o' or 'O' is octal, |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1795 // 'b' or 'B' is bin |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1796 int *len, // return: detected length of number |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1797 int what, // what numbers to recognize |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1798 varnumber_T *nptr, // return: signed result |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1799 uvarnumber_T *unptr, // return: unsigned result |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1800 int maxlen, // max length of string to check |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1801 int strict) // check strictly |
7 | 1802 { |
1803 char_u *ptr = start; | |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1804 int pre = 0; // default is decimal |
7 | 1805 int negative = FALSE; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1806 uvarnumber_T un = 0; |
39 | 1807 int n; |
7 | 1808 |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1809 if (len != NULL) |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1810 *len = 0; |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1811 |
7 | 1812 if (ptr[0] == '-') |
1813 { | |
1814 negative = TRUE; | |
1815 ++ptr; | |
1816 } | |
1817 | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1818 // Recognize hex, octal, and bin. |
6927 | 1819 if (ptr[0] == '0' && ptr[1] != '8' && ptr[1] != '9' |
1820 && (maxlen == 0 || maxlen > 1)) | |
7 | 1821 { |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1822 pre = ptr[1]; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1823 if ((what & STR2NR_HEX) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1824 && (pre == 'X' || pre == 'x') && vim_isxdigit(ptr[2]) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1825 && (maxlen == 0 || maxlen > 2)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1826 // hexadecimal |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1827 ptr += 2; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1828 else if ((what & STR2NR_BIN) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1829 && (pre == 'B' || pre == 'b') && vim_isbdigit(ptr[2]) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1830 && (maxlen == 0 || maxlen > 2)) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1831 // binary |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1832 ptr += 2; |
20665
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1833 else if ((what & STR2NR_OOCT) |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1834 && (pre == 'O' || pre == 'o') && vim_isbdigit(ptr[2]) |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1835 && (maxlen == 0 || maxlen > 2)) |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1836 // octal with prefix "0o" |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1837 ptr += 2; |
7 | 1838 else |
1839 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1840 // decimal or octal, default is decimal |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1841 pre = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1842 if (what & STR2NR_OCT) |
39 | 1843 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1844 // Don't interpret "0", "08" or "0129" as octal. |
12704
ee5f3f5d3c55
patch 8.0.1230: CTRL-A in Visual mode uses character after selection
Christian Brabandt <cb@256bit.org>
parents:
12702
diff
changeset
|
1845 for (n = 1; n != maxlen && VIM_ISDIGIT(ptr[n]); ++n) |
39 | 1846 { |
1847 if (ptr[n] > '7') | |
1848 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1849 pre = 0; // can't be octal |
39 | 1850 break; |
1851 } | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1852 pre = '0'; // assume octal |
39 | 1853 } |
1854 } | |
7 | 1855 } |
1856 } | |
1857 | |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1858 // Do the conversion manually to avoid sscanf() quirks. |
6927 | 1859 n = 1; |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1860 if (pre == 'B' || pre == 'b' |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1861 || ((what & STR2NR_BIN) && (what & STR2NR_FORCE))) |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1862 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1863 // bin |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1864 if (pre != 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1865 n += 2; // skip over "0b" |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1866 while ('0' <= *ptr && *ptr <= '1') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1867 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1868 // avoid ubsan error for overflow |
14061
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1869 if (un <= UVARNUM_MAX / 2) |
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1870 un = 2 * un + (uvarnumber_T)(*ptr - '0'); |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1871 else |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1872 un = UVARNUM_MAX; |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1873 ++ptr; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1874 if (n++ == maxlen) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1875 break; |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1876 if ((what & STR2NR_QUOTE) && *ptr == '\'' |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1877 && '0' <= ptr[1] && ptr[1] <= '1') |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1878 { |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1879 ++ptr; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1880 if (n++ == maxlen) |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1881 break; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1882 } |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1883 } |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1884 } |
20665
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1885 else if (pre == 'O' || pre == 'o' || |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1886 pre == '0' || ((what & STR2NR_OCT) && (what & STR2NR_FORCE))) |
7 | 1887 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1888 // octal |
20665
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1889 if (pre != 0 && pre != '0') |
6ff992bf4c82
patch 8.2.0886: cannot use octal numbers in scriptversion 4
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
1890 n += 2; // skip over "0o" |
293 | 1891 while ('0' <= *ptr && *ptr <= '7') |
7 | 1892 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1893 // avoid ubsan error for overflow |
14061
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1894 if (un <= UVARNUM_MAX / 8) |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1895 un = 8 * un + (uvarnumber_T)(*ptr - '0'); |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1896 else |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1897 un = UVARNUM_MAX; |
293 | 1898 ++ptr; |
6927 | 1899 if (n++ == maxlen) |
1900 break; | |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1901 if ((what & STR2NR_QUOTE) && *ptr == '\'' |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1902 && '0' <= ptr[1] && ptr[1] <= '7') |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1903 { |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1904 ++ptr; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1905 if (n++ == maxlen) |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1906 break; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1907 } |
7 | 1908 } |
293 | 1909 } |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1910 else if (pre != 0 || ((what & STR2NR_HEX) && (what & STR2NR_FORCE))) |
293 | 1911 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1912 // hex |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1913 if (pre != 0) |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1914 n += 2; // skip over "0x" |
293 | 1915 while (vim_isxdigit(*ptr)) |
7 | 1916 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1917 // avoid ubsan error for overflow |
14061
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1918 if (un <= UVARNUM_MAX / 16) |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1919 un = 16 * un + (uvarnumber_T)hex2nr(*ptr); |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1920 else |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1921 un = UVARNUM_MAX; |
293 | 1922 ++ptr; |
6927 | 1923 if (n++ == maxlen) |
1924 break; | |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1925 if ((what & STR2NR_QUOTE) && *ptr == '\'' && vim_isxdigit(ptr[1])) |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1926 { |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1927 ++ptr; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1928 if (n++ == maxlen) |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1929 break; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1930 } |
7 | 1931 } |
1932 } | |
1933 else | |
1934 { | |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1935 // decimal |
7 | 1936 while (VIM_ISDIGIT(*ptr)) |
1937 { | |
14061
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1938 uvarnumber_T digit = (uvarnumber_T)(*ptr - '0'); |
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1939 |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1940 // avoid ubsan error for overflow |
14061
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1941 if (un < UVARNUM_MAX / 10 |
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1942 || (un == UVARNUM_MAX / 10 && digit <= UVARNUM_MAX % 10)) |
47b2db8a5709
patch 8.1.0048: vim_str2nr() does not handle numbers close to the maximum
Christian Brabandt <cb@256bit.org>
parents:
13786
diff
changeset
|
1943 un = 10 * un + digit; |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1944 else |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1945 un = UVARNUM_MAX; |
7 | 1946 ++ptr; |
6927 | 1947 if (n++ == maxlen) |
1948 break; | |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1949 if ((what & STR2NR_QUOTE) && *ptr == '\'' && VIM_ISDIGIT(ptr[1])) |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1950 { |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1951 ++ptr; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1952 if (n++ == maxlen) |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1953 break; |
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1954 } |
7 | 1955 } |
1956 } | |
18082
1c7a91cf2356
patch 8.1.2036: the str2nr() tests fail
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1957 |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
18757
diff
changeset
|
1958 // Check for an alphanumeric character immediately following, that is |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1959 // most likely a typo. |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1960 if (strict && n - 1 != maxlen && ASCII_ISALNUM(*ptr)) |
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1961 return; |
7 | 1962 |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1963 if (prep != NULL) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1964 *prep = pre; |
7 | 1965 if (len != NULL) |
1966 *len = (int)(ptr - start); | |
1967 if (nptr != NULL) | |
16 | 1968 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1969 if (negative) // account for leading '-' for decimal numbers |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1970 { |
18757
c469e1930456
patch 8.1.2368: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
1971 // avoid ubsan error for overflow |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1972 if (un > VARNUM_MAX) |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1973 *nptr = VARNUM_MIN; |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1974 else |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1975 *nptr = -(varnumber_T)un; |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1976 } |
16 | 1977 else |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1978 { |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1979 if (un > VARNUM_MAX) |
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1980 un = VARNUM_MAX; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1981 *nptr = (varnumber_T)un; |
10658
77d66e9ac0ab
patch 8.0.0219: ubsan reports errors for overflow
Christian Brabandt <cb@256bit.org>
parents:
10549
diff
changeset
|
1982 } |
16 | 1983 } |
7 | 1984 if (unptr != NULL) |
1985 *unptr = un; | |
1986 } | |
1987 | |
1988 /* | |
1989 * Return the value of a single hex character. | |
1990 * Only valid when the argument is '0' - '9', 'A' - 'F' or 'a' - 'f'. | |
1991 */ | |
1992 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1993 hex2nr(int c) |
7 | 1994 { |
1995 if (c >= 'a' && c <= 'f') | |
1996 return c - 'a' + 10; | |
1997 if (c >= 'A' && c <= 'F') | |
1998 return c - 'A' + 10; | |
1999 return c - '0'; | |
2000 } | |
2001 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2002 #if defined(FEAT_TERMRESPONSE) || defined(FEAT_GUI_GTK) || defined(PROTO) |
7 | 2003 /* |
2004 * Convert two hex characters to a byte. | |
2005 * Return -1 if one of the characters is not hex. | |
2006 */ | |
2007 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2008 hexhex2nr(char_u *p) |
7 | 2009 { |
2010 if (!vim_isxdigit(p[0]) || !vim_isxdigit(p[1])) | |
2011 return -1; | |
2012 return (hex2nr(p[0]) << 4) + hex2nr(p[1]); | |
2013 } | |
2014 #endif | |
2015 | |
2016 /* | |
2017 * Return TRUE if "str" starts with a backslash that should be removed. | |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
2018 * For MS-DOS, MSWIN and OS/2 this is only done when the character after the |
7 | 2019 * backslash is not a normal file name character. |
2020 * '$' is a valid file name character, we don't remove the backslash before | |
2021 * it. This means it is not possible to use an environment variable after a | |
2022 * backslash. "C:\$VIM\doc" is taken literally, only "$VIM\doc" works. | |
2023 * Although "\ name" is valid, the backslash in "Program\ files" must be | |
2024 * removed. Assume a file name doesn't start with a space. | |
2025 * For multi-byte names, never remove a backslash before a non-ascii | |
2026 * character, assume that all multi-byte characters are valid file name | |
2027 * characters. | |
2028 */ | |
2029 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2030 rem_backslash(char_u *str) |
7 | 2031 { |
2032 #ifdef BACKSLASH_IN_FILENAME | |
2033 return (str[0] == '\\' | |
2034 && str[1] < 0x80 | |
2035 && (str[1] == ' ' | |
2036 || (str[1] != NUL | |
2037 && str[1] != '*' | |
2038 && str[1] != '?' | |
2039 && !vim_isfilec(str[1])))); | |
2040 #else | |
2041 return (str[0] == '\\' && str[1] != NUL); | |
2042 #endif | |
2043 } | |
2044 | |
2045 /* | |
2046 * Halve the number of backslashes in a file name argument. | |
2047 * For MS-DOS we only do this if the character after the backslash | |
2048 * is not a normal file character. | |
2049 */ | |
2050 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2051 backslash_halve(char_u *p) |
7 | 2052 { |
2053 for ( ; *p; ++p) | |
2054 if (rem_backslash(p)) | |
1621 | 2055 STRMOVE(p, p + 1); |
7 | 2056 } |
2057 | |
2058 /* | |
2059 * backslash_halve() plus save the result in allocated memory. | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
2060 * However, returns "p" when out of memory. |
7 | 2061 */ |
2062 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2063 backslash_halve_save(char_u *p) |
7 | 2064 { |
2065 char_u *res; | |
2066 | |
2067 res = vim_strsave(p); | |
2068 if (res == NULL) | |
2069 return p; | |
2070 backslash_halve(res); | |
2071 return res; | |
2072 } | |
2073 | |
2074 #if (defined(EBCDIC) && defined(FEAT_POSTSCRIPT)) || defined(PROTO) | |
2075 /* | |
2076 * Table for EBCDIC to ASCII conversion unashamedly taken from xxd.c! | |
2077 * The first 64 entries have been added to map control characters defined in | |
2078 * ascii.h | |
2079 */ | |
2080 static char_u ebcdic2ascii_tab[256] = | |
2081 { | |
2082 0000, 0001, 0002, 0003, 0004, 0011, 0006, 0177, | |
2083 0010, 0011, 0012, 0013, 0014, 0015, 0016, 0017, | |
2084 0020, 0021, 0022, 0023, 0024, 0012, 0010, 0027, | |
2085 0030, 0031, 0032, 0033, 0033, 0035, 0036, 0037, | |
2086 0040, 0041, 0042, 0043, 0044, 0045, 0046, 0047, | |
2087 0050, 0051, 0052, 0053, 0054, 0055, 0056, 0057, | |
2088 0060, 0061, 0062, 0063, 0064, 0065, 0066, 0067, | |
2089 0070, 0071, 0072, 0073, 0074, 0075, 0076, 0077, | |
2090 0040, 0240, 0241, 0242, 0243, 0244, 0245, 0246, | |
2091 0247, 0250, 0325, 0056, 0074, 0050, 0053, 0174, | |
2092 0046, 0251, 0252, 0253, 0254, 0255, 0256, 0257, | |
2093 0260, 0261, 0041, 0044, 0052, 0051, 0073, 0176, | |
2094 0055, 0057, 0262, 0263, 0264, 0265, 0266, 0267, | |
2095 0270, 0271, 0313, 0054, 0045, 0137, 0076, 0077, | |
2096 0272, 0273, 0274, 0275, 0276, 0277, 0300, 0301, | |
2097 0302, 0140, 0072, 0043, 0100, 0047, 0075, 0042, | |
2098 0303, 0141, 0142, 0143, 0144, 0145, 0146, 0147, | |
2099 0150, 0151, 0304, 0305, 0306, 0307, 0310, 0311, | |
2100 0312, 0152, 0153, 0154, 0155, 0156, 0157, 0160, | |
2101 0161, 0162, 0136, 0314, 0315, 0316, 0317, 0320, | |
2102 0321, 0345, 0163, 0164, 0165, 0166, 0167, 0170, | |
2103 0171, 0172, 0322, 0323, 0324, 0133, 0326, 0327, | |
2104 0330, 0331, 0332, 0333, 0334, 0335, 0336, 0337, | |
2105 0340, 0341, 0342, 0343, 0344, 0135, 0346, 0347, | |
2106 0173, 0101, 0102, 0103, 0104, 0105, 0106, 0107, | |
2107 0110, 0111, 0350, 0351, 0352, 0353, 0354, 0355, | |
2108 0175, 0112, 0113, 0114, 0115, 0116, 0117, 0120, | |
2109 0121, 0122, 0356, 0357, 0360, 0361, 0362, 0363, | |
2110 0134, 0237, 0123, 0124, 0125, 0126, 0127, 0130, | |
2111 0131, 0132, 0364, 0365, 0366, 0367, 0370, 0371, | |
2112 0060, 0061, 0062, 0063, 0064, 0065, 0066, 0067, | |
2113 0070, 0071, 0372, 0373, 0374, 0375, 0376, 0377 | |
2114 }; | |
2115 | |
2116 /* | |
2117 * Convert a buffer worth of characters from EBCDIC to ASCII. Only useful if | |
2118 * wanting 7-bit ASCII characters out the other end. | |
2119 */ | |
2120 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2121 ebcdic2ascii(char_u *buffer, int len) |
7 | 2122 { |
2123 int i; | |
2124 | |
2125 for (i = 0; i < len; i++) | |
2126 buffer[i] = ebcdic2ascii_tab[buffer[i]]; | |
2127 } | |
2128 #endif |