Skip to content

Instantly share code, notes, and snippets.

@mikeott
Last active July 29, 2022 08:01
Show Gist options
  • Save mikeott/b7994f6e5f883f7b30a2 to your computer and use it in GitHub Desktop.
Save mikeott/b7994f6e5f883f7b30a2 to your computer and use it in GitHub Desktop.
Fix double lines issue using a regular expression
Using a regx search, search your file for...
[\r\n]{2,}
...and replace with ...
\n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment