aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
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 /runtime/doc
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 'runtime/doc')
-rw-r--r--runtime/doc/builtin.txt11
1 files changed, 5 insertions, 6 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index ff7d5f9ce8..5b1dd2ca47 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -2930,14 +2930,13 @@ getregion({pos1}, {pos2} [, {opts}]) *getregion()*
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()|.