mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
Update some grammars to a commit where the license file is included (#8691)
This commit is contained in:
parent
2579bca21c
commit
39aa6fa646
3 changed files with 73 additions and 20 deletions
|
@ -1,3 +1,19 @@
|
|||
; ----------------------------------------------------------------------------
|
||||
; Record fields would need to come before literal strings in order to be captured correctly
|
||||
|
||||
(record_accessor
|
||||
field: [ (variable)
|
||||
(string)
|
||||
(triple_quote_string)
|
||||
] @variable.other.member)
|
||||
|
||||
(exp_record_access
|
||||
field: [ (variable)
|
||||
(string)
|
||||
(triple_quote_string)
|
||||
] @variable.other.member)
|
||||
|
||||
|
||||
; ----------------------------------------------------------------------------
|
||||
; Literals and comments
|
||||
|
||||
|
@ -117,8 +133,7 @@
|
|||
|
||||
(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)
|
||||
(record_field (field_pun) @variable.other.member)
|
||||
|
||||
(signature name: (variable) @type)
|
||||
(function name: (variable) @function)
|
||||
|
@ -126,8 +141,8 @@
|
|||
(derive_declaration (instance_name) @function)
|
||||
|
||||
; true or false
|
||||
((variable) @constant.builtin.boolean
|
||||
(#match? @constant.builtin.boolean "^(true|false)$"))
|
||||
((variable) @constant.builtin.boolean
|
||||
(#match? @constant.builtin.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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue