Home
last modified time | relevance | path

Searched refs:maxwid (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dbuffer.c4133 int maxwid; in build_stl_str_hl() local
4392 maxwid = 9999; in build_stl_str_hl()
4452 maxwid = (int)getdigits(&s); in build_stl_str_hl()
4453 if (maxwid <= 0) // overflow in build_stl_str_hl()
4454 maxwid = 50; in build_stl_str_hl()
4464 stl_items[curitem].stl_maxwid = maxwid; in build_stl_str_hl()
4796 if (l > maxwid) in build_stl_str_hl()
4798 while (l >= maxwid) in build_stl_str_hl()
4862 if (l > maxwid) in build_stl_str_hl()
4865 n = l - maxwid; in build_stl_str_hl()
[all …]
/vim-8.2.3635/runtime/doc/
H A Doptions.txt7360 %-0{minwid}.{maxwid}{item}
7386 maxwid Maximum width of the item. Truncation occurs with a '<'
7388 shifted down to maxwid-2 digits followed by '>'number
H A Dversion6.txt6511 Problem: Vim crashes when using a huge number for the maxwid value in a
6513 Solution: Check for an overflow that makes maxwid negative.