mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 02:40:09 -04:00
feat(highlights): some haskell additions
- Re-add (module) @namespace - Exception handling - Debugging - `otherwise` = boolean `True` - `qq` string quasiquotes - Documentation comments (draft) - Function/lambda parameters - Remove recently added @ (already defined as an operator)
This commit is contained in:
parent
d6c9c85e14
commit
ec0e344f6e
1 changed files with 105 additions and 5 deletions
|
|
@ -1,3 +1,15 @@
|
||||||
|
;; ----------------------------------------------------------------------------
|
||||||
|
;; Parameters
|
||||||
|
|
||||||
|
;; NOTE: These are at the top, so that they have low priority,
|
||||||
|
;; and don't override destructured parameters
|
||||||
|
|
||||||
|
(function
|
||||||
|
patterns: (patterns (pat_name) @parameter))
|
||||||
|
|
||||||
|
(exp_lambda
|
||||||
|
(pat_name) @parameter)
|
||||||
|
|
||||||
;; ----------------------------------------------------------------------------
|
;; ----------------------------------------------------------------------------
|
||||||
;; Literals and comments
|
;; Literals and comments
|
||||||
|
|
||||||
|
|
@ -11,6 +23,31 @@
|
||||||
|
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
||||||
|
; FIXME: The below documentation comment queries are inefficient
|
||||||
|
; and need to be anchored, using something like
|
||||||
|
; ((comment) @_first . (comment)+ @comment.documentation)
|
||||||
|
; once https://github.com/neovim/neovim/pull/24738 has been merged.
|
||||||
|
;
|
||||||
|
; ((comment) @comment.documentation
|
||||||
|
; (#lua-match? @comment.documentation "^-- |"))
|
||||||
|
;
|
||||||
|
; ((comment) @_first @comment.documentation
|
||||||
|
; (comment) @comment.documentation
|
||||||
|
; (#lua-match? @_first "^-- |"))
|
||||||
|
;
|
||||||
|
; ((comment) @comment.documentation
|
||||||
|
; (#lua-match? @comment.documentation "^-- %^"))
|
||||||
|
;
|
||||||
|
; ((comment) @_first @comment.documentation
|
||||||
|
; (comment) @comment.documentation
|
||||||
|
; (#lua-match? @_first "^-- %^"))
|
||||||
|
;
|
||||||
|
; ((comment) @comment.documentation
|
||||||
|
; (#lua-match? @comment.documentation "^{-"))
|
||||||
|
;
|
||||||
|
; ((comment) @_first @comment.documentation
|
||||||
|
; (comment) @comment.documentation
|
||||||
|
; (#lua-match? @_first "^{-"))
|
||||||
|
|
||||||
;; ----------------------------------------------------------------------------
|
;; ----------------------------------------------------------------------------
|
||||||
;; Punctuation
|
;; Punctuation
|
||||||
|
|
@ -77,6 +114,8 @@
|
||||||
"@"
|
"@"
|
||||||
] @operator
|
] @operator
|
||||||
|
|
||||||
|
|
||||||
|
(module) @namespace
|
||||||
(qualified_module (module) @constructor)
|
(qualified_module (module) @constructor)
|
||||||
(qualified_type (module) @namespace)
|
(qualified_type (module) @namespace)
|
||||||
(qualified_variable (module) @namespace)
|
(qualified_variable (module) @namespace)
|
||||||
|
|
@ -136,9 +175,6 @@
|
||||||
(exp_apply . (exp_name (variable) @function.call))
|
(exp_apply . (exp_name (variable) @function.call))
|
||||||
(exp_apply . (exp_name (qualified_variable (variable) @function.call)))
|
(exp_apply . (exp_name (qualified_variable (variable) @function.call)))
|
||||||
|
|
||||||
("@" @namespace) ; "as" pattern operator, e.g. x@Constructor
|
|
||||||
|
|
||||||
|
|
||||||
;; ----------------------------------------------------------------------------
|
;; ----------------------------------------------------------------------------
|
||||||
;; Types
|
;; Types
|
||||||
|
|
||||||
|
|
@ -150,13 +186,77 @@
|
||||||
|
|
||||||
; True or False
|
; True or False
|
||||||
((constructor) @boolean (#any-of? @boolean "True" "False"))
|
((constructor) @boolean (#any-of? @boolean "True" "False"))
|
||||||
|
; otherwise (= True)
|
||||||
|
((variable) @boolean
|
||||||
|
(#eq? @boolean "otherwise"))
|
||||||
|
|
||||||
;; ----------------------------------------------------------------------------
|
;; ----------------------------------------------------------------------------
|
||||||
;; Quasi-quotes
|
;; Quasi-quotes
|
||||||
|
|
||||||
(quoter) @function.call
|
(quoter) @function.call
|
||||||
; Highlighting of quasiquote_body is handled by injections.scm
|
|
||||||
|
(quasiquote
|
||||||
|
(quoter) @_name (#eq? @_name "qq")
|
||||||
|
(quasiquote_body) @string)
|
||||||
|
|
||||||
|
; Highlighting of quasiquote_body for other languages is handled by injections.scm
|
||||||
|
|
||||||
|
;; ----------------------------------------------------------------------------
|
||||||
|
;; Exceptions/error handling
|
||||||
|
|
||||||
|
((variable) @exception
|
||||||
|
(#any-of? @exception
|
||||||
|
"error"
|
||||||
|
"undefined"
|
||||||
|
"try"
|
||||||
|
"tryJust"
|
||||||
|
"tryAny"
|
||||||
|
"catch"
|
||||||
|
"catches"
|
||||||
|
"catchJust"
|
||||||
|
"handle"
|
||||||
|
"handleJust"
|
||||||
|
"throw"
|
||||||
|
"throwIO"
|
||||||
|
"throwTo"
|
||||||
|
"throwError"
|
||||||
|
"ioError"
|
||||||
|
"mask"
|
||||||
|
"mask_"
|
||||||
|
"uninterruptibleMask"
|
||||||
|
"uninterruptibleMask_"
|
||||||
|
"bracket"
|
||||||
|
"bracket_"
|
||||||
|
"bracketOnErrorSource"
|
||||||
|
"finally"
|
||||||
|
"onException"))
|
||||||
|
|
||||||
|
;; ----------------------------------------------------------------------------
|
||||||
|
;; Debugging
|
||||||
|
((variable) @debug
|
||||||
|
(#any-of? @debug
|
||||||
|
"trace"
|
||||||
|
"traceId"
|
||||||
|
"traceShow"
|
||||||
|
"traceShowId"
|
||||||
|
"traceWith"
|
||||||
|
"traceShowWith"
|
||||||
|
"traceStack"
|
||||||
|
"traceIO"
|
||||||
|
"traceM"
|
||||||
|
"traceShowM"
|
||||||
|
"traceEvent"
|
||||||
|
"traceEventWith"
|
||||||
|
"traceEventIO"
|
||||||
|
"flushEventLog"
|
||||||
|
"traceMarker"
|
||||||
|
"traceMarkerIO"))
|
||||||
|
|
||||||
|
|
||||||
|
;; ----------------------------------------------------------------------------
|
||||||
|
;; Record fields
|
||||||
|
(record_fields (field (variable) @field))
|
||||||
|
|
||||||
|
|
||||||
;; ----------------------------------------------------------------------------
|
;; ----------------------------------------------------------------------------
|
||||||
;; Spell checking
|
;; Spell checking
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue