Feature Request: Add ctrl + click on uid string links, to go to the files destination.
Like for example icon = preload("uid://b8usw1xoqimkf"),
Ctrl + clicking/ go to definition on a uid string should open the corresponding file (.png in this example). Or/and show what the file path is on mouse hover.
Maintainer edit: This is supported by Godot's language server and the feature depends on the Zed editor adding support for documentation links. The feature will be available once this is implemented: https://github.com/zed-industries/zed/issues/33587
I think it's not possible yet in the current state of Zed's extension support but I'm keeping it up for when we can do more things with extensions. Maybe some features like this will have to be implemented directly in Godot, in C++, as part of the language server. Zed tends to mainly rely on this protocol and the debugger adapter protocol for language-specific features.
This is already implemented in the language server. It will work if Zed implements the document link endpoint: https://github.com/zed-industries/zed/issues/33587
@HolonProduction thank you very much for the info! I'll update the opening post to mention that it depends on the Zed editor LSP support.