blob: c4db9f8cae3a31cf06b52b29ee14b8b5a84e4d25 [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);
Bram Moolenaar49a90792022-08-09 18:25:23 +0100762#ifdef FEAT_PROP_POPUP
763 if (cts.cts_has_prop_with_text && cts.cts_ptr == cts.cts_line)
764 {
765 // check for virtual text in an empty line
766 (void)lbr_chartabsize_adv(&cts);
767 cts.cts_vcol += cts.cts_cur_text_width;
768 }
769#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100770 clear_chartabsize_arg(&cts);
771 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772}
773
774/*
775 * Like linetabsize(), but for a given window instead of the current one.
776 */
777 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100778win_linetabsize(win_T *wp, linenr_T lnum, char_u *line, colnr_T len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100780 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100782 init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
Bram Moolenaar49a90792022-08-09 18:25:23 +0100783 win_linetabsize_cts(&cts, len);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100784 clear_chartabsize_arg(&cts);
785 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786}
787
Bram Moolenaar49a90792022-08-09 18:25:23 +0100788 void
789win_linetabsize_cts(chartabsize_T *cts, colnr_T len)
790{
791#ifdef FEAT_PROP_POPUP
792 cts->cts_with_trailing = len == MAXCOL;
793#endif
794 for ( ; *cts->cts_ptr != NUL && (len == MAXCOL || cts->cts_ptr < cts->cts_line + len);
795 MB_PTR_ADV(cts->cts_ptr))
796 cts->cts_vcol += win_lbr_chartabsize(cts, NULL);
797#ifdef FEAT_PROP_POPUP
798 // check for a virtual text on an empty line
799 if (cts->cts_has_prop_with_text && *cts->cts_ptr == NUL
800 && cts->cts_ptr == cts->cts_line)
801 {
802 (void)win_lbr_chartabsize(cts, NULL);
803 cts->cts_vcol += cts->cts_cur_text_width;
804 }
805#endif
806}
807
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808/*
Bram Moolenaar81695252004-12-29 20:58:21 +0000809 * Return TRUE if 'c' is a normal identifier character:
810 * Letters and characters from the 'isident' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 */
812 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100813vim_isIDc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100815 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816}
817
818/*
Bram Moolenaare3d1f4c2021-04-06 20:21:59 +0200819 * Like vim_isIDc() but not using the 'isident' option: letters, numbers and
820 * underscore.
821 */
822 int
823vim_isNormalIDc(int c)
824{
825 return ASCII_ISALNUM(c) || c == '_';
826}
827
828/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 * return TRUE if 'c' is a keyword character: Letters and characters from
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100830 * 'iskeyword' option for the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 * For multi-byte characters mb_get_class() is used (builtin rules).
832 */
833 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100834vim_iswordc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100836 return vim_iswordc_buf(c, curbuf);
837}
838
839 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100840vim_iswordc_buf(int c, buf_T *buf)
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100841{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 if (c >= 0x100)
843 {
844 if (enc_dbcs != 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000845 return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100847 return utf_class_buf(c, buf) >= 2;
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100848 return FALSE;
849 }
850 return (c > 0 && GET_CHARTAB(buf, c) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851}
852
853/*
854 * Just like vim_iswordc() but uses a pointer to the (multi-byte) character.
855 */
856 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100857vim_iswordp(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100859 return vim_iswordp_buf(p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860}
861
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100863vim_iswordp_buf(char_u *p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100865 int c = *p;
866
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100867 if (has_mbyte && MB_BYTE2LEN(c) > 1)
868 c = (*mb_ptr2char)(p);
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100869 return vim_iswordc_buf(c, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871
872/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100873 * Return TRUE if 'c' is a valid file-name character as specified with the
874 * 'isfname' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 * Assume characters above 0x100 are valid (multi-byte).
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100876 * To be used for commands like "gf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 */
878 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100879vim_isfilec(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100881 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_FNAME_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882}
883
884/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100885 * Return TRUE if 'c' is a valid file-name character, including characters left
886 * out of 'isfname' to make "gf" work, such as comma, space, '@', etc.
887 */
888 int
889vim_is_fname_char(int c)
890{
891 return vim_isfilec(c) || c == ',' || c == ' ' || c == '@';
892}
893
894/*
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000895 * return TRUE if 'c' is a valid file-name character or a wildcard character
896 * Assume characters above 0x100 are valid (multi-byte).
897 * Explicitly interpret ']' as a wildcard character as mch_has_wildcard("]")
898 * returns false.
899 */
900 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100901vim_isfilec_or_wc(int c)
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000902{
903 char_u buf[2];
904
905 buf[0] = (char_u)c;
906 buf[1] = NUL;
907 return vim_isfilec(c) || c == ']' || mch_has_wildcard(buf);
908}
909
910/*
Bram Moolenaar3317d5e2017-04-08 19:12:06 +0200911 * Return TRUE if 'c' is a printable character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 * Assume characters above 0x100 are printable (multi-byte), except for
913 * Unicode.
914 */
915 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100916vim_isprintc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 if (enc_utf8 && c >= 0x100)
919 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100920 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921}
922
923/*
924 * Strict version of vim_isprintc(c), don't return TRUE if "c" is the head
925 * byte of a double-byte character.
926 */
927 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100928vim_isprintc_strict(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 if (enc_dbcs != 0 && c < 0x100 && MB_BYTE2LEN(c) > 1)
931 return FALSE;
932 if (enc_utf8 && c >= 0x100)
933 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100934 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935}
936
937/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100938 * Prepare the structure passed to chartabsize functions.
939 * "line" is the start of the line, "ptr" is the first relevant character.
940 * When "lnum" is zero do not use text properties that insert text.
941 */
942 void
943init_chartabsize_arg(
944 chartabsize_T *cts,
945 win_T *wp,
Bram Moolenaare5a420f2022-09-07 21:46:56 +0100946 linenr_T lnum UNUSED,
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100947 colnr_T col,
948 char_u *line,
949 char_u *ptr)
950{
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100951 CLEAR_POINTER(cts);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100952 cts->cts_win = wp;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100953 cts->cts_vcol = col;
954 cts->cts_line = line;
955 cts->cts_ptr = ptr;
956#ifdef FEAT_PROP_POPUP
Bram Moolenaar702bd6c2022-09-14 16:09:57 +0100957 if (lnum > 0 && !ignore_text_props)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100958 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100959 char_u *prop_start;
960 int count;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100961
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100962 count = get_text_props(wp->w_buffer, lnum, &prop_start, FALSE);
963 cts->cts_text_prop_count = count;
964 if (count > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100965 {
966 // Make a copy of the properties, so that they are properly
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100967 // aligned. Make it twice as long for the sorting below.
968 cts->cts_text_props = ALLOC_MULT(textprop_T, count * 2);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100969 if (cts->cts_text_props == NULL)
970 cts->cts_text_prop_count = 0;
971 else
972 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100973 int i;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100974
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100975 mch_memmove(cts->cts_text_props + count, prop_start,
976 count * sizeof(textprop_T));
977 for (i = 0; i < count; ++i)
978 if (cts->cts_text_props[i + count].tp_id < 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100979 {
980 cts->cts_has_prop_with_text = TRUE;
981 break;
982 }
983 if (!cts->cts_has_prop_with_text)
984 {
985 // won't use the text properties, free them
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100986 VIM_CLEAR(cts->cts_text_props);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100987 cts->cts_text_prop_count = 0;
988 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100989 else
990 {
991 int *text_prop_idxs;
992
993 // Need to sort the array to get any truncation right.
994 // Do the sorting in the second part of the array, then
995 // move the sorted props to the first part of the array.
996 text_prop_idxs = ALLOC_MULT(int, count);
997 if (text_prop_idxs != NULL)
998 {
999 for (i = 0; i < count; ++i)
1000 text_prop_idxs[i] = i + count;
1001 sort_text_props(curbuf, cts->cts_text_props,
1002 text_prop_idxs, count);
1003 // Here we want the reverse order.
1004 for (i = 0; i < count; ++i)
1005 cts->cts_text_props[count - i - 1] =
1006 cts->cts_text_props[text_prop_idxs[i]];
1007 vim_free(text_prop_idxs);
1008 }
1009 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001010 }
1011 }
1012 }
1013#endif
1014}
1015
1016/*
1017 * Free any allocated item in "cts".
1018 */
1019 void
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001020clear_chartabsize_arg(chartabsize_T *cts UNUSED)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001021{
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001022#ifdef FEAT_PROP_POPUP
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001023 if (cts->cts_text_prop_count > 0)
Bram Moolenaar34a1f772022-07-26 11:20:48 +01001024 {
Bram Moolenaar3f79b612022-08-01 12:06:40 +01001025 VIM_CLEAR(cts->cts_text_props);
1026 cts->cts_text_prop_count = 0;
Bram Moolenaar34a1f772022-07-26 11:20:48 +01001027 }
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001028#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001029}
1030
1031/*
1032 * Like chartabsize(), but also check for line breaks on the screen and text
1033 * properties that insert text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 */
1035 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001036lbr_chartabsize(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001038#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
1039 if (1
1040# ifdef FEAT_LINEBREAK
1041 && !curwin->w_p_lbr && *get_showbreak_value(curwin) == NUL
1042 && !curwin->w_p_bri
1043# endif
1044# ifdef FEAT_PROP_POPUP
1045 && !cts->cts_has_prop_with_text
1046#endif
1047 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
1049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 if (curwin->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001051 return win_nolbr_chartabsize(cts, NULL);
1052 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, cts->cts_ptr, cts->cts_vcol)
1053#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001055 return win_lbr_chartabsize(cts, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056#endif
1057}
1058
1059/*
1060 * Call lbr_chartabsize() and advance the pointer.
1061 */
1062 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001063lbr_chartabsize_adv(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064{
1065 int retval;
1066
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001067 retval = lbr_chartabsize(cts);
1068 MB_PTR_ADV(cts->cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 return retval;
1070}
1071
1072/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001073 * Return the screen size of the character indicated by "cts".
1074 * "cts->cts_cur_text_width" is set to the extra size for a text property that
1075 * inserts text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 * This function is used very often, keep it fast!!!!
1077 *
1078 * If "headp" not NULL, set *headp to the size of what we for 'showbreak'
1079 * string at start of line. Warning: *headp is only set if it's a non-zero
1080 * value, init to 0 before calling.
1081 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001083win_lbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001084 chartabsize_T *cts,
1085 int *headp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001087 win_T *wp = cts->cts_win;
Martin Tournoijba43e762022-10-13 22:12:15 +01001088#if defined(FEAT_PROP_POPUP) || defined(FEAT_LINEBREAK)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001089 char_u *line = cts->cts_line; // start of the line
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001090#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001091 char_u *s = cts->cts_ptr;
1092 colnr_T vcol = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093#ifdef FEAT_LINEBREAK
1094 int c;
1095 int size;
1096 colnr_T col2;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001097 colnr_T col_adj = 0; // vcol + screen size of tab
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 colnr_T colmax;
1099 int added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 int mb_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 int numberextra;
1102 char_u *ps;
1103 int tab_corr = (*s == TAB);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001104 int n;
Bram Moolenaaree857022019-11-09 23:26:40 +01001105 char_u *sbr;
Bram Moolenaarcba69522022-08-06 21:03:53 +01001106 int no_sbr = FALSE;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001107#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001109#if defined(FEAT_PROP_POPUP)
1110 cts->cts_cur_text_width = 0;
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001111 cts->cts_first_char = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001112#endif
1113
1114#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001116 * No 'linebreak', 'showbreak', 'breakindent' and text properties that
1117 * insert text: return quickly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001119 if (1
1120# ifdef FEAT_LINEBREAK
1121 && !wp->w_p_lbr && !wp->w_p_bri && *get_showbreak_value(wp) == NUL
1122# endif
1123# ifdef FEAT_PROP_POPUP
1124 && !cts->cts_has_prop_with_text
1125# endif
1126 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127#endif
1128 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 if (wp->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001130 return win_nolbr_chartabsize(cts, headp);
1131 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, s, vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 }
1133
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001134#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001136 * First get the normal size, without 'linebreak' or text properties
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001138 size = win_chartabsize(wp, s, vcol);
1139
1140# ifdef FEAT_PROP_POPUP
Bram Moolenaar49a90792022-08-09 18:25:23 +01001141 if (cts->cts_has_prop_with_text)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001142 {
Bram Moolenaare428fa02022-08-09 16:55:41 +01001143 int tab_size = size;
Bram Moolenaar49a90792022-08-09 18:25:23 +01001144 int charlen = *s == NUL ? 1 : mb_ptr2len(s);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001145 int i;
1146 int col = (int)(s - line);
1147 garray_T *gap = &wp->w_buffer->b_textprop_text;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001148
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001149 // The "$" for 'list' mode will go between the EOL and
1150 // the text prop, account for that.
1151 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
1152 ++vcol;
1153
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001154 for (i = 0; i < cts->cts_text_prop_count; ++i)
1155 {
Bram Moolenaarc8bf59e2022-08-28 16:39:22 +01001156 textprop_T *tp = cts->cts_text_props + i;
1157 int col_off = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001158
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001159 // Watch out for the text being deleted. "cts_text_props" is a
1160 // copy, the text prop may actually have been removed from the line.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001161 if (tp->tp_id < 0
Bram Moolenaar25463612022-08-08 11:07:47 +01001162 && ((tp->tp_col - 1 >= col
Bram Moolenaare428fa02022-08-09 16:55:41 +01001163 && tp->tp_col - 1 < col + charlen)
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001164 || (tp->tp_col == MAXCOL
1165 && ((tp->tp_flags & TP_FLAG_ALIGN_ABOVE)
1166 ? col == 0
1167 : (s[0] == NUL || s[1] == NUL)
1168 && cts->cts_with_trailing)))
1169 && tp->tp_id - 1 < gap->ga_len)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001170 {
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001171 char_u *p = ((char_u **)gap->ga_data)[-tp->tp_id - 1];
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001172
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001173 if (p != NULL)
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001174 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001175 int cells;
Bram Moolenaar398649e2022-08-04 15:03:48 +01001176
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001177 if (tp->tp_col == MAXCOL)
1178 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001179 int n_extra = (int)STRLEN(p);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001180
Bram Moolenaarf167c7b2022-10-09 21:53:58 +01001181 cells = text_prop_position(wp, tp, vcol,
Bram Moolenaarc8bf59e2022-08-28 16:39:22 +01001182 (vcol + size) % (wp->w_width - col_off) + col_off,
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001183 &n_extra, &p, NULL, NULL);
Bram Moolenaarcba69522022-08-06 21:03:53 +01001184#ifdef FEAT_LINEBREAK
1185 no_sbr = TRUE; // don't use 'showbreak' now
1186#endif
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001187 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001188 else
1189 cells = vim_strsize(p);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001190 cts->cts_cur_text_width += cells;
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001191 if (tp->tp_flags & TP_FLAG_ALIGN_ABOVE)
1192 cts->cts_first_char += cells;
Bram Moolenaar28c9f892022-08-14 13:28:55 +01001193 cts->cts_start_incl = tp->tp_flags & TP_FLAG_START_INCL;
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001194 size += cells;
Bram Moolenaare428fa02022-08-09 16:55:41 +01001195 if (*s == TAB)
1196 {
1197 // tab size changes because of the inserted text
1198 size -= tab_size;
1199 tab_size = win_chartabsize(wp, s, vcol + size);
1200 size += tab_size;
1201 }
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001202 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001203 }
Bram Moolenaar50e75fe2022-08-05 20:25:50 +01001204 if (tp->tp_col != MAXCOL && tp->tp_col - 1 > col)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001205 break;
1206 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001207 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
1208 --vcol;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001209 }
1210# endif
1211
1212# ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 c = *s;
Bram Moolenaaree739b42014-07-02 19:37:42 +02001214 if (tab_corr)
1215 col_adj = size - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216
1217 /*
1218 * If 'linebreak' set check at a blank before a non-blank if the line
1219 * needs a break here
1220 */
1221 if (wp->w_p_lbr
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001222 && VIM_ISBREAK(c)
Bram Moolenaar977d0372017-03-12 21:31:58 +01001223 && !VIM_ISBREAK((int)s[1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 && wp->w_p_wrap
Bram Moolenaar4033c552017-09-16 20:54:51 +02001225 && wp->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 {
1227 /*
1228 * Count all characters from first non-blank after a blank up to next
1229 * non-blank after a blank.
1230 */
1231 numberextra = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001232 col2 = vcol;
Bram Moolenaar02631462017-09-22 15:20:32 +02001233 colmax = (colnr_T)(wp->w_width - numberextra - col_adj);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001234 if (vcol >= colmax)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001235 {
Bram Moolenaaree739b42014-07-02 19:37:42 +02001236 colmax += col_adj;
1237 n = colmax + win_col_off2(wp);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001238 if (n > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001239 colmax += (((vcol - colmax) / n) + 1) * n - col_adj;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001240 }
1241
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 for (;;)
1243 {
1244 ps = s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001245 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 c = *s;
1247 if (!(c != NUL
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001248 && (VIM_ISBREAK(c)
1249 || (!VIM_ISBREAK(c)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001250 && (col2 == vcol || !VIM_ISBREAK((int)*ps))))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 break;
1252
1253 col2 += win_chartabsize(wp, s, col2);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001254 if (col2 >= colmax) // doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001256 size = colmax - vcol + col_adj;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 break;
1258 }
1259 }
1260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 else if (has_mbyte && size == 2 && MB_BYTE2LEN(*s) > 1
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001262 && wp->w_p_wrap && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001264 ++size; // Count the ">" in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 mb_added = 1;
1266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267
1268 /*
Bram Moolenaar597a4222014-06-25 14:39:50 +02001269 * May have to add something for 'breakindent' and/or 'showbreak'
1270 * string at start of line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 * Set *headp to the size of what we add.
Bram Moolenaar21efafe2022-03-03 20:04:03 +00001272 * Do not use 'showbreak' at the NUL after the text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 */
1274 added = 0;
Bram Moolenaarcba69522022-08-06 21:03:53 +01001275 sbr = (c == NUL || no_sbr) ? empty_option : get_showbreak_value(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001276 if ((*sbr != NUL || wp->w_p_bri) && wp->w_p_wrap && vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 {
Bram Moolenaard574ea22015-01-14 19:35:14 +01001278 colnr_T sbrlen = 0;
1279 int numberwidth = win_col_off(wp);
1280
1281 numberextra = numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001282 vcol += numberextra + mb_added;
Bram Moolenaar4c7fd4d2022-09-17 17:15:33 +01001283#ifdef FEAT_PROP_POPUP
1284 vcol -= wp->w_virtcol_first_char;
1285#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001286 if (vcol >= (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001288 vcol -= wp->w_width;
Bram Moolenaar02631462017-09-22 15:20:32 +02001289 numberextra = wp->w_width - (numberextra - win_col_off2(wp));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001290 if (vcol >= numberextra && numberextra > 0)
1291 vcol %= numberextra;
Bram Moolenaaree857022019-11-09 23:26:40 +01001292 if (*sbr != NUL)
Bram Moolenaar1c852102014-10-15 21:26:40 +02001293 {
Bram Moolenaaree857022019-11-09 23:26:40 +01001294 sbrlen = (colnr_T)MB_CHARLEN(sbr);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001295 if (vcol >= sbrlen)
1296 vcol -= sbrlen;
Bram Moolenaar1c852102014-10-15 21:26:40 +02001297 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001298 if (vcol >= numberextra && numberextra > 0)
1299 vcol = vcol % numberextra;
1300 else if (vcol > 0 && numberextra > 0)
1301 vcol += numberwidth - win_col_off2(wp);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001302
1303 numberwidth -= win_col_off2(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001305 if (vcol == 0 || vcol + size + sbrlen > (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02001307 added = 0;
Bram Moolenaaree857022019-11-09 23:26:40 +01001308 if (*sbr != NUL)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001309 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001310 if (size + sbrlen + numberwidth > (colnr_T)wp->w_width)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001311 {
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001312 // calculate effective window width
Bram Moolenaar02631462017-09-22 15:20:32 +02001313 int width = (colnr_T)wp->w_width - sbrlen - numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001314 int prev_width = vcol
1315 ? ((colnr_T)wp->w_width - (sbrlen + vcol)) : 0;
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001316
1317 if (width <= 0)
1318 width = (colnr_T)1;
Bram Moolenaaree857022019-11-09 23:26:40 +01001319 added += ((size - prev_width) / width) * vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001320 if ((size - prev_width) % width)
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001321 // wrapped, add another length of 'sbr'
Bram Moolenaaree857022019-11-09 23:26:40 +01001322 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001323 }
1324 else
Bram Moolenaaree857022019-11-09 23:26:40 +01001325 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001326 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02001327 if (wp->w_p_bri)
1328 added += get_breakindent_win(wp, line);
1329
Bram Moolenaar95765082014-08-24 21:19:25 +02001330 size += added;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001331 if (vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 added = 0;
1333 }
1334 }
1335 if (headp != NULL)
1336 *headp = added + mb_added;
1337 return size;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001338# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339#endif
1340}
1341
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001343 * Like win_lbr_chartabsize(), except that we know 'linebreak' is off, 'wrap'
1344 * is on and there are no properties that insert text. This means we need to
1345 * check for a double-byte character that doesn't fit at the end of the screen
1346 * line.
1347 * Only uses "cts_win", "cts_ptr" and "cts_vcol" from "cts".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 */
1349 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001350win_nolbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001351 chartabsize_T *cts,
1352 int *headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001354 win_T *wp = cts->cts_win;
1355 char_u *s = cts->cts_ptr;
1356 colnr_T col = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 int n;
1358
Bram Moolenaareed9d462021-02-15 20:38:25 +01001359 if (*s == TAB && (!wp->w_p_list || wp->w_lcs_chars.tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001361# ifdef FEAT_VARTABS
1362 return tabstop_padding(col, wp->w_buffer->b_p_ts,
1363 wp->w_buffer->b_p_vts_array);
1364# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 n = wp->w_buffer->b_p_ts;
1366 return (int)(n - (col % n));
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001367# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 }
1369 n = ptr2cells(s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001370 // Add one cell for a double-width character in the last column of the
1371 // window, displayed with a ">".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 if (n == 2 && MB_BYTE2LEN(*s) > 1 && in_win_border(wp, col))
1373 {
1374 if (headp != NULL)
1375 *headp = 1;
1376 return 3;
1377 }
1378 return n;
1379}
1380
1381/*
1382 * Return TRUE if virtual column "vcol" is in the rightmost column of window
1383 * "wp".
1384 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001385 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001386in_win_border(win_T *wp, colnr_T vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387{
Bram Moolenaarc667da52019-11-30 20:52:27 +01001388 int width1; // width of first line (after line number)
1389 int width2; // width of further lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390
Bram Moolenaarc667da52019-11-30 20:52:27 +01001391 if (wp->w_width == 0) // there is no border
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 return FALSE;
Bram Moolenaar02631462017-09-22 15:20:32 +02001393 width1 = wp->w_width - win_col_off(wp);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001394 if ((int)vcol < width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001396 if ((int)vcol == width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 return TRUE;
1398 width2 = width1 + win_col_off2(wp);
Bram Moolenaar8701cd62009-10-07 14:20:30 +00001399 if (width2 <= 0)
1400 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 return ((vcol - width1) % width2 == width2 - 1);
1402}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
1404/*
1405 * Get virtual column number of pos.
1406 * start: on the first position of this character (TAB, ctrl)
1407 * cursor: where the cursor is on this character (first char, except for TAB)
1408 * end: on the last position of this character (TAB, ctrl)
1409 *
1410 * This is used very often, keep it fast!
1411 */
1412 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001413getvcol(
1414 win_T *wp,
1415 pos_T *pos,
1416 colnr_T *start,
1417 colnr_T *cursor,
1418 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419{
1420 colnr_T vcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001421 char_u *ptr; // points to current char
1422 char_u *posptr; // points to char at pos->col
1423 char_u *line; // start of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 int incr;
1425 int head;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001426#ifdef FEAT_VARTABS
1427 int *vts = wp->w_buffer->b_p_vts_array;
1428#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 int ts = wp->w_buffer->b_p_ts;
1430 int c;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001431 chartabsize_T cts;
Bram Moolenaar49a90792022-08-09 18:25:23 +01001432#ifdef FEAT_PROP_POPUP
1433 int on_NUL = FALSE;
1434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
1436 vcol = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02001437 line = ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001438 if (pos->col == MAXCOL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001439 posptr = NULL; // continue until the NUL
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001440 else
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001441 {
Bram Moolenaar94f31922021-12-30 15:29:18 +00001442 colnr_T i;
1443
1444 // In a few cases the position can be beyond the end of the line.
1445 for (i = 0; i < pos->col; ++i)
1446 if (ptr[i] == NUL)
1447 {
1448 pos->col = i;
1449 break;
1450 }
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001451 posptr = ptr + pos->col;
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001452 if (has_mbyte)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001453 // always start on the first byte
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001454 posptr -= (*mb_head_off)(line, posptr);
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001457 init_chartabsize_arg(&cts, wp, pos->lnum, 0, line, line);
1458
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 /*
1460 * This function is used very often, do some speed optimizations.
Bram Moolenaar597a4222014-06-25 14:39:50 +02001461 * When 'list', 'linebreak', 'showbreak' and 'breakindent' are not set
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001462 * and there are no text properties with "text" use a simple loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 * Also use this when 'list' is set but tabs take their normal size.
1464 */
Bram Moolenaareed9d462021-02-15 20:38:25 +01001465 if ((!wp->w_p_list || wp->w_lcs_chars.tab1 != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001467 && !wp->w_p_lbr && *get_showbreak_value(wp) == NUL && !wp->w_p_bri
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001469#ifdef FEAT_PROP_POPUP
1470 && !cts.cts_has_prop_with_text
1471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 )
1473 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 for (;;)
1475 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 head = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 c = *ptr;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001478 // make sure we don't go past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 if (c == NUL)
1480 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001481 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 break;
1483 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001484 // A tab gets expanded, depending on the current column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 if (c == TAB)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001486#ifdef FEAT_VARTABS
1487 incr = tabstop_padding(vcol, ts, vts);
1488#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 incr = ts - (vcol % ts);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001490#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 else
1492 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 if (has_mbyte)
1494 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001495 // For utf-8, if the byte is >= 0x80, need to look at
1496 // further bytes to find the cell width.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 if (enc_utf8 && c >= 0x80)
1498 incr = utf_ptr2cells(ptr);
1499 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001500 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501
Bram Moolenaarc667da52019-11-30 20:52:27 +01001502 // If a double-cell char doesn't fit at the end of a line
1503 // it wraps to the next line, it's like this char is three
1504 // cells wide.
Bram Moolenaar9c33a7c2008-02-20 13:59:32 +00001505 if (incr == 2 && wp->w_p_wrap && MB_BYTE2LEN(*ptr) > 1
1506 && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 {
1508 ++incr;
1509 head = 1;
1510 }
1511 }
1512 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001513 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 }
1515
Bram Moolenaarc667da52019-11-30 20:52:27 +01001516 if (posptr != NULL && ptr >= posptr) // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 break;
1518
1519 vcol += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001520 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 }
1522 }
1523 else
1524 {
1525 for (;;)
1526 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001527 // A tab gets expanded, depending on the current column.
1528 // Other things also take up space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 head = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001530 incr = win_lbr_chartabsize(&cts, &head);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001531 // make sure we don't go past the end of the line
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001532 if (*cts.cts_ptr == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001534 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar49a90792022-08-09 18:25:23 +01001535#ifdef FEAT_PROP_POPUP
1536 if (cts.cts_cur_text_width > 0)
1537 incr = cts.cts_cur_text_width;
1538 on_NUL = TRUE;
1539#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 break;
1541 }
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001542#ifdef FEAT_PROP_POPUP
1543 if (cursor == &wp->w_virtcol && cts.cts_ptr == cts.cts_line)
1544 // do not count the virtual text above for w_curswant
1545 wp->w_virtcol_first_char = cts.cts_first_char;
1546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001548 if (posptr != NULL && cts.cts_ptr >= posptr)
1549 // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 break;
1551
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001552 cts.cts_vcol += incr;
1553 MB_PTR_ADV(cts.cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001555 vcol = cts.cts_vcol;
1556 ptr = cts.cts_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001558 clear_chartabsize_arg(&cts);
1559
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 if (start != NULL)
1561 *start = vcol + head;
1562 if (end != NULL)
1563 *end = vcol + incr - 1;
1564 if (cursor != NULL)
1565 {
1566 if (*ptr == TAB
Bram Moolenaar24959102022-05-07 20:01:16 +01001567 && (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 && !wp->w_p_list
1569 && !virtual_active()
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001570 && !(VIsual_active
1571 && (*p_sel == 'e' || LTOREQ_POS(*pos, VIsual)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 )
Bram Moolenaarc667da52019-11-30 20:52:27 +01001573 *cursor = vcol + incr - 1; // cursor at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 else
Bram Moolenaare428fa02022-08-09 16:55:41 +01001575 {
1576#ifdef FEAT_PROP_POPUP
Bram Moolenaar28c9f892022-08-14 13:28:55 +01001577 // in Insert mode, if "start_incl" is true the text gets inserted
1578 // after the virtual text, thus add its width
1579 if (((State & MODE_INSERT) == 0 || cts.cts_start_incl) && !on_NUL)
Bram Moolenaar49a90792022-08-09 18:25:23 +01001580 // cursor is after inserted text, unless on the NUL
Bram Moolenaare428fa02022-08-09 16:55:41 +01001581 vcol += cts.cts_cur_text_width;
Bram Moolenaar88b79cb2022-09-10 22:32:14 +01001582 else
1583 // insertion also happens after the "above" virtual text
1584 vcol += cts.cts_first_char;
Bram Moolenaare428fa02022-08-09 16:55:41 +01001585#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001586 *cursor = vcol + head; // cursor at start
Bram Moolenaare428fa02022-08-09 16:55:41 +01001587 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 }
1589}
1590
1591/*
1592 * Get virtual cursor column in the current window, pretending 'list' is off.
1593 */
1594 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01001595getvcol_nolist(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596{
1597 int list_save = curwin->w_p_list;
1598 colnr_T vcol;
1599
1600 curwin->w_p_list = FALSE;
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001601 if (posp->coladd)
1602 getvvcol(curwin, posp, NULL, &vcol, NULL);
1603 else
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001604 getvcol(curwin, posp, NULL, &vcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 curwin->w_p_list = list_save;
1606 return vcol;
1607}
1608
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609/*
1610 * Get virtual column in virtual mode.
1611 */
1612 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001613getvvcol(
1614 win_T *wp,
1615 pos_T *pos,
1616 colnr_T *start,
1617 colnr_T *cursor,
1618 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619{
1620 colnr_T col;
1621 colnr_T coladd;
1622 colnr_T endadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
1625 if (virtual_active())
1626 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001627 // For virtual mode, only want one value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 getvcol(wp, pos, &col, NULL, NULL);
1629
1630 coladd = pos->coladd;
1631 endadd = 0;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001632 // Cannot put the cursor on part of a wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001634 if (pos->col < (colnr_T)STRLEN(ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 {
1636 int c = (*mb_ptr2char)(ptr + pos->col);
1637
1638 if (c != TAB && vim_isprintc(c))
1639 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001640 endadd = (colnr_T)(char2cells(c) - 1);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001641 if (coladd > endadd) // past end of line
Bram Moolenaara5792f52005-11-23 21:25:05 +00001642 endadd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 else
1644 coladd = 0;
1645 }
1646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 col += coladd;
1648 if (start != NULL)
1649 *start = col;
1650 if (cursor != NULL)
1651 *cursor = col;
1652 if (end != NULL)
1653 *end = col + endadd;
1654 }
1655 else
1656 getvcol(wp, pos, start, cursor, end);
1657}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659/*
1660 * Get the leftmost and rightmost virtual column of pos1 and pos2.
1661 * Used for Visual block mode.
1662 */
1663 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001664getvcols(
1665 win_T *wp,
1666 pos_T *pos1,
1667 pos_T *pos2,
1668 colnr_T *left,
1669 colnr_T *right)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670{
1671 colnr_T from1, from2, to1, to2;
1672
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001673 if (LT_POSP(pos1, pos2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 {
1675 getvvcol(wp, pos1, &from1, NULL, &to1);
1676 getvvcol(wp, pos2, &from2, NULL, &to2);
1677 }
1678 else
1679 {
1680 getvvcol(wp, pos2, &from1, NULL, &to1);
1681 getvvcol(wp, pos1, &from2, NULL, &to2);
1682 }
1683 if (from2 < from1)
1684 *left = from2;
1685 else
1686 *left = from1;
1687 if (to2 > to1)
1688 {
1689 if (*p_sel == 'e' && from2 - 1 >= to1)
1690 *right = from2 - 1;
1691 else
1692 *right = to2;
1693 }
1694 else
1695 *right = to1;
1696}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697
1698/*
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001699 * Skip over ' ' and '\t'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 */
1701 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001702skipwhite(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001704 char_u *p = q;
1705
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001706 while (VIM_ISWHITE(*p))
1707 ++p;
1708 return p;
1709}
1710
Dominique Pelle748b3082022-01-08 12:41:16 +00001711#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001712/*
1713 * skip over ' ', '\t' and '\n'.
1714 */
1715 char_u *
1716skipwhite_and_nl(char_u *q)
1717{
1718 char_u *p = q;
1719
1720 while (VIM_ISWHITE(*p) || *p == NL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 ++p;
1722 return p;
1723}
Dominique Pelle748b3082022-01-08 12:41:16 +00001724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725
1726/*
Bram Moolenaare2e69e42017-09-02 20:30:35 +02001727 * getwhitecols: return the number of whitespace
1728 * columns (bytes) at the start of a given line
1729 */
1730 int
1731getwhitecols_curline()
1732{
1733 return getwhitecols(ml_get_curline());
1734}
1735
1736 int
1737getwhitecols(char_u *p)
1738{
1739 return skipwhite(p) - p;
1740}
1741
1742/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001743 * skip over digits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 */
1745 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001746skipdigits(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001748 char_u *p = q;
1749
Bram Moolenaarc667da52019-11-30 20:52:27 +01001750 while (VIM_ISDIGIT(*p)) // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 ++p;
1752 return p;
1753}
1754
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001755#if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001756/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001757 * skip over binary digits
1758 */
1759 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001760skipbin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001761{
1762 char_u *p = q;
1763
Bram Moolenaarc667da52019-11-30 20:52:27 +01001764 while (vim_isbdigit(*p)) // skip to next non-digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001765 ++p;
1766 return p;
1767}
1768
1769/*
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001770 * skip over digits and hex characters
1771 */
1772 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001773skiphex(char_u *q)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001774{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001775 char_u *p = q;
1776
Bram Moolenaarc667da52019-11-30 20:52:27 +01001777 while (vim_isxdigit(*p)) // skip to next non-digit
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001778 ++p;
1779 return p;
1780}
1781#endif
1782
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001783/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001784 * skip to bin digit (or NUL after the string)
1785 */
1786 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001787skiptobin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001788{
1789 char_u *p = q;
1790
Bram Moolenaarc667da52019-11-30 20:52:27 +01001791 while (*p != NUL && !vim_isbdigit(*p)) // skip to next digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001792 ++p;
1793 return p;
1794}
1795
1796/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001797 * skip to digit (or NUL after the string)
1798 */
1799 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001800skiptodigit(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001801{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001802 char_u *p = q;
1803
Bram Moolenaarc667da52019-11-30 20:52:27 +01001804 while (*p != NUL && !VIM_ISDIGIT(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001805 ++p;
1806 return p;
1807}
1808
1809/*
1810 * skip to hex character (or NUL after the string)
1811 */
1812 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001813skiptohex(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001814{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001815 char_u *p = q;
1816
Bram Moolenaarc667da52019-11-30 20:52:27 +01001817 while (*p != NUL && !vim_isxdigit(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001818 ++p;
1819 return p;
1820}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001821
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822/*
1823 * Variant of isdigit() that can handle characters > 0x100.
1824 * We don't use isdigit() here, because on some systems it also considers
1825 * superscript 1 to be a digit.
1826 * Use the VIM_ISDIGIT() macro for simple arguments.
1827 */
1828 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001829vim_isdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830{
1831 return (c >= '0' && c <= '9');
1832}
1833
1834/*
1835 * Variant of isxdigit() that can handle characters > 0x100.
1836 * We don't use isxdigit() here, because on some systems it also considers
1837 * superscript 1 to be a digit.
1838 */
1839 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001840vim_isxdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841{
1842 return (c >= '0' && c <= '9')
1843 || (c >= 'a' && c <= 'f')
1844 || (c >= 'A' && c <= 'F');
1845}
1846
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001847/*
1848 * Corollary of vim_isdigit and vim_isxdigit() that can handle
1849 * characters > 0x100.
1850 */
1851 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001852vim_isbdigit(int c)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001853{
1854 return (c == '0' || c == '1');
1855}
1856
Bram Moolenaarc37b6552021-01-07 19:36:30 +01001857 static int
1858vim_isodigit(int c)
1859{
1860 return (c >= '0' && c <= '7');
1861}
1862
Bram Moolenaar78622822005-08-23 21:00:13 +00001863/*
1864 * Vim's own character class functions. These exist because many library
1865 * islower()/toupper() etc. do not work properly: they crash when used with
1866 * invalid values or can't handle latin1 when the locale is C.
1867 * Speed is most important here.
1868 */
1869#define LATIN1LOWER 'l'
1870#define LATIN1UPPER 'U'
1871
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001872static char_u latin1flags[257] = " UUUUUUUUUUUUUUUUUUUUUUUUUU llllllllllllllllllllllllll UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll";
Bram Moolenaar936347b2012-05-25 11:56:22 +02001873static 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";
1874static 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 +00001875
1876 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001877vim_islower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001878{
1879 if (c <= '@')
1880 return FALSE;
1881 if (c >= 0x80)
1882 {
1883 if (enc_utf8)
1884 return utf_islower(c);
1885 if (c >= 0x100)
1886 {
1887#ifdef HAVE_ISWLOWER
1888 if (has_mbyte)
1889 return iswlower(c);
1890#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001891 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001892 return FALSE;
1893 }
1894 if (enc_latin1like)
1895 return (latin1flags[c] & LATIN1LOWER) == LATIN1LOWER;
1896 }
1897 return islower(c);
1898}
1899
1900 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001901vim_isupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001902{
1903 if (c <= '@')
1904 return FALSE;
1905 if (c >= 0x80)
1906 {
1907 if (enc_utf8)
1908 return utf_isupper(c);
1909 if (c >= 0x100)
1910 {
1911#ifdef HAVE_ISWUPPER
1912 if (has_mbyte)
1913 return iswupper(c);
1914#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001915 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001916 return FALSE;
1917 }
1918 if (enc_latin1like)
1919 return (latin1flags[c] & LATIN1UPPER) == LATIN1UPPER;
1920 }
1921 return isupper(c);
1922}
1923
1924 int
Bram Moolenaar5921aeb2022-02-19 11:20:12 +00001925vim_isalpha(int c)
1926{
1927 return vim_islower(c) || vim_isupper(c);
1928}
1929
1930 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001931vim_toupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001932{
1933 if (c <= '@')
1934 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001935 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001936 {
1937 if (enc_utf8)
1938 return utf_toupper(c);
1939 if (c >= 0x100)
1940 {
1941#ifdef HAVE_TOWUPPER
1942 if (has_mbyte)
1943 return towupper(c);
1944#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001945 // toupper() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001946 return c;
1947 }
1948 if (enc_latin1like)
1949 return latin1upper[c];
1950 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001951 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1952 return TOUPPER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001953 return TOUPPER_LOC(c);
1954}
1955
1956 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001957vim_tolower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001958{
1959 if (c <= '@')
1960 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001961 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001962 {
1963 if (enc_utf8)
1964 return utf_tolower(c);
1965 if (c >= 0x100)
1966 {
1967#ifdef HAVE_TOWLOWER
1968 if (has_mbyte)
1969 return towlower(c);
1970#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001971 // tolower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001972 return c;
1973 }
1974 if (enc_latin1like)
1975 return latin1lower[c];
1976 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001977 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1978 return TOLOWER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001979 return TOLOWER_LOC(c);
1980}
Bram Moolenaar78622822005-08-23 21:00:13 +00001981
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982/*
1983 * skiptowhite: skip over text until ' ' or '\t' or NUL.
1984 */
1985 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001986skiptowhite(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988 while (*p != ' ' && *p != '\t' && *p != NUL)
1989 ++p;
1990 return p;
1991}
1992
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993/*
1994 * skiptowhite_esc: Like skiptowhite(), but also skip escaped chars
1995 */
1996 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001997skiptowhite_esc(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998{
1999 while (*p != ' ' && *p != '\t' && *p != NUL)
2000 {
2001 if ((*p == '\\' || *p == Ctrl_V) && *(p + 1) != NUL)
2002 ++p;
2003 ++p;
2004 }
2005 return p;
2006}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007
2008/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00002009 * Get a number from a string and skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 * Note: the argument is a pointer to a char_u pointer!
2011 */
2012 long
Bram Moolenaar7454a062016-01-30 15:14:10 +01002013getdigits(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014{
2015 char_u *p;
2016 long retval;
2017
2018 p = *pp;
2019 retval = atol((char *)p);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002020 if (*p == '-') // skip negative sign
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 ++p;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002022 p = skipdigits(p); // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 *pp = p;
2024 return retval;
2025}
2026
2027/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00002028 * Like getdigits() but allow for embedded single quotes.
2029 */
2030 long
2031getdigits_quoted(char_u **pp)
2032{
2033 char_u *p = *pp;
2034 long retval = 0;
2035
2036 if (*p == '-')
2037 ++p;
2038 while (VIM_ISDIGIT(*p))
2039 {
2040 if (retval >= LONG_MAX / 10 - 10)
2041 retval = LONG_MAX;
2042 else
2043 retval = retval * 10 - '0' + *p;
2044 ++p;
2045 if (in_vim9script() && *p == '\'' && VIM_ISDIGIT(p[1]))
2046 ++p;
2047 }
2048 if (**pp == '-')
2049 {
2050 if (retval == LONG_MAX)
2051 retval = LONG_MIN;
2052 else
2053 retval = -retval;
2054 }
2055 *pp = p;
2056 return retval;
2057}
2058
2059/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 * Return TRUE if "lbuf" is empty or only contains blanks.
2061 */
2062 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002063vim_isblankline(char_u *lbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064{
2065 char_u *p;
2066
2067 p = skipwhite(lbuf);
2068 return (*p == NUL || *p == '\r' || *p == '\n');
2069}
2070
2071/*
2072 * Convert a string into a long and/or unsigned long, taking care of
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002073 * hexadecimal, octal, and binary numbers. Accepts a '-' sign.
2074 * If "prep" is not NULL, returns a flag to indicate the type of the number:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 * 0 decimal
2076 * '0' octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002077 * 'O' octal
2078 * 'o' octal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002079 * 'B' bin
2080 * 'b' bin
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 * 'X' hex
2082 * 'x' hex
2083 * If "len" is not NULL, the length of the number in characters is returned.
2084 * If "nptr" is not NULL, the signed result is returned in it.
2085 * If "unptr" is not NULL, the unsigned result is returned in it.
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002086 * If "what" contains STR2NR_BIN recognize binary numbers
2087 * If "what" contains STR2NR_OCT recognize octal numbers
2088 * If "what" contains STR2NR_HEX recognize hex numbers
2089 * If "what" contains STR2NR_FORCE always assume bin/oct/hex.
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002090 * If "what" contains STR2NR_QUOTE ignore embedded single quotes
Bram Moolenaarce157752017-10-28 16:07:33 +02002091 * If maxlen > 0, check at a maximum maxlen chars.
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002092 * If strict is TRUE, check the number strictly. return *len = 0 if fail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 */
2094 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002095vim_str2nr(
2096 char_u *start,
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002097 int *prep, // return: type of number 0 = decimal, 'x'
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002098 // or 'X' is hex, '0', 'o' or 'O' is octal,
2099 // 'b' or 'B' is bin
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002100 int *len, // return: detected length of number
2101 int what, // what numbers to recognize
2102 varnumber_T *nptr, // return: signed result
2103 uvarnumber_T *unptr, // return: unsigned result
2104 int maxlen, // max length of string to check
2105 int strict) // check strictly
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 char_u *ptr = start;
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002108 int pre = 0; // default is decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 int negative = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002110 uvarnumber_T un = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002111 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002113 if (len != NULL)
2114 *len = 0;
2115
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 if (ptr[0] == '-')
2117 {
2118 negative = TRUE;
2119 ++ptr;
2120 }
2121
Bram Moolenaarc667da52019-11-30 20:52:27 +01002122 // Recognize hex, octal, and bin.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002123 if (ptr[0] == '0' && ptr[1] != '8' && ptr[1] != '9'
2124 && (maxlen == 0 || maxlen > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002126 pre = ptr[1];
2127 if ((what & STR2NR_HEX)
2128 && (pre == 'X' || pre == 'x') && vim_isxdigit(ptr[2])
2129 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002130 // hexadecimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002131 ptr += 2;
2132 else if ((what & STR2NR_BIN)
2133 && (pre == 'B' || pre == 'b') && vim_isbdigit(ptr[2])
2134 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002135 // binary
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002136 ptr += 2;
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002137 else if ((what & STR2NR_OOCT)
Bram Moolenaarc37b6552021-01-07 19:36:30 +01002138 && (pre == 'O' || pre == 'o') && vim_isodigit(ptr[2])
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002139 && (maxlen == 0 || maxlen > 2))
2140 // octal with prefix "0o"
2141 ptr += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 else
2143 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002144 // decimal or octal, default is decimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002145 pre = 0;
2146 if (what & STR2NR_OCT)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002147 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002148 // Don't interpret "0", "08" or "0129" as octal.
Bram Moolenaarce157752017-10-28 16:07:33 +02002149 for (n = 1; n != maxlen && VIM_ISDIGIT(ptr[n]); ++n)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002150 {
2151 if (ptr[n] > '7')
2152 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002153 pre = 0; // can't be octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002154 break;
2155 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002156 pre = '0'; // assume octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002157 }
2158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 }
2160 }
2161
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002162 // Do the conversion manually to avoid sscanf() quirks.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002163 n = 1;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002164 if (pre == 'B' || pre == 'b'
2165 || ((what & STR2NR_BIN) && (what & STR2NR_FORCE)))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002166 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002167 // bin
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002168 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002169 n += 2; // skip over "0b"
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002170 while ('0' <= *ptr && *ptr <= '1')
2171 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002172 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002173 if (un <= UVARNUM_MAX / 2)
2174 un = 2 * un + (uvarnumber_T)(*ptr - '0');
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002175 else
2176 un = UVARNUM_MAX;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002177 ++ptr;
2178 if (n++ == maxlen)
2179 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002180 if ((what & STR2NR_QUOTE) && *ptr == '\''
2181 && '0' <= ptr[1] && ptr[1] <= '1')
2182 {
2183 ++ptr;
2184 if (n++ == maxlen)
2185 break;
2186 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002187 }
2188 }
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002189 else if (pre == 'O' || pre == 'o' ||
2190 pre == '0' || ((what & STR2NR_OCT) && (what & STR2NR_FORCE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002192 // octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002193 if (pre != 0 && pre != '0')
2194 n += 2; // skip over "0o"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002195 while ('0' <= *ptr && *ptr <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002197 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002198 if (un <= UVARNUM_MAX / 8)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002199 un = 8 * un + (uvarnumber_T)(*ptr - '0');
2200 else
2201 un = UVARNUM_MAX;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002202 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002203 if (n++ == maxlen)
2204 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002205 if ((what & STR2NR_QUOTE) && *ptr == '\''
2206 && '0' <= ptr[1] && ptr[1] <= '7')
2207 {
2208 ++ptr;
2209 if (n++ == maxlen)
2210 break;
2211 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 }
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002213 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002214 else if (pre != 0 || ((what & STR2NR_HEX) && (what & STR2NR_FORCE)))
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002215 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002216 // hex
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002217 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002218 n += 2; // skip over "0x"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002219 while (vim_isxdigit(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002221 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002222 if (un <= UVARNUM_MAX / 16)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002223 un = 16 * un + (uvarnumber_T)hex2nr(*ptr);
2224 else
2225 un = UVARNUM_MAX;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002226 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002227 if (n++ == maxlen)
2228 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002229 if ((what & STR2NR_QUOTE) && *ptr == '\'' && vim_isxdigit(ptr[1]))
2230 {
2231 ++ptr;
2232 if (n++ == maxlen)
2233 break;
2234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 }
2236 }
2237 else
2238 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002239 // decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 while (VIM_ISDIGIT(*ptr))
2241 {
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002242 uvarnumber_T digit = (uvarnumber_T)(*ptr - '0');
2243
Bram Moolenaarc667da52019-11-30 20:52:27 +01002244 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002245 if (un < UVARNUM_MAX / 10
2246 || (un == UVARNUM_MAX / 10 && digit <= UVARNUM_MAX % 10))
2247 un = 10 * un + digit;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002248 else
2249 un = UVARNUM_MAX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002251 if (n++ == maxlen)
2252 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002253 if ((what & STR2NR_QUOTE) && *ptr == '\'' && VIM_ISDIGIT(ptr[1]))
2254 {
2255 ++ptr;
2256 if (n++ == maxlen)
2257 break;
2258 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 }
2260 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002261
Bram Moolenaar4b96df52020-01-26 22:00:26 +01002262 // Check for an alphanumeric character immediately following, that is
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002263 // most likely a typo.
2264 if (strict && n - 1 != maxlen && ASCII_ISALNUM(*ptr))
2265 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002267 if (prep != NULL)
2268 *prep = pre;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 if (len != NULL)
2270 *len = (int)(ptr - start);
2271 if (nptr != NULL)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002272 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002273 if (negative) // account for leading '-' for decimal numbers
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002274 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002275 // avoid ubsan error for overflow
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002276 if (un > VARNUM_MAX)
2277 *nptr = VARNUM_MIN;
2278 else
2279 *nptr = -(varnumber_T)un;
2280 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002281 else
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002282 {
Bram Moolenaar338bf582022-05-22 20:16:32 +01002283 // prevent a larg unsigned number to become negative
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002284 if (un > VARNUM_MAX)
2285 un = VARNUM_MAX;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002286 *nptr = (varnumber_T)un;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002287 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 if (unptr != NULL)
2290 *unptr = un;
2291}
2292
2293/*
2294 * Return the value of a single hex character.
2295 * Only valid when the argument is '0' - '9', 'A' - 'F' or 'a' - 'f'.
2296 */
2297 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002298hex2nr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299{
2300 if (c >= 'a' && c <= 'f')
2301 return c - 'a' + 10;
2302 if (c >= 'A' && c <= 'F')
2303 return c - 'A' + 10;
2304 return c - '0';
2305}
2306
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307/*
2308 * Convert two hex characters to a byte.
2309 * Return -1 if one of the characters is not hex.
2310 */
2311 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002312hexhex2nr(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313{
2314 if (!vim_isxdigit(p[0]) || !vim_isxdigit(p[1]))
2315 return -1;
2316 return (hex2nr(p[0]) << 4) + hex2nr(p[1]);
2317}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318
2319/*
2320 * Return TRUE if "str" starts with a backslash that should be removed.
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01002321 * For MS-DOS, MSWIN and OS/2 this is only done when the character after the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 * backslash is not a normal file name character.
2323 * '$' is a valid file name character, we don't remove the backslash before
2324 * it. This means it is not possible to use an environment variable after a
2325 * backslash. "C:\$VIM\doc" is taken literally, only "$VIM\doc" works.
2326 * Although "\ name" is valid, the backslash in "Program\ files" must be
2327 * removed. Assume a file name doesn't start with a space.
2328 * For multi-byte names, never remove a backslash before a non-ascii
2329 * character, assume that all multi-byte characters are valid file name
2330 * characters.
2331 */
2332 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002333rem_backslash(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334{
2335#ifdef BACKSLASH_IN_FILENAME
2336 return (str[0] == '\\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 && str[1] < 0x80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 && (str[1] == ' '
2339 || (str[1] != NUL
2340 && str[1] != '*'
2341 && str[1] != '?'
2342 && !vim_isfilec(str[1]))));
2343#else
2344 return (str[0] == '\\' && str[1] != NUL);
2345#endif
2346}
2347
2348/*
2349 * Halve the number of backslashes in a file name argument.
2350 * For MS-DOS we only do this if the character after the backslash
2351 * is not a normal file character.
2352 */
2353 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002354backslash_halve(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355{
2356 for ( ; *p; ++p)
2357 if (rem_backslash(p))
Bram Moolenaar446cb832008-06-24 21:56:24 +00002358 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359}
2360
2361/*
2362 * backslash_halve() plus save the result in allocated memory.
Bram Moolenaare2c453d2019-08-21 14:37:09 +02002363 * However, returns "p" when out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 */
2365 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002366backslash_halve_save(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367{
2368 char_u *res;
2369
2370 res = vim_strsave(p);
2371 if (res == NULL)
2372 return p;
2373 backslash_halve(res);
2374 return res;
2375}