1
Files
flake-nixinator/config/neovim/store/treesitter-parsers/queries/yang/highlights.scm

55 lines
1.3 KiB
Scheme

(comment) @comment
; Module / submodule
["module" "submodule"] @keyword
; Keywords
(statement_keyword) @keyword
(statement_keyword "import") @include
(extension_keyword) @function
; Arguments
(built_in_type) @type.builtin
(number) @number
(boolean) @boolean
(date) @number
(range (_ ".." @punctuation.special))
(range (_ "|" @punctuation.special))
(quoted_range "\"" @string.special)
(quoted_range "'" @string.special)
(yang_version) @constant.builtin
(identifier) @variable
(node_identifier) @variable
(string) @string
(string (escape_sequence) @string.escape)
(unquoted_string) @string
(keypath) @string.special
; Always highlight the value of an enum statement as a string
(enum_value) @string
; Highlight XPath strings as special strings
(statement
(statement_keyword ["when" "must"])
(argument (string) @string.special))
(statement
(statement_keyword ["when" "must"])
(argument (string_concatenation (string) @string.special)))
; Highlight pattern strings as regex
(statement
(statement_keyword ["pattern"])
(argument (string) @string.regex))
(statement
(statement_keyword ["pattern"])
(argument (string_concatenation (string) @string.regex)))
; Punctuation
(plus_symbol) @operator
["{" "}"] @punctuation.bracket
[";"] @punctuation.delimiter
; Errors
(ERROR) @error