Skip to content

Instantly share code, notes, and snippets.

@Ultrabenosaurus
Created October 6, 2014 13:08
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 Ultrabenosaurus/02eddbe3dcd5b0041cf4 to your computer and use it in GitHub Desktop.
Save Ultrabenosaurus/02eddbe3dcd5b0041cf4 to your computer and use it in GitHub Desktop.
quick Sublime snippet for shorthand if statements in PHP and JS
<snippet>
<content><![CDATA[
( ( ${1:if} ) ? ${2:then} : ${3:else} )${4:;}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>sif</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.php,source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment