-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Feature: outline extension BuildItem
s
#1094
Comments
I think we can use LSP workpsace symbols (we need to implement the LSP support workspace symbol for IJ) For instance our MicroProfile LS support LSP workspace symbols to retrieve Rest services. vscode use this workspace symbols like this https://github.com/redhat-developer/vscode-microprofile/blob/master/docs/JavaFeatures.md#workspace-symbols-support. We plan to support workspace symbols in IJ redhat-developer/lsp4ij#22 My idea is to add a new Tab like Is it make senses? |
Ah, that makes sense, yes. Another feature is that the |
Great!
Yes please create an issue for that. @fbricon did that for rest services. |
Fixes redhat-developer#1094 Signed-off-by: azerr <[email protected]>
When writing a Quarkus extension, it would be nice if the developer had a list of the existing BuildItems they can use.
For example, if I want to deploy a
ServletContainerInitializer
, I'd use aServletContainerInitializerBuildItem
. Finding the exact build item is a hard task and it would be nice to have a search mechanism to find this informationWe have a page generated at https://quarkus.io/guides/all-builditems however it's a bit annoying to find what you need there. It would be nice if we had a list of potential builditems in an IDE tool window (bonus points if including those that are not available in the project)
The text was updated successfully, but these errors were encountered: