blob: 7ed1fd1bd7f87c81bf18198c204559a8faa24ec9 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaar13505972019-01-24 15:04:48 +010012#if defined(HAVE_WCHAR_H)
Bram Moolenaarc667da52019-11-30 20:52:27 +010013# include <wchar.h> // for towupper() and towlower()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014#endif
15
Bram Moolenaar7f9969c2022-07-25 18:13:54 +010016static int win_nolbr_chartabsize(chartabsize_T *cts, int *headp);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010017static unsigned nr2hex(unsigned c);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018
19static int chartab_initialized = FALSE;
20
Bram Moolenaarc667da52019-11-30 20:52:27 +010021// b_chartab[] is an array of 32 bytes, each bit representing one of the
22// characters 0-255.
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#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
Bram Moolenaarc667da52019-11-30 20:52:27 +010027// table used below, see init_chartab() for an explanation
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010028static char_u g_chartab[256];
29
Bram Moolenaar071d4272004-06-13 20:20:40 +000030/*
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010031 * Flags for g_chartab[].
32 */
Bram Moolenaarc667da52019-11-30 20:52:27 +010033#define CT_CELL_MASK 0x07 // mask: nr of display cells (1, 2 or 4)
34#define CT_PRINT_CHAR 0x10 // flag: set for printable chars
35#define CT_ID_CHAR 0x20 // flag: set for ID chars
36#define CT_FNAME_CHAR 0x40 // flag: set for file name chars
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010037
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020038static int in_win_border(win_T *wp, colnr_T vcol);
39
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010040/*
41 * Fill g_chartab[]. Also fills curbuf->b_chartab[] with flags for keyword
Bram Moolenaar071d4272004-06-13 20:20:40 +000042 * characters for current buffer.
43 *
44 * Depends on the option settings 'iskeyword', 'isident', 'isfname',
45 * 'isprint' and 'encoding'.
46 *
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010047 * The index in g_chartab[] depends on 'encoding':
Bram Moolenaar071d4272004-06-13 20:20:40 +000048 * - 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 *
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010054 * The contents of g_chartab[]:
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 * - 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
Bram Moolenaar7454a062016-01-30 15:14:10 +010067init_chartab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000068{
69 return buf_init_chartab(curbuf, TRUE);
70}
71
72 int
Bram Moolenaar7454a062016-01-30 15:14:10 +010073buf_init_chartab(
74 buf_T *buf,
Bram Moolenaarc667da52019-11-30 20:52:27 +010075 int global) // FALSE: only set buf->b_chartab[]
Bram Moolenaar071d4272004-06-13 20:20:40 +000076{
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.
Bram Moolenaar071d4272004-06-13 20:20:40 +000090 */
91 c = 0;
92 while (c < ' ')
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010093 g_chartab[c++] = (dy_flags & DY_UHEX) ? 4 : 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 while (c <= '~')
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +010095 g_chartab[c++] = 1 + CT_PRINT_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +000096 while (c < 256)
97 {
Bram Moolenaarc667da52019-11-30 20:52:27 +010098 // UTF-8: bytes 0xa0 - 0xff are printable (latin1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000099 if (enc_utf8 && c >= 0xa0)
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100100 g_chartab[c++] = CT_PRINT_CHAR + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100101 // euc-jp characters starting with 0x8e are single width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102 else if (enc_dbcs == DBCS_JPNU && c == 0x8e)
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100103 g_chartab[c++] = CT_PRINT_CHAR + 1;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100104 // other double-byte chars can be printable AND double-width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105 else if (enc_dbcs != 0 && MB_BYTE2LEN(c) == 2)
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100106 g_chartab[c++] = CT_PRINT_CHAR + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107 else
Bram Moolenaarc667da52019-11-30 20:52:27 +0100108 // the rest is unprintable by default
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100109 g_chartab[c++] = (dy_flags & DY_UHEX) ? 4 : 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110 }
111
Bram Moolenaarc667da52019-11-30 20:52:27 +0100112 // Assume that every multi-byte char is a filename character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113 for (c = 1; c < 256; ++c)
114 if ((enc_dbcs != 0 && MB_BYTE2LEN(c) > 1)
115 || (enc_dbcs == DBCS_JPNU && c == 0x8e)
116 || (enc_utf8 && c >= 0xa0))
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100117 g_chartab[c] |= CT_FNAME_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118 }
119
120 /*
121 * Init word char flags all to FALSE
122 */
Bram Moolenaara80faa82020-04-12 19:37:17 +0200123 CLEAR_FIELD(buf->b_chartab);
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000124 if (enc_dbcs != 0)
125 for (c = 0; c < 256; ++c)
126 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100127 // double-byte characters are probably word characters
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000128 if (MB_BYTE2LEN(c) == 2)
129 SET_CHARTAB(buf, c);
130 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 /*
133 * In lisp mode the '-' character is included in keywords.
134 */
135 if (buf->b_p_lisp)
136 SET_CHARTAB(buf, '-');
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137
Bram Moolenaarc667da52019-11-30 20:52:27 +0100138 // Walk through the 'isident', 'iskeyword', 'isfname' and 'isprint'
139 // options Each option is a list of characters, character numbers or
140 // ranges, separated by commas, e.g.: "200-210,x,#-178,-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141 for (i = global ? 0 : 3; i <= 3; ++i)
142 {
143 if (i == 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100144 p = p_isi; // first round: 'isident'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 else if (i == 1)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100146 p = p_isp; // second round: 'isprint'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 else if (i == 2)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100148 p = p_isf; // third round: 'isfname'
149 else // i == 3
150 p = buf->b_p_isk; // fourth round: 'iskeyword'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
152 while (*p)
153 {
154 tilde = FALSE;
155 do_isalpha = FALSE;
156 if (*p == '^' && p[1] != NUL)
157 {
158 tilde = TRUE;
159 ++p;
160 }
161 if (VIM_ISDIGIT(*p))
162 c = getdigits(&p);
Dominique Pelle4781d6f2021-05-18 21:46:31 +0200163 else if (has_mbyte)
Bram Moolenaar183bb3e2009-09-11 12:02:34 +0000164 c = mb_ptr2char_adv(&p);
165 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 c = *p++;
167 c2 = -1;
168 if (*p == '-' && p[1] != NUL)
169 {
170 ++p;
171 if (VIM_ISDIGIT(*p))
172 c2 = getdigits(&p);
Dominique Pelle4781d6f2021-05-18 21:46:31 +0200173 else if (has_mbyte)
Bram Moolenaar2ac5e602009-11-03 15:04:20 +0000174 c2 = mb_ptr2char_adv(&p);
175 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 c2 = *p++;
177 }
Bram Moolenaar2ac5e602009-11-03 15:04:20 +0000178 if (c <= 0 || c >= 256 || (c2 < c && c2 != -1) || c2 >= 256
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179 || !(*p == NUL || *p == ','))
180 return FAIL;
181
Bram Moolenaarc667da52019-11-30 20:52:27 +0100182 if (c2 == -1) // not a range
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 {
184 /*
185 * A single '@' (not "@-@"):
186 * Decide on letters being ID/printable/keyword chars with
187 * standard function isalpha(). This takes care of locale for
188 * single-byte characters).
189 */
190 if (c == '@')
191 {
192 do_isalpha = TRUE;
193 c = 1;
194 c2 = 255;
195 }
196 else
197 c2 = c;
198 }
199 while (c <= c2)
200 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100201 // Use the MB_ functions here, because isalpha() doesn't
202 // work properly when 'encoding' is "latin1" and the locale is
203 // "C".
Bram Moolenaar14184a32019-02-16 15:10:30 +0100204 if (!do_isalpha || MB_ISLOWER(c) || MB_ISUPPER(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100206 if (i == 0) // (re)set ID flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 {
208 if (tilde)
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100209 g_chartab[c] &= ~CT_ID_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100211 g_chartab[c] |= CT_ID_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100213 else if (i == 1) // (re)set printable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 {
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000215 if ((c < ' ' || c > '~'
Bram Moolenaar13505972019-01-24 15:04:48 +0100216 // For double-byte we keep the cell width, so
217 // that we can detect it from the first byte.
218 ) && !(enc_dbcs && MB_BYTE2LEN(c) == 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 {
220 if (tilde)
221 {
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100222 g_chartab[c] = (g_chartab[c] & ~CT_CELL_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 + ((dy_flags & DY_UHEX) ? 4 : 2);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100224 g_chartab[c] &= ~CT_PRINT_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 }
226 else
227 {
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100228 g_chartab[c] = (g_chartab[c] & ~CT_CELL_MASK)
229 + 1;
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100230 g_chartab[c] |= CT_PRINT_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 }
232 }
233 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100234 else if (i == 2) // (re)set fname flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 {
236 if (tilde)
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100237 g_chartab[c] &= ~CT_FNAME_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100239 g_chartab[c] |= CT_FNAME_CHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100241 else // i == 3 (re)set keyword flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 {
243 if (tilde)
244 RESET_CHARTAB(buf, c);
245 else
246 SET_CHARTAB(buf, c);
247 }
248 }
249 ++c;
250 }
Bram Moolenaar309379f2013-02-06 16:26:26 +0100251
252 c = *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 p = skip_to_option_part(p);
Bram Moolenaar309379f2013-02-06 16:26:26 +0100254 if (c == ',' && *p == NUL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100255 // Trailing comma is not allowed.
Bram Moolenaar309379f2013-02-06 16:26:26 +0100256 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 }
258 }
259 chartab_initialized = TRUE;
260 return OK;
261}
262
263/*
264 * Translate any special characters in buf[bufsize] in-place.
265 * The result is a string with only printable characters, but if there is not
266 * enough room, not all characters will be translated.
267 */
268 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100269trans_characters(
270 char_u *buf,
271 int bufsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272{
Bram Moolenaarc667da52019-11-30 20:52:27 +0100273 int len; // length of string needing translation
274 int room; // room in buffer after string
275 char_u *trs; // translated character
276 int trs_len; // length of trs[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
278 len = (int)STRLEN(buf);
279 room = bufsize - len;
280 while (*buf != 0)
281 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100282 // Assume a multi-byte character doesn't need translation.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000283 if (has_mbyte && (trs_len = (*mb_ptr2len)(buf)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 len -= trs_len;
285 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 {
287 trs = transchar_byte(*buf);
288 trs_len = (int)STRLEN(trs);
289 if (trs_len > 1)
290 {
291 room -= trs_len - 1;
292 if (room <= 0)
293 return;
294 mch_memmove(buf + trs_len, buf + 1, (size_t)len);
295 }
296 mch_memmove(buf, trs, (size_t)trs_len);
297 --len;
298 }
299 buf += trs_len;
300 }
301}
302
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303/*
304 * Translate a string into allocated memory, replacing special chars with
305 * printable chars. Returns NULL when out of memory.
306 */
307 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100308transstr(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309{
310 char_u *res;
311 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 int l, len, c;
313 char_u hexbuf[11];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 if (has_mbyte)
316 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100317 // Compute the length of the result, taking account of unprintable
318 // multi-byte characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 len = 0;
320 p = s;
321 while (*p != NUL)
322 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000323 if ((l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 {
325 c = (*mb_ptr2char)(p);
326 p += l;
327 if (vim_isprintc(c))
328 len += l;
329 else
330 {
331 transchar_hex(hexbuf, c);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000332 len += (int)STRLEN(hexbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 }
334 }
335 else
336 {
337 l = byte2cells(*p++);
338 if (l > 0)
339 len += l;
340 else
Bram Moolenaarc667da52019-11-30 20:52:27 +0100341 len += 4; // illegal byte sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 }
343 }
Bram Moolenaar964b3742019-05-24 18:54:09 +0200344 res = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 }
346 else
Bram Moolenaar964b3742019-05-24 18:54:09 +0200347 res = alloc(vim_strsize(s) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 if (res != NULL)
349 {
350 *res = NUL;
351 p = s;
352 while (*p != NUL)
353 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000354 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {
356 c = (*mb_ptr2char)(p);
357 if (vim_isprintc(c))
Bram Moolenaarc667da52019-11-30 20:52:27 +0100358 STRNCAT(res, p, l); // append printable multi-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 else
360 transchar_hex(res + STRLEN(res), c);
361 p += l;
362 }
363 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 STRCAT(res, transchar_byte(*p++));
365 }
366 }
367 return res;
368}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370/*
Bram Moolenaar217ad922005-03-20 22:37:15 +0000371 * Convert the string "str[orglen]" to do ignore-case comparing. Uses the
372 * current locale.
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000373 * When "buf" is NULL returns an allocated string (NULL for out-of-memory).
374 * Otherwise puts the result in "buf[buflen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 */
376 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100377str_foldcase(
378 char_u *str,
379 int orglen,
380 char_u *buf,
381 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382{
383 garray_T ga;
384 int i;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000385 int len = orglen;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386
387#define GA_CHAR(i) ((char_u *)ga.ga_data)[i]
kylo252ae6f1d82022-02-16 19:24:07 +0000388#define GA_PTR(i) ((char_u *)ga.ga_data + (i))
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000389#define STR_CHAR(i) (buf == NULL ? GA_CHAR(i) : buf[i])
kylo252ae6f1d82022-02-16 19:24:07 +0000390#define STR_PTR(i) (buf == NULL ? GA_PTR(i) : buf + (i))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391
Bram Moolenaarc667da52019-11-30 20:52:27 +0100392 // Copy "str" into "buf" or allocated memory, unmodified.
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000393 if (buf == NULL)
394 {
395 ga_init2(&ga, 1, 10);
396 if (ga_grow(&ga, len + 1) == FAIL)
397 return NULL;
398 mch_memmove(ga.ga_data, str, (size_t)len);
399 ga.ga_len = len;
400 }
401 else
402 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100403 if (len >= buflen) // Ugly!
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000404 len = buflen - 1;
405 mch_memmove(buf, str, (size_t)len);
406 }
407 if (buf == NULL)
408 GA_CHAR(len) = NUL;
409 else
410 buf[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411
Bram Moolenaarc667da52019-11-30 20:52:27 +0100412 // Make each character lower case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 i = 0;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000414 while (STR_CHAR(i) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 {
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000416 if (enc_utf8 || (has_mbyte && MB_BYTE2LEN(STR_CHAR(i)) > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 {
418 if (enc_utf8)
419 {
Bram Moolenaarb9839212008-06-28 11:03:50 +0000420 int c = utf_ptr2char(STR_PTR(i));
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100421 int olen = utf_ptr2len(STR_PTR(i));
Bram Moolenaarb9839212008-06-28 11:03:50 +0000422 int lc = utf_tolower(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423
Bram Moolenaarc667da52019-11-30 20:52:27 +0100424 // Only replace the character when it is not an invalid
425 // sequence (ASCII character or more than one byte) and
426 // utf_tolower() doesn't return the original character.
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100427 if ((c < 0x80 || olen > 1) && c != lc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100429 int nlen = utf_char2len(lc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430
Bram Moolenaarc667da52019-11-30 20:52:27 +0100431 // If the byte length changes need to shift the following
432 // characters forward or backward.
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100433 if (olen != nlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100435 if (nlen > olen)
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000436 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100437 if (buf == NULL
438 ? ga_grow(&ga, nlen - olen + 1) == FAIL
439 : len + nlen - olen >= buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100441 // out of memory, keep old char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 lc = c;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100443 nlen = olen;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 }
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000445 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100446 if (olen != nlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 {
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000448 if (buf == NULL)
449 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100450 STRMOVE(GA_PTR(i) + nlen, GA_PTR(i) + olen);
451 ga.ga_len += nlen - olen;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000452 }
453 else
454 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100455 STRMOVE(buf + i + nlen, buf + i + olen);
456 len += nlen - olen;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 }
459 }
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000460 (void)utf_char2bytes(lc, STR_PTR(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 }
462 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100463 // skip to next multi-byte char
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000464 i += (*mb_ptr2len)(STR_PTR(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 }
466 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 {
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000468 if (buf == NULL)
469 GA_CHAR(i) = TOLOWER_LOC(GA_CHAR(i));
470 else
471 buf[i] = TOLOWER_LOC(buf[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 ++i;
473 }
474 }
475
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000476 if (buf == NULL)
477 return (char_u *)ga.ga_data;
478 return buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480
481/*
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100482 * Catch 22: g_chartab[] can't be initialized before the options are
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 * initialized, and initializing options may cause transchar() to be called!
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100484 * When chartab_initialized == FALSE don't use g_chartab[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 * Does NOT work for multi-byte characters, c must be <= 255.
486 * Also doesn't work for the first byte of a multi-byte, "c" must be a
487 * character!
488 */
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200489static char_u transchar_charbuf[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490
491 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100492transchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493{
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200494 return transchar_buf(curbuf, c);
495}
496
497 char_u *
498transchar_buf(buf_T *buf, int c)
499{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 int i;
501
502 i = 0;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100503 if (IS_SPECIAL(c)) // special key code, display as ~@ char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200505 transchar_charbuf[0] = '~';
506 transchar_charbuf[1] = '@';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 i = 2;
508 c = K_SECOND(c);
509 }
510
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000511 if ((!chartab_initialized && ((c >= ' ' && c <= '~')))
512 || (c < 256 && vim_isprintc_strict(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100514 // printable character
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200515 transchar_charbuf[i] = c;
516 transchar_charbuf[i + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 }
518 else
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200519 transchar_nonprint(buf, transchar_charbuf + i, c);
520 return transchar_charbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521}
522
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523/*
524 * Like transchar(), but called with a byte instead of a character. Checks
525 * for an illegal UTF-8 byte.
526 */
527 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100528transchar_byte(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529{
530 if (enc_utf8 && c >= 0x80)
531 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200532 transchar_nonprint(curbuf, transchar_charbuf, c);
533 return transchar_charbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 }
535 return transchar(c);
536}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537
538/*
539 * Convert non-printable character to two or more printable characters in
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200540 * "buf[]". "charbuf" needs to be able to hold five bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 * Does NOT work for multi-byte characters, c must be <= 255.
542 */
543 void
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200544transchar_nonprint(buf_T *buf, char_u *charbuf, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545{
546 if (c == NL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100547 c = NUL; // we use newline in place of a NUL
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200548 else if (c == CAR && get_fileformat(buf) == EOL_MAC)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100549 c = NL; // we use CR in place of NL in this case
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550
Bram Moolenaarc667da52019-11-30 20:52:27 +0100551 if (dy_flags & DY_UHEX) // 'display' has "uhex"
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200552 transchar_hex(charbuf, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
Bram Moolenaarc667da52019-11-30 20:52:27 +0100554 else if (c <= 0x7f) // 0x00 - 0x1f and 0x7f
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200556 charbuf[0] = '^';
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200557 charbuf[1] = c ^ 0x40; // DEL displayed as ^?
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200558 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f01a6532022-03-09 13:00:54 +0000560 else if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200562 transchar_hex(charbuf, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100564 else if (c >= ' ' + 0x80 && c <= '~' + 0x80) // 0xa0 - 0xfe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200566 charbuf[0] = '|';
567 charbuf[1] = c - 0x80;
568 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100570 else // 0x80 - 0x9f and 0xff
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200572 charbuf[0] = '~';
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200573 charbuf[1] = (c - 0x80) ^ 0x40; // 0xff displayed as ~?
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200574 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 }
576}
577
578 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100579transchar_hex(char_u *buf, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580{
581 int i = 0;
582
583 buf[0] = '<';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 if (c > 255)
585 {
586 buf[++i] = nr2hex((unsigned)c >> 12);
587 buf[++i] = nr2hex((unsigned)c >> 8);
588 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 buf[++i] = nr2hex((unsigned)c >> 4);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000590 buf[++i] = nr2hex((unsigned)c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 buf[++i] = '>';
592 buf[++i] = NUL;
593}
594
595/*
596 * Convert the lower 4 bits of byte "c" to its hex character.
597 * Lower case letters are used to avoid the confusion of <F1> being 0xf1 or
598 * function key 1.
599 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000600 static unsigned
Bram Moolenaar7454a062016-01-30 15:14:10 +0100601nr2hex(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602{
603 if ((c & 0xf) <= 9)
604 return (c & 0xf) + '0';
605 return (c & 0xf) - 10 + 'a';
606}
607
608/*
609 * Return number of display cells occupied by byte "b".
610 * Caller must make sure 0 <= b <= 255.
611 * For multi-byte mode "b" must be the first byte of a character.
612 * A TAB is counted as two cells: "^I".
613 * For UTF-8 mode this will return 0 for bytes >= 0x80, because the number of
614 * cells depends on further bytes.
615 */
616 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100617byte2cells(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 if (enc_utf8 && b >= 0x80)
620 return 0;
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100621 return (g_chartab[b] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622}
623
624/*
625 * Return number of display cells occupied by character "c".
626 * "c" can be a special key (negative number) in which case 3 or 4 is returned.
627 * A TAB is counted as two cells: "^I" or four: "<09>".
628 */
629 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100630char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631{
632 if (IS_SPECIAL(c))
633 return char2cells(K_SECOND(c)) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 if (c >= 0x80)
635 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100636 // UTF-8: above 0x80 need to check the value
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 if (enc_utf8)
638 return utf_char2cells(c);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100639 // DBCS: double-byte means double-width, except for euc-jp with first
640 // byte 0x8e
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 if (enc_dbcs != 0 && c >= 0x100)
642 {
643 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
644 return 1;
645 return 2;
646 }
647 }
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100648 return (g_chartab[c & 0xff] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649}
650
651/*
652 * Return number of display cells occupied by character at "*p".
653 * A TAB is counted as two cells: "^I" or four: "<09>".
654 */
655 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100656ptr2cells(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657{
Bram Moolenaar398649e2022-08-04 15:03:48 +0100658 if (!has_mbyte)
659 return byte2cells(*p);
660
Bram Moolenaarc667da52019-11-30 20:52:27 +0100661 // For UTF-8 we need to look at more bytes if the first byte is >= 0x80.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 if (enc_utf8 && *p >= 0x80)
663 return utf_ptr2cells(p);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100664 // For DBCS we can tell the cell count from the first byte.
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100665 return (g_chartab[*p] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666}
667
668/*
Bram Moolenaar06af6022012-01-26 13:40:08 +0100669 * Return the number of character cells string "s" will take on the screen,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 * counting TABs as two characters: "^I".
671 */
672 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100673vim_strsize(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674{
675 return vim_strnsize(s, (int)MAXCOL);
676}
677
678/*
Bram Moolenaar06af6022012-01-26 13:40:08 +0100679 * Return the number of character cells string "s[len]" will take on the
680 * screen, counting TABs as two characters: "^I".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 */
682 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100683vim_strnsize(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684{
685 int size = 0;
686
687 while (*s != NUL && --len >= 0)
Bram Moolenaar398649e2022-08-04 15:03:48 +0100688 {
689 int l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690
Bram Moolenaar398649e2022-08-04 15:03:48 +0100691 size += ptr2cells(s);
692 s += l;
693 len -= l - 1;
694 }
Bram Moolenaar13505972019-01-24 15:04:48 +0100695
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 return size;
697}
698
699/*
700 * Return the number of characters 'c' will take on the screen, taking
701 * into account the size of a tab.
702 * Use a define to make it fast, this is used very often!!!
703 * Also see getvcol() below.
704 */
705
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200706#ifdef FEAT_VARTABS
707# define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
kylo252ae6f1d82022-02-16 19:24:07 +0000708 if (*(p) == TAB && (!(wp)->w_p_list || (wp)->w_lcs_chars.tab1)) \
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200709 { \
710 return tabstop_padding(col, (buf)->b_p_ts, (buf)->b_p_vts_array); \
711 } \
712 else \
713 return ptr2cells(p);
714#else
715# define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
Bram Moolenaareed9d462021-02-15 20:38:25 +0100716 if (*(p) == TAB && (!(wp)->w_p_list || wp->w_lcs_chars.tab1)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 { \
718 int ts; \
719 ts = (buf)->b_p_ts; \
720 return (int)(ts - (col % ts)); \
721 } \
722 else \
723 return ptr2cells(p);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100727chartabsize(char_u *p, colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728{
729 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, p, col)
730}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731
732#ifdef FEAT_LINEBREAK
733 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100734win_chartabsize(win_T *wp, char_u *p, colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735{
736 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, p, col)
737}
738#endif
739
740/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100741 * Return the number of characters the string "s" will take on the screen,
Bram Moolenaardc536092010-07-18 15:45:49 +0200742 * taking into account the size of a tab.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100743 * Does not handle text properties, since "s" is not a buffer line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 */
745 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100746linetabsize(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747{
Bram Moolenaardc536092010-07-18 15:45:49 +0200748 return linetabsize_col(0, s);
749}
750
751/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100752 * Like linetabsize(), but "s" starts at column "startcol".
Bram Moolenaardc536092010-07-18 15:45:49 +0200753 */
754 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100755linetabsize_col(int startcol, char_u *s)
Bram Moolenaardc536092010-07-18 15:45:49 +0200756{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100757 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100759 init_chartabsize_arg(&cts, curwin, 0, startcol, s, s);
760 while (*cts.cts_ptr != NUL)
761 cts.cts_vcol += lbr_chartabsize_adv(&cts);
762 clear_chartabsize_arg(&cts);
763 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764}
765
766/*
767 * Like linetabsize(), but for a given window instead of the current one.
768 */
769 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100770win_linetabsize(win_T *wp, linenr_T lnum, char_u *line, colnr_T len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100772 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100774 init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
Bram Moolenaarc146d972022-07-31 18:03:57 +0100775#ifdef FEAT_PROP_POPUP
Bram Moolenaarbe33e5e2022-07-31 18:00:10 +0100776 cts.cts_with_trailing = len == MAXCOL;
Bram Moolenaarc146d972022-07-31 18:03:57 +0100777#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100778 for ( ; *cts.cts_ptr != NUL && (len == MAXCOL || cts.cts_ptr < line + len);
779 MB_PTR_ADV(cts.cts_ptr))
780 cts.cts_vcol += win_lbr_chartabsize(&cts, NULL);
781 clear_chartabsize_arg(&cts);
782 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783}
784
785/*
Bram Moolenaar81695252004-12-29 20:58:21 +0000786 * Return TRUE if 'c' is a normal identifier character:
787 * Letters and characters from the 'isident' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 */
789 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100790vim_isIDc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100792 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793}
794
795/*
Bram Moolenaare3d1f4c2021-04-06 20:21:59 +0200796 * Like vim_isIDc() but not using the 'isident' option: letters, numbers and
797 * underscore.
798 */
799 int
800vim_isNormalIDc(int c)
801{
802 return ASCII_ISALNUM(c) || c == '_';
803}
804
805/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 * return TRUE if 'c' is a keyword character: Letters and characters from
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100807 * 'iskeyword' option for the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 * For multi-byte characters mb_get_class() is used (builtin rules).
809 */
810 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100811vim_iswordc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812{
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100813 return vim_iswordc_buf(c, curbuf);
814}
815
816 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100817vim_iswordc_buf(int c, buf_T *buf)
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100818{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 if (c >= 0x100)
820 {
821 if (enc_dbcs != 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000822 return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100824 return utf_class_buf(c, buf) >= 2;
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100825 return FALSE;
826 }
827 return (c > 0 && GET_CHARTAB(buf, c) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828}
829
830/*
831 * Just like vim_iswordc() but uses a pointer to the (multi-byte) character.
832 */
833 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100834vim_iswordp(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100836 return vim_iswordp_buf(p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837}
838
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100840vim_iswordp_buf(char_u *p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100842 int c = *p;
843
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100844 if (has_mbyte && MB_BYTE2LEN(c) > 1)
845 c = (*mb_ptr2char)(p);
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100846 return vim_iswordc_buf(c, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848
849/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100850 * Return TRUE if 'c' is a valid file-name character as specified with the
851 * 'isfname' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 * Assume characters above 0x100 are valid (multi-byte).
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100853 * To be used for commands like "gf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 */
855 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100856vim_isfilec(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100858 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_FNAME_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859}
860
861/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100862 * Return TRUE if 'c' is a valid file-name character, including characters left
863 * out of 'isfname' to make "gf" work, such as comma, space, '@', etc.
864 */
865 int
866vim_is_fname_char(int c)
867{
868 return vim_isfilec(c) || c == ',' || c == ' ' || c == '@';
869}
870
871/*
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000872 * return TRUE if 'c' is a valid file-name character or a wildcard character
873 * Assume characters above 0x100 are valid (multi-byte).
874 * Explicitly interpret ']' as a wildcard character as mch_has_wildcard("]")
875 * returns false.
876 */
877 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100878vim_isfilec_or_wc(int c)
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000879{
880 char_u buf[2];
881
882 buf[0] = (char_u)c;
883 buf[1] = NUL;
884 return vim_isfilec(c) || c == ']' || mch_has_wildcard(buf);
885}
886
887/*
Bram Moolenaar3317d5e2017-04-08 19:12:06 +0200888 * Return TRUE if 'c' is a printable character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 * Assume characters above 0x100 are printable (multi-byte), except for
890 * Unicode.
891 */
892 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100893vim_isprintc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 if (enc_utf8 && c >= 0x100)
896 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100897 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898}
899
900/*
901 * Strict version of vim_isprintc(c), don't return TRUE if "c" is the head
902 * byte of a double-byte character.
903 */
904 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100905vim_isprintc_strict(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 if (enc_dbcs != 0 && c < 0x100 && MB_BYTE2LEN(c) > 1)
908 return FALSE;
909 if (enc_utf8 && c >= 0x100)
910 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100911 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912}
913
914/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100915 * Prepare the structure passed to chartabsize functions.
916 * "line" is the start of the line, "ptr" is the first relevant character.
917 * When "lnum" is zero do not use text properties that insert text.
918 */
919 void
920init_chartabsize_arg(
921 chartabsize_T *cts,
922 win_T *wp,
923 linenr_T lnum,
924 colnr_T col,
925 char_u *line,
926 char_u *ptr)
927{
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100928 CLEAR_POINTER(cts);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100929 cts->cts_win = wp;
930 cts->cts_lnum = lnum;
931 cts->cts_vcol = col;
932 cts->cts_line = line;
933 cts->cts_ptr = ptr;
934#ifdef FEAT_PROP_POPUP
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100935 if (lnum > 0)
936 {
937 char_u *prop_start;
938
939 cts->cts_text_prop_count = get_text_props(wp->w_buffer, lnum,
940 &prop_start, FALSE);
941 if (cts->cts_text_prop_count > 0)
942 {
943 // Make a copy of the properties, so that they are properly
944 // aligned.
945 cts->cts_text_props = ALLOC_MULT(textprop_T,
946 cts->cts_text_prop_count);
947 if (cts->cts_text_props == NULL)
948 cts->cts_text_prop_count = 0;
949 else
950 {
951 int i;
952
953 mch_memmove(cts->cts_text_props, prop_start,
954 cts->cts_text_prop_count * sizeof(textprop_T));
955 for (i = 0; i < cts->cts_text_prop_count; ++i)
956 if (cts->cts_text_props[i].tp_id < 0)
957 {
958 cts->cts_has_prop_with_text = TRUE;
959 break;
960 }
961 if (!cts->cts_has_prop_with_text)
962 {
963 // won't use the text properties, free them
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100964 VIM_CLEAR(cts->cts_text_props);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100965 cts->cts_text_prop_count = 0;
966 }
967 }
968 }
969 }
970#endif
971}
972
973/*
974 * Free any allocated item in "cts".
975 */
976 void
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +0100977clear_chartabsize_arg(chartabsize_T *cts UNUSED)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100978{
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +0100979#ifdef FEAT_PROP_POPUP
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100980 if (cts->cts_text_prop_count > 0)
Bram Moolenaar34a1f772022-07-26 11:20:48 +0100981 {
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100982 VIM_CLEAR(cts->cts_text_props);
983 cts->cts_text_prop_count = 0;
Bram Moolenaar34a1f772022-07-26 11:20:48 +0100984 }
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +0100985#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100986}
987
988/*
989 * Like chartabsize(), but also check for line breaks on the screen and text
990 * properties that insert text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 */
992 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100993lbr_chartabsize(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100995#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
996 if (1
997# ifdef FEAT_LINEBREAK
998 && !curwin->w_p_lbr && *get_showbreak_value(curwin) == NUL
999 && !curwin->w_p_bri
1000# endif
1001# ifdef FEAT_PROP_POPUP
1002 && !cts->cts_has_prop_with_text
1003#endif
1004 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 {
1006#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 if (curwin->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001008 return win_nolbr_chartabsize(cts, NULL);
1009 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, cts->cts_ptr, cts->cts_vcol)
1010#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001012 return win_lbr_chartabsize(cts, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013#endif
1014}
1015
1016/*
1017 * Call lbr_chartabsize() and advance the pointer.
1018 */
1019 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001020lbr_chartabsize_adv(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021{
1022 int retval;
1023
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001024 retval = lbr_chartabsize(cts);
1025 MB_PTR_ADV(cts->cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 return retval;
1027}
1028
Bram Moolenaar398649e2022-08-04 15:03:48 +01001029#if defined(FEAT_PROP_POPUP) || defined(PROTO)
1030/*
1031 * Return the cell size of virtual text after truncation.
1032 */
1033 int
1034textprop_size_after_trunc(
1035 win_T *wp,
1036 int below,
1037 int added,
1038 char_u *text,
1039 int *n_used_ptr)
1040{
1041 int space = below ? wp->w_width : added;
1042 int len = (int)STRLEN(text);
1043 int strsize = 0;
1044 int n_used;
1045
1046 // if the remaining size is to small wrap
1047 // anyway and use the next line
1048 if (space < PROP_TEXT_MIN_CELLS)
1049 space += wp->w_width;
1050 for (n_used = 0; n_used < len; n_used += (*mb_ptr2len)(text + n_used))
1051 {
1052 int clen = ptr2cells(text + n_used);
1053
1054 if (strsize + clen > space)
1055 break;
1056 strsize += clen;
1057 }
1058 *n_used_ptr = n_used;
1059 return strsize;
1060}
1061#endif
1062
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001064 * Return the screen size of the character indicated by "cts".
1065 * "cts->cts_cur_text_width" is set to the extra size for a text property that
1066 * inserts text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 * This function is used very often, keep it fast!!!!
1068 *
1069 * If "headp" not NULL, set *headp to the size of what we for 'showbreak'
1070 * string at start of line. Warning: *headp is only set if it's a non-zero
1071 * value, init to 0 before calling.
1072 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001074win_lbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001075 chartabsize_T *cts,
1076 int *headp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001078 win_T *wp = cts->cts_win;
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001079#ifdef FEAT_PROP_POPUP
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001080 char_u *line = cts->cts_line; // start of the line
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001081#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001082 char_u *s = cts->cts_ptr;
1083 colnr_T vcol = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084#ifdef FEAT_LINEBREAK
1085 int c;
1086 int size;
1087 colnr_T col2;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001088 colnr_T col_adj = 0; // vcol + screen size of tab
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 colnr_T colmax;
1090 int added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 int mb_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 int numberextra;
1093 char_u *ps;
1094 int tab_corr = (*s == TAB);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001095 int n;
Bram Moolenaaree857022019-11-09 23:26:40 +01001096 char_u *sbr;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001097#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001099#if defined(FEAT_PROP_POPUP)
1100 cts->cts_cur_text_width = 0;
1101#endif
1102
1103#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001105 * No 'linebreak', 'showbreak', 'breakindent' and text properties that
1106 * insert text: return quickly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001108 if (1
1109# ifdef FEAT_LINEBREAK
1110 && !wp->w_p_lbr && !wp->w_p_bri && *get_showbreak_value(wp) == NUL
1111# endif
1112# ifdef FEAT_PROP_POPUP
1113 && !cts->cts_has_prop_with_text
1114# endif
1115 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116#endif
1117 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 if (wp->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001119 return win_nolbr_chartabsize(cts, headp);
1120 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, s, vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 }
1122
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001123#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001125 * First get the normal size, without 'linebreak' or text properties
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001127 size = win_chartabsize(wp, s, vcol);
1128
1129# ifdef FEAT_PROP_POPUP
1130 if (cts->cts_has_prop_with_text)
1131 {
1132 int i;
1133 int col = (int)(s - line);
1134
1135 for (i = 0; i < cts->cts_text_prop_count; ++i)
1136 {
1137 textprop_T *tp = cts->cts_text_props + i;
1138
1139 if (tp->tp_id < 0
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001140 && ((tp->tp_col - 1 >= col && tp->tp_col - 1 < col + size
1141 && -tp->tp_id <= wp->w_buffer->b_textprop_text.ga_len)
1142 || (tp->tp_col == MAXCOL && (s[0] == NUL || s[1] == NUL)
1143 && cts->cts_with_trailing)))
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001144 {
1145 char_u *p = ((char_u **)wp->w_buffer->b_textprop_text.ga_data)[
1146 -tp->tp_id - 1];
Bram Moolenaar398649e2022-08-04 15:03:48 +01001147 int cells = vim_strsize(p);
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001148
Bram Moolenaar398649e2022-08-04 15:03:48 +01001149 added = wp->w_width - (vcol + size) % wp->w_width;
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001150 if (tp->tp_col == MAXCOL)
1151 {
Bram Moolenaar398649e2022-08-04 15:03:48 +01001152 int below = (tp->tp_flags & TP_FLAG_ALIGN_BELOW);
1153 int wrap = (tp->tp_flags & TP_FLAG_WRAP);
1154 int len = (int)STRLEN(p);
1155 int n_used = len;
1156
1157 // Keep in sync with where textprop_size_after_trunc() is
1158 // called in win_line().
1159 if (!wrap)
1160 cells = textprop_size_after_trunc(wp,
1161 below, added, p, &n_used);
1162 // right-aligned does not really matter here, same as
1163 // "after"
1164 if (below)
1165 cells += wp->w_width - (vcol + size) % wp->w_width;
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001166 }
Bram Moolenaar398649e2022-08-04 15:03:48 +01001167 cts->cts_cur_text_width += cells;
1168 size += cells;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001169 }
1170 if (tp->tp_col - 1 > col)
1171 break;
1172 }
1173 }
1174# endif
1175
1176# ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 c = *s;
Bram Moolenaaree739b42014-07-02 19:37:42 +02001178 if (tab_corr)
1179 col_adj = size - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180
1181 /*
1182 * If 'linebreak' set check at a blank before a non-blank if the line
1183 * needs a break here
1184 */
1185 if (wp->w_p_lbr
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001186 && VIM_ISBREAK(c)
Bram Moolenaar977d0372017-03-12 21:31:58 +01001187 && !VIM_ISBREAK((int)s[1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 && wp->w_p_wrap
Bram Moolenaar4033c552017-09-16 20:54:51 +02001189 && wp->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 {
1191 /*
1192 * Count all characters from first non-blank after a blank up to next
1193 * non-blank after a blank.
1194 */
1195 numberextra = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001196 col2 = vcol;
Bram Moolenaar02631462017-09-22 15:20:32 +02001197 colmax = (colnr_T)(wp->w_width - numberextra - col_adj);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001198 if (vcol >= colmax)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001199 {
Bram Moolenaaree739b42014-07-02 19:37:42 +02001200 colmax += col_adj;
1201 n = colmax + win_col_off2(wp);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001202 if (n > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001203 colmax += (((vcol - colmax) / n) + 1) * n - col_adj;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001204 }
1205
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 for (;;)
1207 {
1208 ps = s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001209 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 c = *s;
1211 if (!(c != NUL
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001212 && (VIM_ISBREAK(c)
1213 || (!VIM_ISBREAK(c)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001214 && (col2 == vcol || !VIM_ISBREAK((int)*ps))))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 break;
1216
1217 col2 += win_chartabsize(wp, s, col2);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001218 if (col2 >= colmax) // doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001220 size = colmax - vcol + col_adj;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 break;
1222 }
1223 }
1224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 else if (has_mbyte && size == 2 && MB_BYTE2LEN(*s) > 1
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001226 && wp->w_p_wrap && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001228 ++size; // Count the ">" in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 mb_added = 1;
1230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
1232 /*
Bram Moolenaar597a4222014-06-25 14:39:50 +02001233 * May have to add something for 'breakindent' and/or 'showbreak'
1234 * string at start of line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 * Set *headp to the size of what we add.
Bram Moolenaar21efafe2022-03-03 20:04:03 +00001236 * Do not use 'showbreak' at the NUL after the text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 */
1238 added = 0;
Bram Moolenaar21efafe2022-03-03 20:04:03 +00001239 sbr = c == NUL ? empty_option : get_showbreak_value(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001240 if ((*sbr != NUL || wp->w_p_bri) && wp->w_p_wrap && vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 {
Bram Moolenaard574ea22015-01-14 19:35:14 +01001242 colnr_T sbrlen = 0;
1243 int numberwidth = win_col_off(wp);
1244
1245 numberextra = numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001246 vcol += numberextra + mb_added;
1247 if (vcol >= (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001249 vcol -= wp->w_width;
Bram Moolenaar02631462017-09-22 15:20:32 +02001250 numberextra = wp->w_width - (numberextra - win_col_off2(wp));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001251 if (vcol >= numberextra && numberextra > 0)
1252 vcol %= numberextra;
Bram Moolenaaree857022019-11-09 23:26:40 +01001253 if (*sbr != NUL)
Bram Moolenaar1c852102014-10-15 21:26:40 +02001254 {
Bram Moolenaaree857022019-11-09 23:26:40 +01001255 sbrlen = (colnr_T)MB_CHARLEN(sbr);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001256 if (vcol >= sbrlen)
1257 vcol -= sbrlen;
Bram Moolenaar1c852102014-10-15 21:26:40 +02001258 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001259 if (vcol >= numberextra && numberextra > 0)
1260 vcol = vcol % numberextra;
1261 else if (vcol > 0 && numberextra > 0)
1262 vcol += numberwidth - win_col_off2(wp);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001263
1264 numberwidth -= win_col_off2(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001266 if (vcol == 0 || vcol + size + sbrlen > (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02001268 added = 0;
Bram Moolenaaree857022019-11-09 23:26:40 +01001269 if (*sbr != NUL)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001270 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001271 if (size + sbrlen + numberwidth > (colnr_T)wp->w_width)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001272 {
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001273 // calculate effective window width
Bram Moolenaar02631462017-09-22 15:20:32 +02001274 int width = (colnr_T)wp->w_width - sbrlen - numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001275 int prev_width = vcol
1276 ? ((colnr_T)wp->w_width - (sbrlen + vcol)) : 0;
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001277
1278 if (width <= 0)
1279 width = (colnr_T)1;
Bram Moolenaaree857022019-11-09 23:26:40 +01001280 added += ((size - prev_width) / width) * vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001281 if ((size - prev_width) % width)
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001282 // wrapped, add another length of 'sbr'
Bram Moolenaaree857022019-11-09 23:26:40 +01001283 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001284 }
1285 else
Bram Moolenaaree857022019-11-09 23:26:40 +01001286 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001287 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02001288 if (wp->w_p_bri)
1289 added += get_breakindent_win(wp, line);
1290
Bram Moolenaar95765082014-08-24 21:19:25 +02001291 size += added;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001292 if (vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 added = 0;
1294 }
1295 }
1296 if (headp != NULL)
1297 *headp = added + mb_added;
1298 return size;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001299# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300#endif
1301}
1302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001304 * Like win_lbr_chartabsize(), except that we know 'linebreak' is off, 'wrap'
1305 * is on and there are no properties that insert text. This means we need to
1306 * check for a double-byte character that doesn't fit at the end of the screen
1307 * line.
1308 * Only uses "cts_win", "cts_ptr" and "cts_vcol" from "cts".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 */
1310 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001311win_nolbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001312 chartabsize_T *cts,
1313 int *headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001315 win_T *wp = cts->cts_win;
1316 char_u *s = cts->cts_ptr;
1317 colnr_T col = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 int n;
1319
Bram Moolenaareed9d462021-02-15 20:38:25 +01001320 if (*s == TAB && (!wp->w_p_list || wp->w_lcs_chars.tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001322# ifdef FEAT_VARTABS
1323 return tabstop_padding(col, wp->w_buffer->b_p_ts,
1324 wp->w_buffer->b_p_vts_array);
1325# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 n = wp->w_buffer->b_p_ts;
1327 return (int)(n - (col % n));
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001328# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 }
1330 n = ptr2cells(s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001331 // Add one cell for a double-width character in the last column of the
1332 // window, displayed with a ">".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 if (n == 2 && MB_BYTE2LEN(*s) > 1 && in_win_border(wp, col))
1334 {
1335 if (headp != NULL)
1336 *headp = 1;
1337 return 3;
1338 }
1339 return n;
1340}
1341
1342/*
1343 * Return TRUE if virtual column "vcol" is in the rightmost column of window
1344 * "wp".
1345 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001346 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001347in_win_border(win_T *wp, colnr_T vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348{
Bram Moolenaarc667da52019-11-30 20:52:27 +01001349 int width1; // width of first line (after line number)
1350 int width2; // width of further lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351
Bram Moolenaarc667da52019-11-30 20:52:27 +01001352 if (wp->w_width == 0) // there is no border
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 return FALSE;
Bram Moolenaar02631462017-09-22 15:20:32 +02001354 width1 = wp->w_width - win_col_off(wp);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001355 if ((int)vcol < width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001357 if ((int)vcol == width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return TRUE;
1359 width2 = width1 + win_col_off2(wp);
Bram Moolenaar8701cd62009-10-07 14:20:30 +00001360 if (width2 <= 0)
1361 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 return ((vcol - width1) % width2 == width2 - 1);
1363}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364
1365/*
1366 * Get virtual column number of pos.
1367 * start: on the first position of this character (TAB, ctrl)
1368 * cursor: where the cursor is on this character (first char, except for TAB)
1369 * end: on the last position of this character (TAB, ctrl)
1370 *
1371 * This is used very often, keep it fast!
1372 */
1373 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001374getvcol(
1375 win_T *wp,
1376 pos_T *pos,
1377 colnr_T *start,
1378 colnr_T *cursor,
1379 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380{
1381 colnr_T vcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001382 char_u *ptr; // points to current char
1383 char_u *posptr; // points to char at pos->col
1384 char_u *line; // start of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 int incr;
1386 int head;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001387#ifdef FEAT_VARTABS
1388 int *vts = wp->w_buffer->b_p_vts_array;
1389#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 int ts = wp->w_buffer->b_p_ts;
1391 int c;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001392 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
1394 vcol = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02001395 line = ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001396 if (pos->col == MAXCOL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001397 posptr = NULL; // continue until the NUL
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001398 else
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001399 {
Bram Moolenaar94f31922021-12-30 15:29:18 +00001400 colnr_T i;
1401
1402 // In a few cases the position can be beyond the end of the line.
1403 for (i = 0; i < pos->col; ++i)
1404 if (ptr[i] == NUL)
1405 {
1406 pos->col = i;
1407 break;
1408 }
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001409 posptr = ptr + pos->col;
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001410 if (has_mbyte)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001411 // always start on the first byte
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001412 posptr -= (*mb_head_off)(line, posptr);
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001415 init_chartabsize_arg(&cts, wp, pos->lnum, 0, line, line);
1416
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 /*
1418 * This function is used very often, do some speed optimizations.
Bram Moolenaar597a4222014-06-25 14:39:50 +02001419 * When 'list', 'linebreak', 'showbreak' and 'breakindent' are not set
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001420 * and there are no text properties with "text" use a simple loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 * Also use this when 'list' is set but tabs take their normal size.
1422 */
Bram Moolenaareed9d462021-02-15 20:38:25 +01001423 if ((!wp->w_p_list || wp->w_lcs_chars.tab1 != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001425 && !wp->w_p_lbr && *get_showbreak_value(wp) == NUL && !wp->w_p_bri
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001427#ifdef FEAT_PROP_POPUP
1428 && !cts.cts_has_prop_with_text
1429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 )
1431 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 for (;;)
1433 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 head = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 c = *ptr;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001436 // make sure we don't go past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 if (c == NUL)
1438 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001439 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 break;
1441 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001442 // A tab gets expanded, depending on the current column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 if (c == TAB)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001444#ifdef FEAT_VARTABS
1445 incr = tabstop_padding(vcol, ts, vts);
1446#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 incr = ts - (vcol % ts);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001448#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 else
1450 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 if (has_mbyte)
1452 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001453 // For utf-8, if the byte is >= 0x80, need to look at
1454 // further bytes to find the cell width.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 if (enc_utf8 && c >= 0x80)
1456 incr = utf_ptr2cells(ptr);
1457 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001458 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
Bram Moolenaarc667da52019-11-30 20:52:27 +01001460 // If a double-cell char doesn't fit at the end of a line
1461 // it wraps to the next line, it's like this char is three
1462 // cells wide.
Bram Moolenaar9c33a7c2008-02-20 13:59:32 +00001463 if (incr == 2 && wp->w_p_wrap && MB_BYTE2LEN(*ptr) > 1
1464 && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 {
1466 ++incr;
1467 head = 1;
1468 }
1469 }
1470 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001471 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 }
1473
Bram Moolenaarc667da52019-11-30 20:52:27 +01001474 if (posptr != NULL && ptr >= posptr) // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 break;
1476
1477 vcol += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001478 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 }
1480 }
1481 else
1482 {
1483 for (;;)
1484 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001485 // A tab gets expanded, depending on the current column.
1486 // Other things also take up space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 head = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001488 incr = win_lbr_chartabsize(&cts, &head);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001489 // make sure we don't go past the end of the line
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001490 if (*cts.cts_ptr == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001492 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 break;
1494 }
1495
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001496 if (posptr != NULL && cts.cts_ptr >= posptr)
1497 // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 break;
1499
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001500 cts.cts_vcol += incr;
1501 MB_PTR_ADV(cts.cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001503 vcol = cts.cts_vcol;
1504 ptr = cts.cts_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001506 clear_chartabsize_arg(&cts);
1507
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 if (start != NULL)
1509 *start = vcol + head;
1510 if (end != NULL)
1511 *end = vcol + incr - 1;
1512 if (cursor != NULL)
1513 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001514#ifdef FEAT_PROP_POPUP
Bram Moolenaar09ff4b52022-08-01 16:51:02 +01001515 if ((State & MODE_INSERT) == 0)
1516 // cursor is after inserted text
1517 vcol += cts.cts_cur_text_width;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001518#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 if (*ptr == TAB
Bram Moolenaar24959102022-05-07 20:01:16 +01001520 && (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 && !wp->w_p_list
1522 && !virtual_active()
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001523 && !(VIsual_active
1524 && (*p_sel == 'e' || LTOREQ_POS(*pos, VIsual)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 )
Bram Moolenaarc667da52019-11-30 20:52:27 +01001526 *cursor = vcol + incr - 1; // cursor at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 else
Bram Moolenaarc667da52019-11-30 20:52:27 +01001528 *cursor = vcol + head; // cursor at start
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 }
1530}
1531
1532/*
1533 * Get virtual cursor column in the current window, pretending 'list' is off.
1534 */
1535 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01001536getvcol_nolist(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537{
1538 int list_save = curwin->w_p_list;
1539 colnr_T vcol;
1540
1541 curwin->w_p_list = FALSE;
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001542 if (posp->coladd)
1543 getvvcol(curwin, posp, NULL, &vcol, NULL);
1544 else
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001545 getvcol(curwin, posp, NULL, &vcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 curwin->w_p_list = list_save;
1547 return vcol;
1548}
1549
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550/*
1551 * Get virtual column in virtual mode.
1552 */
1553 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001554getvvcol(
1555 win_T *wp,
1556 pos_T *pos,
1557 colnr_T *start,
1558 colnr_T *cursor,
1559 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560{
1561 colnr_T col;
1562 colnr_T coladd;
1563 colnr_T endadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565
1566 if (virtual_active())
1567 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001568 // For virtual mode, only want one value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 getvcol(wp, pos, &col, NULL, NULL);
1570
1571 coladd = pos->coladd;
1572 endadd = 0;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001573 // Cannot put the cursor on part of a wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001575 if (pos->col < (colnr_T)STRLEN(ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 {
1577 int c = (*mb_ptr2char)(ptr + pos->col);
1578
1579 if (c != TAB && vim_isprintc(c))
1580 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001581 endadd = (colnr_T)(char2cells(c) - 1);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001582 if (coladd > endadd) // past end of line
Bram Moolenaara5792f52005-11-23 21:25:05 +00001583 endadd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 else
1585 coladd = 0;
1586 }
1587 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 col += coladd;
1589 if (start != NULL)
1590 *start = col;
1591 if (cursor != NULL)
1592 *cursor = col;
1593 if (end != NULL)
1594 *end = col + endadd;
1595 }
1596 else
1597 getvcol(wp, pos, start, cursor, end);
1598}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600/*
1601 * Get the leftmost and rightmost virtual column of pos1 and pos2.
1602 * Used for Visual block mode.
1603 */
1604 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001605getvcols(
1606 win_T *wp,
1607 pos_T *pos1,
1608 pos_T *pos2,
1609 colnr_T *left,
1610 colnr_T *right)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611{
1612 colnr_T from1, from2, to1, to2;
1613
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001614 if (LT_POSP(pos1, pos2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 {
1616 getvvcol(wp, pos1, &from1, NULL, &to1);
1617 getvvcol(wp, pos2, &from2, NULL, &to2);
1618 }
1619 else
1620 {
1621 getvvcol(wp, pos2, &from1, NULL, &to1);
1622 getvvcol(wp, pos1, &from2, NULL, &to2);
1623 }
1624 if (from2 < from1)
1625 *left = from2;
1626 else
1627 *left = from1;
1628 if (to2 > to1)
1629 {
1630 if (*p_sel == 'e' && from2 - 1 >= to1)
1631 *right = from2 - 1;
1632 else
1633 *right = to2;
1634 }
1635 else
1636 *right = to1;
1637}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
1639/*
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001640 * Skip over ' ' and '\t'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 */
1642 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001643skipwhite(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001645 char_u *p = q;
1646
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001647 while (VIM_ISWHITE(*p))
1648 ++p;
1649 return p;
1650}
1651
Dominique Pelle748b3082022-01-08 12:41:16 +00001652#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001653/*
1654 * skip over ' ', '\t' and '\n'.
1655 */
1656 char_u *
1657skipwhite_and_nl(char_u *q)
1658{
1659 char_u *p = q;
1660
1661 while (VIM_ISWHITE(*p) || *p == NL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 ++p;
1663 return p;
1664}
Dominique Pelle748b3082022-01-08 12:41:16 +00001665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666
1667/*
Bram Moolenaare2e69e42017-09-02 20:30:35 +02001668 * getwhitecols: return the number of whitespace
1669 * columns (bytes) at the start of a given line
1670 */
1671 int
1672getwhitecols_curline()
1673{
1674 return getwhitecols(ml_get_curline());
1675}
1676
1677 int
1678getwhitecols(char_u *p)
1679{
1680 return skipwhite(p) - p;
1681}
1682
1683/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001684 * skip over digits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 */
1686 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001687skipdigits(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001689 char_u *p = q;
1690
Bram Moolenaarc667da52019-11-30 20:52:27 +01001691 while (VIM_ISDIGIT(*p)) // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 ++p;
1693 return p;
1694}
1695
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001696#if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001697/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001698 * skip over binary digits
1699 */
1700 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001701skipbin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001702{
1703 char_u *p = q;
1704
Bram Moolenaarc667da52019-11-30 20:52:27 +01001705 while (vim_isbdigit(*p)) // skip to next non-digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001706 ++p;
1707 return p;
1708}
1709
1710/*
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001711 * skip over digits and hex characters
1712 */
1713 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001714skiphex(char_u *q)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001715{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001716 char_u *p = q;
1717
Bram Moolenaarc667da52019-11-30 20:52:27 +01001718 while (vim_isxdigit(*p)) // skip to next non-digit
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001719 ++p;
1720 return p;
1721}
1722#endif
1723
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001724/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001725 * skip to bin digit (or NUL after the string)
1726 */
1727 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001728skiptobin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001729{
1730 char_u *p = q;
1731
Bram Moolenaarc667da52019-11-30 20:52:27 +01001732 while (*p != NUL && !vim_isbdigit(*p)) // skip to next digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001733 ++p;
1734 return p;
1735}
1736
1737/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001738 * skip to digit (or NUL after the string)
1739 */
1740 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001741skiptodigit(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001742{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001743 char_u *p = q;
1744
Bram Moolenaarc667da52019-11-30 20:52:27 +01001745 while (*p != NUL && !VIM_ISDIGIT(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001746 ++p;
1747 return p;
1748}
1749
1750/*
1751 * skip to hex character (or NUL after the string)
1752 */
1753 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001754skiptohex(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001755{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001756 char_u *p = q;
1757
Bram Moolenaarc667da52019-11-30 20:52:27 +01001758 while (*p != NUL && !vim_isxdigit(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001759 ++p;
1760 return p;
1761}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001762
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763/*
1764 * Variant of isdigit() that can handle characters > 0x100.
1765 * We don't use isdigit() here, because on some systems it also considers
1766 * superscript 1 to be a digit.
1767 * Use the VIM_ISDIGIT() macro for simple arguments.
1768 */
1769 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001770vim_isdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
1772 return (c >= '0' && c <= '9');
1773}
1774
1775/*
1776 * Variant of isxdigit() that can handle characters > 0x100.
1777 * We don't use isxdigit() here, because on some systems it also considers
1778 * superscript 1 to be a digit.
1779 */
1780 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001781vim_isxdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782{
1783 return (c >= '0' && c <= '9')
1784 || (c >= 'a' && c <= 'f')
1785 || (c >= 'A' && c <= 'F');
1786}
1787
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001788/*
1789 * Corollary of vim_isdigit and vim_isxdigit() that can handle
1790 * characters > 0x100.
1791 */
1792 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001793vim_isbdigit(int c)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001794{
1795 return (c == '0' || c == '1');
1796}
1797
Bram Moolenaarc37b6552021-01-07 19:36:30 +01001798 static int
1799vim_isodigit(int c)
1800{
1801 return (c >= '0' && c <= '7');
1802}
1803
Bram Moolenaar78622822005-08-23 21:00:13 +00001804/*
1805 * Vim's own character class functions. These exist because many library
1806 * islower()/toupper() etc. do not work properly: they crash when used with
1807 * invalid values or can't handle latin1 when the locale is C.
1808 * Speed is most important here.
1809 */
1810#define LATIN1LOWER 'l'
1811#define LATIN1UPPER 'U'
1812
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001813static char_u latin1flags[257] = " UUUUUUUUUUUUUUUUUUUUUUUUUU llllllllllllllllllllllllll UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll";
Bram Moolenaar936347b2012-05-25 11:56:22 +02001814static 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";
1815static 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";
Bram Moolenaar78622822005-08-23 21:00:13 +00001816
1817 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001818vim_islower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001819{
1820 if (c <= '@')
1821 return FALSE;
1822 if (c >= 0x80)
1823 {
1824 if (enc_utf8)
1825 return utf_islower(c);
1826 if (c >= 0x100)
1827 {
1828#ifdef HAVE_ISWLOWER
1829 if (has_mbyte)
1830 return iswlower(c);
1831#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001832 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001833 return FALSE;
1834 }
1835 if (enc_latin1like)
1836 return (latin1flags[c] & LATIN1LOWER) == LATIN1LOWER;
1837 }
1838 return islower(c);
1839}
1840
1841 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001842vim_isupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001843{
1844 if (c <= '@')
1845 return FALSE;
1846 if (c >= 0x80)
1847 {
1848 if (enc_utf8)
1849 return utf_isupper(c);
1850 if (c >= 0x100)
1851 {
1852#ifdef HAVE_ISWUPPER
1853 if (has_mbyte)
1854 return iswupper(c);
1855#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001856 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001857 return FALSE;
1858 }
1859 if (enc_latin1like)
1860 return (latin1flags[c] & LATIN1UPPER) == LATIN1UPPER;
1861 }
1862 return isupper(c);
1863}
1864
1865 int
Bram Moolenaar5921aeb2022-02-19 11:20:12 +00001866vim_isalpha(int c)
1867{
1868 return vim_islower(c) || vim_isupper(c);
1869}
1870
1871 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001872vim_toupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001873{
1874 if (c <= '@')
1875 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001876 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001877 {
1878 if (enc_utf8)
1879 return utf_toupper(c);
1880 if (c >= 0x100)
1881 {
1882#ifdef HAVE_TOWUPPER
1883 if (has_mbyte)
1884 return towupper(c);
1885#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001886 // toupper() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001887 return c;
1888 }
1889 if (enc_latin1like)
1890 return latin1upper[c];
1891 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001892 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1893 return TOUPPER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001894 return TOUPPER_LOC(c);
1895}
1896
1897 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001898vim_tolower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001899{
1900 if (c <= '@')
1901 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001902 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001903 {
1904 if (enc_utf8)
1905 return utf_tolower(c);
1906 if (c >= 0x100)
1907 {
1908#ifdef HAVE_TOWLOWER
1909 if (has_mbyte)
1910 return towlower(c);
1911#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001912 // tolower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001913 return c;
1914 }
1915 if (enc_latin1like)
1916 return latin1lower[c];
1917 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001918 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1919 return TOLOWER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001920 return TOLOWER_LOC(c);
1921}
Bram Moolenaar78622822005-08-23 21:00:13 +00001922
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923/*
1924 * skiptowhite: skip over text until ' ' or '\t' or NUL.
1925 */
1926 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001927skiptowhite(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928{
1929 while (*p != ' ' && *p != '\t' && *p != NUL)
1930 ++p;
1931 return p;
1932}
1933
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934/*
1935 * skiptowhite_esc: Like skiptowhite(), but also skip escaped chars
1936 */
1937 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001938skiptowhite_esc(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939{
1940 while (*p != ' ' && *p != '\t' && *p != NUL)
1941 {
1942 if ((*p == '\\' || *p == Ctrl_V) && *(p + 1) != NUL)
1943 ++p;
1944 ++p;
1945 }
1946 return p;
1947}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948
1949/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00001950 * Get a number from a string and skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 * Note: the argument is a pointer to a char_u pointer!
1952 */
1953 long
Bram Moolenaar7454a062016-01-30 15:14:10 +01001954getdigits(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955{
1956 char_u *p;
1957 long retval;
1958
1959 p = *pp;
1960 retval = atol((char *)p);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001961 if (*p == '-') // skip negative sign
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 ++p;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001963 p = skipdigits(p); // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 *pp = p;
1965 return retval;
1966}
1967
1968/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00001969 * Like getdigits() but allow for embedded single quotes.
1970 */
1971 long
1972getdigits_quoted(char_u **pp)
1973{
1974 char_u *p = *pp;
1975 long retval = 0;
1976
1977 if (*p == '-')
1978 ++p;
1979 while (VIM_ISDIGIT(*p))
1980 {
1981 if (retval >= LONG_MAX / 10 - 10)
1982 retval = LONG_MAX;
1983 else
1984 retval = retval * 10 - '0' + *p;
1985 ++p;
1986 if (in_vim9script() && *p == '\'' && VIM_ISDIGIT(p[1]))
1987 ++p;
1988 }
1989 if (**pp == '-')
1990 {
1991 if (retval == LONG_MAX)
1992 retval = LONG_MIN;
1993 else
1994 retval = -retval;
1995 }
1996 *pp = p;
1997 return retval;
1998}
1999
2000/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 * Return TRUE if "lbuf" is empty or only contains blanks.
2002 */
2003 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002004vim_isblankline(char_u *lbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005{
2006 char_u *p;
2007
2008 p = skipwhite(lbuf);
2009 return (*p == NUL || *p == '\r' || *p == '\n');
2010}
2011
2012/*
2013 * Convert a string into a long and/or unsigned long, taking care of
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002014 * hexadecimal, octal, and binary numbers. Accepts a '-' sign.
2015 * If "prep" is not NULL, returns a flag to indicate the type of the number:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 * 0 decimal
2017 * '0' octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002018 * 'O' octal
2019 * 'o' octal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002020 * 'B' bin
2021 * 'b' bin
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 * 'X' hex
2023 * 'x' hex
2024 * If "len" is not NULL, the length of the number in characters is returned.
2025 * If "nptr" is not NULL, the signed result is returned in it.
2026 * If "unptr" is not NULL, the unsigned result is returned in it.
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002027 * If "what" contains STR2NR_BIN recognize binary numbers
2028 * If "what" contains STR2NR_OCT recognize octal numbers
2029 * If "what" contains STR2NR_HEX recognize hex numbers
2030 * If "what" contains STR2NR_FORCE always assume bin/oct/hex.
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002031 * If "what" contains STR2NR_QUOTE ignore embedded single quotes
Bram Moolenaarce157752017-10-28 16:07:33 +02002032 * If maxlen > 0, check at a maximum maxlen chars.
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002033 * If strict is TRUE, check the number strictly. return *len = 0 if fail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 */
2035 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002036vim_str2nr(
2037 char_u *start,
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002038 int *prep, // return: type of number 0 = decimal, 'x'
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002039 // or 'X' is hex, '0', 'o' or 'O' is octal,
2040 // 'b' or 'B' is bin
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002041 int *len, // return: detected length of number
2042 int what, // what numbers to recognize
2043 varnumber_T *nptr, // return: signed result
2044 uvarnumber_T *unptr, // return: unsigned result
2045 int maxlen, // max length of string to check
2046 int strict) // check strictly
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047{
2048 char_u *ptr = start;
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002049 int pre = 0; // default is decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 int negative = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002051 uvarnumber_T un = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002052 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002054 if (len != NULL)
2055 *len = 0;
2056
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (ptr[0] == '-')
2058 {
2059 negative = TRUE;
2060 ++ptr;
2061 }
2062
Bram Moolenaarc667da52019-11-30 20:52:27 +01002063 // Recognize hex, octal, and bin.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002064 if (ptr[0] == '0' && ptr[1] != '8' && ptr[1] != '9'
2065 && (maxlen == 0 || maxlen > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002067 pre = ptr[1];
2068 if ((what & STR2NR_HEX)
2069 && (pre == 'X' || pre == 'x') && vim_isxdigit(ptr[2])
2070 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002071 // hexadecimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002072 ptr += 2;
2073 else if ((what & STR2NR_BIN)
2074 && (pre == 'B' || pre == 'b') && vim_isbdigit(ptr[2])
2075 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002076 // binary
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002077 ptr += 2;
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002078 else if ((what & STR2NR_OOCT)
Bram Moolenaarc37b6552021-01-07 19:36:30 +01002079 && (pre == 'O' || pre == 'o') && vim_isodigit(ptr[2])
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002080 && (maxlen == 0 || maxlen > 2))
2081 // octal with prefix "0o"
2082 ptr += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 else
2084 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002085 // decimal or octal, default is decimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002086 pre = 0;
2087 if (what & STR2NR_OCT)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002088 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002089 // Don't interpret "0", "08" or "0129" as octal.
Bram Moolenaarce157752017-10-28 16:07:33 +02002090 for (n = 1; n != maxlen && VIM_ISDIGIT(ptr[n]); ++n)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002091 {
2092 if (ptr[n] > '7')
2093 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002094 pre = 0; // can't be octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002095 break;
2096 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002097 pre = '0'; // assume octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002098 }
2099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 }
2101 }
2102
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002103 // Do the conversion manually to avoid sscanf() quirks.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002104 n = 1;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002105 if (pre == 'B' || pre == 'b'
2106 || ((what & STR2NR_BIN) && (what & STR2NR_FORCE)))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002107 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002108 // bin
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002109 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002110 n += 2; // skip over "0b"
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002111 while ('0' <= *ptr && *ptr <= '1')
2112 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002113 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002114 if (un <= UVARNUM_MAX / 2)
2115 un = 2 * un + (uvarnumber_T)(*ptr - '0');
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002116 else
2117 un = UVARNUM_MAX;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002118 ++ptr;
2119 if (n++ == maxlen)
2120 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002121 if ((what & STR2NR_QUOTE) && *ptr == '\''
2122 && '0' <= ptr[1] && ptr[1] <= '1')
2123 {
2124 ++ptr;
2125 if (n++ == maxlen)
2126 break;
2127 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002128 }
2129 }
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002130 else if (pre == 'O' || pre == 'o' ||
2131 pre == '0' || ((what & STR2NR_OCT) && (what & STR2NR_FORCE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002133 // octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002134 if (pre != 0 && pre != '0')
2135 n += 2; // skip over "0o"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002136 while ('0' <= *ptr && *ptr <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002138 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002139 if (un <= UVARNUM_MAX / 8)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002140 un = 8 * un + (uvarnumber_T)(*ptr - '0');
2141 else
2142 un = UVARNUM_MAX;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002143 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002144 if (n++ == maxlen)
2145 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002146 if ((what & STR2NR_QUOTE) && *ptr == '\''
2147 && '0' <= ptr[1] && ptr[1] <= '7')
2148 {
2149 ++ptr;
2150 if (n++ == maxlen)
2151 break;
2152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 }
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002154 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002155 else if (pre != 0 || ((what & STR2NR_HEX) && (what & STR2NR_FORCE)))
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002156 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002157 // hex
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002158 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002159 n += 2; // skip over "0x"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002160 while (vim_isxdigit(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002162 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002163 if (un <= UVARNUM_MAX / 16)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002164 un = 16 * un + (uvarnumber_T)hex2nr(*ptr);
2165 else
2166 un = UVARNUM_MAX;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002167 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002168 if (n++ == maxlen)
2169 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002170 if ((what & STR2NR_QUOTE) && *ptr == '\'' && vim_isxdigit(ptr[1]))
2171 {
2172 ++ptr;
2173 if (n++ == maxlen)
2174 break;
2175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 }
2177 }
2178 else
2179 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002180 // decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 while (VIM_ISDIGIT(*ptr))
2182 {
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002183 uvarnumber_T digit = (uvarnumber_T)(*ptr - '0');
2184
Bram Moolenaarc667da52019-11-30 20:52:27 +01002185 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002186 if (un < UVARNUM_MAX / 10
2187 || (un == UVARNUM_MAX / 10 && digit <= UVARNUM_MAX % 10))
2188 un = 10 * un + digit;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002189 else
2190 un = UVARNUM_MAX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002192 if (n++ == maxlen)
2193 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002194 if ((what & STR2NR_QUOTE) && *ptr == '\'' && VIM_ISDIGIT(ptr[1]))
2195 {
2196 ++ptr;
2197 if (n++ == maxlen)
2198 break;
2199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 }
2201 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002202
Bram Moolenaar4b96df52020-01-26 22:00:26 +01002203 // Check for an alphanumeric character immediately following, that is
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002204 // most likely a typo.
2205 if (strict && n - 1 != maxlen && ASCII_ISALNUM(*ptr))
2206 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002208 if (prep != NULL)
2209 *prep = pre;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 if (len != NULL)
2211 *len = (int)(ptr - start);
2212 if (nptr != NULL)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002213 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002214 if (negative) // account for leading '-' for decimal numbers
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002215 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002216 // avoid ubsan error for overflow
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002217 if (un > VARNUM_MAX)
2218 *nptr = VARNUM_MIN;
2219 else
2220 *nptr = -(varnumber_T)un;
2221 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002222 else
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002223 {
Bram Moolenaar338bf582022-05-22 20:16:32 +01002224 // prevent a larg unsigned number to become negative
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002225 if (un > VARNUM_MAX)
2226 un = VARNUM_MAX;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002227 *nptr = (varnumber_T)un;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002228 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 if (unptr != NULL)
2231 *unptr = un;
2232}
2233
2234/*
2235 * Return the value of a single hex character.
2236 * Only valid when the argument is '0' - '9', 'A' - 'F' or 'a' - 'f'.
2237 */
2238 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002239hex2nr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240{
2241 if (c >= 'a' && c <= 'f')
2242 return c - 'a' + 10;
2243 if (c >= 'A' && c <= 'F')
2244 return c - 'A' + 10;
2245 return c - '0';
2246}
2247
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248/*
2249 * Convert two hex characters to a byte.
2250 * Return -1 if one of the characters is not hex.
2251 */
2252 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002253hexhex2nr(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254{
2255 if (!vim_isxdigit(p[0]) || !vim_isxdigit(p[1]))
2256 return -1;
2257 return (hex2nr(p[0]) << 4) + hex2nr(p[1]);
2258}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259
2260/*
2261 * Return TRUE if "str" starts with a backslash that should be removed.
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01002262 * For MS-DOS, MSWIN and OS/2 this is only done when the character after the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 * backslash is not a normal file name character.
2264 * '$' is a valid file name character, we don't remove the backslash before
2265 * it. This means it is not possible to use an environment variable after a
2266 * backslash. "C:\$VIM\doc" is taken literally, only "$VIM\doc" works.
2267 * Although "\ name" is valid, the backslash in "Program\ files" must be
2268 * removed. Assume a file name doesn't start with a space.
2269 * For multi-byte names, never remove a backslash before a non-ascii
2270 * character, assume that all multi-byte characters are valid file name
2271 * characters.
2272 */
2273 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002274rem_backslash(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275{
2276#ifdef BACKSLASH_IN_FILENAME
2277 return (str[0] == '\\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 && str[1] < 0x80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 && (str[1] == ' '
2280 || (str[1] != NUL
2281 && str[1] != '*'
2282 && str[1] != '?'
2283 && !vim_isfilec(str[1]))));
2284#else
2285 return (str[0] == '\\' && str[1] != NUL);
2286#endif
2287}
2288
2289/*
2290 * Halve the number of backslashes in a file name argument.
2291 * For MS-DOS we only do this if the character after the backslash
2292 * is not a normal file character.
2293 */
2294 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002295backslash_halve(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296{
2297 for ( ; *p; ++p)
2298 if (rem_backslash(p))
Bram Moolenaar446cb832008-06-24 21:56:24 +00002299 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300}
2301
2302/*
2303 * backslash_halve() plus save the result in allocated memory.
Bram Moolenaare2c453d2019-08-21 14:37:09 +02002304 * However, returns "p" when out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 */
2306 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002307backslash_halve_save(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308{
2309 char_u *res;
2310
2311 res = vim_strsave(p);
2312 if (res == NULL)
2313 return p;
2314 backslash_halve(res);
2315 return res;
2316}