fix(julia): add missing capture of ":" in selected import

If writing a selected import, e.g. `using BSON: @load`, the colon isn't currently captured.
This change captures it as `@punctuation.delimiter`.
This commit is contained in:
Christian Degnbol Madsen 2023-12-28 17:57:49 +11:00 committed by Christian Clason
parent e49f1e8ef3
commit 65ef62092e

View file

@ -398,6 +398,8 @@
"as" @include)
(export_statement
"export" @include)
(selected_import
":" @punctuation.delimiter)
(struct_definition
["struct" "end"] @keyword)