VimTutor+
About
Install Vim
Exercises
Cursor Movement 3
/** * CURSOR MOVEMENT 3 * * To jump to the end of a document use 'G' * * To quickly jump to the end of the line use '$' * * To quickly jump to the start of the line use '0' * * To jump to the first non-whitespace character in a line use '^' * * To go back to the beginning of a document use 'gg'* **/
Previous: Cursor Movement 2
Next: Inserting Text 2