From efe5ce6fa8f9335029673b4a07421d084fe0324e Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 21 Jan 2023 08:44:14 +0800 Subject: vim-patch:9.0.1223: cannot use setcellwidths() below 0x100 (#21929) Problem: Cannot use setcellwidths() below 0x100. Solution: Also accept characters between 0x80 and 0x100. (Ken Takata, closes vim/vim#11834) https://github.com/vim/vim/commit/7193323b7796c05573f3aa89d422e848feb3a8dc Co-authored-by: K.Takata --- runtime/doc/builtin.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index dbaf706b19..85effcaf5e 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -6951,7 +6951,7 @@ setcellwidths({list}) *setcellwidths()* {low} and {high} can be the same, in which case this refers to one character. Otherwise it is the range of characters from {low} to {high} (inclusive). *E1111* *E1114* - Only characters with value 0x100 and higher can be used. + Only characters with value 0x80 and higher can be used. {width} must be either 1 or 2, indicating the character width in screen cells. *E1112* -- cgit