nvim-treesitter/queries/d/highlights.scm
Christian Clason 1ae9b0e455 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"
  (3f44b89685/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`
2024-01-19 16:58:37 +01:00

288 lines
3.2 KiB
Scheme

;; Misc
[
(line_comment)
(block_comment)
(nesting_block_comment)
] @comment @spell
((line_comment) @comment.documentation
(#lua-match? @comment.documentation "^///[^/]"))
((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 "^/[+][+][^+].*[+]/$"))
[
"(" ")"
"[" "]"
"{" "}"
] @punctuation.bracket
[
","
";"
"."
":"
] @punctuation.delimiter
[
".."
"$"
] @punctuation.special
;; Constants
[
"__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
(character_literal) @character
(integer_literal) @number
(float_literal) @number.float
[
"true"
"false"
] @boolean
;; Functions
(func_declarator
(identifier) @function
)
[
"__traits"
"__vector"
"assert"
"is"
"mixin"
"pragma"
"typeid"
] @function.builtin
(import_expression
"import" @function.builtin
)
(parameter
(var_declarator
(identifier) @variable.parameter
)
)
(function_literal
(identifier) @variable.parameter
)
(constructor
"this" @constructor
)
(destructor
"this" @constructor
)
;; Keywords
[
"case"
"default"
"else"
"if"
"switch"
] @keyword.conditional
[
"break"
"continue"
"do"
"for"
"foreach"
"foreach_reverse"
"while"
] @keyword.repeat
[
"__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"
] @keyword.exception
"null" @constant.builtin
[
"__gshared"
"const"
"immutable"
"shared"
] @keyword.storage
[
"abstract"
"deprecated"
"extern"
"final"
"inout"
"lazy"
"nothrow"
"private"
"protected"
"public"
"pure"
"ref"
"scope"
"synchronized"
] @type.qualifier
(alias_assignment
. (identifier) @type.definition)
(module_declaration
"module" @keyword.import
)
(import_declaration
"import" @keyword.import
)
(type) @type
(catch_parameter
(qualified_identifier) @type
)
(var_declarations
(qualified_identifier) @type
)
(func_declaration
(qualified_identifier) @type
)
(parameter
(qualified_identifier) @type
)
(class_declaration
(identifier) @type
)
(fundamental_type) @type.builtin
(module_fully_qualified_name (packages (package_name) @module))
(module_name) @module
(at_attribute) @attribute
(user_defined_attribute
"@" @attribute
)
;; Variables
(primary_expression
"this" @variable.builtin
)