aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-05-25 05:19:46 +0800
committerGitHub <noreply@github.com>2024-05-25 05:19:46 +0800
commit06347a64cac5e33574713a59ace9d1d0ea4b6f82 (patch)
tree14dcd33011dc44875b9da4e57e5217274b0f5f8c /src/nvim/eval.lua
parent28c04948a1c887a1cc0cb64de79fa32631700466 (diff)
downloadrneovim-06347a64cac5e33574713a59ace9d1d0ea4b6f82.tar.gz
rneovim-06347a64cac5e33574713a59ace9d1d0ea4b6f82.tar.bz2
rneovim-06347a64cac5e33574713a59ace9d1d0ea4b6f82.zip
vim-patch:9.1.0443: Can't use blockwise selection with width for getregion() (#28985)
Problem: Can't use a blockwise selection with a width for getregion(). Solution: Add support for blockwise selection with width like the return value of getregtype() or the "regtype" value of TextYankPost (zeertzjq). closes: vim/vim#14842 https://github.com/vim/vim/commit/afc2295c2201ae87bfbb42d5f5315ad0583ccabf
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r--src/nvim/eval.lua11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua
index 7d4438ded6..4adf3ce959 100644
--- a/src/nvim/eval.lua
+++ b/src/nvim/eval.lua
@@ -4370,14 +4370,13 @@ M.funcs = {
The optional argument {opts} is a Dict and supports the
following items:
- type Specify the region's selection type
- (default: "v"):
- "v" for |charwise| mode
- "V" for |linewise| mode
- "<CTRL-V>" for |blockwise-visual| mode
+ type Specify the region's selection type.
+ See |getregtype()| for possible values,
+ except it cannot be an empty string.
+ (default: "v")
exclusive If |TRUE|, use exclusive selection
- for the end position
+ for the end position.
(default: follow 'selection')
You can get the last selection type by |visualmode()|.