Skip to content

Instantly share code, notes, and snippets.

@j-walker23
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-walker23/ef60a246dc43ed830441 to your computer and use it in GitHub Desktop.
Save j-walker23/ef60a246dc43ed830441 to your computer and use it in GitHub Desktop.
vi moving commands
^ // beginning text on current line
$ // end of current line
// move up and down on the beginning of each line
- // no shift
+ // with shift
w // start of word
W // shift to next blank space
e // end of word
E // shift to end of blank space
) // move sentence
} // move paragraph
gg // top of file
G // bottom of file
f{c} // move to next char after `f`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment