How to move cursor directly to the next new line

vim

here is my article.

with a screen editor,you can scroll the 
page,move the cursor,delete lines,insert

my cursor position is at the beginning of the second line (character 'p' of "page"):

I want to continue my edit, so i press the esc key to reenter command mode, and then press '$' to move to the end of this line.

I then press the 'enter' key, so that i may continue my edit… Is there a simpler way to do this ?

Best Answer

This question is quite hard to understand, but i think you're either asking for how can you create a new line in command mode (use 'o') or how can you move down a line in vim ('j').

If it's neither of these things you wish to know, please say.

Related Question