Skip to content

Instantly share code, notes, and snippets.

@nobitagit
Last active July 18, 2016 07:20
Show Gist options
  • Save nobitagit/7614f66d1dcaa3b5adbd1842c1aa439a to your computer and use it in GitHub Desktop.
Save nobitagit/7614f66d1dcaa3b5adbd1842c1aa439a to your computer and use it in GitHub Desktop.
Vim shorcuts
# 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