Skip to content

Commit ffb8e0a

Browse files
committed
Removed background on unused symbols inside quotes
1 parent 905963e commit ffb8e0a

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Highlight namespace name as `entity.name`, same as defs
44
- No exceptions on disconnect
5+
- Removed background on unused symbols inside quotes
56

67
### 4.1.1 - Sep 6, 2024
78

Clojure Sublimed Dark.sublime-color-scheme

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@
6161

6262
{"name": "Unused symbol",
6363
"scope": "source.symbol.unused",
64-
"foreground": "var(gray)",
65-
"background": "var(bg)"},
64+
"foreground": "var(gray)"},
6665

6766
{"name": "Punctuation",
6867
"scope": "punctuation - punctuation.section - punctuation.definition",

Clojure Sublimed Light.sublime-color-scheme

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@
5959

6060
{"name": "Unused symbol",
6161
"scope": "source.symbol.unused",
62-
"foreground": "var(gray)",
63-
"background": "var(bg)"},
62+
"foreground": "var(gray)"},
6463

6564
{"name": "Punctuation",
6665
"scope": "punctuation - punctuation.section - punctuation.definition",

test_scheme/color_scheme.clj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ abc ab/cd _abc
5656
(comment form))))} sym
5757

5858
; Quotes
59-
'{:symbol name/space
59+
'{:symbols [name/space _ _abc]
6060
:string "str\n\x"
6161
:regexp #"\p{L}) \y"
6262
:number 123.456
@@ -71,7 +71,7 @@ abc ab/cd _abc
7171
(comment form))))}
7272

7373
; Syntax quotes
74-
`{:symbol name/space
74+
`{:symbols [name/space _ _abc]
7575
:string "str\n\x"
7676
:regexp #"\p{L}) \y"
7777
:number 123.456
@@ -85,7 +85,7 @@ abc ab/cd _abc
8585
#_#_reader comment
8686
(comment form))))}
8787

88-
`{:symbol name/space
88+
`{:symbols [name/space _ _abc]
8989
:string "str\n\x"
9090
:regexp #"\p{L}) \y"
9191
:number 123.456
@@ -99,7 +99,7 @@ abc ab/cd _abc
9999
#_#_reader comment
100100
(comment form))))}
101101

102-
`~{:symbol name/space
102+
`~{:symbols [name/space _ _abc]
103103
:string "str\n\x"
104104
:regexp #"\p{L}) \y"
105105
:number 123.456
@@ -114,7 +114,7 @@ abc ab/cd _abc
114114
(comment form))))}
115115

116116
; Line comments
117-
; {:symbol name/space
117+
; {:symbols [name/space _ _abc]
118118
; :string "str\n\x"
119119
; :regexp #"\p{L}) \y"
120120
; :number 123.456
@@ -129,7 +129,7 @@ abc ab/cd _abc
129129
; (comment form))))}
130130

131131
; Reader comments
132-
#_{:symbol name/space
132+
#_{:symbols [name/space _ _abc]
133133
:string "str\n\x"
134134
:regexp #"\p{L}) \y"
135135
:number 123.456
@@ -145,7 +145,7 @@ abc ab/cd _abc
145145

146146
; Form comments
147147
(comment
148-
{:symbol name/space
148+
{:symbols [name/space _ _abc]
149149
:string "str\n\x"
150150
:regexp #"\p{L}) \y"
151151
:number 123.456

0 commit comments

Comments
 (0)