aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJonas Tepe2022-06-11 12:16:09 +0000
committerMichael Davis2022-06-12 19:12:52 +0000
commita766b32ed197221aca7a9fec3af805b4d04a6f1d (patch)
treec66f87b3a655ccf5c527f68d12496a53d9a8d186 /runtime
parent0bc7259672c525f2bd16e6703f3848d617458836 (diff)
Expand chapter one recap of tutor
This add the missing variant of entering insert mode to the chapter 1 recap section.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/tutor.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/tutor.txt b/runtime/tutor.txt
index ae14eb78..a31e73d9 100644
--- a/runtime/tutor.txt
+++ b/runtime/tutor.txt
@@ -169,7 +169,11 @@ _________________________________________________________________
* Type i to enter Insert mode and type text. Type <ESC> to
return to Normal mode.
-
+ * Use a to enter Insert mode after the current selection
+ instead of before.
+ * Use I to enter Insert mode at the first non-whitespace
+ character at the start of a line.
+ * Use A to enter Insert mode at the end of a line.