
Closes #22480 Release Notes: - N/A | Before | After | |----------|----------| | <img width="344" alt="before" src="https://github.com/user-attachments/assets/37f8daf7-c9a0-4259-8c03-bd1a4479abca" /> | <img width="344" alt="after" src="https://github.com/user-attachments/assets/0f7e4429-e48b-4b32-9797-a0da8487e23e" /> | Zig, Haskel, and PureScript define a character caputure name in `highlights.scm`, but we did not define a color for that capture name in the themes. The new character color is the same as the string color in all themes. --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
144 lines
2.4 KiB
Scheme
144 lines
2.4 KiB
Scheme
;; Copyright 2022 nvim-treesitter
|
|
;;
|
|
;; Licensed under the Apache License, Version 2.0 (the "License");
|
|
;; you may not use this file except in compliance with the License.
|
|
;; You may obtain a copy of the License at
|
|
;;
|
|
;; http://www.apache.org/licenses/LICENSE-2.0
|
|
;;
|
|
;; Unless required by applicable law or agreed to in writing, software
|
|
;; distributed under the License is distributed on an "AS IS" BASIS,
|
|
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
;; See the License for the specific language governing permissions and
|
|
;; limitations under the License.
|
|
|
|
;; ----------------------------------------------------------------------------
|
|
;; Literals and comments
|
|
|
|
(integer) @number
|
|
(exp_negation) @number
|
|
(exp_literal (number)) @float
|
|
(char) @string
|
|
[
|
|
(string)
|
|
(triple_quote_string)
|
|
] @string
|
|
|
|
(comment) @comment
|
|
|
|
|
|
;; ----------------------------------------------------------------------------
|
|
;; Punctuation
|
|
|
|
[
|
|
"("
|
|
")"
|
|
"{"
|
|
"}"
|
|
"["
|
|
"]"
|
|
] @punctuation.bracket
|
|
|
|
[
|
|
(comma)
|
|
";"
|
|
] @punctuation.delimiter
|
|
|
|
|
|
;; ----------------------------------------------------------------------------
|
|
;; Keywords, operators, includes
|
|
|
|
[
|
|
"forall"
|
|
"∀"
|
|
] @keyword
|
|
|
|
;; (pragma) @constant
|
|
|
|
[
|
|
"if"
|
|
"then"
|
|
"else"
|
|
"case"
|
|
"of"
|
|
] @keyword
|
|
|
|
[
|
|
"import"
|
|
"module"
|
|
] @keyword
|
|
|
|
[
|
|
(operator)
|
|
(constructor_operator)
|
|
(type_operator)
|
|
(qualified_module) ; grabs the `.` (dot), ex: import System.IO
|
|
(all_names)
|
|
(wildcard)
|
|
"="
|
|
"|"
|
|
"::"
|
|
"=>"
|
|
"->"
|
|
"<-"
|
|
"\\"
|
|
"`"
|
|
"@"
|
|
"∷"
|
|
"⇒"
|
|
"<="
|
|
"⇐"
|
|
"→"
|
|
"←"
|
|
] @operator
|
|
|
|
(module) @title
|
|
|
|
[
|
|
(where)
|
|
"let"
|
|
"in"
|
|
"class"
|
|
"instance"
|
|
"derive"
|
|
"foreign"
|
|
"data"
|
|
"newtype"
|
|
"type"
|
|
"as"
|
|
"hiding"
|
|
"do"
|
|
"ado"
|
|
"infix"
|
|
"infixl"
|
|
"infixr"
|
|
] @keyword
|
|
|
|
|
|
;; ----------------------------------------------------------------------------
|
|
;; Functions and variables
|
|
|
|
(variable) @variable
|
|
(pat_wildcard) @variable
|
|
|
|
(signature name: (variable) @type)
|
|
(function
|
|
name: (variable) @function
|
|
patterns: (patterns))
|
|
|
|
|
|
(exp_infix (exp_name) @function (#set! "priority" 101))
|
|
(exp_apply . (exp_name (variable) @function))
|
|
(exp_apply . (exp_name (qualified_variable (variable) @function)))
|
|
|
|
|
|
;; ----------------------------------------------------------------------------
|
|
;; Types
|
|
|
|
(type) @type
|
|
(type_variable) @type
|
|
|
|
(constructor) @constructor
|
|
|
|
; True or False
|
|
((constructor) @_bool (#match? @_bool "(True|False)")) @boolean
|