VimTutor+
About
Install Vim
Exercises
Inserting Text 2
/** * OPEN A NEW LINE * * Pressing 'o' in command mode opens a new line below the current line * and places you into Insert Mode. * * Pressing 'O' in command mode opens a new line above the current line * and also places you into Insert Mode. * **/
Previous: Cursor Movement 3
Next: Appending Text