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 /src/nvim/eval.lua | |
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 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 4adf3ce959..f0c8963459 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -4372,7 +4372,8 @@ M.funcs = { 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 |