mirror of https://github.com/helix-editor/helix
feat(lang): add devicetree (Flattened Device Tree Source) (#2329)
parent
030e7ab988
commit
8e77e3388c
@ -0,0 +1,66 @@
|
||||
[
|
||||
"/dts-v1/"
|
||||
"/memreserve/"
|
||||
"/delete-node/"
|
||||
"/delete-property/"
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"#define"
|
||||
"#include"
|
||||
] @keyword.directive
|
||||
|
||||
[
|
||||
"!"
|
||||
"~"
|
||||
"-"
|
||||
"+"
|
||||
"*"
|
||||
"/"
|
||||
"%"
|
||||
"||"
|
||||
"&&"
|
||||
"|"
|
||||
"^"
|
||||
"&"
|
||||
"=="
|
||||
"!="
|
||||
">"
|
||||
">="
|
||||
"<="
|
||||
">"
|
||||
"<<"
|
||||
">>"
|
||||
] @operator
|
||||
|
||||
[
|
||||
","
|
||||
";"
|
||||
] @punctuation.delimiter
|
||||
|
||||
[
|
||||
"("
|
||||
")"
|
||||
"{"
|
||||
"}"
|
||||
"<"
|
||||
">"
|
||||
] @punctuation.bracket
|
||||
|
||||
(string_literal) @string
|
||||
|
||||
(integer_literal) @constant.numeric.integer
|
||||
|
||||
(call_expression
|
||||
function: (identifier) @function)
|
||||
|
||||
(labeled_item
|
||||
label: (identifier) @label)
|
||||
|
||||
(identifier) @variable
|
||||
|
||||
(unit_address) @tag
|
||||
|
||||
(reference) @constant
|
||||
|
||||
(comment) @comment
|
@ -0,0 +1,12 @@
|
||||
[
|
||||
(node)
|
||||
(byte_string_literal)
|
||||
(parenthesized_expression)
|
||||
(argument_list)
|
||||
] @indent
|
||||
|
||||
[
|
||||
"}"
|
||||
"]"
|
||||
")"
|
||||
] @outdent
|
Loading…
Reference in New Issue