Created
February 3, 2013 03:37
-
-
Save ethagnawl/4700461 to your computer and use it in GitHub Desktop.
Notes on Vim Registers
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
"A(cap reg name) appends to register | |
append to macro stored in a with qAo | |
paste from unnamed ""p | |
execute code in unnamed register with @" | |
_ reg is blackhole - use to avoid clobbering current unnamed register | |
0 contains most recently yanked text | |
1-9 contain last 9 deletions | |
"- small delete register stores text deleted that was less than one line - read only | |
". - last inserted - read only | |
"% - current file - read only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment