Skip to content

Instantly share code, notes, and snippets.

View romanenkor's full-sized avatar
🏠
Working from home

Roman romanenkor

🏠
Working from home
View GitHub Profile
@romanenkor
romanenkor / vim_copy_lines.text
Created August 3, 2023 12:39 — forked from dinjas/vim_copy_lines.text
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