Unnamed repository; edit this file 'description' to name the repository.
Expand chapter one recap of tutor
This add the missing variant of entering insert mode to the chapter 1 recap section.
Jonas Tepe 2022-06-13
parent 0bc7259 · commit a766b32
-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.