Created
September 2, 2014 13:28
-
-
Save duythinht/3718c44e5c1f1e3219e7 to your computer and use it in GitHub Desktop.
VIM moving
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
# Go to line 3 | |
3 G | |
# Delete from line 3 to 6 | |
3 G | |
d 6 G | |
# copy to clipboard | |
" + Y | |
# paste from clipboard | |
" + P | |
# Go to 3 words as begin | |
3 w | |
# Go to 3 words and end | |
3 e | |
#New line | |
o | |
# Go back 3 words | |
3 b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment