mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-08 14:30:05 -04:00
add keywords to scala highlights (#1662)
* 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>
This commit is contained in:
parent
d8595fb923
commit
4f2265632b
2 changed files with 100 additions and 4 deletions
|
|
@ -131,15 +131,15 @@ effect on highlighting. We will work on improving highlighting in the near futur
|
|||
#### Keywords
|
||||
|
||||
```
|
||||
@conditional
|
||||
@repeat
|
||||
@conditional (e.g. `if`, `else`)
|
||||
@repeat (e.g. `for`, `while`)
|
||||
@label for C/Lua-like labels
|
||||
@keyword
|
||||
@keyword.function
|
||||
@keyword.function (keyword to define a function, e.g. `func` in Go, `def` in Python)
|
||||
@keyword.operator (for operators that are English words, e.g. `and`, `or`)
|
||||
@keyword.return
|
||||
@operator (for symbolic operators, e.g. `+`, `*`)
|
||||
@exception
|
||||
@exception (e.g. `throw`, `catch`)
|
||||
@include keywords for including modules (e.g. import/from in Python)
|
||||
|
||||
@type
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue