Skip to content

Commit

Permalink
Remove highlighting of throwaway variables
Browse files Browse the repository at this point in the history
This commit disables highlighting of single underscore or similar
throwaway variables (previously blue). They are not highlighted in the
original Brackets themes and I think the underscore symbol is already
distinguishable enough from regular variable names, so it doesn't need
a special color.
  • Loading branch information
jwortmann committed May 31, 2022
1 parent 6bda8c3 commit 78a87a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Brackets Dark.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
},
{
"name": "Built-in variable",
"scope": "variable.language - variable.language.wildcard.asterisk",
"scope": "variable.language - variable.language.anonymous - variable.language.wildcard.asterisk",
"foreground": "var(blue)"
},
{
Expand Down
2 changes: 1 addition & 1 deletion Brackets Light.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
},
{
"name": "Built-in variable",
"scope": "variable.language - variable.language.wildcard.asterisk",
"scope": "variable.language - variable.language.anonymous - variable.language.wildcard.asterisk",
"foreground": "var(blue)"
},
{
Expand Down

0 comments on commit 78a87a1

Please sign in to comment.