Step 5 of 5

More ways into insert mode

More ways into insert mode

i isn’t the only door. Helix gives you a small family of insert commands, each answering “where should the text go?”:

  • iinsert before the cursor, aappend after it
  • oopen a new line below the cursor and insert there
  • I and A — insert at the first / last character of the line
  • O — open a new line above the cursor

Same family, different landing spots — and every one of them ends the same way: Escape back to normal mode.

You don’t need to memorize all six now. i, a, and o cover most of your typing; the capitals will sink in on their own. Try the checklist below.

  1. Append after the cursor with a From normal mode, the cursor steps past its character and INS lights up the moment you press a.
  2. Come back to normal mode You know this one — watch NOR return as you press Escape.
  3. Open a new line below with o Helix adds a fresh line under the cursor and drops you straight into insert mode when you press o.
  4. Escape home one more time That round trip is the core habit of modal editing — finish it by heading home to NOR with Escape.
Append after the cursor with a From normal mode, the cursor steps past its character and INS lights up the moment you press a.

Next: Come back to normal mode

Loading editor…