I cannot get anything but what appears to be the default highlight style of white background / black foreground to work.
In my PeresistentRegexHighlight.sublime-settings file I have
{
"regex": [
{
"pattern": "TODO",
"color_scope": "todo",
"ignore_case": false
}
],
"enabled": true,
"on_load": true,
"on_modify": true,
"disable_pattern": [],
"max_file_size": 0,
"whitelist_folders": []
}
In my custom theme file w/ extension .tmTheme I have:
<dict>
<key>name</key>
<string>Regex Highlight</string>
<key>scope</key>
<string>todo</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#af02f7</string>
</dict>
</dict>
I have also tried putting a color in instead of color_scope and was prompted to add the color to my .tmTheme file, which I did, but that did not work either.
I cannot get anything but what appears to be the default highlight style of white background / black foreground to work.
In my PeresistentRegexHighlight.sublime-settings file I have
In my custom theme file w/ extension .tmTheme I have:
I have also tried putting a color in instead of color_scope and was prompted to add the color to my .tmTheme file, which I did, but that did not work either.