I want to add an optional <dict> to my theme where I add some settings to turn HTML attributes italic.
I know there are options for the sublime theme, but can I do options in the .tmTheme file?
If someone has "cobalt2_italic_attributes" : true in their settings file, I want to turn this on:
<!--
Operator Tweaks
-->
<dict>
<key>name</key>
<string>Italic HTML attribute names</string>
<key>scope</key>
<string>
, entity.other.attribute-name.html,
, entity.other.attribute-name.event.html,
, entity.other.attribute-name.id.html,
, entity.other.attribute-name.tag.jade,
, constant.other.symbol.ruby,
</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ffc600</string>
<key>fontStyle</key>
<string>italic</string>
</dict>
</dict>
possible?
