Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extension.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
id = "julia"
name = "Julia"
description = "Julia support."
version = "0.1.4"
version = "0.1.5"
schema_version = 1
authors = ["Paul Berg <[email protected]>"]
repository = "https://github.com/JuliaEditorSupport/zed-julia"

[grammars.julia]
repository = "https://github.com/tree-sitter/tree-sitter-julia"
commit = "e01c928d11375513138a175a68485c4d53e55ea9"
commit = "18b739c1563c83fc816170a4241adfa4b69e5c47"

[language_servers.julia]
languages = ["Julia"]
Expand Down
2 changes: 1 addition & 1 deletion languages/julia/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ brackets = [
"comment",
"string",
] },
{ start = "#=", end = " =#", close = true, newline = false, not_in = [
{ start = "#=", end = "=#", close = true, newline = false, not_in = [
"comment",
"string",
] },
Expand Down
8 changes: 4 additions & 4 deletions languages/julia/outline.scm
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"using" @context
[
(selected_import (_) @name ":" @context)
(( [(identifier) (scoped_identifier) (import_path)] @name "," @context)*
[(identifier) (scoped_identifier) (import_path)] @name)
(( [(identifier) (import_path)] @name "," @context)*
[(identifier) (import_path)] @name)
]) @item

(import_statement
"import" @context
[
(selected_import (_) @name ":" @context)
(( [(identifier) (scoped_identifier) (import_path)] @name "," @context)*
[(identifier) (scoped_identifier) (import_path)] @name)
(( [(identifier) (import_path)] @name "," @context)*
[(identifier) (import_path)] @name)
]) @item

(module_definition
Expand Down