highlights(julia): add highlight for block comments

This commit is contained in:
koalp 2022-01-13 17:35:20 +01:00 committed by Stephan Seitz
parent 31fe7ee4f9
commit c6afb729b9
2 changed files with 9 additions and 3 deletions

View file

@ -67,7 +67,7 @@
(identifier)) @symbol
;; Parsing error! foo (::Type) gets parsed as two quote expressions
(argument_list
(argument_list
(quote_expression
(quote_expression
(identifier) @type)))
@ -123,7 +123,10 @@
(function_definition ["function" "end"] @keyword.function)
(comment) @comment
[
(comment)
(block_comment)
] @comment
[
"const"

View file

@ -2,4 +2,7 @@
; ((triple_string) @markdown
; (#offset! @markdown 0 3 0 -3))
(comment) @comment
[
(comment)
(block_comment)
] @comment