Skip to content

Instantly share code, notes, and snippets.

@romanenkor
Forked from dinjas/vim_copy_lines.text
Created August 3, 2023 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romanenkor/5e5a98331beb27969363cb376cd608ff to your computer and use it in GitHub Desktop.
Save romanenkor/5e5a98331beb27969363cb376cd608ff to your computer and use it in GitHub Desktop.
How to copy lines matching pattern in vim
qaq # clear register A
:g/pattern/y A # copy lines matching pattern to register A
:let @+ = @a # copy register A to clipboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment