Skip to content

Instantly share code, notes, and snippets.

@elhoyos
Created July 11, 2013 13:46
Show Gist options
  • Save elhoyos/5975574 to your computer and use it in GitHub Desktop.
Save elhoyos/5975574 to your computer and use it in GitHub Desktop.
Working with vim registers
" show the registers
:reg
" save current line to k register
"kyy
" paste from k register
"kp
" append current line to k register
"Kyy
" use a register in the command line
Ctrl + R + {register}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment