README: clarify that change commands work on each selection
I think "current selection" could be misinterpreted as "main selection", so let's use "each selection".
This commit is contained in:
parent
4b3749c492
commit
4f15f4179c
|
@ -493,33 +493,33 @@ it when pasting text.
|
||||||
Changes
|
Changes
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
* `i`: enter insert mode before current selection
|
* `i`: enter insert mode before each selection
|
||||||
* `a`: enter insert mode after current selection
|
* `a`: enter insert mode after each selection
|
||||||
* `d`: yank and delete current selection
|
* `d`: yank and delete each selection
|
||||||
* `c`: yank and delete current selection and enter insert mode
|
* `c`: yank and delete each selection and enter insert mode
|
||||||
* `.`: repeat last insert mode change (`i`, `a`, or `c`, including
|
* `.`: repeat last insert mode change (`i`, `a`, or `c`, including
|
||||||
the inserted text)
|
the inserted text)
|
||||||
|
|
||||||
* `<a-d>`: delete current selection
|
* `<a-d>`: delete each selection
|
||||||
* `<a-c>`: delete current selection and enter insert mode
|
* `<a-c>`: delete each selection and enter insert mode
|
||||||
|
|
||||||
* `I`: enter insert mode at current selection begin line start
|
* `I`: enter insert mode at each selection begin line start
|
||||||
* `A`: enter insert mode at current selection end line end
|
* `A`: enter insert mode at each selection end line end
|
||||||
* `o`: enter insert mode in one (or given count) new lines below
|
* `o`: enter insert mode in one (or given count) new lines below
|
||||||
current selection end
|
each selection end
|
||||||
* `O`: enter insert mode in one (or given count) new lines above
|
* `O`: enter insert mode in one (or given count) new lines above
|
||||||
current selection begin
|
each selection begin
|
||||||
|
|
||||||
* `<a-o>`: add an empty line below cursor
|
* `<a-o>`: add an empty line below each cursor
|
||||||
* `<a-O>`: add an empty line above cursor
|
* `<a-O>`: add an empty line above each cursor
|
||||||
|
|
||||||
* `y`: yank selections
|
* `y`: yank selections
|
||||||
* `p`: paste after current selection end
|
* `p`: paste after each selection end
|
||||||
* `P`: paste before current selection begin
|
* `P`: paste before each selection begin
|
||||||
* `<a-p>`: paste all after current selection end
|
* `<a-p>`: paste all after each selection end
|
||||||
* `<a-P>`: paste all before current selection begin
|
* `<a-P>`: paste all before each selection begin
|
||||||
* `R`: replace current selection with yanked text
|
* `R`: replace each selection with yanked text
|
||||||
* `<a-R>`: replace current selection with every yanked text
|
* `<a-R>`: replace each selection with every yanked text
|
||||||
|
|
||||||
* `r`: replace each character with the next entered one
|
* `r`: replace each character with the next entered one
|
||||||
|
|
||||||
|
@ -539,15 +539,15 @@ Changes
|
||||||
* `<a-|>`: pipe each selection through the given external filter program
|
* `<a-|>`: pipe each selection through the given external filter program
|
||||||
and ignore its output
|
and ignore its output
|
||||||
|
|
||||||
* `!`: insert command output before selection
|
* `!`: insert command output before each selection
|
||||||
* `<a-!>`: append command output after selection
|
* `<a-!>`: append command output after each selection
|
||||||
|
|
||||||
* `u`: undo last change
|
* `u`: undo last change
|
||||||
* `<a-u>`: move backward in history
|
* `<a-u>`: move backward in history
|
||||||
* `U`: redo last change
|
* `U`: redo last change
|
||||||
* `<a-U>`: move forward in history
|
* `<a-U>`: move forward in history
|
||||||
|
|
||||||
* `&`: align selection, align the cursor of selections by inserting
|
* `&`: align selections, align the cursor of selections by inserting
|
||||||
spaces before the first character of the selection
|
spaces before the first character of the selection
|
||||||
* `<a-&>`: copy indent, copy the indentation of the main selection
|
* `<a-&>`: copy indent, copy the indentation of the main selection
|
||||||
(or the count one if a count is given) to all other ones
|
(or the count one if a count is given) to all other ones
|
||||||
|
@ -556,10 +556,10 @@ Changes
|
||||||
* `~`: to upper case
|
* `~`: to upper case
|
||||||
* ``<a-`>``: swap case
|
* ``<a-`>``: swap case
|
||||||
|
|
||||||
* `@`: convert tabs to spaces in current selections, uses the buffer
|
* `@`: convert selected tabs to spaces, uses the buffer tabstop option or
|
||||||
tabstop option or the count parameter for tabstop.
|
the count parameter for tabstop.
|
||||||
* `<a-@>`: convert spaces to tabs in current selections, uses the buffer
|
* `<a-@>`: convert selected spaces to tabs, uses the buffer tabstop option
|
||||||
tabstop option or the count parameter for tabstop.
|
or the count parameter for tabstop.
|
||||||
|
|
||||||
* `<a-)>`: rotate selections content, if specified, the count groups
|
* `<a-)>`: rotate selections content, if specified, the count groups
|
||||||
selections, so `3<a-)>` rotate (1, 2, 3) and (4, 5, 6)
|
selections, so `3<a-)>` rotate (1, 2, 3) and (4, 5, 6)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user