fix(specs): sync light and dark
This commit is contained in:
@@ -126,9 +126,9 @@ local function generate(p, opt)
|
||||
Constant { fg = p1.fg4, gui = "italic" }, -- (preferred) any constant
|
||||
String { Constant }, -- a string constant: "this is a string"
|
||||
Character { Constant }, -- a character constant: 'c', '\n'
|
||||
Number { fg = p.fg, gui = "italic" }, -- a number constant: 234, 0xff
|
||||
Boolean { Number }, -- a boolean constant: TRUE, false
|
||||
Float { Constant }, -- a floating point constant: 2.3e10
|
||||
Number { fg = p1.fg4 }, -- a number constant: 234, 0xff
|
||||
Boolean { fg = p.fg, gui = "italic" }, -- a boolean constant: TRUE, false
|
||||
Float { Number }, -- a floating point constant: 2.3e10
|
||||
|
||||
Identifier { fg = p1.fg2 }, -- (preferred) any variable name
|
||||
Function { fg = p.fg }, -- function name (also: methods for classes)
|
||||
@@ -214,7 +214,7 @@ local function generate(p, opt)
|
||||
sym "@module.builtin" { sym "@module" },
|
||||
sym "@label" { Statement },
|
||||
|
||||
sym "@string" { Constant },
|
||||
sym "@string" { String },
|
||||
sym "@string.documentation" { sym "@string" },
|
||||
sym "@string.regexp" { Constant },
|
||||
sym "@string.escape" { Special },
|
||||
@@ -226,7 +226,7 @@ local function generate(p, opt)
|
||||
sym "@character" { Constant },
|
||||
sym "@character.special" { Special },
|
||||
|
||||
sym "@boolean" { Number },
|
||||
sym "@boolean" { Boolean },
|
||||
sym "@number" { Number },
|
||||
sym "@number.float" { sym "@number" },
|
||||
|
||||
|
||||
Reference in New Issue
Block a user