We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
textDocument/documentLink
Add support for textDocument/documentLink https://microsoft.github.io/language-server-protocol/specification#textDocument_documentLink for extension.
One extension for web (web.xml) could manage hyperlink for welcome-file to open it:
<welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>index.html</welcome-file> </welcome-file-list>
One extension for String could manage hyperlink for class to open the Java class:
<bean class="MyClass" />
The text was updated successfully, but these errors were encountered:
Initialize support for documentLink (see #56)
3218682
Is it complete now? Because we can navigate to schemas defined in xsi:noNamespaceSchemaLocation for instance.
web.xml hyperlink is a specific use case I wouldn't worry about for now.
Sorry, something went wrong.
Is it complete now?
yes extension is done
Because we can navigate to schemas defined in xsi:noNamespaceSchemaLocation for instance.
exactly and it exists test for this feature at https://github.com/angelozerr/lsp4xml/blob/master/org.eclipse.lsp4xml/src/test/java/org/eclipse/lsp4xml/extensions/contentmodel/XMLSchemaDocumentLinkTest.java
angelozerr
No branches or pull requests
Add support for
textDocument/documentLink
https://microsoft.github.io/language-server-protocol/specification#textDocument_documentLink for extension.One extension for web (web.xml) could manage hyperlink for welcome-file to open it:
One extension for String could manage hyperlink for class to open the Java class:
The text was updated successfully, but these errors were encountered: