summaryrefslogtreecommitdiffstats
path: root/runtime/doc/autocmd.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-04-09 11:37:38 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-09 11:37:38 +0100
commita016eeba7a5777ba1f2ec2dbcda7c96823bf9ab1 (patch)
treea2bd0a87051ffcb805cd543f37d94b528453fe50 /runtime/doc/autocmd.txt
parent7c7e19cf50d76568e2637ad66b095044a41c6a82 (diff)
patch 8.2.4717: for TextYankPost v:event does not contain all informationv8.2.4717
Problem: For TextYankPost v:event does not contain information about the operation being inclusive or not. Solution: Add "inclusive" to v:event. (Justn M. Keyes, Yegappan Lakshmanan, closes #10125)
Diffstat (limited to 'runtime/doc/autocmd.txt')
-rw-r--r--runtime/doc/autocmd.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index 8421f77afe..3b738b744f 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -1205,6 +1205,9 @@ TextYankPost After text has been yanked or deleted in the
current buffer. The following values of
|v:event| can be used to determine the operation
that triggered this autocmd:
+ inclusive TRUE if the motion is
+ |inclusive| else the motion is
+ |exclusive|.
operator The operation performed.
regcontents Text that was stored in the
register, as a list of lines,