Difference between append and insert mode in Vim

The append command will put the cursor after the current position, while the insert command will put the cursor before it.

Using the append command is like moving the cursor one character to the right, and using the insert command.

Using the insert command is like moving the cursor one character to the left, and using the append command.

You choose which depending on where you want to start typing.


Note that vimtutor doesn't initially make the case of the command obvious:

SHIFT+A (capital A, as opposed to a) the cursor moves to the end of the current line.

SHIFT+I (capital I, as opposed to i)moves to the start of the current line.

Tags:

Vim