Last active
July 18, 2016 07:20
-
-
Save nobitagit/7614f66d1dcaa3b5adbd1842c1aa439a to your computer and use it in GitHub Desktop.
Vim shorcuts
This file contains hidden or 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
| # Move to end of line and enter EDIT mode | |
| A | |
| # Move to beginning of line and enter EDIT mode | |
| I | |
| # Move to end of file | |
| G | |
| # combine commands to get to end of last line and enter EDIT mode | |
| GA | |
| # Move to beginning of file | |
| 1G or gg | |
| # Move to 27th line | |
| 27G | |
| # Cut | |
| dd | |
| # Copy | |
| y | |
| # Paste (before cursor) | |
| P | |
| # Paste (after cursor) | |
| p | |
| # open a terminal split with Conque | |
| :ConqueTermSplit bash | |
| ## NERDTREE | |
| # refresh | |
| r | |
| :ConqueTermSplit bash | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment