diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-05-25 16:53:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-25 16:53:10 +0800 |
commit | 4757d497f3c85cc343f7dcbc09f95e43ba5c1314 (patch) | |
tree | fc50d2dca8b1b96c9839964188b7745c18c354e8 /runtime/lua/vim | |
parent | b43244adafa0f4d86409d1101754d5e23782c158 (diff) | |
download | rneovim-4757d497f3c85cc343f7dcbc09f95e43ba5c1314.tar.gz rneovim-4757d497f3c85cc343f7dcbc09f95e43ba5c1314.tar.bz2 rneovim-4757d497f3c85cc343f7dcbc09f95e43ba5c1314.zip |
vim-patch:9.1.0444: Not enough tests for getregion() with multibyte chars (#29000)
Problem: Not enough tests for getregion() with multibyte chars.
Solution: Add a few more tests (zeertzjq).
closes: vim/vim#14844
https://github.com/vim/vim/commit/dff55a335889c746a79974f7c52cdcdebad682c2
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index d1455fa993..f256f63768 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -3538,7 +3538,8 @@ function vim.fn.getreginfo(regname) end --- --- type Specify the region's selection type. --- See |getregtype()| for possible values, ---- except it cannot be an empty string. +--- except that the width can be omitted +--- and an empty string cannot be used. --- (default: "v") --- --- exclusive If |TRUE|, use exclusive selection |