mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix(julia): fix highlighting end keyword
This commit is contained in:
parent
c13e28f894
commit
b6492f41c4
1 changed files with 4 additions and 4 deletions
|
|
@ -157,9 +157,6 @@
|
|||
[
|
||||
"global"
|
||||
"local"
|
||||
"macro"
|
||||
"struct"
|
||||
"end"
|
||||
] @keyword
|
||||
|
||||
|
||||
|
|
@ -208,8 +205,11 @@
|
|||
(export_statement
|
||||
"export" @include)
|
||||
|
||||
(struct_definition
|
||||
["struct" "end"] @keyword)
|
||||
|
||||
(macro_definition
|
||||
["macro" "end" @keyword])
|
||||
["macro" "end"] @keyword)
|
||||
|
||||
(function_definition
|
||||
["function" "end"] @keyword.function)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue