comparison runtime/doc/builtin.txt @ 31782:a19ef442c77a v9.0.1223

patch 9.0.1223: cannot use setcellwidths() below 0x100 Commit: https://github.com/vim/vim/commit/7193323b7796c05573f3aa89d422e848feb3a8dc Author: K.Takata <kentkt@csc.jp> Date: Fri Jan 20 16:00:55 2023 +0000 patch 9.0.1223: cannot use setcellwidths() below 0x100 Problem: Cannot use setcellwidths() below 0x100. Solution: Also accept characters between 0x80 and 0x100. (Ken Takata, closes #11834)
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Jan 2023 21:01:44 +0100
parents f348559ce426
children 5948cc887603
comparison
equal deleted inserted replaced
31781:3237c4baee03 31782:a19ef442c77a
7964 < The {list} argument is a List of Lists with each three 7964 < The {list} argument is a List of Lists with each three
7965 numbers: [{low}, {high}, {width}]. *E1109* *E1110* 7965 numbers: [{low}, {high}, {width}]. *E1109* *E1110*
7966 {low} and {high} can be the same, in which case this refers to 7966 {low} and {high} can be the same, in which case this refers to
7967 one character. Otherwise it is the range of characters from 7967 one character. Otherwise it is the range of characters from
7968 {low} to {high} (inclusive). *E1111* *E1114* 7968 {low} to {high} (inclusive). *E1111* *E1114*
7969 Only characters with value 0x100 and higher can be used. 7969 Only characters with value 0x80 and higher can be used.
7970 7970
7971 {width} must be either 1 or 2, indicating the character width 7971 {width} must be either 1 or 2, indicating the character width
7972 in screen cells. *E1112* 7972 in screen cells. *E1112*
7973 An error is given if the argument is invalid, also when a 7973 An error is given if the argument is invalid, also when a
7974 range overlaps with another. *E1113* 7974 range overlaps with another. *E1113*