Skip to content

Instantly share code, notes, and snippets.

@rex
Last active April 19, 2016 17:40
Show Gist options
  • Save rex/ac9358a2bb4f2e4abecf4cb07474d9a0 to your computer and use it in GitHub Desktop.
Save rex/ac9358a2bb4f2e4abecf4cb07474d9a0 to your computer and use it in GitHub Desktop.
Atom Regexes

Atom Editor Regexes

Operate on all project files easily with global search/replace

File search glob

When running 'find and replace' in entire project

app/webroot/js/!(build)/**/*.js


Add space after object keys

Search Replace
(\s{3,})([a-zA-Z_-]+):([^\/\s]+) $1$2: $3

Leading comma to trailing

Search Replace
(\s+),(\s{1}) ,$1

Promote inline comments

Search Replace
^((?!\s*[\/]+).*)([\/]{2,}.+) $2\n$1

Remove oneline comments

Search Replace
^(\s+)(\/\/.+\n\s+)$
^(\s+)(\/\/.+\n)
Empty/Null/No content

Remove oneline code comments

Search Replace
^\s+\/\/.+[\$;\{\}\(\)] Empty/Null/No content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment