From a766b32ed197221aca7a9fec3af805b4d04a6f1d Mon Sep 17 00:00:00 2001 From: Jonas Tepe Date: Sat, 11 Jun 2022 14:16:09 +0200 Subject: [PATCH] Expand chapter one recap of tutor This add the missing variant of entering insert mode to the chapter 1 recap section. --- runtime/tutor.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runtime/tutor.txt b/runtime/tutor.txt index ae14eb788..a31e73d98 100644 --- a/runtime/tutor.txt +++ b/runtime/tutor.txt @@ -169,7 +169,11 @@ _________________________________________________________________ * Type i to enter Insert mode and type text. Type 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.