aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/purescript
diff options
context:
space:
mode:
authorpostsolar2023-11-05 13:16:25 +0000
committerGitHub2023-11-05 13:16:25 +0000
commita98ad137f9b0678ce9770aaa56a8bf8ca7c51d17 (patch)
tree7e2655712b583a771e7e3a7ee07ed580f0c5141a /runtime/queries/purescript
parent2fddc2a4fcd3b8d9415e35994af3049d6960b23a (diff)
Update PureScript grammar (#8712)
Diffstat (limited to 'runtime/queries/purescript')
-rw-r--r--runtime/queries/purescript/highlights.scm38
1 files changed, 31 insertions, 7 deletions
diff --git a/runtime/queries/purescript/highlights.scm b/runtime/queries/purescript/highlights.scm
index f559fd1e..b110f3e0 100644
--- a/runtime/queries/purescript/highlights.scm
+++ b/runtime/queries/purescript/highlights.scm
@@ -3,15 +3,13 @@
(integer) @constant.numeric.integer
(exp_negation) @constant.numeric.integer
- (exp_literal (float)) @constant.numeric.float
+ (exp_literal (number)) @constant.numeric.float
(char) @constant.character
[
(string)
(triple_quote_string)
] @string
- (con_unit) @constant.builtin ; unit, as in ()
-
(comment) @comment
@@ -36,6 +34,10 @@
; ----------------------------------------------------------------------------
; Keywords, operators, includes
+ ; This needs to come before the other "else" in
+ ; order to be highlighted correctly
+ (class_instance "else" @keyword)
+
[
"if"
"then"
@@ -53,15 +55,20 @@
(operator)
(constructor_operator)
(type_operator)
- (tycon_arrow)
(qualified_module) ; grabs the `.` (dot), ex: import System.IO
(all_names)
+
+ ; `_` wildcards in if-then-else and case-of expressions,
+ ; as well as record updates and operator sections
+ (wildcard)
"="
"|"
"::"
"∷"
"=>"
"⇒"
+ "<="
+ "⇐"
"->"
"→"
"<-"
@@ -89,6 +96,7 @@
"newtype"
"type"
"as"
+ "hiding"
"do"
"ado"
"forall"
@@ -98,24 +106,40 @@
"infixr"
] @keyword
+ (type_role_declaration
+ "role" @keyword
+ role: (type_role) @keyword)
+
+ (hole) @label
; ----------------------------------------------------------------------------
; Functions and variables
+ (row_field (field_name) @variable.other.member)
+ (record_field (field_name) @variable.other.member)
+ (record_accessor (variable) @variable.other.member)
+ (exp_record_access (variable) @variable.other.member)
+
(signature name: (variable) @type)
(function name: (variable) @function)
+ (class_instance (instance_name) @function)
+ (derive_declaration (instance_name) @function)
; true or false
((variable) @constant.builtin.boolean
(#match? @constant.builtin.boolean "^(true|false)$"))
- (variable) @variable
+ ; 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)))
- (exp_infix (variable) @operator) ; consider infix functions as operators
+ (variable) @variable
("@" @namespace) ; "as" pattern operator, e.g. x@Constructor
-
; ----------------------------------------------------------------------------
; Types