You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it can be dangerous, because if an Intellij Plugin defines externalAnnotator for Java language and an another Intellij Plugin defines the same externalAnnotator for language Java, validation will be duplicated.
angelozerr
changed the title
Associate validation, inlayHint, hover, etc with any language
Associate validation, completion, etc with any language
Dec 6, 2023
angelozerr
added a commit
to angelozerr/lsp4ij
that referenced
this issue
Dec 6, 2023
Today the Intellij Plugin which want to support validation,hover, etc for a given language need to declare in the plugin.xml
Here a sample with Ij Quarkus and
Qute_
language to display error for Qute:It should be nice to avoid writting that:
The only thing that we loose with this strategy is to control the
order (before htmlText)
of the completion that we use in IJ Quarkus:<completion.confidence language="HTML" order="before htmlText" implementationClass="com.redhat.devtools.lsp4ij.operations.completion.LSPCompletionConfidence" />
The text was updated successfully, but these errors were encountered: