Line 2 should say “learning vim.” — press j to drop to line 2, i to insert before the cursor, type v, then Esc.
Other editors made me reach for the mouse. I am learning im. Soon my hands will never leave the keyboard.
Canonical solution: j, i, v, Esc · target: 4 keystrokes — the fewest that solve it (every keypress counts).
i drops you into insert mode just before the cursor. Esc (or Ctrl-[) takes you back to normal mode. In and out, fast — vim users spend most of their time in normal mode.
| Keys | What it does |
|---|---|
| i | insert before the cursor |
| a | insert after the cursor |
| I | insert at the start of the line |
| A | insert at the end of the line |
| Esc | back to normal mode — always |
Reading about keystrokes doesn't build keystrokes. Try this in a real vim buffer right now — the “Enter insert mode” mission takes about a minute.
Sign in free to practice →