Skip to content

Instantly share code, notes, and snippets.

@skalero01
Last active August 9, 2018 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skalero01/913030ec8f9c33fb48d050646915b54a to your computer and use it in GitHub Desktop.
Save skalero01/913030ec8f9c33fb48d050646915b54a to your computer and use it in GitHub Desktop.
Sublime Text Search Regix

Sublime Text Regix Searchs

Search ifs without brances

Example: if(true)

Search: (if\()(.*)(\))\n

Search functions with brances in the same line

Example: function name()

Search: (public|private) (function .*\)) ?{ ?\n

Replace: $1 $2\n\t{\n

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