crates/zed/src/languages/javascript/highlights.scm 🔗
@@ -59,12 +59,15 @@
(super) @variable.special
[
- (true)
- (false)
(null)
(undefined)
] @constant.builtin
+[
+ (true)
+ (false)
+] @boolean
+
(comment) @comment
[
Nate Butler created
crates/zed/src/languages/javascript/highlights.scm | 7 +++++--
crates/zed/src/languages/typescript/highlights.scm | 7 +++++--
2 files changed, 10 insertions(+), 4 deletions(-)
@@ -59,12 +59,15 @@
(super) @variable.special
[
- (true)
- (false)
(null)
(undefined)
] @constant.builtin
+[
+ (true)
+ (false)
+] @boolean
+
(comment) @comment
[
@@ -59,12 +59,15 @@
(super) @variable.special
[
- (true)
- (false)
(null)
(undefined)
] @constant.builtin
+[
+ (true)
+ (false)
+] @boolean
+
(comment) @comment
[