diff options
author | Jonas Tepe | 2022-06-11 12:16:09 +0000 |
---|---|---|
committer | Michael Davis | 2022-06-12 19:12:52 +0000 |
commit | a766b32ed197221aca7a9fec3af805b4d04a6f1d (patch) | |
tree | c66f87b3a655ccf5c527f68d12496a53d9a8d186 | |
parent | 0bc7259672c525f2bd16e6703f3848d617458836 (diff) |
Expand chapter one recap of tutor
This add the missing variant of entering insert mode
to the chapter 1 recap section.
-rw-r--r-- | runtime/tutor.txt | 6 |
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. |