Skip to content

Instantly share code, notes, and snippets.

@adambutler
Last active July 17, 2018 12:00
Show Gist options
  • Save adambutler/b8d2819e5cdee4c9a2123a30825757cd to your computer and use it in GitHub Desktop.
Save adambutler/b8d2819e5cdee4c9a2123a30825757cd to your computer and use it in GitHub Desktop.
Atom Regex

Replace fat arrows in a HAML file:

Find:

:(\w+?)\s\=>\s(.+?)(\,|\})

Replace:

$1: $2$3

Remove comments in a HAML file:

Find:

^\s+?\/.+?\n

Replace with empty string.

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