nvim-treesitter/queries/linkerscript/highlights.scm

174 lines
2.1 KiB
Scheme
Raw Normal View History

2023-11-19 04:10:52 -05:00
; Keywords
[
"ENTRY"
"SECTIONS"
"AT"
"OVERLAY"
"NOCROSSREFS"
"MEMORY"
"PHDRS"
"FILEHDR"
] @keyword
; Conditionals
2024-01-06 15:05:50 +09:00
(conditional_expression
[
"?"
":"
] @keyword.conditional.ternary)
2023-11-19 04:10:52 -05:00
; Variables
(symbol) @variable
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
(filename) @string.special.path
2023-11-19 04:10:52 -05:00
; Functions
(call_expression
function: (symbol) @function.call)
((call_expression
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
function: (symbol) @keyword.directive)
(#eq? @keyword.directive "DEFINED"))
2023-11-19 04:10:52 -05:00
((call_expression
function: (symbol) @function.builtin)
(#any-of? @function.builtin
"ABSOLUTE" "ALIAS" "ADDR" "ALIGN" "ALIGNOF" "BASE" "BLOCK" "CHIP" "DATA_SEGMENT_ALIGN"
"DATA_SEGMENT_END" "DATA_SEGMENT_RELRO_END" "END" "LENGTH" "LOADADDR" "LOG2CEIL" "MAX" "MIN"
"NEXT" "ORIGIN" "SEGMENT_START" "SIZEOF" "BYTE" "FILL" "LONG" "SHORT" "QUAD" "SQUAD" "WORD"))
2023-11-19 04:10:52 -05:00
[
"KEEP"
"PROVIDE"
"PROVIDE_HIDDEN"
] @function.builtin
; Types
2024-01-06 15:05:50 +09:00
(section_type
"("
[
"NOLOAD"
"DSECT"
"COPY"
"INFO"
"OVERLAY"
] @type.builtin
")")
2023-11-19 04:10:52 -05:00
; Fields
[
2024-01-06 15:05:50 +09:00
"ORIGIN"
"org"
"o"
"LENGTH"
"len"
"l"
] @variable.member
2023-11-19 04:10:52 -05:00
; Constants
((symbol) @constant
(#lua-match? @constant "^[%u_][%u%d_]+$"))
; Labels
2024-01-06 15:05:50 +09:00
(entry_command
name: (symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
(output_section
name: (symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
(memory_command
name: (symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
(phdrs_command
name: (symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
(region
">"
(symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
(lma_region
">"
(symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
(phdr
":"
(symbol) @label)
2023-11-19 04:10:52 -05:00
2024-01-06 15:05:50 +09:00
([
(symbol)
(filename)
] @label
2023-11-19 04:10:52 -05:00
(#lua-match? @label "^%."))
; Exceptions
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
"ASSERT" @keyword.exception
2023-11-19 04:10:52 -05:00
[
"/DISCARD/"
"."
] @variable.builtin
; Operators
[
"+"
"-"
"*"
"/"
"%"
"||"
"&&"
"|"
"&"
"=="
"!="
">"
">="
"<="
"<"
"<<"
">>"
"!"
"~"
"="
"+="
"-="
"*="
"/="
"<<="
">>="
"&="
"|="
] @operator
; Literals
(number) @number
(quoted_symbol) @string
2024-01-06 15:05:50 +09:00
(wildcard_pattern
[
"*"
"["
"]"
] @character.special)
2023-11-19 04:10:52 -05:00
(attributes) @character.special
; Punctuation
2024-01-06 15:05:50 +09:00
[
"{"
"}"
"("
")"
] @punctuation.bracket
2023-11-19 04:10:52 -05:00
[
":"
";"
] @punctuation.delimiter
">" @punctuation.special
; Comments
(comment) @comment @spell