Skip to content

Commit

Permalink
fix(julia): update treesitter queries
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Nov 13, 2024
1 parent 247df21 commit 1ff1ab3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions queries/julia/aerial.scm
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,18 @@
(#set! "kind" "Function")) @symbol

(abstract_definition
name: (identifier) @name
(#set! "kind" "Interface")) @symbol
(type_head
(identifier) @name
(#set! "kind" "Interface"))) @symbol

(struct_definition
name: (identifier) @name
(#set! "kind" "Class")) @symbol
(type_head
[
(_
(identifier) @name)
(identifier) @name
]
(#set! "kind" "Class"))) @symbol

(const_statement
(assignment
Expand Down

0 comments on commit 1ff1ab3

Please sign in to comment.