nvim-treesitter/queries/d/highlights.scm

276 lines
3.2 KiB
Scheme
Raw Normal View History

2024-01-06 15:05:50 +09:00
; Misc
2021-10-01 11:33:33 +02:00
[
(line_comment)
(block_comment)
(nesting_block_comment)
] @comment @spell
((line_comment) @comment.documentation
(#lua-match? @comment.documentation "^///[^/]"))
2024-01-06 15:05:50 +09:00
((line_comment) @comment.documentation
(#lua-match? @comment.documentation "^///$"))
((block_comment) @comment.documentation
(#lua-match? @comment.documentation "^/[*][*][^*].*[*]/$"))
((nesting_block_comment) @comment.documentation
(#lua-match? @comment.documentation "^/[+][+][^+].*[+]/$"))
2021-10-01 11:33:33 +02:00
[
2024-01-06 15:05:50 +09:00
"("
")"
"["
"]"
"{"
"}"
2021-10-01 11:33:33 +02:00
] @punctuation.bracket
[
","
";"
"."
2022-01-29 23:56:26 +01:00
":"
2021-10-01 11:33:33 +02:00
] @punctuation.delimiter
[
".."
"$"
] @punctuation.special
2024-01-06 15:05:50 +09:00
; Constants
2021-10-01 11:33:33 +02:00
[
"__FILE_FULL_PATH__"
"__FILE__"
"__FUNCTION__"
"__LINE__"
"__MODULE__"
"__PRETTY_FUNCTION__"
] @constant.macro
[
(wysiwyg_string)
(alternate_wysiwyg_string)
(double_quoted_string)
(hex_string)
(delimited_string)
(token_string)
] @string
2021-10-01 11:33:33 +02:00
(character_literal) @character
(integer_literal) @number
feat!: align standard captures with upstream Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
(float_literal) @number.float
2021-10-01 11:33:33 +02:00
[
"true"
"false"
] @boolean
2024-01-06 15:05:50 +09:00
; Functions
2021-10-01 11:33:33 +02:00
(func_declarator
2024-01-06 15:05:50 +09:00
(identifier) @function)
2021-10-01 11:33:33 +02:00
[
"__traits"
"__vector"
"assert"
"is"
"mixin"
"pragma"
"typeid"
] @function.builtin
(import_expression
2024-01-06 15:05:50 +09:00
"import" @function.builtin)
2021-10-01 11:33:33 +02:00
(parameter
(var_declarator
2024-01-06 15:05:50 +09:00
(identifier) @variable.parameter))
2021-10-01 11:33:33 +02:00
(function_literal
2024-01-06 15:05:50 +09:00
(identifier) @variable.parameter)
2021-10-01 11:33:33 +02:00
(constructor
2024-01-06 15:05:50 +09:00
"this" @constructor)
2021-10-01 11:33:33 +02:00
(destructor
2024-01-06 15:05:50 +09:00
"this" @constructor)
2021-10-01 11:33:33 +02:00
2024-01-06 15:05:50 +09:00
; Keywords
2021-10-01 11:33:33 +02:00
[
"case"
"default"
"else"
"if"
"switch"
feat!: align standard captures with upstream Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
] @keyword.conditional
2021-10-01 11:33:33 +02:00
[
"break"
"continue"
"do"
"for"
"foreach"
"foreach_reverse"
"while"
feat!: align standard captures with upstream Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
] @keyword.repeat
2021-10-01 11:33:33 +02:00
[
"__parameters"
"alias"
"align"
"asm"
"auto"
"body"
"class"
"debug"
"enum"
"export"
"goto"
"interface"
"invariant"
"macro"
"out"
"override"
"package"
"static"
"struct"
"template"
"union"
"unittest"
"version"
"with"
] @keyword
[
"delegate"
"function"
] @keyword.function
"return" @keyword.return
[
"cast"
"new"
] @keyword.operator
[
"+"
"++"
"+="
"-"
"--"
"-="
"*"
"*="
"%"
"%="
"^"
"^="
"^^"
"^^="
"/"
"/="
"|"
"|="
"||"
"~"
"~="
"="
"=="
"=>"
"<"
"<="
"<<"
"<<="
">"
">="
">>"
">>="
">>>"
">>>="
"!"
"!="
"&"
"&&"
] @operator
[
"catch"
"finally"
"throw"
"try"
feat!: align standard captures with upstream Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
] @keyword.exception
2021-10-01 11:33:33 +02:00
"null" @constant.builtin
[
"__gshared"
"const"
"immutable"
"shared"
feat!: align standard captures with upstream Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
] @keyword.storage
[
"abstract"
"deprecated"
"extern"
"final"
"inout"
"lazy"
"nothrow"
"private"
"protected"
"public"
"pure"
"ref"
"scope"
"synchronized"
] @type.qualifier
(alias_assignment
2024-01-06 15:05:50 +09:00
.
(identifier) @type.definition)
2021-10-01 11:33:33 +02:00
(module_declaration
2024-01-06 15:05:50 +09:00
"module" @keyword.import)
2021-10-01 11:33:33 +02:00
(import_declaration
2024-01-06 15:05:50 +09:00
"import" @keyword.import)
2021-10-01 11:33:33 +02:00
(type) @type
(catch_parameter
2024-01-06 15:05:50 +09:00
(qualified_identifier) @type)
2021-10-01 11:33:33 +02:00
(var_declarations
2024-01-06 15:05:50 +09:00
(qualified_identifier) @type)
2021-10-01 11:33:33 +02:00
(func_declaration
2024-01-06 15:05:50 +09:00
(qualified_identifier) @type)
2021-10-01 11:33:33 +02:00
(parameter
2024-01-06 15:05:50 +09:00
(qualified_identifier) @type)
2021-10-01 11:33:33 +02:00
(class_declaration
2024-01-06 15:05:50 +09:00
(identifier) @type)
2021-10-01 11:33:33 +02:00
(fundamental_type) @type.builtin
2024-01-06 15:05:50 +09:00
(module_fully_qualified_name
(packages
(package_name) @module))
feat!: align standard captures with upstream Problem: Sharing highlight queries with upstream tree-sitter and Helix is difficult. Solution: Where reasonable, use capture names in tree-sitter's standard list or Helix's Atom-style hierarchy. Specifically: * tree-sitter "standard capture names" (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72): - `@parameter` -> `@variable.parameter` - `@field` -> `@variable.member` - `@namespace` -> `@module` - `@float` -> `@number.float` - `@symbol` -> `@string.special.symbol` - `@string.regex` -> `@string.regexp` - `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below) - `@text.title` -> `@markup.heading` - `@text.literal` -> `@markup.raw` - `@text.reference` -> `@markup.link` - `@text.uri` -> `@markup.link.url` (in markup links) - `@string.special` -> `@markup.link.label` (non-url links) - `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`) * Helix captures (https://docs.helix-editor.com/master/themes.html#syntax-highlighting): - `@method` -> `@function.method` - `@method.call` -> `@function.method.call` - `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}` - `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}` - `@text.uri` -> `@string.special.url` (outside markup) - `@preproc` -> `@keyword.directive` - `@define` -> `@keyword.directive`(`.define`?) - `@storageclass` -> `@keyword.storage` - `@conditional` -> `@keyword.conditional` - `@debug` -> `@keyword.debug` - `@exception` -> `@keyword.exception` - `@include` -> `@keyword.import` - `@repeat` -> `@keyword.repeat` * cleanup - remove some redundant `@conceal` (but still allow it for conceal-only patterns) - remove obsolete `@error` (syntax linting is out of scope for this repo) - sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
(module_name) @module
2021-10-01 11:33:33 +02:00
(at_attribute) @attribute
(user_defined_attribute
2024-01-06 15:05:50 +09:00
"@" @attribute)
2021-10-01 11:33:33 +02:00
2024-01-06 15:05:50 +09:00
; Variables
2021-10-01 11:33:33 +02:00
(primary_expression
2024-01-06 15:05:50 +09:00
"this" @variable.builtin)