Skip to content

Commit 78a87a1

Browse files
committed
Remove highlighting of throwaway variables
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.
1 parent 6bda8c3 commit 78a87a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Brackets Dark.sublime-color-scheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
},
100100
{
101101
"name": "Built-in variable",
102-
"scope": "variable.language - variable.language.wildcard.asterisk",
102+
"scope": "variable.language - variable.language.anonymous - variable.language.wildcard.asterisk",
103103
"foreground": "var(blue)"
104104
},
105105
{

Brackets Light.sublime-color-scheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
},
100100
{
101101
"name": "Built-in variable",
102-
"scope": "variable.language - variable.language.wildcard.asterisk",
102+
"scope": "variable.language - variable.language.anonymous - variable.language.wildcard.asterisk",
103103
"foreground": "var(blue)"
104104
},
105105
{

0 commit comments

Comments
 (0)