blob: 7ffd8d8a753985b621e751d18d67e3c13beeaeba [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);
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +0000348
349 if (res == NULL)
350 return NULL;
351
352 *res = NUL;
353 p = s;
354 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +0000356 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 {
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +0000358 c = (*mb_ptr2char)(p);
359 if (vim_isprintc(c))
360 STRNCAT(res, p, l); // append printable multi-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 else
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +0000362 transchar_hex(res + STRLEN(res), c);
363 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 }
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +0000365 else
366 STRCAT(res, transchar_byte(*p++));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 }
368 return res;
369}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371/*
Bram Moolenaar217ad922005-03-20 22:37:15 +0000372 * Convert the string "str[orglen]" to do ignore-case comparing. Uses the
373 * current locale.
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000374 * When "buf" is NULL returns an allocated string (NULL for out-of-memory).
375 * Otherwise puts the result in "buf[buflen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 */
377 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100378str_foldcase(
379 char_u *str,
380 int orglen,
381 char_u *buf,
382 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383{
384 garray_T ga;
385 int i;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000386 int len = orglen;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387
388#define GA_CHAR(i) ((char_u *)ga.ga_data)[i]
kylo252ae6f1d82022-02-16 19:24:07 +0000389#define GA_PTR(i) ((char_u *)ga.ga_data + (i))
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000390#define STR_CHAR(i) (buf == NULL ? GA_CHAR(i) : buf[i])
kylo252ae6f1d82022-02-16 19:24:07 +0000391#define STR_PTR(i) (buf == NULL ? GA_PTR(i) : buf + (i))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392
Bram Moolenaarc667da52019-11-30 20:52:27 +0100393 // Copy "str" into "buf" or allocated memory, unmodified.
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000394 if (buf == NULL)
395 {
396 ga_init2(&ga, 1, 10);
397 if (ga_grow(&ga, len + 1) == FAIL)
398 return NULL;
399 mch_memmove(ga.ga_data, str, (size_t)len);
400 ga.ga_len = len;
401 }
402 else
403 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100404 if (len >= buflen) // Ugly!
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000405 len = buflen - 1;
406 mch_memmove(buf, str, (size_t)len);
407 }
408 if (buf == NULL)
409 GA_CHAR(len) = NUL;
410 else
411 buf[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
Bram Moolenaarc667da52019-11-30 20:52:27 +0100413 // Make each character lower case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 i = 0;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000415 while (STR_CHAR(i) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 {
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000417 if (enc_utf8 || (has_mbyte && MB_BYTE2LEN(STR_CHAR(i)) > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 {
419 if (enc_utf8)
420 {
Bram Moolenaarb9839212008-06-28 11:03:50 +0000421 int c = utf_ptr2char(STR_PTR(i));
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100422 int olen = utf_ptr2len(STR_PTR(i));
Bram Moolenaarb9839212008-06-28 11:03:50 +0000423 int lc = utf_tolower(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424
Bram Moolenaarc667da52019-11-30 20:52:27 +0100425 // Only replace the character when it is not an invalid
426 // sequence (ASCII character or more than one byte) and
427 // utf_tolower() doesn't return the original character.
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100428 if ((c < 0x80 || olen > 1) && c != lc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100430 int nlen = utf_char2len(lc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431
Bram Moolenaarc667da52019-11-30 20:52:27 +0100432 // If the byte length changes need to shift the following
433 // characters forward or backward.
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100434 if (olen != nlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100436 if (nlen > olen)
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000437 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100438 if (buf == NULL
439 ? ga_grow(&ga, nlen - olen + 1) == FAIL
440 : len + nlen - olen >= buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100442 // out of memory, keep old char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 lc = c;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100444 nlen = olen;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 }
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000446 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100447 if (olen != nlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 {
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000449 if (buf == NULL)
450 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100451 STRMOVE(GA_PTR(i) + nlen, GA_PTR(i) + olen);
452 ga.ga_len += nlen - olen;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000453 }
454 else
455 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100456 STRMOVE(buf + i + nlen, buf + i + olen);
457 len += nlen - olen;
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 }
460 }
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000461 (void)utf_char2bytes(lc, STR_PTR(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 }
463 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100464 // skip to next multi-byte char
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000465 i += (*mb_ptr2len)(STR_PTR(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466 }
467 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 {
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000469 if (buf == NULL)
470 GA_CHAR(i) = TOLOWER_LOC(GA_CHAR(i));
471 else
472 buf[i] = TOLOWER_LOC(buf[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 ++i;
474 }
475 }
476
Bram Moolenaar6ebb1142005-01-25 21:58:26 +0000477 if (buf == NULL)
478 return (char_u *)ga.ga_data;
479 return buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481
482/*
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100483 * Catch 22: g_chartab[] can't be initialized before the options are
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 * initialized, and initializing options may cause transchar() to be called!
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100485 * When chartab_initialized == FALSE don't use g_chartab[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 * Does NOT work for multi-byte characters, c must be <= 255.
487 * Also doesn't work for the first byte of a multi-byte, "c" must be a
488 * character!
489 */
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200490static char_u transchar_charbuf[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
492 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100493transchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494{
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200495 return transchar_buf(curbuf, c);
496}
497
498 char_u *
499transchar_buf(buf_T *buf, int c)
500{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 int i;
502
503 i = 0;
Bram Moolenaarc667da52019-11-30 20:52:27 +0100504 if (IS_SPECIAL(c)) // special key code, display as ~@ char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200506 transchar_charbuf[0] = '~';
507 transchar_charbuf[1] = '@';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 i = 2;
509 c = K_SECOND(c);
510 }
511
Bram Moolenaar424bcae2022-01-31 14:59:41 +0000512 if ((!chartab_initialized && ((c >= ' ' && c <= '~')))
513 || (c < 256 && vim_isprintc_strict(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100515 // printable character
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200516 transchar_charbuf[i] = c;
517 transchar_charbuf[i + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 }
519 else
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200520 transchar_nonprint(buf, transchar_charbuf + i, c);
521 return transchar_charbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522}
523
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524/*
525 * Like transchar(), but called with a byte instead of a character. Checks
cero19881d87e112023-02-16 15:03:12 +0000526 * for an illegal UTF-8 byte. Uses 'fileformat' of the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 */
528 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100529transchar_byte(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530{
cero19881d87e112023-02-16 15:03:12 +0000531 return transchar_byte_buf(curbuf, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533
534/*
cero19881d87e112023-02-16 15:03:12 +0000535 * Like transchar_buf(), but called with a byte instead of a character. Checks
536 * for an illegal UTF-8 byte. Uses 'fileformat' of "buf", unless it is NULL.
537 */
538 char_u *
539transchar_byte_buf(buf_T *buf, int c)
540{
541 if (enc_utf8 && c >= 0x80)
542 {
543 transchar_nonprint(buf, transchar_charbuf, c);
544 return transchar_charbuf;
545 }
546 return transchar_buf(buf, c);
547}
548/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 * Convert non-printable character to two or more printable characters in
Bram Moolenaara9a6b032023-02-05 18:00:42 +0000550 * "charbuf[]". "charbuf" needs to be able to hold five bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 * Does NOT work for multi-byte characters, c must be <= 255.
552 */
553 void
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200554transchar_nonprint(buf_T *buf, char_u *charbuf, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555{
556 if (c == NL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100557 c = NUL; // we use newline in place of a NUL
cero19881d87e112023-02-16 15:03:12 +0000558 else if (buf != NULL && c == CAR && get_fileformat(buf) == EOL_MAC)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100559 c = NL; // we use CR in place of NL in this case
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560
Bram Moolenaarc667da52019-11-30 20:52:27 +0100561 if (dy_flags & DY_UHEX) // 'display' has "uhex"
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 <= 0x7f) // 0x00 - 0x1f and 0x7f
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200566 charbuf[0] = '^';
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200567 charbuf[1] = c ^ 0x40; // DEL displayed as ^?
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200568 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f01a6532022-03-09 13:00:54 +0000570 else if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200572 transchar_hex(charbuf, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100574 else if (c >= ' ' + 0x80 && c <= '~' + 0x80) // 0xa0 - 0xfe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200576 charbuf[0] = '|';
577 charbuf[1] = c - 0x80;
578 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100580 else // 0x80 - 0x9f and 0xff
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200582 charbuf[0] = '~';
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200583 charbuf[1] = (c - 0x80) ^ 0x40; // 0xff displayed as ~?
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200584 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 }
586}
587
588 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100589transchar_hex(char_u *buf, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590{
591 int i = 0;
592
593 buf[0] = '<';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 if (c > 255)
595 {
596 buf[++i] = nr2hex((unsigned)c >> 12);
597 buf[++i] = nr2hex((unsigned)c >> 8);
598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 buf[++i] = nr2hex((unsigned)c >> 4);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000600 buf[++i] = nr2hex((unsigned)c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 buf[++i] = '>';
602 buf[++i] = NUL;
603}
604
605/*
606 * Convert the lower 4 bits of byte "c" to its hex character.
607 * Lower case letters are used to avoid the confusion of <F1> being 0xf1 or
608 * function key 1.
609 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000610 static unsigned
Bram Moolenaar7454a062016-01-30 15:14:10 +0100611nr2hex(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612{
613 if ((c & 0xf) <= 9)
614 return (c & 0xf) + '0';
615 return (c & 0xf) - 10 + 'a';
616}
617
618/*
619 * Return number of display cells occupied by byte "b".
620 * Caller must make sure 0 <= b <= 255.
621 * For multi-byte mode "b" must be the first byte of a character.
622 * A TAB is counted as two cells: "^I".
623 * For UTF-8 mode this will return 0 for bytes >= 0x80, because the number of
624 * cells depends on further bytes.
625 */
626 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100627byte2cells(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 if (enc_utf8 && b >= 0x80)
630 return 0;
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100631 return (g_chartab[b] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632}
633
634/*
635 * Return number of display cells occupied by character "c".
636 * "c" can be a special key (negative number) in which case 3 or 4 is returned.
637 * A TAB is counted as two cells: "^I" or four: "<09>".
638 */
639 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100640char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641{
642 if (IS_SPECIAL(c))
643 return char2cells(K_SECOND(c)) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 if (c >= 0x80)
645 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100646 // UTF-8: above 0x80 need to check the value
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 if (enc_utf8)
648 return utf_char2cells(c);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100649 // DBCS: double-byte means double-width, except for euc-jp with first
650 // byte 0x8e
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 if (enc_dbcs != 0 && c >= 0x100)
652 {
653 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
654 return 1;
655 return 2;
656 }
657 }
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100658 return (g_chartab[c & 0xff] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659}
660
661/*
662 * Return number of display cells occupied by character at "*p".
663 * A TAB is counted as two cells: "^I" or four: "<09>".
664 */
665 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100666ptr2cells(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667{
Bram Moolenaar398649e2022-08-04 15:03:48 +0100668 if (!has_mbyte)
669 return byte2cells(*p);
670
Bram Moolenaarc667da52019-11-30 20:52:27 +0100671 // For UTF-8 we need to look at more bytes if the first byte is >= 0x80.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 if (enc_utf8 && *p >= 0x80)
673 return utf_ptr2cells(p);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100674 // For DBCS we can tell the cell count from the first byte.
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100675 return (g_chartab[*p] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676}
677
678/*
Bram Moolenaar06af6022012-01-26 13:40:08 +0100679 * Return the number of character cells string "s" will take on the screen,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 * counting TABs as two characters: "^I".
681 */
682 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100683vim_strsize(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684{
685 return vim_strnsize(s, (int)MAXCOL);
686}
687
688/*
Bram Moolenaar06af6022012-01-26 13:40:08 +0100689 * Return the number of character cells string "s[len]" will take on the
690 * screen, counting TABs as two characters: "^I".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 */
692 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100693vim_strnsize(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694{
695 int size = 0;
696
697 while (*s != NUL && --len >= 0)
Bram Moolenaar398649e2022-08-04 15:03:48 +0100698 {
699 int l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
Bram Moolenaar398649e2022-08-04 15:03:48 +0100701 size += ptr2cells(s);
702 s += l;
703 len -= l - 1;
704 }
Bram Moolenaar13505972019-01-24 15:04:48 +0100705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 return size;
707}
708
709/*
710 * Return the number of characters 'c' will take on the screen, taking
711 * into account the size of a tab.
712 * Use a define to make it fast, this is used very often!!!
713 * Also see getvcol() below.
714 */
715
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200716#ifdef FEAT_VARTABS
717# define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
kylo252ae6f1d82022-02-16 19:24:07 +0000718 if (*(p) == TAB && (!(wp)->w_p_list || (wp)->w_lcs_chars.tab1)) \
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200719 { \
720 return tabstop_padding(col, (buf)->b_p_ts, (buf)->b_p_vts_array); \
721 } \
722 else \
723 return ptr2cells(p);
724#else
725# define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
Bram Moolenaareed9d462021-02-15 20:38:25 +0100726 if (*(p) == TAB && (!(wp)->w_p_list || wp->w_lcs_chars.tab1)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 { \
728 int ts; \
729 ts = (buf)->b_p_ts; \
730 return (int)(ts - (col % ts)); \
731 } \
732 else \
733 return ptr2cells(p);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100737chartabsize(char_u *p, colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738{
739 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, p, col)
740}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
742#ifdef FEAT_LINEBREAK
743 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100744win_chartabsize(win_T *wp, char_u *p, colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745{
746 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, p, col)
747}
748#endif
749
750/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100751 * Return the number of characters the string "s" will take on the screen,
Bram Moolenaardc536092010-07-18 15:45:49 +0200752 * taking into account the size of a tab.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100753 * Does not handle text properties, since "s" is not a buffer line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 */
755 int
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100756linetabsize_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757{
Bram Moolenaardc536092010-07-18 15:45:49 +0200758 return linetabsize_col(0, s);
759}
760
761/*
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100762 * Like linetabsize_str(), but "s" starts at column "startcol".
Bram Moolenaardc536092010-07-18 15:45:49 +0200763 */
764 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100765linetabsize_col(int startcol, char_u *s)
Bram Moolenaardc536092010-07-18 15:45:49 +0200766{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100767 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100769 init_chartabsize_arg(&cts, curwin, 0, startcol, s, s);
770 while (*cts.cts_ptr != NUL)
771 cts.cts_vcol += lbr_chartabsize_adv(&cts);
772 clear_chartabsize_arg(&cts);
773 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774}
775
776/*
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100777 * Like linetabsize_str(), but for a given window instead of the current one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 */
779 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100780win_linetabsize(win_T *wp, linenr_T lnum, char_u *line, colnr_T len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100782 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100784 init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
Bram Moolenaar49a90792022-08-09 18:25:23 +0100785 win_linetabsize_cts(&cts, len);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100786 clear_chartabsize_arg(&cts);
787 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788}
789
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100790/*
791 * Return the number of cells line "lnum" of window "wp" will take on the
792 * screen, taking into account the size of a tab and text properties.
793 */
794 int
795linetabsize(win_T *wp, linenr_T lnum)
796{
797 return win_linetabsize(wp, lnum,
798 ml_get_buf(wp->w_buffer, lnum, FALSE), (colnr_T)MAXCOL);
799}
800
Bram Moolenaar49a90792022-08-09 18:25:23 +0100801 void
802win_linetabsize_cts(chartabsize_T *cts, colnr_T len)
803{
804#ifdef FEAT_PROP_POPUP
805 cts->cts_with_trailing = len == MAXCOL;
806#endif
807 for ( ; *cts->cts_ptr != NUL && (len == MAXCOL || cts->cts_ptr < cts->cts_line + len);
808 MB_PTR_ADV(cts->cts_ptr))
809 cts->cts_vcol += win_lbr_chartabsize(cts, NULL);
810#ifdef FEAT_PROP_POPUP
811 // check for a virtual text on an empty line
812 if (cts->cts_has_prop_with_text && *cts->cts_ptr == NUL
813 && cts->cts_ptr == cts->cts_line)
814 {
815 (void)win_lbr_chartabsize(cts, NULL);
816 cts->cts_vcol += cts->cts_cur_text_width;
Bram Moolenaar55a27d82023-02-12 18:03:57 +0000817
818 // when properties are above or below the empty line must also be
819 // counted
820 if (cts->cts_prop_lines > 0)
821 ++cts->cts_vcol;
Bram Moolenaar49a90792022-08-09 18:25:23 +0100822 }
823#endif
824}
825
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826/*
Bram Moolenaar81695252004-12-29 20:58:21 +0000827 * Return TRUE if 'c' is a normal identifier character:
828 * Letters and characters from the 'isident' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 */
830 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100831vim_isIDc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100833 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834}
835
836/*
Bram Moolenaare3d1f4c2021-04-06 20:21:59 +0200837 * Like vim_isIDc() but not using the 'isident' option: letters, numbers and
838 * underscore.
839 */
840 int
841vim_isNormalIDc(int c)
842{
843 return ASCII_ISALNUM(c) || c == '_';
844}
845
846/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 * return TRUE if 'c' is a keyword character: Letters and characters from
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100848 * 'iskeyword' option for the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 * For multi-byte characters mb_get_class() is used (builtin rules).
850 */
851 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100852vim_iswordc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853{
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100854 return vim_iswordc_buf(c, curbuf);
855}
856
857 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100858vim_iswordc_buf(int c, buf_T *buf)
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100859{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 if (c >= 0x100)
861 {
862 if (enc_dbcs != 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000863 return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100865 return utf_class_buf(c, buf) >= 2;
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100866 return FALSE;
867 }
868 return (c > 0 && GET_CHARTAB(buf, c) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869}
870
871/*
872 * Just like vim_iswordc() but uses a pointer to the (multi-byte) character.
873 */
874 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100875vim_iswordp(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100877 return vim_iswordp_buf(p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878}
879
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100881vim_iswordp_buf(char_u *p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100883 int c = *p;
884
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100885 if (has_mbyte && MB_BYTE2LEN(c) > 1)
886 c = (*mb_ptr2char)(p);
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100887 return vim_iswordc_buf(c, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889
890/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100891 * Return TRUE if 'c' is a valid file-name character as specified with the
892 * 'isfname' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 * Assume characters above 0x100 are valid (multi-byte).
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100894 * To be used for commands like "gf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 */
896 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100897vim_isfilec(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100899 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_FNAME_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900}
901
Dominique Pellee764d1b2023-03-12 21:20:59 +0000902#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100904 * Return TRUE if 'c' is a valid file-name character, including characters left
905 * out of 'isfname' to make "gf" work, such as comma, space, '@', etc.
906 */
907 int
908vim_is_fname_char(int c)
909{
910 return vim_isfilec(c) || c == ',' || c == ' ' || c == '@';
911}
Dominique Pellee764d1b2023-03-12 21:20:59 +0000912#endif
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100913
914/*
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000915 * return TRUE if 'c' is a valid file-name character or a wildcard character
916 * Assume characters above 0x100 are valid (multi-byte).
917 * Explicitly interpret ']' as a wildcard character as mch_has_wildcard("]")
918 * returns false.
919 */
920 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100921vim_isfilec_or_wc(int c)
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000922{
923 char_u buf[2];
924
925 buf[0] = (char_u)c;
926 buf[1] = NUL;
927 return vim_isfilec(c) || c == ']' || mch_has_wildcard(buf);
928}
929
930/*
Bram Moolenaar3317d5e2017-04-08 19:12:06 +0200931 * Return TRUE if 'c' is a printable character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 * Assume characters above 0x100 are printable (multi-byte), except for
933 * Unicode.
934 */
935 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100936vim_isprintc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 if (enc_utf8 && c >= 0x100)
939 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100940 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941}
942
943/*
944 * Strict version of vim_isprintc(c), don't return TRUE if "c" is the head
945 * byte of a double-byte character.
946 */
947 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100948vim_isprintc_strict(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 if (enc_dbcs != 0 && c < 0x100 && MB_BYTE2LEN(c) > 1)
951 return FALSE;
952 if (enc_utf8 && c >= 0x100)
953 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100954 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955}
956
957/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100958 * Prepare the structure passed to chartabsize functions.
959 * "line" is the start of the line, "ptr" is the first relevant character.
960 * When "lnum" is zero do not use text properties that insert text.
961 */
962 void
963init_chartabsize_arg(
964 chartabsize_T *cts,
965 win_T *wp,
Bram Moolenaare5a420f2022-09-07 21:46:56 +0100966 linenr_T lnum UNUSED,
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100967 colnr_T col,
968 char_u *line,
969 char_u *ptr)
970{
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100971 CLEAR_POINTER(cts);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100972 cts->cts_win = wp;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100973 cts->cts_vcol = col;
974 cts->cts_line = line;
975 cts->cts_ptr = ptr;
976#ifdef FEAT_PROP_POPUP
Bram Moolenaar702bd6c2022-09-14 16:09:57 +0100977 if (lnum > 0 && !ignore_text_props)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100978 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100979 char_u *prop_start;
980 int count;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100981
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100982 count = get_text_props(wp->w_buffer, lnum, &prop_start, FALSE);
983 cts->cts_text_prop_count = count;
984 if (count > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100985 {
986 // Make a copy of the properties, so that they are properly
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100987 // aligned. Make it twice as long for the sorting below.
988 cts->cts_text_props = ALLOC_MULT(textprop_T, count * 2);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100989 if (cts->cts_text_props == NULL)
990 cts->cts_text_prop_count = 0;
991 else
992 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100993 int i;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100994
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100995 mch_memmove(cts->cts_text_props + count, prop_start,
996 count * sizeof(textprop_T));
997 for (i = 0; i < count; ++i)
Bram Moolenaar89469d12022-12-02 20:46:26 +0000998 {
999 textprop_T *tp = cts->cts_text_props + i + count;
1000 if (tp->tp_id < 0
1001 && text_prop_type_valid(wp->w_buffer, tp))
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001002 {
1003 cts->cts_has_prop_with_text = TRUE;
1004 break;
1005 }
Bram Moolenaar89469d12022-12-02 20:46:26 +00001006 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001007 if (!cts->cts_has_prop_with_text)
1008 {
1009 // won't use the text properties, free them
Bram Moolenaar3f79b612022-08-01 12:06:40 +01001010 VIM_CLEAR(cts->cts_text_props);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001011 cts->cts_text_prop_count = 0;
1012 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001013 else
1014 {
1015 int *text_prop_idxs;
1016
1017 // Need to sort the array to get any truncation right.
1018 // Do the sorting in the second part of the array, then
1019 // move the sorted props to the first part of the array.
1020 text_prop_idxs = ALLOC_MULT(int, count);
1021 if (text_prop_idxs != NULL)
1022 {
1023 for (i = 0; i < count; ++i)
1024 text_prop_idxs[i] = i + count;
1025 sort_text_props(curbuf, cts->cts_text_props,
1026 text_prop_idxs, count);
1027 // Here we want the reverse order.
1028 for (i = 0; i < count; ++i)
1029 cts->cts_text_props[count - i - 1] =
1030 cts->cts_text_props[text_prop_idxs[i]];
1031 vim_free(text_prop_idxs);
1032 }
1033 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001034 }
1035 }
1036 }
1037#endif
1038}
1039
1040/*
1041 * Free any allocated item in "cts".
1042 */
1043 void
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001044clear_chartabsize_arg(chartabsize_T *cts UNUSED)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001045{
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001046#ifdef FEAT_PROP_POPUP
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001047 if (cts->cts_text_prop_count > 0)
Bram Moolenaar34a1f772022-07-26 11:20:48 +01001048 {
Bram Moolenaar3f79b612022-08-01 12:06:40 +01001049 VIM_CLEAR(cts->cts_text_props);
1050 cts->cts_text_prop_count = 0;
Bram Moolenaar34a1f772022-07-26 11:20:48 +01001051 }
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001052#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001053}
1054
1055/*
1056 * Like chartabsize(), but also check for line breaks on the screen and text
1057 * properties that insert text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 */
1059 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001060lbr_chartabsize(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001062#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
1063 if (1
1064# ifdef FEAT_LINEBREAK
1065 && !curwin->w_p_lbr && *get_showbreak_value(curwin) == NUL
1066 && !curwin->w_p_bri
1067# endif
1068# ifdef FEAT_PROP_POPUP
1069 && !cts->cts_has_prop_with_text
1070#endif
1071 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 {
1073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 if (curwin->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001075 return win_nolbr_chartabsize(cts, NULL);
1076 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, cts->cts_ptr, cts->cts_vcol)
1077#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001079 return win_lbr_chartabsize(cts, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080#endif
1081}
1082
1083/*
1084 * Call lbr_chartabsize() and advance the pointer.
1085 */
1086 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001087lbr_chartabsize_adv(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088{
1089 int retval;
1090
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001091 retval = lbr_chartabsize(cts);
1092 MB_PTR_ADV(cts->cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 return retval;
1094}
1095
1096/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001097 * Return the screen size of the character indicated by "cts".
1098 * "cts->cts_cur_text_width" is set to the extra size for a text property that
1099 * inserts text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 * This function is used very often, keep it fast!!!!
1101 *
1102 * If "headp" not NULL, set *headp to the size of what we for 'showbreak'
1103 * string at start of line. Warning: *headp is only set if it's a non-zero
1104 * value, init to 0 before calling.
1105 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001107win_lbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001108 chartabsize_T *cts,
1109 int *headp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001111 win_T *wp = cts->cts_win;
Martin Tournoijba43e762022-10-13 22:12:15 +01001112#if defined(FEAT_PROP_POPUP) || defined(FEAT_LINEBREAK)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001113 char_u *line = cts->cts_line; // start of the line
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001114#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001115 char_u *s = cts->cts_ptr;
1116 colnr_T vcol = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117#ifdef FEAT_LINEBREAK
1118 int c;
1119 int size;
1120 colnr_T col2;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001121 colnr_T col_adj = 0; // vcol + screen size of tab
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 colnr_T colmax;
1123 int added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 int mb_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 int numberextra;
1126 char_u *ps;
1127 int tab_corr = (*s == TAB);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001128 int n;
Bram Moolenaaree857022019-11-09 23:26:40 +01001129 char_u *sbr;
Bram Moolenaarcba69522022-08-06 21:03:53 +01001130 int no_sbr = FALSE;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001133#if defined(FEAT_PROP_POPUP)
1134 cts->cts_cur_text_width = 0;
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001135 cts->cts_first_char = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001136#endif
1137
1138#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001140 * No 'linebreak', 'showbreak', 'breakindent' and text properties that
1141 * insert text: return quickly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001143 if (1
1144# ifdef FEAT_LINEBREAK
1145 && !wp->w_p_lbr && !wp->w_p_bri && *get_showbreak_value(wp) == NUL
1146# endif
1147# ifdef FEAT_PROP_POPUP
1148 && !cts->cts_has_prop_with_text
1149# endif
1150 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151#endif
1152 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 if (wp->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001154 return win_nolbr_chartabsize(cts, headp);
1155 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, s, vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 }
1157
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001158#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001160 * First get the normal size, without 'linebreak' or text properties
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001162 size = win_chartabsize(wp, s, vcol);
Bram Moolenaar9d9a20e2023-02-11 13:49:01 +00001163 if (*s == NUL)
1164 size = 0; // NUL is not displayed
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001165
1166# ifdef FEAT_PROP_POPUP
Bram Moolenaar49a90792022-08-09 18:25:23 +01001167 if (cts->cts_has_prop_with_text)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001168 {
Bram Moolenaare428fa02022-08-09 16:55:41 +01001169 int tab_size = size;
Bram Moolenaar49a90792022-08-09 18:25:23 +01001170 int charlen = *s == NUL ? 1 : mb_ptr2len(s);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001171 int i;
1172 int col = (int)(s - line);
1173 garray_T *gap = &wp->w_buffer->b_textprop_text;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001174
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001175 // The "$" for 'list' mode will go between the EOL and
1176 // the text prop, account for that.
1177 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
1178 ++vcol;
1179
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001180 for (i = 0; i < cts->cts_text_prop_count; ++i)
1181 {
Bram Moolenaarc8bf59e2022-08-28 16:39:22 +01001182 textprop_T *tp = cts->cts_text_props + i;
1183 int col_off = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001184
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001185 // Watch out for the text being deleted. "cts_text_props" is a
1186 // copy, the text prop may actually have been removed from the line.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001187 if (tp->tp_id < 0
Bram Moolenaar25463612022-08-08 11:07:47 +01001188 && ((tp->tp_col - 1 >= col
Bram Moolenaare428fa02022-08-09 16:55:41 +01001189 && tp->tp_col - 1 < col + charlen)
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001190 || (tp->tp_col == MAXCOL
1191 && ((tp->tp_flags & TP_FLAG_ALIGN_ABOVE)
1192 ? col == 0
Bram Moolenaarea62cee2023-02-19 18:36:41 +00001193 : (s[0] == NUL || s[charlen] == NUL)
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001194 && cts->cts_with_trailing)))
Bram Moolenaar4ce1f992022-12-19 13:31:06 +00001195 && -tp->tp_id - 1 < gap->ga_len)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001196 {
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001197 char_u *p = ((char_u **)gap->ga_data)[-tp->tp_id - 1];
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001198
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001199 if (p != NULL)
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001200 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001201 int cells;
Bram Moolenaar398649e2022-08-04 15:03:48 +01001202
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001203 if (tp->tp_col == MAXCOL)
1204 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001205 int n_extra = (int)STRLEN(p);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001206
Bram Moolenaarf167c7b2022-10-09 21:53:58 +01001207 cells = text_prop_position(wp, tp, vcol,
Bram Moolenaarc8bf59e2022-08-28 16:39:22 +01001208 (vcol + size) % (wp->w_width - col_off) + col_off,
Bram Moolenaar56a40fe2022-12-06 14:17:57 +00001209 &n_extra, &p, NULL, NULL, FALSE);
Bram Moolenaarcba69522022-08-06 21:03:53 +01001210#ifdef FEAT_LINEBREAK
1211 no_sbr = TRUE; // don't use 'showbreak' now
1212#endif
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001213 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001214 else
1215 cells = vim_strsize(p);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001216 cts->cts_cur_text_width += cells;
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001217 if (tp->tp_flags & TP_FLAG_ALIGN_ABOVE)
1218 cts->cts_first_char += cells;
Bram Moolenaar28c9f892022-08-14 13:28:55 +01001219 cts->cts_start_incl = tp->tp_flags & TP_FLAG_START_INCL;
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001220 size += cells;
Bram Moolenaare428fa02022-08-09 16:55:41 +01001221 if (*s == TAB)
1222 {
1223 // tab size changes because of the inserted text
1224 size -= tab_size;
1225 tab_size = win_chartabsize(wp, s, vcol + size);
1226 size += tab_size;
1227 }
Bram Moolenaar55a27d82023-02-12 18:03:57 +00001228 if (tp->tp_col == MAXCOL && (tp->tp_flags
1229 & (TP_FLAG_ALIGN_ABOVE | TP_FLAG_ALIGN_BELOW)))
1230 // count extra line for property above/below
1231 ++cts->cts_prop_lines;
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001232 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001233 }
Bram Moolenaar50e75fe2022-08-05 20:25:50 +01001234 if (tp->tp_col != MAXCOL && tp->tp_col - 1 > col)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001235 break;
1236 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001237 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
1238 --vcol;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001239 }
1240# endif
1241
1242# ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 c = *s;
Bram Moolenaaree739b42014-07-02 19:37:42 +02001244 if (tab_corr)
1245 col_adj = size - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246
1247 /*
1248 * If 'linebreak' set check at a blank before a non-blank if the line
1249 * needs a break here
1250 */
1251 if (wp->w_p_lbr
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001252 && VIM_ISBREAK(c)
Bram Moolenaar977d0372017-03-12 21:31:58 +01001253 && !VIM_ISBREAK((int)s[1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 && wp->w_p_wrap
Bram Moolenaar4033c552017-09-16 20:54:51 +02001255 && wp->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 {
1257 /*
1258 * Count all characters from first non-blank after a blank up to next
1259 * non-blank after a blank.
1260 */
1261 numberextra = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001262 col2 = vcol;
Bram Moolenaar02631462017-09-22 15:20:32 +02001263 colmax = (colnr_T)(wp->w_width - numberextra - col_adj);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001264 if (vcol >= colmax)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001265 {
Bram Moolenaaree739b42014-07-02 19:37:42 +02001266 colmax += col_adj;
1267 n = colmax + win_col_off2(wp);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001268 if (n > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001269 colmax += (((vcol - colmax) / n) + 1) * n - col_adj;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001270 }
1271
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 for (;;)
1273 {
1274 ps = s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001275 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 c = *s;
1277 if (!(c != NUL
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001278 && (VIM_ISBREAK(c)
1279 || (!VIM_ISBREAK(c)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001280 && (col2 == vcol || !VIM_ISBREAK((int)*ps))))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 break;
1282
1283 col2 += win_chartabsize(wp, s, col2);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001284 if (col2 >= colmax) // doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001286 size = colmax - vcol + col_adj;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 break;
1288 }
1289 }
1290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 else if (has_mbyte && size == 2 && MB_BYTE2LEN(*s) > 1
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001292 && wp->w_p_wrap && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001294 ++size; // Count the ">" in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 mb_added = 1;
1296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297
1298 /*
Bram Moolenaar597a4222014-06-25 14:39:50 +02001299 * May have to add something for 'breakindent' and/or 'showbreak'
1300 * string at start of line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 * Set *headp to the size of what we add.
Bram Moolenaar21efafe2022-03-03 20:04:03 +00001302 * Do not use 'showbreak' at the NUL after the text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 */
1304 added = 0;
Bram Moolenaarcba69522022-08-06 21:03:53 +01001305 sbr = (c == NUL || no_sbr) ? empty_option : get_showbreak_value(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001306 if ((*sbr != NUL || wp->w_p_bri) && wp->w_p_wrap && vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 {
Bram Moolenaard574ea22015-01-14 19:35:14 +01001308 colnr_T sbrlen = 0;
1309 int numberwidth = win_col_off(wp);
1310
1311 numberextra = numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001312 vcol += numberextra + mb_added;
Bram Moolenaar4c7fd4d2022-09-17 17:15:33 +01001313#ifdef FEAT_PROP_POPUP
1314 vcol -= wp->w_virtcol_first_char;
1315#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001316 if (vcol >= (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001318 vcol -= wp->w_width;
Bram Moolenaar02631462017-09-22 15:20:32 +02001319 numberextra = wp->w_width - (numberextra - win_col_off2(wp));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001320 if (vcol >= numberextra && numberextra > 0)
1321 vcol %= numberextra;
Bram Moolenaaree857022019-11-09 23:26:40 +01001322 if (*sbr != NUL)
Bram Moolenaar1c852102014-10-15 21:26:40 +02001323 {
Bram Moolenaaree857022019-11-09 23:26:40 +01001324 sbrlen = (colnr_T)MB_CHARLEN(sbr);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001325 if (vcol >= sbrlen)
1326 vcol -= sbrlen;
Bram Moolenaar1c852102014-10-15 21:26:40 +02001327 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001328 if (vcol >= numberextra && numberextra > 0)
1329 vcol = vcol % numberextra;
1330 else if (vcol > 0 && numberextra > 0)
1331 vcol += numberwidth - win_col_off2(wp);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001332
1333 numberwidth -= win_col_off2(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001335 if (vcol == 0 || vcol + size + sbrlen > (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02001337 added = 0;
Bram Moolenaaree857022019-11-09 23:26:40 +01001338 if (*sbr != NUL)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001339 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001340 if (size + sbrlen + numberwidth > (colnr_T)wp->w_width)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001341 {
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001342 // calculate effective window width
Bram Moolenaar02631462017-09-22 15:20:32 +02001343 int width = (colnr_T)wp->w_width - sbrlen - numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001344 int prev_width = vcol
1345 ? ((colnr_T)wp->w_width - (sbrlen + vcol)) : 0;
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001346
1347 if (width <= 0)
1348 width = (colnr_T)1;
Bram Moolenaaree857022019-11-09 23:26:40 +01001349 added += ((size - prev_width) / width) * vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001350 if ((size - prev_width) % width)
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001351 // wrapped, add another length of 'sbr'
Bram Moolenaaree857022019-11-09 23:26:40 +01001352 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001353 }
1354 else
Bram Moolenaaree857022019-11-09 23:26:40 +01001355 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001356 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02001357 if (wp->w_p_bri)
1358 added += get_breakindent_win(wp, line);
1359
Bram Moolenaar95765082014-08-24 21:19:25 +02001360 size += added;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001361 if (vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 added = 0;
1363 }
1364 }
1365 if (headp != NULL)
1366 *headp = added + mb_added;
1367 return size;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001368# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369#endif
1370}
1371
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001373 * Like win_lbr_chartabsize(), except that we know 'linebreak' is off, 'wrap'
1374 * is on and there are no properties that insert text. This means we need to
1375 * check for a double-byte character that doesn't fit at the end of the screen
1376 * line.
1377 * Only uses "cts_win", "cts_ptr" and "cts_vcol" from "cts".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 */
1379 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001380win_nolbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001381 chartabsize_T *cts,
1382 int *headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001384 win_T *wp = cts->cts_win;
1385 char_u *s = cts->cts_ptr;
1386 colnr_T col = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 int n;
1388
Bram Moolenaareed9d462021-02-15 20:38:25 +01001389 if (*s == TAB && (!wp->w_p_list || wp->w_lcs_chars.tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001391# ifdef FEAT_VARTABS
1392 return tabstop_padding(col, wp->w_buffer->b_p_ts,
1393 wp->w_buffer->b_p_vts_array);
1394# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 n = wp->w_buffer->b_p_ts;
1396 return (int)(n - (col % n));
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001397# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 }
1399 n = ptr2cells(s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001400 // Add one cell for a double-width character in the last column of the
1401 // window, displayed with a ">".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 if (n == 2 && MB_BYTE2LEN(*s) > 1 && in_win_border(wp, col))
1403 {
1404 if (headp != NULL)
1405 *headp = 1;
1406 return 3;
1407 }
1408 return n;
1409}
1410
1411/*
1412 * Return TRUE if virtual column "vcol" is in the rightmost column of window
1413 * "wp".
1414 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001415 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001416in_win_border(win_T *wp, colnr_T vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417{
Bram Moolenaarc667da52019-11-30 20:52:27 +01001418 int width1; // width of first line (after line number)
1419 int width2; // width of further lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
Bram Moolenaarc667da52019-11-30 20:52:27 +01001421 if (wp->w_width == 0) // there is no border
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 return FALSE;
Bram Moolenaar02631462017-09-22 15:20:32 +02001423 width1 = wp->w_width - win_col_off(wp);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001424 if ((int)vcol < width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001426 if ((int)vcol == width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 return TRUE;
1428 width2 = width1 + win_col_off2(wp);
Bram Moolenaar8701cd62009-10-07 14:20:30 +00001429 if (width2 <= 0)
1430 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 return ((vcol - width1) % width2 == width2 - 1);
1432}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
1434/*
1435 * Get virtual column number of pos.
1436 * start: on the first position of this character (TAB, ctrl)
1437 * cursor: where the cursor is on this character (first char, except for TAB)
1438 * end: on the last position of this character (TAB, ctrl)
1439 *
1440 * This is used very often, keep it fast!
1441 */
1442 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001443getvcol(
1444 win_T *wp,
1445 pos_T *pos,
1446 colnr_T *start,
1447 colnr_T *cursor,
1448 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449{
1450 colnr_T vcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001451 char_u *ptr; // points to current char
1452 char_u *posptr; // points to char at pos->col
1453 char_u *line; // start of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 int incr;
1455 int head;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001456#ifdef FEAT_VARTABS
1457 int *vts = wp->w_buffer->b_p_vts_array;
1458#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 int ts = wp->w_buffer->b_p_ts;
1460 int c;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001461 chartabsize_T cts;
Bram Moolenaar49a90792022-08-09 18:25:23 +01001462#ifdef FEAT_PROP_POPUP
1463 int on_NUL = FALSE;
1464#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465
1466 vcol = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02001467 line = ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001468 if (pos->col == MAXCOL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001469 posptr = NULL; // continue until the NUL
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001470 else
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001471 {
Bram Moolenaar94f31922021-12-30 15:29:18 +00001472 colnr_T i;
1473
1474 // In a few cases the position can be beyond the end of the line.
1475 for (i = 0; i < pos->col; ++i)
1476 if (ptr[i] == NUL)
1477 {
1478 pos->col = i;
1479 break;
1480 }
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001481 posptr = ptr + pos->col;
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001482 if (has_mbyte)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001483 // always start on the first byte
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001484 posptr -= (*mb_head_off)(line, posptr);
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001487 init_chartabsize_arg(&cts, wp, pos->lnum, 0, line, line);
1488
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 /*
1490 * This function is used very often, do some speed optimizations.
Bram Moolenaar597a4222014-06-25 14:39:50 +02001491 * When 'list', 'linebreak', 'showbreak' and 'breakindent' are not set
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001492 * and there are no text properties with "text" use a simple loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 * Also use this when 'list' is set but tabs take their normal size.
1494 */
Bram Moolenaareed9d462021-02-15 20:38:25 +01001495 if ((!wp->w_p_list || wp->w_lcs_chars.tab1 != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001497 && !wp->w_p_lbr && *get_showbreak_value(wp) == NUL && !wp->w_p_bri
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001499#ifdef FEAT_PROP_POPUP
1500 && !cts.cts_has_prop_with_text
1501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 )
1503 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 for (;;)
1505 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 head = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 c = *ptr;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001508 // make sure we don't go past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 if (c == NUL)
1510 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001511 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 break;
1513 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001514 // A tab gets expanded, depending on the current column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 if (c == TAB)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001516#ifdef FEAT_VARTABS
1517 incr = tabstop_padding(vcol, ts, vts);
1518#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 incr = ts - (vcol % ts);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001520#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 else
1522 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 if (has_mbyte)
1524 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001525 // For utf-8, if the byte is >= 0x80, need to look at
1526 // further bytes to find the cell width.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 if (enc_utf8 && c >= 0x80)
1528 incr = utf_ptr2cells(ptr);
1529 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001530 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531
Bram Moolenaarc667da52019-11-30 20:52:27 +01001532 // If a double-cell char doesn't fit at the end of a line
1533 // it wraps to the next line, it's like this char is three
1534 // cells wide.
Bram Moolenaar9c33a7c2008-02-20 13:59:32 +00001535 if (incr == 2 && wp->w_p_wrap && MB_BYTE2LEN(*ptr) > 1
1536 && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 {
1538 ++incr;
1539 head = 1;
1540 }
1541 }
1542 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001543 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 }
1545
Bram Moolenaarc667da52019-11-30 20:52:27 +01001546 if (posptr != NULL && ptr >= posptr) // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 break;
1548
1549 vcol += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001550 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 }
1552 }
1553 else
1554 {
1555 for (;;)
1556 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001557 // A tab gets expanded, depending on the current column.
1558 // Other things also take up space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 head = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001560 incr = win_lbr_chartabsize(&cts, &head);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001561 // make sure we don't go past the end of the line
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001562 if (*cts.cts_ptr == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001564 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar49a90792022-08-09 18:25:23 +01001565#ifdef FEAT_PROP_POPUP
1566 if (cts.cts_cur_text_width > 0)
1567 incr = cts.cts_cur_text_width;
1568 on_NUL = TRUE;
1569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 break;
1571 }
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001572#ifdef FEAT_PROP_POPUP
1573 if (cursor == &wp->w_virtcol && cts.cts_ptr == cts.cts_line)
1574 // do not count the virtual text above for w_curswant
1575 wp->w_virtcol_first_char = cts.cts_first_char;
1576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001578 if (posptr != NULL && cts.cts_ptr >= posptr)
1579 // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 break;
1581
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001582 cts.cts_vcol += incr;
1583 MB_PTR_ADV(cts.cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001585 vcol = cts.cts_vcol;
1586 ptr = cts.cts_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001588 clear_chartabsize_arg(&cts);
1589
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 if (start != NULL)
1591 *start = vcol + head;
1592 if (end != NULL)
1593 *end = vcol + incr - 1;
1594 if (cursor != NULL)
1595 {
1596 if (*ptr == TAB
Bram Moolenaar24959102022-05-07 20:01:16 +01001597 && (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 && !wp->w_p_list
1599 && !virtual_active()
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001600 && !(VIsual_active
1601 && (*p_sel == 'e' || LTOREQ_POS(*pos, VIsual)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 )
Bram Moolenaarc667da52019-11-30 20:52:27 +01001603 *cursor = vcol + incr - 1; // cursor at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 else
Bram Moolenaare428fa02022-08-09 16:55:41 +01001605 {
1606#ifdef FEAT_PROP_POPUP
Bram Moolenaar28c9f892022-08-14 13:28:55 +01001607 // in Insert mode, if "start_incl" is true the text gets inserted
1608 // after the virtual text, thus add its width
1609 if (((State & MODE_INSERT) == 0 || cts.cts_start_incl) && !on_NUL)
Bram Moolenaar49a90792022-08-09 18:25:23 +01001610 // cursor is after inserted text, unless on the NUL
Bram Moolenaare428fa02022-08-09 16:55:41 +01001611 vcol += cts.cts_cur_text_width;
Bram Moolenaar88b79cb2022-09-10 22:32:14 +01001612 else
1613 // insertion also happens after the "above" virtual text
1614 vcol += cts.cts_first_char;
Bram Moolenaare428fa02022-08-09 16:55:41 +01001615#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001616 *cursor = vcol + head; // cursor at start
Bram Moolenaare428fa02022-08-09 16:55:41 +01001617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 }
1619}
1620
1621/*
1622 * Get virtual cursor column in the current window, pretending 'list' is off.
1623 */
1624 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01001625getvcol_nolist(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626{
1627 int list_save = curwin->w_p_list;
1628 colnr_T vcol;
1629
1630 curwin->w_p_list = FALSE;
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001631 if (posp->coladd)
1632 getvvcol(curwin, posp, NULL, &vcol, NULL);
1633 else
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001634 getvcol(curwin, posp, NULL, &vcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 curwin->w_p_list = list_save;
1636 return vcol;
1637}
1638
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639/*
1640 * Get virtual column in virtual mode.
1641 */
1642 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001643getvvcol(
1644 win_T *wp,
1645 pos_T *pos,
1646 colnr_T *start,
1647 colnr_T *cursor,
1648 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649{
1650 colnr_T col;
1651 colnr_T coladd;
1652 colnr_T endadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654
1655 if (virtual_active())
1656 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001657 // For virtual mode, only want one value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 getvcol(wp, pos, &col, NULL, NULL);
1659
1660 coladd = pos->coladd;
1661 endadd = 0;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001662 // Cannot put the cursor on part of a wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001664 if (pos->col < (colnr_T)STRLEN(ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 {
1666 int c = (*mb_ptr2char)(ptr + pos->col);
1667
1668 if (c != TAB && vim_isprintc(c))
1669 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001670 endadd = (colnr_T)(char2cells(c) - 1);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001671 if (coladd > endadd) // past end of line
Bram Moolenaara5792f52005-11-23 21:25:05 +00001672 endadd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 else
1674 coladd = 0;
1675 }
1676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 col += coladd;
1678 if (start != NULL)
1679 *start = col;
1680 if (cursor != NULL)
1681 *cursor = col;
1682 if (end != NULL)
1683 *end = col + endadd;
1684 }
1685 else
1686 getvcol(wp, pos, start, cursor, end);
1687}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689/*
1690 * Get the leftmost and rightmost virtual column of pos1 and pos2.
1691 * Used for Visual block mode.
1692 */
1693 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001694getvcols(
1695 win_T *wp,
1696 pos_T *pos1,
1697 pos_T *pos2,
1698 colnr_T *left,
1699 colnr_T *right)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700{
1701 colnr_T from1, from2, to1, to2;
1702
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001703 if (LT_POSP(pos1, pos2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 {
1705 getvvcol(wp, pos1, &from1, NULL, &to1);
1706 getvvcol(wp, pos2, &from2, NULL, &to2);
1707 }
1708 else
1709 {
1710 getvvcol(wp, pos2, &from1, NULL, &to1);
1711 getvvcol(wp, pos1, &from2, NULL, &to2);
1712 }
1713 if (from2 < from1)
1714 *left = from2;
1715 else
1716 *left = from1;
1717 if (to2 > to1)
1718 {
1719 if (*p_sel == 'e' && from2 - 1 >= to1)
1720 *right = from2 - 1;
1721 else
1722 *right = to2;
1723 }
1724 else
1725 *right = to1;
1726}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727
1728/*
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001729 * Skip over ' ' and '\t'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 */
1731 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001732skipwhite(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001734 char_u *p = q;
1735
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001736 while (VIM_ISWHITE(*p))
1737 ++p;
1738 return p;
1739}
1740
Dominique Pelle748b3082022-01-08 12:41:16 +00001741#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001742/*
1743 * skip over ' ', '\t' and '\n'.
1744 */
1745 char_u *
1746skipwhite_and_nl(char_u *q)
1747{
1748 char_u *p = q;
1749
1750 while (VIM_ISWHITE(*p) || *p == NL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 ++p;
1752 return p;
1753}
Dominique Pelle748b3082022-01-08 12:41:16 +00001754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755
1756/*
Bram Moolenaare2e69e42017-09-02 20:30:35 +02001757 * getwhitecols: return the number of whitespace
1758 * columns (bytes) at the start of a given line
1759 */
1760 int
Yegappan Lakshmanana23a11b2023-02-21 14:27:41 +00001761getwhitecols_curline(void)
Bram Moolenaare2e69e42017-09-02 20:30:35 +02001762{
1763 return getwhitecols(ml_get_curline());
1764}
1765
1766 int
1767getwhitecols(char_u *p)
1768{
1769 return skipwhite(p) - p;
1770}
1771
1772/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001773 * skip over digits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 */
1775 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001776skipdigits(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001778 char_u *p = q;
1779
Bram Moolenaarc667da52019-11-30 20:52:27 +01001780 while (VIM_ISDIGIT(*p)) // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 ++p;
1782 return p;
1783}
1784
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001785#if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001786/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001787 * skip over binary digits
1788 */
1789 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001790skipbin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001791{
1792 char_u *p = q;
1793
Bram Moolenaarc667da52019-11-30 20:52:27 +01001794 while (vim_isbdigit(*p)) // skip to next non-digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001795 ++p;
1796 return p;
1797}
1798
1799/*
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001800 * skip over digits and hex characters
1801 */
1802 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001803skiphex(char_u *q)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001804{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001805 char_u *p = q;
1806
Bram Moolenaarc667da52019-11-30 20:52:27 +01001807 while (vim_isxdigit(*p)) // skip to next non-digit
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001808 ++p;
1809 return p;
1810}
1811#endif
1812
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001813/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001814 * skip to bin digit (or NUL after the string)
1815 */
1816 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001817skiptobin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001818{
1819 char_u *p = q;
1820
Bram Moolenaarc667da52019-11-30 20:52:27 +01001821 while (*p != NUL && !vim_isbdigit(*p)) // skip to next digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001822 ++p;
1823 return p;
1824}
1825
1826/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001827 * skip to digit (or NUL after the string)
1828 */
1829 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001830skiptodigit(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001831{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001832 char_u *p = q;
1833
Bram Moolenaarc667da52019-11-30 20:52:27 +01001834 while (*p != NUL && !VIM_ISDIGIT(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001835 ++p;
1836 return p;
1837}
1838
1839/*
1840 * skip to hex character (or NUL after the string)
1841 */
1842 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001843skiptohex(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001844{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001845 char_u *p = q;
1846
Bram Moolenaarc667da52019-11-30 20:52:27 +01001847 while (*p != NUL && !vim_isxdigit(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001848 ++p;
1849 return p;
1850}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001851
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852/*
1853 * Variant of isdigit() that can handle characters > 0x100.
1854 * We don't use isdigit() here, because on some systems it also considers
1855 * superscript 1 to be a digit.
1856 * Use the VIM_ISDIGIT() macro for simple arguments.
1857 */
1858 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001859vim_isdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860{
1861 return (c >= '0' && c <= '9');
1862}
1863
1864/*
1865 * Variant of isxdigit() that can handle characters > 0x100.
1866 * We don't use isxdigit() here, because on some systems it also considers
1867 * superscript 1 to be a digit.
1868 */
1869 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001870vim_isxdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871{
1872 return (c >= '0' && c <= '9')
1873 || (c >= 'a' && c <= 'f')
1874 || (c >= 'A' && c <= 'F');
1875}
1876
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001877/*
1878 * Corollary of vim_isdigit and vim_isxdigit() that can handle
1879 * characters > 0x100.
1880 */
1881 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001882vim_isbdigit(int c)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001883{
1884 return (c == '0' || c == '1');
1885}
1886
Bram Moolenaarc37b6552021-01-07 19:36:30 +01001887 static int
1888vim_isodigit(int c)
1889{
1890 return (c >= '0' && c <= '7');
1891}
1892
Bram Moolenaar78622822005-08-23 21:00:13 +00001893/*
1894 * Vim's own character class functions. These exist because many library
1895 * islower()/toupper() etc. do not work properly: they crash when used with
1896 * invalid values or can't handle latin1 when the locale is C.
1897 * Speed is most important here.
1898 */
1899#define LATIN1LOWER 'l'
1900#define LATIN1UPPER 'U'
1901
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001902static char_u latin1flags[257] = " UUUUUUUUUUUUUUUUUUUUUUUUUU llllllllllllllllllllllllll UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll";
Bram Moolenaar936347b2012-05-25 11:56:22 +02001903static 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";
1904static 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 +00001905
1906 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001907vim_islower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001908{
1909 if (c <= '@')
1910 return FALSE;
1911 if (c >= 0x80)
1912 {
1913 if (enc_utf8)
1914 return utf_islower(c);
1915 if (c >= 0x100)
1916 {
1917#ifdef HAVE_ISWLOWER
1918 if (has_mbyte)
1919 return iswlower(c);
1920#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001921 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001922 return FALSE;
1923 }
1924 if (enc_latin1like)
1925 return (latin1flags[c] & LATIN1LOWER) == LATIN1LOWER;
1926 }
1927 return islower(c);
1928}
1929
1930 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001931vim_isupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001932{
1933 if (c <= '@')
1934 return FALSE;
1935 if (c >= 0x80)
1936 {
1937 if (enc_utf8)
1938 return utf_isupper(c);
1939 if (c >= 0x100)
1940 {
1941#ifdef HAVE_ISWUPPER
1942 if (has_mbyte)
1943 return iswupper(c);
1944#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001945 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001946 return FALSE;
1947 }
1948 if (enc_latin1like)
1949 return (latin1flags[c] & LATIN1UPPER) == LATIN1UPPER;
1950 }
1951 return isupper(c);
1952}
1953
1954 int
Bram Moolenaar5921aeb2022-02-19 11:20:12 +00001955vim_isalpha(int c)
1956{
1957 return vim_islower(c) || vim_isupper(c);
1958}
1959
1960 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001961vim_toupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001962{
1963 if (c <= '@')
1964 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001965 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001966 {
1967 if (enc_utf8)
1968 return utf_toupper(c);
1969 if (c >= 0x100)
1970 {
1971#ifdef HAVE_TOWUPPER
1972 if (has_mbyte)
1973 return towupper(c);
1974#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001975 // toupper() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001976 return c;
1977 }
1978 if (enc_latin1like)
1979 return latin1upper[c];
1980 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001981 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1982 return TOUPPER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001983 return TOUPPER_LOC(c);
1984}
1985
1986 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001987vim_tolower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001988{
1989 if (c <= '@')
1990 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001991 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001992 {
1993 if (enc_utf8)
1994 return utf_tolower(c);
1995 if (c >= 0x100)
1996 {
1997#ifdef HAVE_TOWLOWER
1998 if (has_mbyte)
1999 return towlower(c);
2000#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01002001 // tolower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00002002 return c;
2003 }
2004 if (enc_latin1like)
2005 return latin1lower[c];
2006 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02002007 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
2008 return TOLOWER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00002009 return TOLOWER_LOC(c);
2010}
Bram Moolenaar78622822005-08-23 21:00:13 +00002011
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012/*
2013 * skiptowhite: skip over text until ' ' or '\t' or NUL.
2014 */
2015 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002016skiptowhite(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017{
2018 while (*p != ' ' && *p != '\t' && *p != NUL)
2019 ++p;
2020 return p;
2021}
2022
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023/*
2024 * skiptowhite_esc: Like skiptowhite(), but also skip escaped chars
2025 */
2026 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002027skiptowhite_esc(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028{
2029 while (*p != ' ' && *p != '\t' && *p != NUL)
2030 {
2031 if ((*p == '\\' || *p == Ctrl_V) && *(p + 1) != NUL)
2032 ++p;
2033 ++p;
2034 }
2035 return p;
2036}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037
2038/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00002039 * Get a number from a string and skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 * Note: the argument is a pointer to a char_u pointer!
2041 */
2042 long
Bram Moolenaar7454a062016-01-30 15:14:10 +01002043getdigits(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044{
2045 char_u *p;
2046 long retval;
2047
2048 p = *pp;
2049 retval = atol((char *)p);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002050 if (*p == '-') // skip negative sign
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 ++p;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002052 p = skipdigits(p); // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 *pp = p;
2054 return retval;
2055}
2056
2057/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00002058 * Like getdigits() but allow for embedded single quotes.
2059 */
2060 long
2061getdigits_quoted(char_u **pp)
2062{
2063 char_u *p = *pp;
2064 long retval = 0;
2065
2066 if (*p == '-')
2067 ++p;
2068 while (VIM_ISDIGIT(*p))
2069 {
2070 if (retval >= LONG_MAX / 10 - 10)
2071 retval = LONG_MAX;
2072 else
2073 retval = retval * 10 - '0' + *p;
2074 ++p;
2075 if (in_vim9script() && *p == '\'' && VIM_ISDIGIT(p[1]))
2076 ++p;
2077 }
2078 if (**pp == '-')
2079 {
2080 if (retval == LONG_MAX)
2081 retval = LONG_MIN;
2082 else
2083 retval = -retval;
2084 }
2085 *pp = p;
2086 return retval;
2087}
2088
2089/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 * Return TRUE if "lbuf" is empty or only contains blanks.
2091 */
2092 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002093vim_isblankline(char_u *lbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094{
2095 char_u *p;
2096
2097 p = skipwhite(lbuf);
2098 return (*p == NUL || *p == '\r' || *p == '\n');
2099}
2100
2101/*
2102 * Convert a string into a long and/or unsigned long, taking care of
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002103 * hexadecimal, octal, and binary numbers. Accepts a '-' sign.
2104 * If "prep" is not NULL, returns a flag to indicate the type of the number:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 * 0 decimal
2106 * '0' octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002107 * 'O' octal
2108 * 'o' octal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002109 * 'B' bin
2110 * 'b' bin
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 * 'X' hex
2112 * 'x' hex
2113 * If "len" is not NULL, the length of the number in characters is returned.
2114 * If "nptr" is not NULL, the signed result is returned in it.
2115 * If "unptr" is not NULL, the unsigned result is returned in it.
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002116 * If "what" contains STR2NR_BIN recognize binary numbers
2117 * If "what" contains STR2NR_OCT recognize octal numbers
2118 * If "what" contains STR2NR_HEX recognize hex numbers
2119 * If "what" contains STR2NR_FORCE always assume bin/oct/hex.
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002120 * If "what" contains STR2NR_QUOTE ignore embedded single quotes
Bram Moolenaarce157752017-10-28 16:07:33 +02002121 * If maxlen > 0, check at a maximum maxlen chars.
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002122 * If strict is TRUE, check the number strictly. return *len = 0 if fail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 */
2124 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002125vim_str2nr(
2126 char_u *start,
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002127 int *prep, // return: type of number 0 = decimal, 'x'
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002128 // or 'X' is hex, '0', 'o' or 'O' is octal,
2129 // 'b' or 'B' is bin
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002130 int *len, // return: detected length of number
2131 int what, // what numbers to recognize
2132 varnumber_T *nptr, // return: signed result
2133 uvarnumber_T *unptr, // return: unsigned result
2134 int maxlen, // max length of string to check
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002135 int strict, // check strictly
2136 int *overflow) // when not NULL set to TRUE for overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137{
2138 char_u *ptr = start;
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002139 int pre = 0; // default is decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 int negative = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002141 uvarnumber_T un = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002142 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002144 if (len != NULL)
2145 *len = 0;
2146
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 if (ptr[0] == '-')
2148 {
2149 negative = TRUE;
2150 ++ptr;
2151 }
2152
Bram Moolenaarc667da52019-11-30 20:52:27 +01002153 // Recognize hex, octal, and bin.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002154 if (ptr[0] == '0' && ptr[1] != '8' && ptr[1] != '9'
2155 && (maxlen == 0 || maxlen > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002157 pre = ptr[1];
2158 if ((what & STR2NR_HEX)
2159 && (pre == 'X' || pre == 'x') && vim_isxdigit(ptr[2])
2160 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002161 // hexadecimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002162 ptr += 2;
2163 else if ((what & STR2NR_BIN)
2164 && (pre == 'B' || pre == 'b') && vim_isbdigit(ptr[2])
2165 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002166 // binary
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002167 ptr += 2;
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002168 else if ((what & STR2NR_OOCT)
Bram Moolenaarc37b6552021-01-07 19:36:30 +01002169 && (pre == 'O' || pre == 'o') && vim_isodigit(ptr[2])
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002170 && (maxlen == 0 || maxlen > 2))
2171 // octal with prefix "0o"
2172 ptr += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 else
2174 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002175 // decimal or octal, default is decimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002176 pre = 0;
2177 if (what & STR2NR_OCT)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002178 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002179 // Don't interpret "0", "08" or "0129" as octal.
Bram Moolenaarce157752017-10-28 16:07:33 +02002180 for (n = 1; n != maxlen && VIM_ISDIGIT(ptr[n]); ++n)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002181 {
2182 if (ptr[n] > '7')
2183 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002184 pre = 0; // can't be octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002185 break;
2186 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002187 pre = '0'; // assume octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002188 }
2189 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 }
2191 }
2192
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002193 // Do the conversion manually to avoid sscanf() quirks.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002194 n = 1;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002195 if (pre == 'B' || pre == 'b'
2196 || ((what & STR2NR_BIN) && (what & STR2NR_FORCE)))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002197 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002198 // bin
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002199 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002200 n += 2; // skip over "0b"
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002201 while ('0' <= *ptr && *ptr <= '1')
2202 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002203 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002204 if (un <= UVARNUM_MAX / 2)
2205 un = 2 * un + (uvarnumber_T)(*ptr - '0');
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002206 else
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002207 {
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002208 un = UVARNUM_MAX;
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002209 if (overflow != NULL)
2210 *overflow = TRUE;
2211 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002212 ++ptr;
2213 if (n++ == maxlen)
2214 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002215 if ((what & STR2NR_QUOTE) && *ptr == '\''
2216 && '0' <= ptr[1] && ptr[1] <= '1')
2217 {
2218 ++ptr;
2219 if (n++ == maxlen)
2220 break;
2221 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002222 }
2223 }
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002224 else if (pre == 'O' || pre == 'o' ||
2225 pre == '0' || ((what & STR2NR_OCT) && (what & STR2NR_FORCE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002227 // octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002228 if (pre != 0 && pre != '0')
2229 n += 2; // skip over "0o"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002230 while ('0' <= *ptr && *ptr <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002232 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002233 if (un <= UVARNUM_MAX / 8)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002234 un = 8 * un + (uvarnumber_T)(*ptr - '0');
2235 else
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002236 {
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002237 un = UVARNUM_MAX;
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002238 if (overflow != NULL)
2239 *overflow = TRUE;
2240 }
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002241 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002242 if (n++ == maxlen)
2243 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002244 if ((what & STR2NR_QUOTE) && *ptr == '\''
2245 && '0' <= ptr[1] && ptr[1] <= '7')
2246 {
2247 ++ptr;
2248 if (n++ == maxlen)
2249 break;
2250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 }
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002252 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002253 else if (pre != 0 || ((what & STR2NR_HEX) && (what & STR2NR_FORCE)))
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002254 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002255 // hex
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002256 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002257 n += 2; // skip over "0x"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002258 while (vim_isxdigit(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002260 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002261 if (un <= UVARNUM_MAX / 16)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002262 un = 16 * un + (uvarnumber_T)hex2nr(*ptr);
2263 else
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002264 {
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002265 un = UVARNUM_MAX;
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002266 if (overflow != NULL)
2267 *overflow = TRUE;
2268 }
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002269 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002270 if (n++ == maxlen)
2271 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002272 if ((what & STR2NR_QUOTE) && *ptr == '\'' && vim_isxdigit(ptr[1]))
2273 {
2274 ++ptr;
2275 if (n++ == maxlen)
2276 break;
2277 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 }
2279 }
2280 else
2281 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002282 // decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 while (VIM_ISDIGIT(*ptr))
2284 {
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002285 uvarnumber_T digit = (uvarnumber_T)(*ptr - '0');
2286
Bram Moolenaarc667da52019-11-30 20:52:27 +01002287 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002288 if (un < UVARNUM_MAX / 10
2289 || (un == UVARNUM_MAX / 10 && digit <= UVARNUM_MAX % 10))
2290 un = 10 * un + digit;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002291 else
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002292 {
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002293 un = UVARNUM_MAX;
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002294 if (overflow != NULL)
2295 *overflow = TRUE;
2296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002298 if (n++ == maxlen)
2299 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002300 if ((what & STR2NR_QUOTE) && *ptr == '\'' && VIM_ISDIGIT(ptr[1]))
2301 {
2302 ++ptr;
2303 if (n++ == maxlen)
2304 break;
2305 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 }
2307 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002308
Bram Moolenaar4b96df52020-01-26 22:00:26 +01002309 // Check for an alphanumeric character immediately following, that is
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002310 // most likely a typo.
2311 if (strict && n - 1 != maxlen && ASCII_ISALNUM(*ptr))
2312 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002314 if (prep != NULL)
2315 *prep = pre;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 if (len != NULL)
2317 *len = (int)(ptr - start);
2318 if (nptr != NULL)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002319 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002320 if (negative) // account for leading '-' for decimal numbers
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002321 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002322 // avoid ubsan error for overflow
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002323 if (un > VARNUM_MAX)
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002324 {
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002325 *nptr = VARNUM_MIN;
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002326 if (overflow != NULL)
2327 *overflow = TRUE;
2328 }
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002329 else
2330 *nptr = -(varnumber_T)un;
2331 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002332 else
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002333 {
dundargocc57b5bc2022-11-02 13:30:51 +00002334 // prevent a large unsigned number to become negative
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002335 if (un > VARNUM_MAX)
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002336 {
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002337 un = VARNUM_MAX;
Bram Moolenaar5fb78c32023-03-04 20:47:39 +00002338 if (overflow != NULL)
2339 *overflow = TRUE;
2340 }
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002341 *nptr = (varnumber_T)un;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002342 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 if (unptr != NULL)
2345 *unptr = un;
2346}
2347
2348/*
2349 * Return the value of a single hex character.
2350 * Only valid when the argument is '0' - '9', 'A' - 'F' or 'a' - 'f'.
2351 */
2352 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002353hex2nr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354{
2355 if (c >= 'a' && c <= 'f')
2356 return c - 'a' + 10;
2357 if (c >= 'A' && c <= 'F')
2358 return c - 'A' + 10;
2359 return c - '0';
2360}
2361
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362/*
2363 * Convert two hex characters to a byte.
2364 * Return -1 if one of the characters is not hex.
2365 */
2366 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002367hexhex2nr(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
2369 if (!vim_isxdigit(p[0]) || !vim_isxdigit(p[1]))
2370 return -1;
2371 return (hex2nr(p[0]) << 4) + hex2nr(p[1]);
2372}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
2374/*
2375 * Return TRUE if "str" starts with a backslash that should be removed.
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01002376 * For MS-DOS, MSWIN and OS/2 this is only done when the character after the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 * backslash is not a normal file name character.
2378 * '$' is a valid file name character, we don't remove the backslash before
2379 * it. This means it is not possible to use an environment variable after a
2380 * backslash. "C:\$VIM\doc" is taken literally, only "$VIM\doc" works.
2381 * Although "\ name" is valid, the backslash in "Program\ files" must be
2382 * removed. Assume a file name doesn't start with a space.
2383 * For multi-byte names, never remove a backslash before a non-ascii
2384 * character, assume that all multi-byte characters are valid file name
2385 * characters.
2386 */
2387 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002388rem_backslash(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389{
2390#ifdef BACKSLASH_IN_FILENAME
2391 return (str[0] == '\\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 && str[1] < 0x80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 && (str[1] == ' '
2394 || (str[1] != NUL
2395 && str[1] != '*'
2396 && str[1] != '?'
2397 && !vim_isfilec(str[1]))));
2398#else
2399 return (str[0] == '\\' && str[1] != NUL);
2400#endif
2401}
2402
2403/*
2404 * Halve the number of backslashes in a file name argument.
2405 * For MS-DOS we only do this if the character after the backslash
2406 * is not a normal file character.
2407 */
2408 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002409backslash_halve(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
2411 for ( ; *p; ++p)
2412 if (rem_backslash(p))
Bram Moolenaar446cb832008-06-24 21:56:24 +00002413 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414}
2415
2416/*
2417 * backslash_halve() plus save the result in allocated memory.
Bram Moolenaare2c453d2019-08-21 14:37:09 +02002418 * However, returns "p" when out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 */
2420 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002421backslash_halve_save(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422{
2423 char_u *res;
2424
2425 res = vim_strsave(p);
2426 if (res == NULL)
2427 return p;
2428 backslash_halve(res);
2429 return res;
2430}