nvim-treesitter/queries/elm/highlights.scm

206 lines
3.6 KiB
Scheme
Raw Normal View History

2023-01-01 03:22:36 +07:00
[
(line_comment)
(block_comment)
] @comment @spell
((block_comment) @comment.documentation
(#lua-match? @comment.documentation "^{[-]|[^|]"))
2023-01-01 03:22:36 +07:00
2021-11-28 00:30:48 +01:00
2021-11-04 20:47:26 +01:00
; Keywords
2023-01-01 03:22:36 +07:00
;---------
2021-11-04 20:47:26 +01:00
[
2023-01-01 03:22:36 +07:00
"if"
"then"
"else"
(case)
(of)
2021-11-04 20:47:26 +01:00
] @conditional
[
2021-11-28 00:30:48 +01:00
"let"
"in"
2021-11-04 20:47:26 +01:00
(as)
(port)
(alias)
(infix)
(module)
2023-01-01 03:22:36 +07:00
(type)
2021-11-04 20:47:26 +01:00
] @keyword
2023-01-01 03:22:36 +07:00
[
(import)
(exposing)
] @include
; Punctuation
;------------
2021-11-04 20:47:26 +01:00
[
(double_dot)
] @punctuation.special
2023-01-01 03:22:36 +07:00
2021-11-04 20:47:26 +01:00
[
","
2023-01-01 03:22:36 +07:00
"|"
2021-11-04 20:47:26 +01:00
(dot)
] @punctuation.delimiter
[
"("
")"
"{"
"}"
2023-01-01 03:22:36 +07:00
"["
"]"
2021-11-04 20:47:26 +01:00
] @punctuation.bracket
2023-01-01 03:22:36 +07:00
; Variables
;----------
(value_qid
(lower_case_identifier) @variable)
(value_declaration
(function_declaration_left (lower_case_identifier) @variable))
(type_annotation
2023-01-01 03:22:36 +07:00
(lower_case_identifier) @variable)
(port_annotation
2023-01-01 03:22:36 +07:00
(lower_case_identifier) @variable)
(anything_pattern
(underscore) @variable)
(record_base_identifier
(lower_case_identifier) @variable)
(lower_pattern
(lower_case_identifier) @variable)
(exposed_value
(lower_case_identifier) @variable)
(value_qid
((dot) (lower_case_identifier) @field))
(field_access_expr
((dot) (lower_case_identifier) @field))
(function_declaration_left
2023-01-01 03:22:36 +07:00
(anything_pattern (underscore) @parameter))
(function_declaration_left
(lower_pattern (lower_case_identifier) @parameter))
; Functions
;----------
(value_declaration
functionDeclarationLeft:
(function_declaration_left
(lower_case_identifier) @function
(pattern)))
(value_declaration
functionDeclarationLeft:
(function_declaration_left
(lower_case_identifier) @function
pattern: (_)))
(value_declaration
functionDeclarationLeft:
(function_declaration_left
(lower_case_identifier) @function)
body: (anonymous_function_expr))
(type_annotation
name: (lower_case_identifier) @function
typeExpression: (type_expression (arrow)))
(port_annotation
name: (lower_case_identifier) @function
typeExpression: (type_expression (arrow)))
2021-11-04 20:47:26 +01:00
2023-01-01 03:22:36 +07:00
(function_call_expr
target: (value_expr
(value_qid (lower_case_identifier) @function.call)))
2021-11-04 20:47:26 +01:00
2023-01-01 03:22:36 +07:00
; Operators
;----------
2021-11-04 20:47:26 +01:00
[
(operator_identifier)
(eq)
(colon)
(arrow)
2023-01-01 03:22:36 +07:00
(backslash)
"::"
2021-11-04 20:47:26 +01:00
] @operator
2023-01-01 03:22:36 +07:00
; Modules
;--------
2021-11-04 20:47:26 +01:00
(module_declaration
2023-01-01 03:22:36 +07:00
(upper_case_qid (upper_case_identifier) @namespace))
(import_clause
(upper_case_qid (upper_case_identifier) @namespace))
(as_clause
(upper_case_identifier) @namespace)
(value_expr
(value_qid (upper_case_identifier) @namespace))
; Types
;------
(type_declaration
2023-01-01 03:22:36 +07:00
(upper_case_identifier) @type)
(type_ref
(upper_case_qid (upper_case_identifier) @type))
(type_variable
(lower_case_identifier) @type)
(lower_type_name
(lower_case_identifier) @type)
(exposed_type
(upper_case_identifier) @type)
(type_alias_declaration
2023-01-01 03:22:36 +07:00
(upper_case_identifier) @type.definition)
(field_type
name: (lower_case_identifier) @property)
(field
name: (lower_case_identifier) @property)
2021-11-04 20:47:26 +01:00
2023-01-01 03:22:36 +07:00
(type_declaration
(union_variant (upper_case_identifier) @constructor))
(nullary_constructor_argument_pattern
(upper_case_qid (upper_case_identifier) @constructor))
2023-01-01 03:22:36 +07:00
(union_pattern
(upper_case_qid (upper_case_identifier) @constructor))
(value_expr
2023-01-01 03:22:36 +07:00
(upper_case_qid (upper_case_identifier)) @constructor)
2021-11-04 20:47:26 +01:00
2023-01-01 03:22:36 +07:00
; Literals
;---------
(number_constant_expr
(number_literal) @number)
(upper_case_qid
2023-01-15 04:41:48 +07:00
((upper_case_identifier) @boolean (#any-of? @boolean "True" "False")))
2023-01-01 03:22:36 +07:00
[
(open_quote)
(close_quote)
] @string
(string_constant_expr
(string_escape) @string)
(string_constant_expr
(regular_string_part) @string)
2021-11-04 20:47:26 +01:00
[
(open_char)
(close_char)
] @character
2023-01-01 03:22:36 +07:00
(char_constant_expr
(string_escape) @character)
(char_constant_expr
(regular_string_part) @character)