mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-08 05:47:27 +03:00
Add missing variable
property to Syntax
This commit is contained in:
parent
46dc347a1a
commit
40c2409b80
@ -160,7 +160,7 @@ export interface Syntax {
|
||||
"type.builtin": SyntaxHighlightStyle
|
||||
|
||||
// == Values
|
||||
|
||||
variable: SyntaxHighlightStyle,
|
||||
// racket: lang_name
|
||||
"variable.builtin": SyntaxHighlightStyle
|
||||
// this, ...
|
||||
|
@ -120,6 +120,9 @@ function buildDefaultSyntax(colorScheme: ColorScheme): Syntax {
|
||||
"type.builtin": {
|
||||
color: color.type,
|
||||
},
|
||||
variable: {
|
||||
color: color.primary,
|
||||
},
|
||||
"variable.builtin": {
|
||||
color: colorScheme.ramps.blue(0.5).hex(),
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user