summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Yamakawa <todd.yamakawa@arm.com>2020-12-23 12:59:18 -0600
committerTodd Yamakawa <todd.yamakawa@arm.com>2020-12-23 13:03:30 -0600
commita08375a9aff346953b16130792c6d9f5690ce326 (patch)
tree293a3f7714c3197438db1edca2ab2239dac76da1
parent19c594fae3b1fa1471dcbfa5f00decb8e0eb1e05 (diff)
Fix typos
-rw-r--r--VIMTOKAK10
1 files changed, 5 insertions, 5 deletions
diff --git a/VIMTOKAK b/VIMTOKAK
index a4236a7e..99a30b63 100644
--- a/VIMTOKAK
+++ b/VIMTOKAK
@@ -46,11 +46,11 @@ mode.
join line with next:
* vim: J
- * kak: alt-J
+ * kak: <a-J>
delete to line end:
* vim: d$
- * kak: alt-ld or Gld
+ * kak: <a-l>d or Gld
some classic vim moves are not bound to the same key, this is due to Kakoune
using shifted moves to append to selection, so moves that were bound to non
@@ -60,9 +60,9 @@ alphabetic chars had to change.
block, if you want to get a selection from current point to next block end,
you should use <space>M (<space> clears the selection to one character)
-* 0 and $ became alt-h and alt-l. Another binding is gh and gl.
+* 0 and $ became <a-h> and <a-l>. Another binding is gh and gl.
:[gv]/re/cmd
-to emulate :g or :v, use % to select the whole buffer, alt-s to get
-one selection by line, and then alt-k or alt-K in order to keep only the
+to emulate :g or :v, use % to select the whole buffer, <a-s> to get
+one selection by line, and then <a-k> or <a-K> in order to keep only the
selections matching (or not matching) the entered regex.