diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-08 08:22:10 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-08-08 20:03:40 +0800 |
commit | 53c9500c1dc95eb446e13e857a7d6a7642d859ab (patch) | |
tree | 946d02a98892a060d659c7eacce9b65062eb936b /src/nvim/eval.lua | |
parent | bc8fbb7c1de0e5cbc8650be883a675bdc3e9d7d8 (diff) | |
download | rneovim-53c9500c1dc95eb446e13e857a7d6a7642d859ab.tar.gz rneovim-53c9500c1dc95eb446e13e857a7d6a7642d859ab.tar.bz2 rneovim-53c9500c1dc95eb446e13e857a7d6a7642d859ab.zip |
vim-patch:8.2.1535: it is not possible to specify cell widths of characters
Problem: It is not possible to specify cell widths of characters.
Solution: Add setcellwidths().
https://github.com/vim/vim/commit/08aac3c6192f0103cb87e280270a32b50e653be1
Co-Authored-By: delphinus <me@delphinus.dev>
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 6d8776d08b..a2272f0c98 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -327,6 +327,7 @@ return { serverstop={args=1}, setbufline={args=3, base=3}, setbufvar={args=3, base=3}, + setcellwidths={args=1, base=1}, setcharpos={args=2, base=2}, setcharsearch={args=1, base=1}, setcmdpos={args=1, base=1}, |