-
Notifications
You must be signed in to change notification settings - Fork 235
The response to textDocument/signatureHelp is not per spec #1324
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
The response to textDocument/signatureHelp is not per spec #1324
Comments
Looks like this is the line where we're doing it wrong: Lines 68 to 71 in fdb2095
I guess we can just return |
btw @rwols what client are you using? |
I'm using this plugin for SublimeText. I'm actually working on a convenience plugin that installs/updates the server here. |
That is certainly also a possibility. |
@rwols if you want to contribute a call out to LSP-PowerShellEditorServices in our README that'd be awesome :) |
- The "tags" in a CompletionItem response are null (invalid per spec) - The "signatures" in a textDocument/signatureHelp response is null (invalid per spec) See: PowerShell/PowerShellEditorServices#1324 See: PowerShell/PowerShellEditorServices#1325 Co-authored-by: Предраг Николић / Predrag Nikolic <[email protected]>
fix out for this ^ |
This is fixed. Automation will rev the version of the library that we use and it'll be in the next version of PSES |
Thanks for the quick fix! I'm still busy getting things working for Windows, I'll make a PR for a call-out when the plugin is ready :) |
The value of the
signatures
key should be an array (so not anarray | null
).If there are no signatures available, you can send
null
instead of{"signatures": null}
.The text was updated successfully, but these errors were encountered: