mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-04 12:30:01 -04:00
* add keywords to scala highlights
* special capture for special keywords
* add while to 'repeat' capture
* pr cleanup, exmaples in CONTRIBUTING.md
* add backquotes for consistency in docs
* group @repeat keywords, fix null
* comment-out 'macro' and 'forSome'
* fix 'this' and 'super' keyword
* remove accidental files 🤦
* update revision
* fix "super" and "this"
* godammit these .metals files are killing me
* why did I commit this???
Co-authored-by: Stuart Mashaal <smashaal@hopper.com>
96 lines
1.3 KiB
Scheme
96 lines
1.3 KiB
Scheme
; CREDITS @stumash (stuart.mashaal@gmail.com)
|
|
|
|
;; variables
|
|
|
|
(
|
|
(identifier) @variable.builtin
|
|
(#match? @variable.builtin "^this$")
|
|
)
|
|
|
|
;; method calls
|
|
|
|
; method definition
|
|
(class_definition
|
|
body: (template_body
|
|
(function_definition
|
|
name: (identifier) @method)))
|
|
(object_definition
|
|
body: (template_body
|
|
(function_definition
|
|
name: (identifier) @method)))
|
|
(trait_definition
|
|
body: (template_body
|
|
(function_definition
|
|
name: (identifier) @method)))
|
|
|
|
; method invocation
|
|
(call_expression
|
|
function: (field_expression
|
|
field: (identifier) @method))
|
|
|
|
(
|
|
(identifier) @function.builtin
|
|
(#match? @function.builtin "^super$")
|
|
)
|
|
|
|
;; keywords
|
|
|
|
[
|
|
"abstract"
|
|
"case"
|
|
"class"
|
|
"extends"
|
|
"final"
|
|
"finally"
|
|
;; `forSome` existential types not implemented yet
|
|
"implicit"
|
|
"lazy"
|
|
;; `macro` not implemented yet
|
|
"object"
|
|
"override"
|
|
"package"
|
|
"private"
|
|
"protected"
|
|
"sealed"
|
|
"trait"
|
|
"type"
|
|
"val"
|
|
"var"
|
|
"with"
|
|
] @keyword
|
|
|
|
(null_literal) @keyword
|
|
|
|
;; special keywords
|
|
|
|
"new" @keyword.operator
|
|
|
|
[
|
|
"else"
|
|
"if"
|
|
"match"
|
|
] @conditional
|
|
|
|
[
|
|
"do"
|
|
"for"
|
|
"while"
|
|
"yield"
|
|
] @repeat
|
|
|
|
"def" @keyword.function
|
|
|
|
"import" @include
|
|
|
|
[
|
|
"try"
|
|
"catch"
|
|
"throw"
|
|
] @exception
|
|
|
|
"return" @keyword.return
|
|
|
|
;; `case` is a conditional keyword in case_block
|
|
|
|
(case_block
|
|
(case_clause ("case") @conditional))
|