Skip to content

Instantly share code, notes, and snippets.

@dubbs
Last active May 17, 2024 04:29
Show Gist options
  • Save dubbs/4485228 to your computer and use it in GitHub Desktop.
Save dubbs/4485228 to your computer and use it in GitHub Desktop.
Useful Vim Commands

Execute the macro stored in register a on lines 5 through 10.

:5,10norm! @a

Execute the macro stored in register a on all lines.

:%norm! @a

Jumping

ctrl+O #BACK ctrl+I #FORWARD H #TOP M #MIDDLE L #BOTTOM ma #CREATE MARK `a #JUMP TO MARK

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment