2020-06-22 17:39:54 -04:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"("
|
|
|
|
|
")"
|
|
|
|
|
"{"
|
|
|
|
|
"}"
|
|
|
|
|
"["
|
|
|
|
|
"]"
|
|
|
|
|
"[["
|
|
|
|
|
"]]"
|
|
|
|
|
"(("
|
|
|
|
|
"))"
|
2023-08-23 13:02:30 +03:00
|
|
|
] @punctuation.bracket
|
2020-06-22 17:39:54 -04:00
|
|
|
|
|
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
";"
|
|
|
|
|
";;"
|
|
|
|
|
";&"
|
|
|
|
|
";;&"
|
|
|
|
|
"&"
|
2023-08-23 13:02:30 +03:00
|
|
|
] @punctuation.delimiter
|
2020-09-06 12:31:40 -05:00
|
|
|
|
2020-06-22 17:39:54 -04:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
">"
|
|
|
|
|
">>"
|
|
|
|
|
"<"
|
|
|
|
|
"<<"
|
|
|
|
|
"&&"
|
|
|
|
|
"|"
|
|
|
|
|
"|&"
|
|
|
|
|
"||"
|
|
|
|
|
"="
|
|
|
|
|
"+="
|
|
|
|
|
"=~"
|
|
|
|
|
"=="
|
|
|
|
|
"!="
|
|
|
|
|
"&>"
|
|
|
|
|
"&>>"
|
|
|
|
|
"<&"
|
|
|
|
|
">&"
|
|
|
|
|
">|"
|
|
|
|
|
"<&-"
|
|
|
|
|
">&-"
|
|
|
|
|
"<<-"
|
|
|
|
|
"<<<"
|
|
|
|
|
".."
|
2024-02-10 05:54:42 -05:00
|
|
|
"!"
|
2023-08-23 13:02:30 +03:00
|
|
|
] @operator
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2023-08-07 13:42:24 +01:00
|
|
|
; Do *not* spell check strings since they typically have some sort of
|
|
|
|
|
; interpolation in them, or, are typically used for things like filenames, URLs,
|
|
|
|
|
; flags and file content.
|
2020-06-22 17:39:54 -04:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
(string)
|
|
|
|
|
(raw_string)
|
|
|
|
|
(ansi_c_string)
|
|
|
|
|
(heredoc_body)
|
2023-08-07 13:42:24 +01:00
|
|
|
] @string
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2023-08-23 13:02:30 +03:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
(heredoc_start)
|
|
|
|
|
(heredoc_end)
|
2023-08-23 13:02:30 +03:00
|
|
|
] @label
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(variable_assignment
|
|
|
|
|
(word) @string)
|
|
|
|
|
|
|
|
|
|
(command
|
|
|
|
|
argument: "$" @string) ; bare dollar
|
2020-09-06 12:31:40 -05:00
|
|
|
|
2023-11-22 15:12:34 -08:00
|
|
|
(concatenation
|
|
|
|
|
(word) @string)
|
|
|
|
|
|
2020-06-22 17:39:54 -04:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"if"
|
|
|
|
|
"then"
|
|
|
|
|
"else"
|
|
|
|
|
"elif"
|
|
|
|
|
"fi"
|
|
|
|
|
"case"
|
|
|
|
|
"in"
|
|
|
|
|
"esac"
|
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
|
2020-06-22 17:39:54 -04:00
|
|
|
|
|
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"for"
|
|
|
|
|
"do"
|
|
|
|
|
"done"
|
|
|
|
|
"select"
|
|
|
|
|
"until"
|
|
|
|
|
"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
|
2020-06-22 17:39:54 -04:00
|
|
|
|
|
|
|
|
[
|
2023-08-24 17:12:10 -04:00
|
|
|
"declare"
|
|
|
|
|
"typeset"
|
|
|
|
|
"readonly"
|
|
|
|
|
"local"
|
|
|
|
|
"unset"
|
|
|
|
|
"unsetenv"
|
2023-08-23 13:02:30 +03:00
|
|
|
] @keyword
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2024-05-12 18:00:55 -07:00
|
|
|
"export" @keyword.import
|
|
|
|
|
|
2021-07-05 15:04:42 -05:00
|
|
|
"function" @keyword.function
|
|
|
|
|
|
2020-09-12 18:32:48 -05:00
|
|
|
(special_variable_name) @constant
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2022-09-18 20:39:53 +03:00
|
|
|
; trap -l
|
2020-09-12 18:32:48 -05:00
|
|
|
((word) @constant.builtin
|
2024-02-23 17:42:01 +09:00
|
|
|
(#any-of? @constant.builtin
|
|
|
|
|
"SIGHUP" "SIGINT" "SIGQUIT" "SIGILL" "SIGTRAP" "SIGABRT" "SIGBUS" "SIGFPE" "SIGKILL" "SIGUSR1"
|
|
|
|
|
"SIGSEGV" "SIGUSR2" "SIGPIPE" "SIGALRM" "SIGTERM" "SIGSTKFLT" "SIGCHLD" "SIGCONT" "SIGSTOP"
|
|
|
|
|
"SIGTSTP" "SIGTTIN" "SIGTTOU" "SIGURG" "SIGXCPU" "SIGXFSZ" "SIGVTALRM" "SIGPROF" "SIGWINCH"
|
|
|
|
|
"SIGIO" "SIGPWR" "SIGSYS" "SIGRTMIN" "SIGRTMIN+1" "SIGRTMIN+2" "SIGRTMIN+3" "SIGRTMIN+4"
|
|
|
|
|
"SIGRTMIN+5" "SIGRTMIN+6" "SIGRTMIN+7" "SIGRTMIN+8" "SIGRTMIN+9" "SIGRTMIN+10" "SIGRTMIN+11"
|
|
|
|
|
"SIGRTMIN+12" "SIGRTMIN+13" "SIGRTMIN+14" "SIGRTMIN+15" "SIGRTMAX-14" "SIGRTMAX-13"
|
|
|
|
|
"SIGRTMAX-12" "SIGRTMAX-11" "SIGRTMAX-10" "SIGRTMAX-9" "SIGRTMAX-8" "SIGRTMAX-7" "SIGRTMAX-6"
|
|
|
|
|
"SIGRTMAX-5" "SIGRTMAX-4" "SIGRTMAX-3" "SIGRTMAX-2" "SIGRTMAX-1" "SIGRTMAX"))
|
2020-06-22 17:39:54 -04:00
|
|
|
|
|
|
|
|
((word) @boolean
|
2024-01-06 15:05:50 +09:00
|
|
|
(#any-of? @boolean "true" "false"))
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2022-09-26 10:19:02 +01:00
|
|
|
(comment) @comment @spell
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2023-08-23 13:02:30 +03:00
|
|
|
(test_operator) @operator
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(command_substitution
|
2024-03-24 08:31:35 -07:00
|
|
|
"$(" @punctuation.special
|
|
|
|
|
")" @punctuation.special)
|
2024-01-06 15:05:50 +09:00
|
|
|
|
|
|
|
|
(process_substitution
|
2024-03-24 08:31:35 -07:00
|
|
|
[
|
|
|
|
|
"<("
|
|
|
|
|
">("
|
|
|
|
|
] @punctuation.special
|
|
|
|
|
")" @punctuation.special)
|
2023-08-23 13:02:30 +03:00
|
|
|
|
|
|
|
|
(arithmetic_expansion
|
2024-01-06 15:05:50 +09:00
|
|
|
[
|
|
|
|
|
"$(("
|
|
|
|
|
"(("
|
|
|
|
|
] @punctuation.special
|
2023-08-23 13:02:30 +03:00
|
|
|
"))" @punctuation.special)
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(arithmetic_expansion
|
|
|
|
|
"," @punctuation.delimiter)
|
|
|
|
|
|
|
|
|
|
(ternary_expression
|
|
|
|
|
[
|
|
|
|
|
"?"
|
|
|
|
|
":"
|
|
|
|
|
] @keyword.conditional.ternary)
|
|
|
|
|
|
|
|
|
|
(binary_expression
|
|
|
|
|
operator: _ @operator)
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(unary_expression
|
|
|
|
|
operator: _ @operator)
|
2021-12-14 18:58:10 +01:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(postfix_expression
|
|
|
|
|
operator: _ @operator)
|
2020-06-22 17:39:54 -04:00
|
|
|
|
|
|
|
|
(function_definition
|
|
|
|
|
name: (word) @function)
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(command_name
|
|
|
|
|
(word) @function.call)
|
2020-09-12 18:32:48 -05:00
|
|
|
|
2024-02-23 17:42:01 +09:00
|
|
|
(command_name
|
|
|
|
|
(word) @function.builtin
|
2024-01-05 03:19:54 +09:00
|
|
|
(#any-of? @function.builtin
|
2024-10-26 19:23:20 -07:00
|
|
|
"." ":" "alias" "bg" "bind" "break" "builtin" "caller" "cd" "command" "compgen" "complete"
|
|
|
|
|
"compopt" "continue" "coproc" "dirs" "disown" "echo" "enable" "eval" "exec" "exit" "false" "fc"
|
|
|
|
|
"fg" "getopts" "hash" "help" "history" "jobs" "kill" "let" "logout" "mapfile" "popd" "printf"
|
|
|
|
|
"pushd" "pwd" "read" "readarray" "return" "set" "shift" "shopt" "source" "suspend" "test" "time"
|
|
|
|
|
"times" "trap" "true" "type" "typeset" "ulimit" "umask" "unalias" "wait"))
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2020-08-16 11:24:10 -05:00
|
|
|
(command
|
2024-03-21 20:44:35 +09:00
|
|
|
argument: [
|
|
|
|
|
(word) @variable.parameter
|
|
|
|
|
(concatenation
|
|
|
|
|
(word) @variable.parameter)
|
|
|
|
|
])
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2024-05-21 19:03:22 -07:00
|
|
|
(declaration_command
|
|
|
|
|
(word) @variable.parameter)
|
|
|
|
|
|
|
|
|
|
(unset_command
|
|
|
|
|
(word) @variable.parameter)
|
|
|
|
|
|
2023-08-23 13:02:30 +03:00
|
|
|
(number) @number
|
2024-01-06 15:05:50 +09:00
|
|
|
|
2020-12-24 19:48:02 +00:00
|
|
|
((word) @number
|
2024-01-06 15:05:50 +09:00
|
|
|
(#lua-match? @number "^[0-9]+$"))
|
2020-12-19 20:31:55 +00:00
|
|
|
|
2020-06-22 17:39:54 -04:00
|
|
|
(file_redirect
|
2024-11-20 17:40:25 -08:00
|
|
|
(word) @string.special.path)
|
|
|
|
|
|
|
|
|
|
(herestring_redirect
|
|
|
|
|
(word) @string)
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2023-08-24 17:12:10 -04:00
|
|
|
(file_descriptor) @operator
|
|
|
|
|
|
2023-08-23 13:02:30 +03:00
|
|
|
(simple_expansion
|
|
|
|
|
"$" @punctuation.special) @none
|
2024-01-06 15:05:50 +09:00
|
|
|
|
2020-08-16 11:24:10 -05:00
|
|
|
(expansion
|
2023-08-23 13:02:30 +03:00
|
|
|
"${" @punctuation.special
|
|
|
|
|
"}" @punctuation.special) @none
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(expansion
|
|
|
|
|
operator: _ @punctuation.special)
|
|
|
|
|
|
|
|
|
|
(expansion
|
|
|
|
|
"@"
|
|
|
|
|
.
|
|
|
|
|
operator: _ @character.special)
|
2023-08-23 13:02:30 +03:00
|
|
|
|
|
|
|
|
((expansion
|
|
|
|
|
(subscript
|
|
|
|
|
index: (word) @character.special))
|
2024-01-06 15:05:50 +09:00
|
|
|
(#any-of? @character.special "@" "*"))
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2023-08-24 17:12:10 -04:00
|
|
|
"``" @punctuation.special
|
|
|
|
|
|
2020-09-07 18:14:54 +02:00
|
|
|
(variable_name) @variable
|
2020-06-22 17:39:54 -04:00
|
|
|
|
2020-09-12 18:32:48 -05:00
|
|
|
((variable_name) @constant
|
2024-01-06 15:05:50 +09:00
|
|
|
(#lua-match? @constant "^[A-Z][A-Z_0-9]*$"))
|
2020-09-12 18:32:48 -05:00
|
|
|
|
2024-10-24 02:30:32 -07:00
|
|
|
((variable_name) @variable.builtin
|
|
|
|
|
(#any-of? @variable.builtin
|
|
|
|
|
; https://www.gnu.org/software/bash/manual/html_node/Bourne-Shell-Variables.html
|
|
|
|
|
"CDPATH" "HOME" "IFS" "MAIL" "MAILPATH" "OPTARG" "OPTIND" "PATH" "PS1" "PS2"
|
|
|
|
|
; https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html
|
|
|
|
|
"_" "BASH" "BASHOPTS" "BASHPID" "BASH_ALIASES" "BASH_ARGC" "BASH_ARGV" "BASH_ARGV0" "BASH_CMDS"
|
|
|
|
|
"BASH_COMMAND" "BASH_COMPAT" "BASH_ENV" "BASH_EXECUTION_STRING" "BASH_LINENO"
|
|
|
|
|
"BASH_LOADABLES_PATH" "BASH_REMATCH" "BASH_SOURCE" "BASH_SUBSHELL" "BASH_VERSINFO"
|
|
|
|
|
"BASH_VERSION" "BASH_XTRACEFD" "CHILD_MAX" "COLUMNS" "COMP_CWORD" "COMP_LINE" "COMP_POINT"
|
|
|
|
|
"COMP_TYPE" "COMP_KEY" "COMP_WORDBREAKS" "COMP_WORDS" "COMPREPLY" "COPROC" "DIRSTACK" "EMACS"
|
|
|
|
|
"ENV" "EPOCHREALTIME" "EPOCHSECONDS" "EUID" "EXECIGNORE" "FCEDIT" "FIGNORE" "FUNCNAME"
|
|
|
|
|
"FUNCNEST" "GLOBIGNORE" "GROUPS" "histchars" "HISTCMD" "HISTCONTROL" "HISTFILE" "HISTFILESIZE"
|
|
|
|
|
"HISTIGNORE" "HISTSIZE" "HISTTIMEFORMAT" "HOSTFILE" "HOSTNAME" "HOSTTYPE" "IGNOREEOF" "INPUTRC"
|
|
|
|
|
"INSIDE_EMACS" "LANG" "LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES" "LC_NUMERIC" "LC_TIME"
|
|
|
|
|
"LINENO" "LINES" "MACHTYPE" "MAILCHECK" "MAPFILE" "OLDPWD" "OPTERR" "OSTYPE" "PIPESTATUS"
|
|
|
|
|
"POSIXLY_CORRECT" "PPID" "PROMPT_COMMAND" "PROMPT_DIRTRIM" "PS0" "PS3" "PS4" "PWD" "RANDOM"
|
|
|
|
|
"READLINE_ARGUMENT" "READLINE_LINE" "READLINE_MARK" "READLINE_POINT" "REPLY" "SECONDS" "SHELL"
|
|
|
|
|
"SHELLOPTS" "SHLVL" "SRANDOM" "TIMEFORMAT" "TMOUT" "TMPDIR" "UID"))
|
|
|
|
|
|
2020-08-16 11:24:10 -05:00
|
|
|
(case_item
|
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
|
|
|
value: (word) @variable.parameter)
|
2020-12-19 20:59:02 +00:00
|
|
|
|
2023-08-24 17:12:10 -04:00
|
|
|
[
|
|
|
|
|
(regex)
|
|
|
|
|
(extglob_pattern)
|
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
|
|
|
] @string.regexp
|
2022-09-18 20:15:23 +03:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
((program
|
|
|
|
|
.
|
2024-04-29 14:48:27 +02:00
|
|
|
(comment) @keyword.directive @nospell)
|
2024-01-06 15:05:50 +09:00
|
|
|
(#lua-match? @keyword.directive "^#!/"))
|