aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/news.txt4
-rw-r--r--runtime/doc/repeat.txt8
-rw-r--r--runtime/doc/visual.txt8
3 files changed, 10 insertions, 10 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
index 066a076377..15bdfb52f6 100644
--- a/runtime/doc/news.txt
+++ b/runtime/doc/news.txt
@@ -317,8 +317,8 @@ The following new APIs and features were added.
• |nvim_input_mouse()| supports mouse buttons "x1" and "x2".
-• |v_Q-default| and |v_@-default| repeat a register for each line of a visual
- selection.
+• |v_Q-default| and |v_@-default| repeat a register for each line of a linewise
+ visual selection.
• |vim.diagnostic.count()| returns the number of diagnostics for a given
buffer and/or namespace, by severity. This is a faster alternative to
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index ae827fa06f..2263b20d1a 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -149,8 +149,8 @@ q Stops recording.
@@ Repeat the previous @{0-9a-z":*} [count] times.
*v_@-default*
-{Visual}@{0-9a-z".=*+} In Visual mode, execute the contents of the register
-{Visual}@@ but for each selected line.
+{Visual}@{0-9a-z".=*+} In linewise Visual mode, execute the contents of the
+{Visual}@@ register for each selected line.
See |visual-repeat|, |default-mappings|.
*Q*
@@ -158,8 +158,8 @@ Q Repeat the last recorded register [count] times.
See |reg_recorded()|.
*v_Q-default*
-{Visual}Q In Visual mode, repeat the last recorded register for
- each selected line.
+{Visual}Q In linewise Visual mode, repeat the last recorded
+ register for each selected line.
See |visual-repeat|, |default-mappings|.
*:@*
diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt
index a20fb6d31e..6d3aaa62dd 100644
--- a/runtime/doc/visual.txt
+++ b/runtime/doc/visual.txt
@@ -366,15 +366,15 @@ one of the last commands to extend the highlighted text, the repeating will
be applied up to the rightmost column of the longest line. Any count passed
to the `.` command is not used.
-Visual mode |default-mappings| "@" and "Q" can repeat commands in a register
-for all selected lines. See |v_@-default| and |v_Q-default| for details. For
-example, given the text:
+Visual mode |default-mappings| "@" and "Q" repeat a register for all selected
+lines if the selection is linewise. See |v_@-default| and |v_Q-default| for
+details. For example, given the text:
123(hello)321
456(world)654
456(NOT THIS)654
-With register "x" containing the commands `yi(VP`, Visually selecting the
+With register "x" containing the commands `yi(VP`, visually selecting the
first two lines and typing `@x` produces:
hello