Is there a snippets program that allows for tab entry of variables across the mac?
- by Jeremy Smith
I love Sublime Text editor and the ability to create code snippets like so:
<snippet>
<content><![CDATA[\$("${1:selector}").${2:method}]]></content>
<tabTrigger>jq</tabTrigger>
</snippet>
This allows me to type
jq[tab]
and then have it expand to
$("selector").method
where I am able to tab…