mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
feat: Add support for the Ink programming language (#12773)
This commit is contained in:
parent
5a66270c00
commit
258e3e1136
3 changed files with 68 additions and 0 deletions
53
runtime/queries/ink/highlights.scm
Normal file
53
runtime/queries/ink/highlights.scm
Normal file
|
@ -0,0 +1,53 @@
|
|||
; tags and labels
|
||||
(label) @label
|
||||
(tag (identifier) @commment)
|
||||
(tag) @comment
|
||||
|
||||
; values
|
||||
(identifier) @function
|
||||
(string) @string
|
||||
(boolean) @constant
|
||||
(number) @constant.numeric
|
||||
|
||||
; headers
|
||||
(knot_header) @keyword
|
||||
(stitch_header) @keyword
|
||||
(function_header) @keyword
|
||||
|
||||
; marks (ink)
|
||||
(option_mark) @keyword.directive
|
||||
(gather_mark) @type.builtin
|
||||
(glue) @type.builtin
|
||||
|
||||
; calls
|
||||
(divert_or_thread) @function
|
||||
|
||||
; operators
|
||||
(assignment) @operator
|
||||
|
||||
; special marks/operators (ink)
|
||||
(arrow) @special
|
||||
(double_arrow) @special
|
||||
(back_arrow) @constant
|
||||
(dot) @special
|
||||
(mark_start) @special
|
||||
(mark_end) @special
|
||||
(hide_start) @special
|
||||
(hide_end) @special
|
||||
|
||||
; declarations
|
||||
(var_line) @attribute
|
||||
(const_line) @constant
|
||||
(list_line) @type
|
||||
|
||||
; comments
|
||||
(line_comment) @comment
|
||||
(block_comment) @comment
|
||||
|
||||
; unparsed code
|
||||
(inline_block) @keyword
|
||||
(condition_block) @keyword
|
||||
(code_text) @keyword
|
||||
|
||||
; support injection
|
||||
(program) @ui.text
|
Loading…
Add table
Add a link
Reference in a new issue