diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-18 06:50:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 06:50:22 +0800 |
commit | f4e03cbdbc88bd0c1095918df11450c98b729988 (patch) | |
tree | f098b79045d4175491f4f2dda32044c817b0e1fd /src/nvim/eval.lua | |
parent | 20b7be2d1024b6e9eac68e0cb92cf663e95e51ca (diff) | |
download | rneovim-f4e03cbdbc88bd0c1095918df11450c98b729988.tar.gz rneovim-f4e03cbdbc88bd0c1095918df11450c98b729988.tar.bz2 rneovim-f4e03cbdbc88bd0c1095918df11450c98b729988.zip |
vim-patch:9.0.1212: cannot read back what setcellwidths() has done (#21867)
Problem: Cannot read back what setcellwidths() has done.
Solution: Add getcellwidths(). (Kota Kato, closes vim/vim#11837)
https://github.com/vim/vim/commit/66bb9ae70f7371456ed76518076d2a344f8ab417
Co-authored-by: Kota Kato <github@kat0h.com>
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 14be6aba73..c17a44b990 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -148,6 +148,7 @@ return { getbufline={args={2, 3}, base=1}, getbufoneline={args=2, base=1}, getbufvar={args={2, 3}, base=1}, + getcellwidths={}, getchangelist={args={0, 1}, base=1}, getchar={args={0, 1}}, getcharmod={}, |