mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-16 18:30:06 -04:00
feat(purescript): add parser and queries (#5626)
This commit is contained in:
parent
44d1684db3
commit
bf18ff20ae
5 changed files with 169 additions and 0 deletions
|
|
@ -476,6 +476,9 @@
|
||||||
"puppet": {
|
"puppet": {
|
||||||
"revision": "9ce9a5f7d64528572aaa8d59459ba869e634086b"
|
"revision": "9ce9a5f7d64528572aaa8d59459ba869e634086b"
|
||||||
},
|
},
|
||||||
|
"purescript": {
|
||||||
|
"revision": "e055b28b2f81db9fdd277b07bff3329c3680943e"
|
||||||
|
},
|
||||||
"pymanifest": {
|
"pymanifest": {
|
||||||
"revision": "8953f91d733dd92c1ac43b3d58a7a2f43fa62dae"
|
"revision": "8953f91d733dd92c1ac43b3d58a7a2f43fa62dae"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1418,6 +1418,14 @@ list.puppet = {
|
||||||
maintainers = { "@amaanq" },
|
maintainers = { "@amaanq" },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
list.purescript = {
|
||||||
|
install_info = {
|
||||||
|
url = "https://github.com/postsolar/tree-sitter-purescript",
|
||||||
|
files = { "src/parser.c", "src/scanner.c" },
|
||||||
|
},
|
||||||
|
maintainers = { "@postsolar" },
|
||||||
|
}
|
||||||
|
|
||||||
list.pymanifest = {
|
list.pymanifest = {
|
||||||
install_info = {
|
install_info = {
|
||||||
url = "https://github.com/ObserverOfTime/tree-sitter-pymanifest",
|
url = "https://github.com/ObserverOfTime/tree-sitter-pymanifest",
|
||||||
|
|
|
||||||
152
queries/purescript/highlights.scm
Normal file
152
queries/purescript/highlights.scm
Normal file
|
|
@ -0,0 +1,152 @@
|
||||||
|
; ----------------------------------------------------------------------------
|
||||||
|
; Literals and comments
|
||||||
|
|
||||||
|
[
|
||||||
|
(integer)
|
||||||
|
(exp_negation)
|
||||||
|
] @number
|
||||||
|
(exp_literal (number)) @float
|
||||||
|
(char) @character
|
||||||
|
[
|
||||||
|
(string)
|
||||||
|
(triple_quote_string)
|
||||||
|
] @string
|
||||||
|
|
||||||
|
(comment) @comment @spell
|
||||||
|
|
||||||
|
; ----------------------------------------------------------------------------
|
||||||
|
; Punctuation
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
[
|
||||||
|
(comma)
|
||||||
|
";"
|
||||||
|
(qualified_module) ; grabs the `.` (dot), ex: import System.IO
|
||||||
|
"."
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
|
||||||
|
; ----------------------------------------------------------------------------
|
||||||
|
; Keywords, operators, includes
|
||||||
|
|
||||||
|
[
|
||||||
|
"if"
|
||||||
|
"then"
|
||||||
|
"else"
|
||||||
|
"case"
|
||||||
|
"of"
|
||||||
|
] @conditional
|
||||||
|
|
||||||
|
[
|
||||||
|
"import"
|
||||||
|
"module"
|
||||||
|
] @include
|
||||||
|
|
||||||
|
[
|
||||||
|
(operator)
|
||||||
|
(constructor_operator)
|
||||||
|
(type_operator)
|
||||||
|
(all_names)
|
||||||
|
|
||||||
|
"="
|
||||||
|
"|"
|
||||||
|
"::"
|
||||||
|
"∷"
|
||||||
|
"=>"
|
||||||
|
"⇒"
|
||||||
|
"<="
|
||||||
|
"⇐"
|
||||||
|
"->"
|
||||||
|
"→"
|
||||||
|
"<-"
|
||||||
|
"←"
|
||||||
|
"\\"
|
||||||
|
"`"
|
||||||
|
"@"
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
(qualified_module (module) @constructor)
|
||||||
|
(module) @namespace
|
||||||
|
(qualified_type (module) @namespace)
|
||||||
|
(qualified_variable (module) @namespace)
|
||||||
|
(import (module) @namespace)
|
||||||
|
|
||||||
|
[
|
||||||
|
(where)
|
||||||
|
"let"
|
||||||
|
"in"
|
||||||
|
"class"
|
||||||
|
"instance"
|
||||||
|
"derive"
|
||||||
|
"foreign"
|
||||||
|
"data"
|
||||||
|
"newtype"
|
||||||
|
"type"
|
||||||
|
"as"
|
||||||
|
"hiding"
|
||||||
|
"do"
|
||||||
|
"ado"
|
||||||
|
"forall"
|
||||||
|
"∀"
|
||||||
|
"infix"
|
||||||
|
"infixl"
|
||||||
|
"infixr"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
(class_instance "else" @keyword)
|
||||||
|
|
||||||
|
(type_role_declaration
|
||||||
|
"role" @keyword
|
||||||
|
role: (type_role) @type.qualifier)
|
||||||
|
|
||||||
|
(hole) @character.special
|
||||||
|
|
||||||
|
; `_` wildcards in if-then-else and case-of expressions,
|
||||||
|
; as well as record updates and operator sections
|
||||||
|
(wildcard) @parameter
|
||||||
|
|
||||||
|
; ----------------------------------------------------------------------------
|
||||||
|
; Functions and variables
|
||||||
|
|
||||||
|
(variable) @variable
|
||||||
|
(exp_apply . (exp_name (variable) @function))
|
||||||
|
(exp_apply . (exp_name (qualified_variable (variable) @function)))
|
||||||
|
|
||||||
|
(row_field (field_name) @field)
|
||||||
|
(record_field (field_name) @field)
|
||||||
|
(record_accessor (variable) @field)
|
||||||
|
(exp_record_access (variable) @field)
|
||||||
|
|
||||||
|
(signature name: (variable) @type)
|
||||||
|
(kind_declaration (class_name) @type)
|
||||||
|
(function name: (variable) @function)
|
||||||
|
(foreign_import (variable) @function)
|
||||||
|
(class_instance (instance_name) @function)
|
||||||
|
(derive_declaration (instance_name) @function)
|
||||||
|
|
||||||
|
; true or false
|
||||||
|
((variable) @boolean
|
||||||
|
(#any-of? @boolean "true" "false"))
|
||||||
|
|
||||||
|
; 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)
|
||||||
|
(exp_ticked (exp_name (variable) @operator))
|
||||||
|
(exp_ticked (exp_name (qualified_variable (variable) @operator)))
|
||||||
|
|
||||||
|
; ----------------------------------------------------------------------------
|
||||||
|
; Types
|
||||||
|
|
||||||
|
(type) @type
|
||||||
|
|
||||||
|
(constructor) @constructor
|
||||||
|
|
||||||
2
queries/purescript/injections.scm
Normal file
2
queries/purescript/injections.scm
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
((comment) @injection.content
|
||||||
|
(#set! injection.language "comment"))
|
||||||
4
queries/purescript/locals.scm
Normal file
4
queries/purescript/locals.scm
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
(signature name: (variable)) @definition.type
|
||||||
|
(function name: (variable)) @definition.function
|
||||||
|
(pat_name (variable)) @definition
|
||||||
|
(exp_name (variable)) @reference
|
||||||
Loading…
Add table
Add a link
Reference in a new issue