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
Example to replicate:
<?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <!-- elements --> <xs:element name="root"> <xs:complexType> <xs:sequence> <xs:element ref="container"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="container" type="asdf" /> <xs:element name="content" type="asdf" /> <!-- types --> <xs:complexType name="asdf"> <xs:sequence> <xs:element ref="content"/> </xs:sequence> </xs:complexType> </xs:schema>
There should be Code Lens before the container and content element declarations, and the asdf type declaration.
container
content
asdf
Instead, the response that's returned is:
[Trace - 4:43:33 PM] Received response 'textDocument/codeLens - (35)' in 6ms. Result: [ {}, {}, {} ]
The text was updated successfully, but these errors were encountered:
It seems CodeLensRegistrationOptions is missing in JSON file. Is it the problem?
Sorry, something went wrong.
Yes, the registration options, and maybe some of the other lsp4j classes that get serialized, are not registered for reflection yet.
Add reflection config for CodeLens and References
fead625
Fixes eclipse-lemminx#1046, Fixes eclipse-lemminx#1047 Signed-off-by: David Thompson <[email protected]>
c525d56
bdfda9b
Fixes #1046, Fixes #1047 Signed-off-by: David Thompson <[email protected]>
datho7561
Successfully merging a pull request may close this issue.
Example to replicate:
There should be Code Lens before the
container
andcontent
element declarations, and theasdf
type declaration.Instead, the response that's returned is:
The text was updated successfully, but these errors were encountered: