We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MarkupKind
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
Describe the bug
The LSP specification says that MarkupKind should be either "plaintext" or "markdown", however it seems that sqls is sending "", which is invalid.
"plaintext"
"markdown"
""
To Reproduce
Steps to reproduce the behavior:
Expected behavior
sqls is giving CompletionItems with the following:
CompletionItem
{ // ... "documentation": { "kind": "", "value": "" }, // ... },
It should probably not specify documentation at all in cases like this.
documentation
Versions (please complete the following information):
Additional context
Example of erroneous response:
[ { "label": "ABORT", "kind": 14, "detail": "keyword", "documentation": { "kind": "", "value": "" }, "sortText": "9999ABORT" }, { "label": "ACTION", "kind": 14, "detail": "keyword", "documentation": { "kind": "", "value": "" }, "sortText": "9999ACTION" }, { "label": "ADD", "kind": 14, "detail": "keyword", "documentation": { "kind": "", "value": "" }, "sortText": "9999ADD" }, { "label": "AFTER", "kind": 14, "detail": "keyword", "documentation": { "kind": "", "value": "" }, "sortText": "9999AFTER" }, // ... ]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
The LSP specification says that
MarkupKind
should be either"plaintext"
or"markdown"
, however it seems that sqls is sending""
, which is invalid.To Reproduce
Steps to reproduce the behavior:
Expected behavior
sqls is giving
CompletionItem
s with the following:It should probably not specify
documentation
at all in cases like this.Versions (please complete the following information):
Additional context
Example of erroneous response:
The text was updated successfully, but these errors were encountered: