mirror of https://github.com/helix-editor/helix
Fix captures in `highlights.scm`
parent
9d5ecf1dd0
commit
a9bf9743e8
|
@ -2,18 +2,18 @@
|
||||||
|
|
||||||
(atom) @constant
|
(atom) @constant
|
||||||
|
|
||||||
((atom) @boolean
|
((atom) @constant.builtin.boolean
|
||||||
(#eq? @boolean "true"))
|
(#eq? @constant.builtin.boolean "true"))
|
||||||
|
|
||||||
((atom) @boolean
|
((atom) @constant.builtin.boolean
|
||||||
(#eq? @boolean "false"))
|
(#eq? @constant.builtin.boolean "false"))
|
||||||
|
|
||||||
(functional_notation
|
(functional_notation
|
||||||
function: (atom) @function.call)
|
function: (atom) @function)
|
||||||
|
|
||||||
(integer) @number
|
(integer) @constant.numeric.integer
|
||||||
|
|
||||||
(float_number) @number.float
|
(float_number) @constant.numeric.float
|
||||||
|
|
||||||
(directive_head) @operator
|
(directive_head) @operator
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue