summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-03-30 09:20:13 +1100
committerMaxime Coste <mawww@kakoune.org>2018-03-30 09:20:13 +1100
commit436e803e30f3ab95f395edfcd4b2e537c1edcd0b (patch)
tree4dea8c99ad4c939816f6a8a342b1122d487bd4d3
parent31adbb5a936fef97bcbea23c98fec4bf7a300fad (diff)
parent3b3aaa6141dce07ddc5ec4fe986226964206358c (diff)
Merge remote-tracking branch 'Delapouite/readme'
-rw-r--r--README.asciidoc8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.asciidoc b/README.asciidoc
index 640c8dfb..fc68b433 100644
--- a/README.asciidoc
+++ b/README.asciidoc
@@ -348,8 +348,8 @@ Movement
* `<c-u>`: scroll half a page up
* `<c-d>`: scroll half a page down
- * `'`: rotate selections (the main selection becomes the next one)
- * `<a-'>`: rotate selections backwards
+ * `)`: rotate selections (the main selection becomes the next one)
+ * `(`: rotate selections backwards
* `;`: reduce selections to their cursor
* `<a-;>`: flip the selections' direction
@@ -357,6 +357,7 @@ Movement
* `<a-.>`: repeat last object or `f`/`t` selection command.
+ * `_`: trim selections
A word is a sequence of alphanumeric characters or underscore, a WORD is a
sequence of non whitespace characters.
@@ -459,9 +460,10 @@ Changes
* `<a-@>`: convert spaces to tabs in current selections, uses the buffer
tabstop option 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 (3, 4, 6)
independently.
+ * `<a-(>`: rotate selections content backwards
Goto Commands
~~~~~~~~~~~~~