VI Editor: Move to EOL instead of last character
I am guessing you want to use o
to "open" a new line. However I have provided some ways to insert text via vi
Insert commands
It should be noted that vi/vim's cursor sets on top of a character not between character like most editors.
i
insert text before the cursora
append text after the cursorI
insert text before the first non-blank in the lineA
append text to the end of a lineo
begin a new line below the current one and start insert modeO
begin a new line above the current one and start insert modeS
/cc
delete the current line and start insert.c{motion}
delete{motion}
and start insert mode. Read as changeC
Delete from current position to end of line and start insert modes
remove character under cursor and start insert moder
replace one characterR
start replace mode. Think of it as overwrite
For help on any of these command type :h {command}
so help on A
would be :h A
The normal mode command for entering insert mode at the end of the line is A
.
More generally, i
enters insert mode before the current character so what you get is perfectly in line with what you do: $
puts the cursor on the last character and i
enters insert mode before the last character. That's what you ask Vim to do and that's what it does.
If you want to enter insert mode after the current character, the right command is a
so what you should have done instead of $i
(which can't do what you want, whether you are in vi or vim) is $a
for which there is a cool shortcut: A
.