blob: 9609299717ecbfd14b6a487c152896af6e4a199d [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
526 * for an illegal UTF-8 byte.
527 */
528 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100529transchar_byte(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530{
531 if (enc_utf8 && c >= 0x80)
532 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200533 transchar_nonprint(curbuf, transchar_charbuf, c);
534 return transchar_charbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 }
536 return transchar(c);
537}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538
539/*
540 * Convert non-printable character to two or more printable characters in
Bram Moolenaara9a6b032023-02-05 18:00:42 +0000541 * "charbuf[]". "charbuf" needs to be able to hold five bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 * Does NOT work for multi-byte characters, c must be <= 255.
543 */
544 void
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200545transchar_nonprint(buf_T *buf, char_u *charbuf, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546{
547 if (c == NL)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100548 c = NUL; // we use newline in place of a NUL
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200549 else if (c == CAR && get_fileformat(buf) == EOL_MAC)
Bram Moolenaarc667da52019-11-30 20:52:27 +0100550 c = NL; // we use CR in place of NL in this case
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551
Bram Moolenaarc667da52019-11-30 20:52:27 +0100552 if (dy_flags & DY_UHEX) // 'display' has "uhex"
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200553 transchar_hex(charbuf, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
Bram Moolenaarc667da52019-11-30 20:52:27 +0100555 else if (c <= 0x7f) // 0x00 - 0x1f and 0x7f
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200557 charbuf[0] = '^';
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200558 charbuf[1] = c ^ 0x40; // DEL displayed as ^?
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200559 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f01a6532022-03-09 13:00:54 +0000561 else if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200563 transchar_hex(charbuf, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100565 else if (c >= ' ' + 0x80 && c <= '~' + 0x80) // 0xa0 - 0xfe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200567 charbuf[0] = '|';
568 charbuf[1] = c - 0x80;
569 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 }
Bram Moolenaarc667da52019-11-30 20:52:27 +0100571 else // 0x80 - 0x9f and 0xff
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200573 charbuf[0] = '~';
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200574 charbuf[1] = (c - 0x80) ^ 0x40; // 0xff displayed as ~?
Bram Moolenaar32ee6272020-06-10 14:16:49 +0200575 charbuf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 }
577}
578
579 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100580transchar_hex(char_u *buf, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581{
582 int i = 0;
583
584 buf[0] = '<';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 if (c > 255)
586 {
587 buf[++i] = nr2hex((unsigned)c >> 12);
588 buf[++i] = nr2hex((unsigned)c >> 8);
589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 buf[++i] = nr2hex((unsigned)c >> 4);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000591 buf[++i] = nr2hex((unsigned)c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 buf[++i] = '>';
593 buf[++i] = NUL;
594}
595
596/*
597 * Convert the lower 4 bits of byte "c" to its hex character.
598 * Lower case letters are used to avoid the confusion of <F1> being 0xf1 or
599 * function key 1.
600 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000601 static unsigned
Bram Moolenaar7454a062016-01-30 15:14:10 +0100602nr2hex(unsigned c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603{
604 if ((c & 0xf) <= 9)
605 return (c & 0xf) + '0';
606 return (c & 0xf) - 10 + 'a';
607}
608
609/*
610 * Return number of display cells occupied by byte "b".
611 * Caller must make sure 0 <= b <= 255.
612 * For multi-byte mode "b" must be the first byte of a character.
613 * A TAB is counted as two cells: "^I".
614 * For UTF-8 mode this will return 0 for bytes >= 0x80, because the number of
615 * cells depends on further bytes.
616 */
617 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100618byte2cells(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 if (enc_utf8 && b >= 0x80)
621 return 0;
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100622 return (g_chartab[b] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623}
624
625/*
626 * Return number of display cells occupied by character "c".
627 * "c" can be a special key (negative number) in which case 3 or 4 is returned.
628 * A TAB is counted as two cells: "^I" or four: "<09>".
629 */
630 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100631char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632{
633 if (IS_SPECIAL(c))
634 return char2cells(K_SECOND(c)) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 if (c >= 0x80)
636 {
Bram Moolenaarc667da52019-11-30 20:52:27 +0100637 // UTF-8: above 0x80 need to check the value
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 if (enc_utf8)
639 return utf_char2cells(c);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100640 // DBCS: double-byte means double-width, except for euc-jp with first
641 // byte 0x8e
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if (enc_dbcs != 0 && c >= 0x100)
643 {
644 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
645 return 1;
646 return 2;
647 }
648 }
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100649 return (g_chartab[c & 0xff] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650}
651
652/*
653 * Return number of display cells occupied by character at "*p".
654 * A TAB is counted as two cells: "^I" or four: "<09>".
655 */
656 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100657ptr2cells(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658{
Bram Moolenaar398649e2022-08-04 15:03:48 +0100659 if (!has_mbyte)
660 return byte2cells(*p);
661
Bram Moolenaarc667da52019-11-30 20:52:27 +0100662 // For UTF-8 we need to look at more bytes if the first byte is >= 0x80.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 if (enc_utf8 && *p >= 0x80)
664 return utf_ptr2cells(p);
Bram Moolenaarc667da52019-11-30 20:52:27 +0100665 // For DBCS we can tell the cell count from the first byte.
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100666 return (g_chartab[*p] & CT_CELL_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667}
668
669/*
Bram Moolenaar06af6022012-01-26 13:40:08 +0100670 * Return the number of character cells string "s" will take on the screen,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 * counting TABs as two characters: "^I".
672 */
673 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100674vim_strsize(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675{
676 return vim_strnsize(s, (int)MAXCOL);
677}
678
679/*
Bram Moolenaar06af6022012-01-26 13:40:08 +0100680 * Return the number of character cells string "s[len]" will take on the
681 * screen, counting TABs as two characters: "^I".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 */
683 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100684vim_strnsize(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685{
686 int size = 0;
687
688 while (*s != NUL && --len >= 0)
Bram Moolenaar398649e2022-08-04 15:03:48 +0100689 {
690 int l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691
Bram Moolenaar398649e2022-08-04 15:03:48 +0100692 size += ptr2cells(s);
693 s += l;
694 len -= l - 1;
695 }
Bram Moolenaar13505972019-01-24 15:04:48 +0100696
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 return size;
698}
699
700/*
701 * Return the number of characters 'c' will take on the screen, taking
702 * into account the size of a tab.
703 * Use a define to make it fast, this is used very often!!!
704 * Also see getvcol() below.
705 */
706
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200707#ifdef FEAT_VARTABS
708# define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
kylo252ae6f1d82022-02-16 19:24:07 +0000709 if (*(p) == TAB && (!(wp)->w_p_list || (wp)->w_lcs_chars.tab1)) \
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200710 { \
711 return tabstop_padding(col, (buf)->b_p_ts, (buf)->b_p_vts_array); \
712 } \
713 else \
714 return ptr2cells(p);
715#else
716# define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
Bram Moolenaareed9d462021-02-15 20:38:25 +0100717 if (*(p) == TAB && (!(wp)->w_p_list || wp->w_lcs_chars.tab1)) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 { \
719 int ts; \
720 ts = (buf)->b_p_ts; \
721 return (int)(ts - (col % ts)); \
722 } \
723 else \
724 return ptr2cells(p);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100728chartabsize(char_u *p, colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
730 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, p, col)
731}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
733#ifdef FEAT_LINEBREAK
734 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100735win_chartabsize(win_T *wp, char_u *p, colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736{
737 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, p, col)
738}
739#endif
740
741/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100742 * Return the number of characters the string "s" will take on the screen,
Bram Moolenaardc536092010-07-18 15:45:49 +0200743 * taking into account the size of a tab.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100744 * Does not handle text properties, since "s" is not a buffer line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 */
746 int
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100747linetabsize_str(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748{
Bram Moolenaardc536092010-07-18 15:45:49 +0200749 return linetabsize_col(0, s);
750}
751
752/*
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100753 * Like linetabsize_str(), but "s" starts at column "startcol".
Bram Moolenaardc536092010-07-18 15:45:49 +0200754 */
755 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100756linetabsize_col(int startcol, char_u *s)
Bram Moolenaardc536092010-07-18 15:45:49 +0200757{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100758 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100760 init_chartabsize_arg(&cts, curwin, 0, startcol, s, s);
761 while (*cts.cts_ptr != NUL)
762 cts.cts_vcol += lbr_chartabsize_adv(&cts);
Bram Moolenaar49a90792022-08-09 18:25:23 +0100763#ifdef FEAT_PROP_POPUP
764 if (cts.cts_has_prop_with_text && cts.cts_ptr == cts.cts_line)
765 {
766 // check for virtual text in an empty line
767 (void)lbr_chartabsize_adv(&cts);
768 cts.cts_vcol += cts.cts_cur_text_width;
769 }
770#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100771 clear_chartabsize_arg(&cts);
772 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773}
774
775/*
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100776 * Like linetabsize_str(), but for a given window instead of the current one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 */
778 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100779win_linetabsize(win_T *wp, linenr_T lnum, char_u *line, colnr_T len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100781 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100783 init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
Bram Moolenaar49a90792022-08-09 18:25:23 +0100784 win_linetabsize_cts(&cts, len);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100785 clear_chartabsize_arg(&cts);
786 return (int)cts.cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787}
788
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100789/*
790 * Return the number of cells line "lnum" of window "wp" will take on the
791 * screen, taking into account the size of a tab and text properties.
792 */
793 int
794linetabsize(win_T *wp, linenr_T lnum)
795{
796 return win_linetabsize(wp, lnum,
797 ml_get_buf(wp->w_buffer, lnum, FALSE), (colnr_T)MAXCOL);
798}
799
Bram Moolenaar49a90792022-08-09 18:25:23 +0100800 void
801win_linetabsize_cts(chartabsize_T *cts, colnr_T len)
802{
803#ifdef FEAT_PROP_POPUP
804 cts->cts_with_trailing = len == MAXCOL;
805#endif
806 for ( ; *cts->cts_ptr != NUL && (len == MAXCOL || cts->cts_ptr < cts->cts_line + len);
807 MB_PTR_ADV(cts->cts_ptr))
808 cts->cts_vcol += win_lbr_chartabsize(cts, NULL);
809#ifdef FEAT_PROP_POPUP
810 // check for a virtual text on an empty line
811 if (cts->cts_has_prop_with_text && *cts->cts_ptr == NUL
812 && cts->cts_ptr == cts->cts_line)
813 {
814 (void)win_lbr_chartabsize(cts, NULL);
815 cts->cts_vcol += cts->cts_cur_text_width;
816 }
817#endif
818}
819
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820/*
Bram Moolenaar81695252004-12-29 20:58:21 +0000821 * Return TRUE if 'c' is a normal identifier character:
822 * Letters and characters from the 'isident' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 */
824 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100825vim_isIDc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100827 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828}
829
830/*
Bram Moolenaare3d1f4c2021-04-06 20:21:59 +0200831 * Like vim_isIDc() but not using the 'isident' option: letters, numbers and
832 * underscore.
833 */
834 int
835vim_isNormalIDc(int c)
836{
837 return ASCII_ISALNUM(c) || c == '_';
838}
839
840/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 * return TRUE if 'c' is a keyword character: Letters and characters from
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100842 * 'iskeyword' option for the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 * For multi-byte characters mb_get_class() is used (builtin rules).
844 */
845 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100846vim_iswordc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847{
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100848 return vim_iswordc_buf(c, curbuf);
849}
850
851 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100852vim_iswordc_buf(int c, buf_T *buf)
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100853{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 if (c >= 0x100)
855 {
856 if (enc_dbcs != 0)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000857 return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100859 return utf_class_buf(c, buf) >= 2;
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100860 return FALSE;
861 }
862 return (c > 0 && GET_CHARTAB(buf, c) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863}
864
865/*
866 * Just like vim_iswordc() but uses a pointer to the (multi-byte) character.
867 */
868 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100869vim_iswordp(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100871 return vim_iswordp_buf(p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872}
873
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100875vim_iswordp_buf(char_u *p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876{
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100877 int c = *p;
878
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100879 if (has_mbyte && MB_BYTE2LEN(c) > 1)
880 c = (*mb_ptr2char)(p);
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100881 return vim_iswordc_buf(c, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883
884/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100885 * Return TRUE if 'c' is a valid file-name character as specified with the
886 * 'isfname' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 * Assume characters above 0x100 are valid (multi-byte).
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100888 * To be used for commands like "gf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 */
890 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100891vim_isfilec(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892{
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100893 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_FNAME_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894}
895
896/*
Bram Moolenaarbc49c5f2022-08-04 13:01:48 +0100897 * Return TRUE if 'c' is a valid file-name character, including characters left
898 * out of 'isfname' to make "gf" work, such as comma, space, '@', etc.
899 */
900 int
901vim_is_fname_char(int c)
902{
903 return vim_isfilec(c) || c == ',' || c == ' ' || c == '@';
904}
905
906/*
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000907 * return TRUE if 'c' is a valid file-name character or a wildcard character
908 * Assume characters above 0x100 are valid (multi-byte).
909 * Explicitly interpret ']' as a wildcard character as mch_has_wildcard("]")
910 * returns false.
911 */
912 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100913vim_isfilec_or_wc(int c)
Bram Moolenaardd87969c2007-08-21 13:07:12 +0000914{
915 char_u buf[2];
916
917 buf[0] = (char_u)c;
918 buf[1] = NUL;
919 return vim_isfilec(c) || c == ']' || mch_has_wildcard(buf);
920}
921
922/*
Bram Moolenaar3317d5e2017-04-08 19:12:06 +0200923 * Return TRUE if 'c' is a printable character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 * Assume characters above 0x100 are printable (multi-byte), except for
925 * Unicode.
926 */
927 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100928vim_isprintc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 if (enc_utf8 && c >= 0x100)
931 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100932 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933}
934
935/*
936 * Strict version of vim_isprintc(c), don't return TRUE if "c" is the head
937 * byte of a double-byte character.
938 */
939 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100940vim_isprintc_strict(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 if (enc_dbcs != 0 && c < 0x100 && MB_BYTE2LEN(c) > 1)
943 return FALSE;
944 if (enc_utf8 && c >= 0x100)
945 return utf_printable(c);
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +0100946 return (c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947}
948
949/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100950 * Prepare the structure passed to chartabsize functions.
951 * "line" is the start of the line, "ptr" is the first relevant character.
952 * When "lnum" is zero do not use text properties that insert text.
953 */
954 void
955init_chartabsize_arg(
956 chartabsize_T *cts,
957 win_T *wp,
Bram Moolenaare5a420f2022-09-07 21:46:56 +0100958 linenr_T lnum UNUSED,
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100959 colnr_T col,
960 char_u *line,
961 char_u *ptr)
962{
Bram Moolenaar3f79b612022-08-01 12:06:40 +0100963 CLEAR_POINTER(cts);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100964 cts->cts_win = wp;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100965 cts->cts_vcol = col;
966 cts->cts_line = line;
967 cts->cts_ptr = ptr;
968#ifdef FEAT_PROP_POPUP
Bram Moolenaar702bd6c2022-09-14 16:09:57 +0100969 if (lnum > 0 && !ignore_text_props)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100970 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100971 char_u *prop_start;
972 int count;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100973
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100974 count = get_text_props(wp->w_buffer, lnum, &prop_start, FALSE);
975 cts->cts_text_prop_count = count;
976 if (count > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100977 {
978 // Make a copy of the properties, so that they are properly
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100979 // aligned. Make it twice as long for the sorting below.
980 cts->cts_text_props = ALLOC_MULT(textprop_T, count * 2);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100981 if (cts->cts_text_props == NULL)
982 cts->cts_text_prop_count = 0;
983 else
984 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100985 int i;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100986
Bram Moolenaarf396ce82022-08-23 18:39:37 +0100987 mch_memmove(cts->cts_text_props + count, prop_start,
988 count * sizeof(textprop_T));
989 for (i = 0; i < count; ++i)
Bram Moolenaar89469d12022-12-02 20:46:26 +0000990 {
991 textprop_T *tp = cts->cts_text_props + i + count;
992 if (tp->tp_id < 0
993 && text_prop_type_valid(wp->w_buffer, tp))
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100994 {
995 cts->cts_has_prop_with_text = TRUE;
996 break;
997 }
Bram Moolenaar89469d12022-12-02 20:46:26 +0000998 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +0100999 if (!cts->cts_has_prop_with_text)
1000 {
1001 // won't use the text properties, free them
Bram Moolenaar3f79b612022-08-01 12:06:40 +01001002 VIM_CLEAR(cts->cts_text_props);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001003 cts->cts_text_prop_count = 0;
1004 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001005 else
1006 {
1007 int *text_prop_idxs;
1008
1009 // Need to sort the array to get any truncation right.
1010 // Do the sorting in the second part of the array, then
1011 // move the sorted props to the first part of the array.
1012 text_prop_idxs = ALLOC_MULT(int, count);
1013 if (text_prop_idxs != NULL)
1014 {
1015 for (i = 0; i < count; ++i)
1016 text_prop_idxs[i] = i + count;
1017 sort_text_props(curbuf, cts->cts_text_props,
1018 text_prop_idxs, count);
1019 // Here we want the reverse order.
1020 for (i = 0; i < count; ++i)
1021 cts->cts_text_props[count - i - 1] =
1022 cts->cts_text_props[text_prop_idxs[i]];
1023 vim_free(text_prop_idxs);
1024 }
1025 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001026 }
1027 }
1028 }
1029#endif
1030}
1031
1032/*
1033 * Free any allocated item in "cts".
1034 */
1035 void
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001036clear_chartabsize_arg(chartabsize_T *cts UNUSED)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001037{
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001038#ifdef FEAT_PROP_POPUP
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001039 if (cts->cts_text_prop_count > 0)
Bram Moolenaar34a1f772022-07-26 11:20:48 +01001040 {
Bram Moolenaar3f79b612022-08-01 12:06:40 +01001041 VIM_CLEAR(cts->cts_text_props);
1042 cts->cts_text_prop_count = 0;
Bram Moolenaar34a1f772022-07-26 11:20:48 +01001043 }
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001044#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001045}
1046
1047/*
1048 * Like chartabsize(), but also check for line breaks on the screen and text
1049 * properties that insert text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 */
1051 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001052lbr_chartabsize(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001054#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
1055 if (1
1056# ifdef FEAT_LINEBREAK
1057 && !curwin->w_p_lbr && *get_showbreak_value(curwin) == NUL
1058 && !curwin->w_p_bri
1059# endif
1060# ifdef FEAT_PROP_POPUP
1061 && !cts->cts_has_prop_with_text
1062#endif
1063 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 {
1065#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 if (curwin->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001067 return win_nolbr_chartabsize(cts, NULL);
1068 RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, cts->cts_ptr, cts->cts_vcol)
1069#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001071 return win_lbr_chartabsize(cts, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072#endif
1073}
1074
1075/*
1076 * Call lbr_chartabsize() and advance the pointer.
1077 */
1078 int
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001079lbr_chartabsize_adv(chartabsize_T *cts)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080{
1081 int retval;
1082
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001083 retval = lbr_chartabsize(cts);
1084 MB_PTR_ADV(cts->cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 return retval;
1086}
1087
1088/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001089 * Return the screen size of the character indicated by "cts".
1090 * "cts->cts_cur_text_width" is set to the extra size for a text property that
1091 * inserts text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 * This function is used very often, keep it fast!!!!
1093 *
1094 * If "headp" not NULL, set *headp to the size of what we for 'showbreak'
1095 * string at start of line. Warning: *headp is only set if it's a non-zero
1096 * value, init to 0 before calling.
1097 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001099win_lbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001100 chartabsize_T *cts,
1101 int *headp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001103 win_T *wp = cts->cts_win;
Martin Tournoijba43e762022-10-13 22:12:15 +01001104#if defined(FEAT_PROP_POPUP) || defined(FEAT_LINEBREAK)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001105 char_u *line = cts->cts_line; // start of the line
Bram Moolenaarfe3fb6e2022-07-25 18:35:15 +01001106#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001107 char_u *s = cts->cts_ptr;
1108 colnr_T vcol = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109#ifdef FEAT_LINEBREAK
1110 int c;
1111 int size;
1112 colnr_T col2;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001113 colnr_T col_adj = 0; // vcol + screen size of tab
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 colnr_T colmax;
1115 int added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 int mb_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 int numberextra;
1118 char_u *ps;
1119 int tab_corr = (*s == TAB);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001120 int n;
Bram Moolenaaree857022019-11-09 23:26:40 +01001121 char_u *sbr;
Bram Moolenaarcba69522022-08-06 21:03:53 +01001122 int no_sbr = FALSE;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001123#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001125#if defined(FEAT_PROP_POPUP)
1126 cts->cts_cur_text_width = 0;
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001127 cts->cts_first_char = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001128#endif
1129
1130#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001132 * No 'linebreak', 'showbreak', 'breakindent' and text properties that
1133 * insert text: return quickly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001135 if (1
1136# ifdef FEAT_LINEBREAK
1137 && !wp->w_p_lbr && !wp->w_p_bri && *get_showbreak_value(wp) == NUL
1138# endif
1139# ifdef FEAT_PROP_POPUP
1140 && !cts->cts_has_prop_with_text
1141# endif
1142 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143#endif
1144 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 if (wp->w_p_wrap)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001146 return win_nolbr_chartabsize(cts, headp);
1147 RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, s, vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 }
1149
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001150#if defined(FEAT_LINEBREAK) || defined(FEAT_PROP_POPUP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 /*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001152 * First get the normal size, without 'linebreak' or text properties
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 */
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001154 size = win_chartabsize(wp, s, vcol);
1155
1156# ifdef FEAT_PROP_POPUP
Bram Moolenaar49a90792022-08-09 18:25:23 +01001157 if (cts->cts_has_prop_with_text)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001158 {
Bram Moolenaare428fa02022-08-09 16:55:41 +01001159 int tab_size = size;
Bram Moolenaar49a90792022-08-09 18:25:23 +01001160 int charlen = *s == NUL ? 1 : mb_ptr2len(s);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001161 int i;
1162 int col = (int)(s - line);
1163 garray_T *gap = &wp->w_buffer->b_textprop_text;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001164
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001165 // The "$" for 'list' mode will go between the EOL and
1166 // the text prop, account for that.
1167 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
1168 ++vcol;
1169
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001170 for (i = 0; i < cts->cts_text_prop_count; ++i)
1171 {
Bram Moolenaarc8bf59e2022-08-28 16:39:22 +01001172 textprop_T *tp = cts->cts_text_props + i;
1173 int col_off = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001174
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001175 // Watch out for the text being deleted. "cts_text_props" is a
1176 // copy, the text prop may actually have been removed from the line.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001177 if (tp->tp_id < 0
Bram Moolenaar25463612022-08-08 11:07:47 +01001178 && ((tp->tp_col - 1 >= col
Bram Moolenaare428fa02022-08-09 16:55:41 +01001179 && tp->tp_col - 1 < col + charlen)
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001180 || (tp->tp_col == MAXCOL
1181 && ((tp->tp_flags & TP_FLAG_ALIGN_ABOVE)
1182 ? col == 0
1183 : (s[0] == NUL || s[1] == NUL)
1184 && cts->cts_with_trailing)))
Bram Moolenaar4ce1f992022-12-19 13:31:06 +00001185 && -tp->tp_id - 1 < gap->ga_len)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001186 {
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001187 char_u *p = ((char_u **)gap->ga_data)[-tp->tp_id - 1];
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001188
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001189 if (p != NULL)
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001190 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001191 int cells;
Bram Moolenaar398649e2022-08-04 15:03:48 +01001192
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001193 if (tp->tp_col == MAXCOL)
1194 {
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001195 int n_extra = (int)STRLEN(p);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001196
Bram Moolenaarf167c7b2022-10-09 21:53:58 +01001197 cells = text_prop_position(wp, tp, vcol,
Bram Moolenaarc8bf59e2022-08-28 16:39:22 +01001198 (vcol + size) % (wp->w_width - col_off) + col_off,
Bram Moolenaar56a40fe2022-12-06 14:17:57 +00001199 &n_extra, &p, NULL, NULL, FALSE);
Bram Moolenaarcba69522022-08-06 21:03:53 +01001200#ifdef FEAT_LINEBREAK
1201 no_sbr = TRUE; // don't use 'showbreak' now
1202#endif
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001203 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001204 else
1205 cells = vim_strsize(p);
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001206 cts->cts_cur_text_width += cells;
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001207 if (tp->tp_flags & TP_FLAG_ALIGN_ABOVE)
1208 cts->cts_first_char += cells;
Bram Moolenaar28c9f892022-08-14 13:28:55 +01001209 cts->cts_start_incl = tp->tp_flags & TP_FLAG_START_INCL;
Bram Moolenaar2f83cc42022-08-05 11:45:17 +01001210 size += cells;
Bram Moolenaare428fa02022-08-09 16:55:41 +01001211 if (*s == TAB)
1212 {
1213 // tab size changes because of the inserted text
1214 size -= tab_size;
1215 tab_size = win_chartabsize(wp, s, vcol + size);
1216 size += tab_size;
1217 }
Bram Moolenaarb7963df2022-07-31 17:12:43 +01001218 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001219 }
Bram Moolenaar50e75fe2022-08-05 20:25:50 +01001220 if (tp->tp_col != MAXCOL && tp->tp_col - 1 > col)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001221 break;
1222 }
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001223 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
1224 --vcol;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001225 }
1226# endif
1227
1228# ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 c = *s;
Bram Moolenaaree739b42014-07-02 19:37:42 +02001230 if (tab_corr)
1231 col_adj = size - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232
1233 /*
1234 * If 'linebreak' set check at a blank before a non-blank if the line
1235 * needs a break here
1236 */
1237 if (wp->w_p_lbr
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001238 && VIM_ISBREAK(c)
Bram Moolenaar977d0372017-03-12 21:31:58 +01001239 && !VIM_ISBREAK((int)s[1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 && wp->w_p_wrap
Bram Moolenaar4033c552017-09-16 20:54:51 +02001241 && wp->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 {
1243 /*
1244 * Count all characters from first non-blank after a blank up to next
1245 * non-blank after a blank.
1246 */
1247 numberextra = win_col_off(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001248 col2 = vcol;
Bram Moolenaar02631462017-09-22 15:20:32 +02001249 colmax = (colnr_T)(wp->w_width - numberextra - col_adj);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001250 if (vcol >= colmax)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001251 {
Bram Moolenaaree739b42014-07-02 19:37:42 +02001252 colmax += col_adj;
1253 n = colmax + win_col_off2(wp);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001254 if (n > 0)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001255 colmax += (((vcol - colmax) / n) + 1) * n - col_adj;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001256 }
1257
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 for (;;)
1259 {
1260 ps = s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001261 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 c = *s;
1263 if (!(c != NUL
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001264 && (VIM_ISBREAK(c)
1265 || (!VIM_ISBREAK(c)
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001266 && (col2 == vcol || !VIM_ISBREAK((int)*ps))))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 break;
1268
1269 col2 += win_chartabsize(wp, s, col2);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001270 if (col2 >= colmax) // doesn't fit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001272 size = colmax - vcol + col_adj;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 break;
1274 }
1275 }
1276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 else if (has_mbyte && size == 2 && MB_BYTE2LEN(*s) > 1
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001278 && wp->w_p_wrap && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001280 ++size; // Count the ">" in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 mb_added = 1;
1282 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
1284 /*
Bram Moolenaar597a4222014-06-25 14:39:50 +02001285 * May have to add something for 'breakindent' and/or 'showbreak'
1286 * string at start of line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 * Set *headp to the size of what we add.
Bram Moolenaar21efafe2022-03-03 20:04:03 +00001288 * Do not use 'showbreak' at the NUL after the text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 */
1290 added = 0;
Bram Moolenaarcba69522022-08-06 21:03:53 +01001291 sbr = (c == NUL || no_sbr) ? empty_option : get_showbreak_value(wp);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001292 if ((*sbr != NUL || wp->w_p_bri) && wp->w_p_wrap && vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 {
Bram Moolenaard574ea22015-01-14 19:35:14 +01001294 colnr_T sbrlen = 0;
1295 int numberwidth = win_col_off(wp);
1296
1297 numberextra = numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001298 vcol += numberextra + mb_added;
Bram Moolenaar4c7fd4d2022-09-17 17:15:33 +01001299#ifdef FEAT_PROP_POPUP
1300 vcol -= wp->w_virtcol_first_char;
1301#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001302 if (vcol >= (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001304 vcol -= wp->w_width;
Bram Moolenaar02631462017-09-22 15:20:32 +02001305 numberextra = wp->w_width - (numberextra - win_col_off2(wp));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001306 if (vcol >= numberextra && numberextra > 0)
1307 vcol %= numberextra;
Bram Moolenaaree857022019-11-09 23:26:40 +01001308 if (*sbr != NUL)
Bram Moolenaar1c852102014-10-15 21:26:40 +02001309 {
Bram Moolenaaree857022019-11-09 23:26:40 +01001310 sbrlen = (colnr_T)MB_CHARLEN(sbr);
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001311 if (vcol >= sbrlen)
1312 vcol -= sbrlen;
Bram Moolenaar1c852102014-10-15 21:26:40 +02001313 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001314 if (vcol >= numberextra && numberextra > 0)
1315 vcol = vcol % numberextra;
1316 else if (vcol > 0 && numberextra > 0)
1317 vcol += numberwidth - win_col_off2(wp);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001318
1319 numberwidth -= win_col_off2(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001321 if (vcol == 0 || vcol + size + sbrlen > (colnr_T)wp->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02001323 added = 0;
Bram Moolenaaree857022019-11-09 23:26:40 +01001324 if (*sbr != NUL)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001325 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001326 if (size + sbrlen + numberwidth > (colnr_T)wp->w_width)
Bram Moolenaard574ea22015-01-14 19:35:14 +01001327 {
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001328 // calculate effective window width
Bram Moolenaar02631462017-09-22 15:20:32 +02001329 int width = (colnr_T)wp->w_width - sbrlen - numberwidth;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001330 int prev_width = vcol
1331 ? ((colnr_T)wp->w_width - (sbrlen + vcol)) : 0;
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001332
1333 if (width <= 0)
1334 width = (colnr_T)1;
Bram Moolenaaree857022019-11-09 23:26:40 +01001335 added += ((size - prev_width) / width) * vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001336 if ((size - prev_width) % width)
Bram Moolenaar7833dab2019-05-27 22:01:40 +02001337 // wrapped, add another length of 'sbr'
Bram Moolenaaree857022019-11-09 23:26:40 +01001338 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001339 }
1340 else
Bram Moolenaaree857022019-11-09 23:26:40 +01001341 added += vim_strsize(sbr);
Bram Moolenaard574ea22015-01-14 19:35:14 +01001342 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02001343 if (wp->w_p_bri)
1344 added += get_breakindent_win(wp, line);
1345
Bram Moolenaar95765082014-08-24 21:19:25 +02001346 size += added;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001347 if (vcol != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 added = 0;
1349 }
1350 }
1351 if (headp != NULL)
1352 *headp = added + mb_added;
1353 return size;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001354# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355#endif
1356}
1357
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358/*
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001359 * Like win_lbr_chartabsize(), except that we know 'linebreak' is off, 'wrap'
1360 * is on and there are no properties that insert text. This means we need to
1361 * check for a double-byte character that doesn't fit at the end of the screen
1362 * line.
1363 * Only uses "cts_win", "cts_ptr" and "cts_vcol" from "cts".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 */
1365 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001366win_nolbr_chartabsize(
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001367 chartabsize_T *cts,
1368 int *headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001370 win_T *wp = cts->cts_win;
1371 char_u *s = cts->cts_ptr;
1372 colnr_T col = cts->cts_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 int n;
1374
Bram Moolenaareed9d462021-02-15 20:38:25 +01001375 if (*s == TAB && (!wp->w_p_list || wp->w_lcs_chars.tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 {
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001377# ifdef FEAT_VARTABS
1378 return tabstop_padding(col, wp->w_buffer->b_p_ts,
1379 wp->w_buffer->b_p_vts_array);
1380# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 n = wp->w_buffer->b_p_ts;
1382 return (int)(n - (col % n));
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001383# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
1385 n = ptr2cells(s);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001386 // Add one cell for a double-width character in the last column of the
1387 // window, displayed with a ">".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 if (n == 2 && MB_BYTE2LEN(*s) > 1 && in_win_border(wp, col))
1389 {
1390 if (headp != NULL)
1391 *headp = 1;
1392 return 3;
1393 }
1394 return n;
1395}
1396
1397/*
1398 * Return TRUE if virtual column "vcol" is in the rightmost column of window
1399 * "wp".
1400 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001401 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001402in_win_border(win_T *wp, colnr_T vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403{
Bram Moolenaarc667da52019-11-30 20:52:27 +01001404 int width1; // width of first line (after line number)
1405 int width2; // width of further lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406
Bram Moolenaarc667da52019-11-30 20:52:27 +01001407 if (wp->w_width == 0) // there is no border
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 return FALSE;
Bram Moolenaar02631462017-09-22 15:20:32 +02001409 width1 = wp->w_width - win_col_off(wp);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001410 if ((int)vcol < width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001412 if ((int)vcol == width1 - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 return TRUE;
1414 width2 = width1 + win_col_off2(wp);
Bram Moolenaar8701cd62009-10-07 14:20:30 +00001415 if (width2 <= 0)
1416 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 return ((vcol - width1) % width2 == width2 - 1);
1418}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419
1420/*
1421 * Get virtual column number of pos.
1422 * start: on the first position of this character (TAB, ctrl)
1423 * cursor: where the cursor is on this character (first char, except for TAB)
1424 * end: on the last position of this character (TAB, ctrl)
1425 *
1426 * This is used very often, keep it fast!
1427 */
1428 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001429getvcol(
1430 win_T *wp,
1431 pos_T *pos,
1432 colnr_T *start,
1433 colnr_T *cursor,
1434 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435{
1436 colnr_T vcol;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001437 char_u *ptr; // points to current char
1438 char_u *posptr; // points to char at pos->col
1439 char_u *line; // start of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 int incr;
1441 int head;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001442#ifdef FEAT_VARTABS
1443 int *vts = wp->w_buffer->b_p_vts_array;
1444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 int ts = wp->w_buffer->b_p_ts;
1446 int c;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001447 chartabsize_T cts;
Bram Moolenaar49a90792022-08-09 18:25:23 +01001448#ifdef FEAT_PROP_POPUP
1449 int on_NUL = FALSE;
1450#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451
1452 vcol = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02001453 line = ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001454 if (pos->col == MAXCOL)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001455 posptr = NULL; // continue until the NUL
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001456 else
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001457 {
Bram Moolenaar94f31922021-12-30 15:29:18 +00001458 colnr_T i;
1459
1460 // In a few cases the position can be beyond the end of the line.
1461 for (i = 0; i < pos->col; ++i)
1462 if (ptr[i] == NUL)
1463 {
1464 pos->col = i;
1465 break;
1466 }
Bram Moolenaar37d619f2010-03-10 14:46:26 +01001467 posptr = ptr + pos->col;
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001468 if (has_mbyte)
Bram Moolenaarc667da52019-11-30 20:52:27 +01001469 // always start on the first byte
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001470 posptr -= (*mb_head_off)(line, posptr);
Bram Moolenaar0c0590d2017-01-28 13:48:10 +01001471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001473 init_chartabsize_arg(&cts, wp, pos->lnum, 0, line, line);
1474
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 /*
1476 * This function is used very often, do some speed optimizations.
Bram Moolenaar597a4222014-06-25 14:39:50 +02001477 * When 'list', 'linebreak', 'showbreak' and 'breakindent' are not set
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001478 * and there are no text properties with "text" use a simple loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 * Also use this when 'list' is set but tabs take their normal size.
1480 */
Bram Moolenaareed9d462021-02-15 20:38:25 +01001481 if ((!wp->w_p_list || wp->w_lcs_chars.tab1 != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482#ifdef FEAT_LINEBREAK
Bram Moolenaaree857022019-11-09 23:26:40 +01001483 && !wp->w_p_lbr && *get_showbreak_value(wp) == NUL && !wp->w_p_bri
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001485#ifdef FEAT_PROP_POPUP
1486 && !cts.cts_has_prop_with_text
1487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 )
1489 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 for (;;)
1491 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 head = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 c = *ptr;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001494 // make sure we don't go past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 if (c == NUL)
1496 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001497 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 break;
1499 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01001500 // A tab gets expanded, depending on the current column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 if (c == TAB)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001502#ifdef FEAT_VARTABS
1503 incr = tabstop_padding(vcol, ts, vts);
1504#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 incr = ts - (vcol % ts);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001506#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 else
1508 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 if (has_mbyte)
1510 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001511 // For utf-8, if the byte is >= 0x80, need to look at
1512 // further bytes to find the cell width.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 if (enc_utf8 && c >= 0x80)
1514 incr = utf_ptr2cells(ptr);
1515 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001516 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517
Bram Moolenaarc667da52019-11-30 20:52:27 +01001518 // If a double-cell char doesn't fit at the end of a line
1519 // it wraps to the next line, it's like this char is three
1520 // cells wide.
Bram Moolenaar9c33a7c2008-02-20 13:59:32 +00001521 if (incr == 2 && wp->w_p_wrap && MB_BYTE2LEN(*ptr) > 1
1522 && in_win_border(wp, vcol))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 {
1524 ++incr;
1525 head = 1;
1526 }
1527 }
1528 else
Bram Moolenaar88e8f9f2016-01-20 22:48:02 +01001529 incr = g_chartab[c] & CT_CELL_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 }
1531
Bram Moolenaarc667da52019-11-30 20:52:27 +01001532 if (posptr != NULL && ptr >= posptr) // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 break;
1534
1535 vcol += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001536 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 }
1538 }
1539 else
1540 {
1541 for (;;)
1542 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001543 // A tab gets expanded, depending on the current column.
1544 // Other things also take up space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 head = 0;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001546 incr = win_lbr_chartabsize(&cts, &head);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001547 // make sure we don't go past the end of the line
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001548 if (*cts.cts_ptr == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001550 incr = 1; // NUL at end of line only takes one column
Bram Moolenaar49a90792022-08-09 18:25:23 +01001551#ifdef FEAT_PROP_POPUP
1552 if (cts.cts_cur_text_width > 0)
1553 incr = cts.cts_cur_text_width;
1554 on_NUL = TRUE;
1555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 break;
1557 }
Bram Moolenaar04e0ed12022-09-10 20:00:56 +01001558#ifdef FEAT_PROP_POPUP
1559 if (cursor == &wp->w_virtcol && cts.cts_ptr == cts.cts_line)
1560 // do not count the virtual text above for w_curswant
1561 wp->w_virtcol_first_char = cts.cts_first_char;
1562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001564 if (posptr != NULL && cts.cts_ptr >= posptr)
1565 // character at pos->col
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 break;
1567
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001568 cts.cts_vcol += incr;
1569 MB_PTR_ADV(cts.cts_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001571 vcol = cts.cts_vcol;
1572 ptr = cts.cts_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01001574 clear_chartabsize_arg(&cts);
1575
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 if (start != NULL)
1577 *start = vcol + head;
1578 if (end != NULL)
1579 *end = vcol + incr - 1;
1580 if (cursor != NULL)
1581 {
1582 if (*ptr == TAB
Bram Moolenaar24959102022-05-07 20:01:16 +01001583 && (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 && !wp->w_p_list
1585 && !virtual_active()
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001586 && !(VIsual_active
1587 && (*p_sel == 'e' || LTOREQ_POS(*pos, VIsual)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 )
Bram Moolenaarc667da52019-11-30 20:52:27 +01001589 *cursor = vcol + incr - 1; // cursor at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 else
Bram Moolenaare428fa02022-08-09 16:55:41 +01001591 {
1592#ifdef FEAT_PROP_POPUP
Bram Moolenaar28c9f892022-08-14 13:28:55 +01001593 // in Insert mode, if "start_incl" is true the text gets inserted
1594 // after the virtual text, thus add its width
1595 if (((State & MODE_INSERT) == 0 || cts.cts_start_incl) && !on_NUL)
Bram Moolenaar49a90792022-08-09 18:25:23 +01001596 // cursor is after inserted text, unless on the NUL
Bram Moolenaare428fa02022-08-09 16:55:41 +01001597 vcol += cts.cts_cur_text_width;
Bram Moolenaar88b79cb2022-09-10 22:32:14 +01001598 else
1599 // insertion also happens after the "above" virtual text
1600 vcol += cts.cts_first_char;
Bram Moolenaare428fa02022-08-09 16:55:41 +01001601#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001602 *cursor = vcol + head; // cursor at start
Bram Moolenaare428fa02022-08-09 16:55:41 +01001603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 }
1605}
1606
1607/*
1608 * Get virtual cursor column in the current window, pretending 'list' is off.
1609 */
1610 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01001611getvcol_nolist(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612{
1613 int list_save = curwin->w_p_list;
1614 colnr_T vcol;
1615
1616 curwin->w_p_list = FALSE;
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001617 if (posp->coladd)
1618 getvvcol(curwin, posp, NULL, &vcol, NULL);
1619 else
Bram Moolenaardb0eede2018-04-25 22:38:17 +02001620 getvcol(curwin, posp, NULL, &vcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 curwin->w_p_list = list_save;
1622 return vcol;
1623}
1624
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625/*
1626 * Get virtual column in virtual mode.
1627 */
1628 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001629getvvcol(
1630 win_T *wp,
1631 pos_T *pos,
1632 colnr_T *start,
1633 colnr_T *cursor,
1634 colnr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635{
1636 colnr_T col;
1637 colnr_T coladd;
1638 colnr_T endadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
1641 if (virtual_active())
1642 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01001643 // For virtual mode, only want one value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 getvcol(wp, pos, &col, NULL, NULL);
1645
1646 coladd = pos->coladd;
1647 endadd = 0;
Bram Moolenaarc667da52019-11-30 20:52:27 +01001648 // Cannot put the cursor on part of a wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001650 if (pos->col < (colnr_T)STRLEN(ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 {
1652 int c = (*mb_ptr2char)(ptr + pos->col);
1653
1654 if (c != TAB && vim_isprintc(c))
1655 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001656 endadd = (colnr_T)(char2cells(c) - 1);
Bram Moolenaarc667da52019-11-30 20:52:27 +01001657 if (coladd > endadd) // past end of line
Bram Moolenaara5792f52005-11-23 21:25:05 +00001658 endadd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 else
1660 coladd = 0;
1661 }
1662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 col += coladd;
1664 if (start != NULL)
1665 *start = col;
1666 if (cursor != NULL)
1667 *cursor = col;
1668 if (end != NULL)
1669 *end = col + endadd;
1670 }
1671 else
1672 getvcol(wp, pos, start, cursor, end);
1673}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675/*
1676 * Get the leftmost and rightmost virtual column of pos1 and pos2.
1677 * Used for Visual block mode.
1678 */
1679 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001680getvcols(
1681 win_T *wp,
1682 pos_T *pos1,
1683 pos_T *pos2,
1684 colnr_T *left,
1685 colnr_T *right)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686{
1687 colnr_T from1, from2, to1, to2;
1688
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001689 if (LT_POSP(pos1, pos2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 {
1691 getvvcol(wp, pos1, &from1, NULL, &to1);
1692 getvvcol(wp, pos2, &from2, NULL, &to2);
1693 }
1694 else
1695 {
1696 getvvcol(wp, pos2, &from1, NULL, &to1);
1697 getvvcol(wp, pos1, &from2, NULL, &to2);
1698 }
1699 if (from2 < from1)
1700 *left = from2;
1701 else
1702 *left = from1;
1703 if (to2 > to1)
1704 {
1705 if (*p_sel == 'e' && from2 - 1 >= to1)
1706 *right = from2 - 1;
1707 else
1708 *right = to2;
1709 }
1710 else
1711 *right = to1;
1712}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713
1714/*
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001715 * Skip over ' ' and '\t'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 */
1717 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001718skipwhite(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001720 char_u *p = q;
1721
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001722 while (VIM_ISWHITE(*p))
1723 ++p;
1724 return p;
1725}
1726
Dominique Pelle748b3082022-01-08 12:41:16 +00001727#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarce7eada2021-12-15 15:41:44 +00001728/*
1729 * skip over ' ', '\t' and '\n'.
1730 */
1731 char_u *
1732skipwhite_and_nl(char_u *q)
1733{
1734 char_u *p = q;
1735
1736 while (VIM_ISWHITE(*p) || *p == NL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 ++p;
1738 return p;
1739}
Dominique Pelle748b3082022-01-08 12:41:16 +00001740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
1742/*
Bram Moolenaare2e69e42017-09-02 20:30:35 +02001743 * getwhitecols: return the number of whitespace
1744 * columns (bytes) at the start of a given line
1745 */
1746 int
1747getwhitecols_curline()
1748{
1749 return getwhitecols(ml_get_curline());
1750}
1751
1752 int
1753getwhitecols(char_u *p)
1754{
1755 return skipwhite(p) - p;
1756}
1757
1758/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001759 * skip over digits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 */
1761 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001762skipdigits(char_u *q)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001764 char_u *p = q;
1765
Bram Moolenaarc667da52019-11-30 20:52:27 +01001766 while (VIM_ISDIGIT(*p)) // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 ++p;
1768 return p;
1769}
1770
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001771#if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001772/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001773 * skip over binary digits
1774 */
1775 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001776skipbin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001777{
1778 char_u *p = q;
1779
Bram Moolenaarc667da52019-11-30 20:52:27 +01001780 while (vim_isbdigit(*p)) // skip to next non-digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001781 ++p;
1782 return p;
1783}
1784
1785/*
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001786 * skip over digits and hex characters
1787 */
1788 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001789skiphex(char_u *q)
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001790{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001791 char_u *p = q;
1792
Bram Moolenaarc667da52019-11-30 20:52:27 +01001793 while (vim_isxdigit(*p)) // skip to next non-digit
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001794 ++p;
1795 return p;
1796}
1797#endif
1798
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001799/*
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001800 * skip to bin digit (or NUL after the string)
1801 */
1802 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001803skiptobin(char_u *q)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001804{
1805 char_u *p = q;
1806
Bram Moolenaarc667da52019-11-30 20:52:27 +01001807 while (*p != NUL && !vim_isbdigit(*p)) // skip to next digit
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001808 ++p;
1809 return p;
1810}
1811
1812/*
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001813 * skip to digit (or NUL after the string)
1814 */
1815 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001816skiptodigit(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001817{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001818 char_u *p = q;
1819
Bram Moolenaarc667da52019-11-30 20:52:27 +01001820 while (*p != NUL && !VIM_ISDIGIT(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001821 ++p;
1822 return p;
1823}
1824
1825/*
1826 * skip to hex character (or NUL after the string)
1827 */
1828 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01001829skiptohex(char_u *q)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001830{
Bram Moolenaar1387a602008-07-24 19:31:11 +00001831 char_u *p = q;
1832
Bram Moolenaarc667da52019-11-30 20:52:27 +01001833 while (*p != NUL && !vim_isxdigit(*p)) // skip to next digit
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001834 ++p;
1835 return p;
1836}
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00001837
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838/*
1839 * Variant of isdigit() that can handle characters > 0x100.
1840 * We don't use isdigit() here, because on some systems it also considers
1841 * superscript 1 to be a digit.
1842 * Use the VIM_ISDIGIT() macro for simple arguments.
1843 */
1844 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001845vim_isdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846{
1847 return (c >= '0' && c <= '9');
1848}
1849
1850/*
1851 * Variant of isxdigit() that can handle characters > 0x100.
1852 * We don't use isxdigit() here, because on some systems it also considers
1853 * superscript 1 to be a digit.
1854 */
1855 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001856vim_isxdigit(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857{
1858 return (c >= '0' && c <= '9')
1859 || (c >= 'a' && c <= 'f')
1860 || (c >= 'A' && c <= 'F');
1861}
1862
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001863/*
1864 * Corollary of vim_isdigit and vim_isxdigit() that can handle
1865 * characters > 0x100.
1866 */
1867 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001868vim_isbdigit(int c)
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01001869{
1870 return (c == '0' || c == '1');
1871}
1872
Bram Moolenaarc37b6552021-01-07 19:36:30 +01001873 static int
1874vim_isodigit(int c)
1875{
1876 return (c >= '0' && c <= '7');
1877}
1878
Bram Moolenaar78622822005-08-23 21:00:13 +00001879/*
1880 * Vim's own character class functions. These exist because many library
1881 * islower()/toupper() etc. do not work properly: they crash when used with
1882 * invalid values or can't handle latin1 when the locale is C.
1883 * Speed is most important here.
1884 */
1885#define LATIN1LOWER 'l'
1886#define LATIN1UPPER 'U'
1887
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001888static char_u latin1flags[257] = " UUUUUUUUUUUUUUUUUUUUUUUUUU llllllllllllllllllllllllll UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll";
Bram Moolenaar936347b2012-05-25 11:56:22 +02001889static 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";
1890static 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 +00001891
1892 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001893vim_islower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001894{
1895 if (c <= '@')
1896 return FALSE;
1897 if (c >= 0x80)
1898 {
1899 if (enc_utf8)
1900 return utf_islower(c);
1901 if (c >= 0x100)
1902 {
1903#ifdef HAVE_ISWLOWER
1904 if (has_mbyte)
1905 return iswlower(c);
1906#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001907 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001908 return FALSE;
1909 }
1910 if (enc_latin1like)
1911 return (latin1flags[c] & LATIN1LOWER) == LATIN1LOWER;
1912 }
1913 return islower(c);
1914}
1915
1916 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001917vim_isupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001918{
1919 if (c <= '@')
1920 return FALSE;
1921 if (c >= 0x80)
1922 {
1923 if (enc_utf8)
1924 return utf_isupper(c);
1925 if (c >= 0x100)
1926 {
1927#ifdef HAVE_ISWUPPER
1928 if (has_mbyte)
1929 return iswupper(c);
1930#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001931 // islower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001932 return FALSE;
1933 }
1934 if (enc_latin1like)
1935 return (latin1flags[c] & LATIN1UPPER) == LATIN1UPPER;
1936 }
1937 return isupper(c);
1938}
1939
1940 int
Bram Moolenaar5921aeb2022-02-19 11:20:12 +00001941vim_isalpha(int c)
1942{
1943 return vim_islower(c) || vim_isupper(c);
1944}
1945
1946 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001947vim_toupper(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001948{
1949 if (c <= '@')
1950 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001951 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001952 {
1953 if (enc_utf8)
1954 return utf_toupper(c);
1955 if (c >= 0x100)
1956 {
1957#ifdef HAVE_TOWUPPER
1958 if (has_mbyte)
1959 return towupper(c);
1960#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001961 // toupper() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001962 return c;
1963 }
1964 if (enc_latin1like)
1965 return latin1upper[c];
1966 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001967 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1968 return TOUPPER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001969 return TOUPPER_LOC(c);
1970}
1971
1972 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001973vim_tolower(int c)
Bram Moolenaar78622822005-08-23 21:00:13 +00001974{
1975 if (c <= '@')
1976 return c;
Bram Moolenaar3317d5e2017-04-08 19:12:06 +02001977 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII))
Bram Moolenaar78622822005-08-23 21:00:13 +00001978 {
1979 if (enc_utf8)
1980 return utf_tolower(c);
1981 if (c >= 0x100)
1982 {
1983#ifdef HAVE_TOWLOWER
1984 if (has_mbyte)
1985 return towlower(c);
1986#endif
Bram Moolenaarc667da52019-11-30 20:52:27 +01001987 // tolower() can't handle these chars and may crash
Bram Moolenaar78622822005-08-23 21:00:13 +00001988 return c;
1989 }
1990 if (enc_latin1like)
1991 return latin1lower[c];
1992 }
Bram Moolenaar1cc48202017-04-09 13:41:59 +02001993 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII))
1994 return TOLOWER_ASC(c);
Bram Moolenaar78622822005-08-23 21:00:13 +00001995 return TOLOWER_LOC(c);
1996}
Bram Moolenaar78622822005-08-23 21:00:13 +00001997
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998/*
1999 * skiptowhite: skip over text until ' ' or '\t' or NUL.
2000 */
2001 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002002skiptowhite(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003{
2004 while (*p != ' ' && *p != '\t' && *p != NUL)
2005 ++p;
2006 return p;
2007}
2008
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009/*
2010 * skiptowhite_esc: Like skiptowhite(), but also skip escaped chars
2011 */
2012 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002013skiptowhite_esc(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014{
2015 while (*p != ' ' && *p != '\t' && *p != NUL)
2016 {
2017 if ((*p == '\\' || *p == Ctrl_V) && *(p + 1) != NUL)
2018 ++p;
2019 ++p;
2020 }
2021 return p;
2022}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
2024/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00002025 * Get a number from a string and skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 * Note: the argument is a pointer to a char_u pointer!
2027 */
2028 long
Bram Moolenaar7454a062016-01-30 15:14:10 +01002029getdigits(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030{
2031 char_u *p;
2032 long retval;
2033
2034 p = *pp;
2035 retval = atol((char *)p);
Bram Moolenaarc667da52019-11-30 20:52:27 +01002036 if (*p == '-') // skip negative sign
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 ++p;
Bram Moolenaarc667da52019-11-30 20:52:27 +01002038 p = skipdigits(p); // skip to next non-digit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 *pp = p;
2040 return retval;
2041}
2042
2043/*
Bram Moolenaaraf377e32021-11-29 12:12:43 +00002044 * Like getdigits() but allow for embedded single quotes.
2045 */
2046 long
2047getdigits_quoted(char_u **pp)
2048{
2049 char_u *p = *pp;
2050 long retval = 0;
2051
2052 if (*p == '-')
2053 ++p;
2054 while (VIM_ISDIGIT(*p))
2055 {
2056 if (retval >= LONG_MAX / 10 - 10)
2057 retval = LONG_MAX;
2058 else
2059 retval = retval * 10 - '0' + *p;
2060 ++p;
2061 if (in_vim9script() && *p == '\'' && VIM_ISDIGIT(p[1]))
2062 ++p;
2063 }
2064 if (**pp == '-')
2065 {
2066 if (retval == LONG_MAX)
2067 retval = LONG_MIN;
2068 else
2069 retval = -retval;
2070 }
2071 *pp = p;
2072 return retval;
2073}
2074
2075/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 * Return TRUE if "lbuf" is empty or only contains blanks.
2077 */
2078 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002079vim_isblankline(char_u *lbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080{
2081 char_u *p;
2082
2083 p = skipwhite(lbuf);
2084 return (*p == NUL || *p == '\r' || *p == '\n');
2085}
2086
2087/*
2088 * Convert a string into a long and/or unsigned long, taking care of
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002089 * hexadecimal, octal, and binary numbers. Accepts a '-' sign.
2090 * If "prep" is not NULL, returns a flag to indicate the type of the number:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 * 0 decimal
2092 * '0' octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002093 * 'O' octal
2094 * 'o' octal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002095 * 'B' bin
2096 * 'b' bin
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 * 'X' hex
2098 * 'x' hex
2099 * If "len" is not NULL, the length of the number in characters is returned.
2100 * If "nptr" is not NULL, the signed result is returned in it.
2101 * If "unptr" is not NULL, the unsigned result is returned in it.
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002102 * If "what" contains STR2NR_BIN recognize binary numbers
2103 * If "what" contains STR2NR_OCT recognize octal numbers
2104 * If "what" contains STR2NR_HEX recognize hex numbers
2105 * If "what" contains STR2NR_FORCE always assume bin/oct/hex.
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002106 * If "what" contains STR2NR_QUOTE ignore embedded single quotes
Bram Moolenaarce157752017-10-28 16:07:33 +02002107 * If maxlen > 0, check at a maximum maxlen chars.
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002108 * If strict is TRUE, check the number strictly. return *len = 0 if fail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 */
2110 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002111vim_str2nr(
2112 char_u *start,
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002113 int *prep, // return: type of number 0 = decimal, 'x'
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002114 // or 'X' is hex, '0', 'o' or 'O' is octal,
2115 // 'b' or 'B' is bin
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002116 int *len, // return: detected length of number
2117 int what, // what numbers to recognize
2118 varnumber_T *nptr, // return: signed result
2119 uvarnumber_T *unptr, // return: unsigned result
2120 int maxlen, // max length of string to check
2121 int strict) // check strictly
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122{
2123 char_u *ptr = start;
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002124 int pre = 0; // default is decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 int negative = FALSE;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002126 uvarnumber_T un = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002127 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002129 if (len != NULL)
2130 *len = 0;
2131
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 if (ptr[0] == '-')
2133 {
2134 negative = TRUE;
2135 ++ptr;
2136 }
2137
Bram Moolenaarc667da52019-11-30 20:52:27 +01002138 // Recognize hex, octal, and bin.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002139 if (ptr[0] == '0' && ptr[1] != '8' && ptr[1] != '9'
2140 && (maxlen == 0 || maxlen > 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002142 pre = ptr[1];
2143 if ((what & STR2NR_HEX)
2144 && (pre == 'X' || pre == 'x') && vim_isxdigit(ptr[2])
2145 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002146 // hexadecimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002147 ptr += 2;
2148 else if ((what & STR2NR_BIN)
2149 && (pre == 'B' || pre == 'b') && vim_isbdigit(ptr[2])
2150 && (maxlen == 0 || maxlen > 2))
Bram Moolenaarc667da52019-11-30 20:52:27 +01002151 // binary
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002152 ptr += 2;
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002153 else if ((what & STR2NR_OOCT)
Bram Moolenaarc37b6552021-01-07 19:36:30 +01002154 && (pre == 'O' || pre == 'o') && vim_isodigit(ptr[2])
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002155 && (maxlen == 0 || maxlen > 2))
2156 // octal with prefix "0o"
2157 ptr += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 else
2159 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002160 // decimal or octal, default is decimal
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002161 pre = 0;
2162 if (what & STR2NR_OCT)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002163 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002164 // Don't interpret "0", "08" or "0129" as octal.
Bram Moolenaarce157752017-10-28 16:07:33 +02002165 for (n = 1; n != maxlen && VIM_ISDIGIT(ptr[n]); ++n)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002166 {
2167 if (ptr[n] > '7')
2168 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002169 pre = 0; // can't be octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002170 break;
2171 }
Bram Moolenaarc667da52019-11-30 20:52:27 +01002172 pre = '0'; // assume octal
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002173 }
2174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 }
2176 }
2177
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002178 // Do the conversion manually to avoid sscanf() quirks.
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002179 n = 1;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002180 if (pre == 'B' || pre == 'b'
2181 || ((what & STR2NR_BIN) && (what & STR2NR_FORCE)))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002182 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002183 // bin
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002184 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002185 n += 2; // skip over "0b"
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002186 while ('0' <= *ptr && *ptr <= '1')
2187 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002188 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002189 if (un <= UVARNUM_MAX / 2)
2190 un = 2 * un + (uvarnumber_T)(*ptr - '0');
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002191 else
2192 un = UVARNUM_MAX;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002193 ++ptr;
2194 if (n++ == maxlen)
2195 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002196 if ((what & STR2NR_QUOTE) && *ptr == '\''
2197 && '0' <= ptr[1] && ptr[1] <= '1')
2198 {
2199 ++ptr;
2200 if (n++ == maxlen)
2201 break;
2202 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002203 }
2204 }
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002205 else if (pre == 'O' || pre == 'o' ||
2206 pre == '0' || ((what & STR2NR_OCT) && (what & STR2NR_FORCE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002208 // octal
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02002209 if (pre != 0 && pre != '0')
2210 n += 2; // skip over "0o"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002211 while ('0' <= *ptr && *ptr <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002213 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002214 if (un <= UVARNUM_MAX / 8)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002215 un = 8 * un + (uvarnumber_T)(*ptr - '0');
2216 else
2217 un = UVARNUM_MAX;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002218 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002219 if (n++ == maxlen)
2220 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002221 if ((what & STR2NR_QUOTE) && *ptr == '\''
2222 && '0' <= ptr[1] && ptr[1] <= '7')
2223 {
2224 ++ptr;
2225 if (n++ == maxlen)
2226 break;
2227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002229 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002230 else if (pre != 0 || ((what & STR2NR_HEX) && (what & STR2NR_FORCE)))
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002231 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002232 // hex
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002233 if (pre != 0)
Bram Moolenaarc667da52019-11-30 20:52:27 +01002234 n += 2; // skip over "0x"
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002235 while (vim_isxdigit(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002237 // avoid ubsan error for overflow
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002238 if (un <= UVARNUM_MAX / 16)
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002239 un = 16 * un + (uvarnumber_T)hex2nr(*ptr);
2240 else
2241 un = UVARNUM_MAX;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002242 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002243 if (n++ == maxlen)
2244 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002245 if ((what & STR2NR_QUOTE) && *ptr == '\'' && vim_isxdigit(ptr[1]))
2246 {
2247 ++ptr;
2248 if (n++ == maxlen)
2249 break;
2250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 }
2252 }
2253 else
2254 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002255 // decimal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 while (VIM_ISDIGIT(*ptr))
2257 {
Bram Moolenaar07ccf7c2018-06-12 17:25:36 +02002258 uvarnumber_T digit = (uvarnumber_T)(*ptr - '0');
2259
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 / 10
2262 || (un == UVARNUM_MAX / 10 && digit <= UVARNUM_MAX % 10))
2263 un = 10 * un + digit;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002264 else
2265 un = UVARNUM_MAX;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 ++ptr;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02002267 if (n++ == maxlen)
2268 break;
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002269 if ((what & STR2NR_QUOTE) && *ptr == '\'' && VIM_ISDIGIT(ptr[1]))
2270 {
2271 ++ptr;
2272 if (n++ == maxlen)
2273 break;
2274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 }
2276 }
Bram Moolenaar1ac90b42019-09-15 14:49:52 +02002277
Bram Moolenaar4b96df52020-01-26 22:00:26 +01002278 // Check for an alphanumeric character immediately following, that is
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002279 // most likely a typo.
2280 if (strict && n - 1 != maxlen && ASCII_ISALNUM(*ptr))
2281 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002283 if (prep != NULL)
2284 *prep = pre;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 if (len != NULL)
2286 *len = (int)(ptr - start);
2287 if (nptr != NULL)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002288 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002289 if (negative) // account for leading '-' for decimal numbers
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002290 {
Bram Moolenaarc667da52019-11-30 20:52:27 +01002291 // avoid ubsan error for overflow
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002292 if (un > VARNUM_MAX)
2293 *nptr = VARNUM_MIN;
2294 else
2295 *nptr = -(varnumber_T)un;
2296 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002297 else
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002298 {
dundargocc57b5bc2022-11-02 13:30:51 +00002299 // prevent a large unsigned number to become negative
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002300 if (un > VARNUM_MAX)
2301 un = VARNUM_MAX;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002302 *nptr = (varnumber_T)un;
Bram Moolenaar7a40ea22017-01-22 18:34:57 +01002303 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00002304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 if (unptr != NULL)
2306 *unptr = un;
2307}
2308
2309/*
2310 * Return the value of a single hex character.
2311 * Only valid when the argument is '0' - '9', 'A' - 'F' or 'a' - 'f'.
2312 */
2313 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002314hex2nr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315{
2316 if (c >= 'a' && c <= 'f')
2317 return c - 'a' + 10;
2318 if (c >= 'A' && c <= 'F')
2319 return c - 'A' + 10;
2320 return c - '0';
2321}
2322
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323/*
2324 * Convert two hex characters to a byte.
2325 * Return -1 if one of the characters is not hex.
2326 */
2327 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002328hexhex2nr(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330 if (!vim_isxdigit(p[0]) || !vim_isxdigit(p[1]))
2331 return -1;
2332 return (hex2nr(p[0]) << 4) + hex2nr(p[1]);
2333}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334
2335/*
2336 * Return TRUE if "str" starts with a backslash that should be removed.
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01002337 * For MS-DOS, MSWIN and OS/2 this is only done when the character after the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 * backslash is not a normal file name character.
2339 * '$' is a valid file name character, we don't remove the backslash before
2340 * it. This means it is not possible to use an environment variable after a
2341 * backslash. "C:\$VIM\doc" is taken literally, only "$VIM\doc" works.
2342 * Although "\ name" is valid, the backslash in "Program\ files" must be
2343 * removed. Assume a file name doesn't start with a space.
2344 * For multi-byte names, never remove a backslash before a non-ascii
2345 * character, assume that all multi-byte characters are valid file name
2346 * characters.
2347 */
2348 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002349rem_backslash(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350{
2351#ifdef BACKSLASH_IN_FILENAME
2352 return (str[0] == '\\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 && str[1] < 0x80
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 && (str[1] == ' '
2355 || (str[1] != NUL
2356 && str[1] != '*'
2357 && str[1] != '?'
2358 && !vim_isfilec(str[1]))));
2359#else
2360 return (str[0] == '\\' && str[1] != NUL);
2361#endif
2362}
2363
2364/*
2365 * Halve the number of backslashes in a file name argument.
2366 * For MS-DOS we only do this if the character after the backslash
2367 * is not a normal file character.
2368 */
2369 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002370backslash_halve(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371{
2372 for ( ; *p; ++p)
2373 if (rem_backslash(p))
Bram Moolenaar446cb832008-06-24 21:56:24 +00002374 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375}
2376
2377/*
2378 * backslash_halve() plus save the result in allocated memory.
Bram Moolenaare2c453d2019-08-21 14:37:09 +02002379 * However, returns "p" when out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 */
2381 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002382backslash_halve_save(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383{
2384 char_u *res;
2385
2386 res = vim_strsave(p);
2387 if (res == NULL)
2388 return p;
2389 backslash_halve(res);
2390 return res;
2391}