mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix(unison): improve highlight queries
This commit is contained in:
parent
6608e2c868
commit
7eadc8715d
1 changed files with 21 additions and 6 deletions
|
|
@ -13,6 +13,8 @@
|
|||
(type_kw)
|
||||
(do)
|
||||
(kw_let)
|
||||
(ability)
|
||||
(where)
|
||||
] @keyword
|
||||
|
||||
(kw_equals) @keyword.operator
|
||||
|
|
@ -49,14 +51,25 @@
|
|||
|
||||
;; Types
|
||||
(record_field name: (wordy_id) @variable type: (wordy_id) @type)
|
||||
[
|
||||
(type_name)
|
||||
(type_signature)
|
||||
(effect)
|
||||
] @type
|
||||
(type_name) @type
|
||||
|
||||
(term_definition) @variable
|
||||
(ability_declaration type_name: (wordy_id) @type type_arg: (wordy_id) @parameter)
|
||||
(effect (wordy_id) @attribute) ;; NOTE: an effect is a special type
|
||||
|
||||
|
||||
;; Namespaces
|
||||
(path) @namespace
|
||||
(namespace) @namespace
|
||||
|
||||
;; Terms
|
||||
(type_signature term_name: (path) @namespace term_name: (wordy_id) @variable)
|
||||
(type_signature term_name: (wordy_id) @variable)
|
||||
(term_type) @type
|
||||
|
||||
(function_application function_name: (path) function_name: (wordy_id) @function)
|
||||
|
||||
(term_definition name: (wordy_id) @variable)
|
||||
(term_definition param: (wordy_id) @parameter)
|
||||
;; Punctuation
|
||||
[
|
||||
(type_signature_colon)
|
||||
|
|
@ -71,3 +84,5 @@
|
|||
"["
|
||||
"]"
|
||||
] @punctuation.bracket
|
||||
|
||||
(test_watch_expression (wordy_id) @preproc)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue