Last active
August 29, 2015 14:22
-
-
Save j-walker23/ef60a246dc43ed830441 to your computer and use it in GitHub Desktop.
vi moving commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^ // 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