Is there any way to show all symbols in outline (modal and panel)? #19278
Answered
by
SomeoneToIgnore
pavelpuchok
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
SomeoneToIgnore
Oct 16, 2024
Replies: 2 comments 4 replies
-
I do not think there's a simple way to configure this, and the absence of other definitions means tree-sitter queries in https://github.com/zed-industries/zed/blob/4fe40a8064994aeb0a1a9f0e1bc72e83c972b01a/crates/languages/src/go/outline.scm#L1 are not complete/incorrect. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's no good support for that, but for some extensions it's possible to do this until they update/redownload.
Extensions store their *.scm files locally, e.g. for macOS
find ~/Library/Application\ Support/Zed -type f -name "*.scm"
but there's nogo
file asgo
extension is bundled with Zed.In this case, IIRC we bundle the files within Zed binary itself, hence it's not possible to change without opening a PR.
But I might be wrong about that binary bundling part.