Skip to content

Instantly share code, notes, and snippets.

@notbrain
Last active August 29, 2015 14:05
Show Gist options
  • Save notbrain/800d910329a122bdbcf4 to your computer and use it in GitHub Desktop.
Save notbrain/800d910329a122bdbcf4 to your computer and use it in GitHub Desktop.
Sublime Enhancements
{
"bracket_styles": {
"default": {
"icon": "dot",
// BH1's original default color for reference
// "color": "entity.name.class",
"color": "brackethighlighter.default",
"style": "highlight"
}
}
}
<snippet>
<content><![CDATA[
\$scope.${1:method} = function(${2:attr}) {
${3}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>$func</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
<!--appended to default to work with bh_core.sublime-settings brackethighlighter.default style-->
<dict>
<key>name</key>
<string>Bracket Tag</string>
<key>scope</key>
<string>brackethighlighter.default</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#351501</string>
<key>foreground</key>
<string>#D4F20D</string>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment