Skip to content

Instantly share code, notes, and snippets.

@JakobOlsson
Last active January 29, 2020 11:55
Show Gist options
  • Save JakobOlsson/c10d4884335e533a8894b57ebc50513f to your computer and use it in GitHub Desktop.
Save JakobOlsson/c10d4884335e533a8894b57ebc50513f to your computer and use it in GitHub Desktop.
VIM: find line fitting pattern and change two words
:%s/me\(.*\)you/you\1me/g
# whould replace a line like;
# so me and awesome you, should....
# with;
# so you and awesome me, should....
## Find empty lines and add another empty line
:%s/^$/\r/g
## Find lines containing one or more spaces and delete spaces
:%s/^\s*$//g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment