nvim-treesitter/runtime/queries/purescript/highlights.scm

196 lines
2.9 KiB
Scheme
Raw Normal View History

; ----------------------------------------------------------------------------
; Literals and comments
[
(integer)
(exp_negation)
] @number
2024-01-06 15:05:50 +09:00
(exp_literal
(number)) @number.float
2024-01-06 15:05:50 +09:00
(char) @character
2024-01-06 15:05:50 +09:00
[
(string)
(triple_quote_string)
] @string
2024-01-06 15:05:50 +09:00
(comment) @comment @spell
; ----------------------------------------------------------------------------
; Punctuation
[
"("
")"
"{"
"}"
"["
"]"
] @punctuation.bracket
2024-01-06 15:05:50 +09:00
[
(comma)
";"
(qualified_module) ; grabs the `.` (dot), ex: import System.IO
"."
] @punctuation.delimiter
; ----------------------------------------------------------------------------
; Keywords, operators, includes
2024-01-06 15:05:50 +09:00
[
"if"
"then"
"else"
"case"
"of"
] @keyword.conditional
[
"import"
"module"
] @keyword.import
[
(operator)
(type_operator)
(all_names)
"="
"|"
"::"
"∷"
2024-01-06 15:05:50 +09:00
"=>"
"⇒"
2024-01-06 15:05:50 +09:00
"<="
"⇐"
2024-01-06 15:05:50 +09:00
"->"
"→"
2024-01-06 15:05:50 +09:00
"<-"
"←"
2024-01-06 15:05:50 +09:00
"\\"
"`"
"@"
] @operator
(qualified_module
(module) @constructor)
(module) @module
(qualified_type
(module) @module)
(qualified_variable
(module) @module)
(import
(module) @module)
2024-01-06 15:05:50 +09:00
[
(where)
"let"
"in"
"instance"
"derive"
"foreign"
"data"
"as"
"hiding"
"do"
"ado"
"forall"
"∀"
2024-01-06 15:05:50 +09:00
"infix"
"infixl"
"infixr"
] @keyword
2024-04-23 12:23:15 -07:00
[
"type"
"newtype"
"class"
] @keyword.type
2024-01-06 15:05:50 +09:00
(class_instance
"else" @keyword)
(type_role_declaration
"role" @keyword
role: (type_role) @keyword.modifier)
2024-01-06 15:05:50 +09:00
; `_` wildcards in if-then-else and case-of expressions,
; as well as record updates and operator sections
[
"_"
(hole)
] @character.special
; ----------------------------------------------------------------------------
; Functions and variables
2024-01-06 15:05:50 +09:00
(variable) @variable
(exp_apply
.
(exp_name
(variable) @function))
(exp_apply
.
(exp_name
(qualified_variable
(variable) @function)))
(row_field
(field_name) @variable.member)
(record_field
(field_name) @variable.member)
(record_accessor
(variable) @variable.member)
(exp_record_access
(variable) @variable.member)
2024-01-06 15:05:50 +09:00
(signature
name: (variable) @type)
2024-01-06 15:05:50 +09:00
(kind_declaration
(class_name) @type)
2024-01-06 15:05:50 +09:00
(function
name: (variable) @function)
2024-01-06 15:05:50 +09:00
(foreign_import
(variable) @function)
(class_instance
(instance_name) @function)
(derive_declaration
(instance_name) @function)
; true or false
((variable) @boolean
(#any-of? @boolean "true" "false"))
2024-01-06 15:05:50 +09:00
; The former one works for `tree-sitter highlight` but not in Helix/Kakoune.
; The latter two work in Helix (but not Kakoune) and are a good compromise between not highlighting anything at all
; as an operator and leaving it to the child nodes, and highlighting everything as an operator.
(exp_ticked
(_) @operator)
2024-01-06 15:05:50 +09:00
(exp_ticked
(exp_name
(variable) @operator))
2024-01-06 15:05:50 +09:00
(exp_ticked
(exp_name
(qualified_variable
(variable) @operator)))
2024-01-06 15:05:50 +09:00
; ----------------------------------------------------------------------------
; Types
(type) @type
2024-01-06 15:05:50 +09:00
(constructor) @constructor