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
You're right - the next version has not been published as a stable release yet, but I'm expecting it in the coming weeks (it forms part of the LSP 3.17 release). I'll keep this issue open until that's done.
Although, generally I would hope that this message does not pop up very often, as it means something has failed on the server. You mention creating a file with invalid Dart code and pressing Save, but that certainly should not ordinarily trigger this issue. Are you perhaps running some code actions on-save that require valid files?
Thanks for the quick reply @DanTup - sounds good! For now I'm just using a tiny patch for the extension code which looks like this:
33171c33171
< this.outputChannel.show(true);
---
> this.outputChannel.show(items.includes('Go to output'));
Based on my output logs the setting that most commonly triggers the popup is "source.sortMembers": true, as I manually save my files frequently while working on them.
Ah, thanks for confirming. I think we can handle the error there now (so we fail silently when it's invoked automatically). I've filed #3950 about that and will keep this open to test the other issue after updating the LSP client.
Describe the bug
The VSCode output pane is focused automatically whenever workspace/executeCommand fails.
This is similar to #2280.
To Reproduce
Steps to reproduce the behavior:
At the same time the output pane automatically gets focused - without pressing "Go to output".
Expected behavior
The output pane should only become focused if 'Go to output' is clicked.
Analysis
Looking at the code bundled with the Dart-Code extension - I think the reason is the following change: microsoft/vscode-languageserver-node@a1d9d1a which was made available in version 8 of the language client (while it looks like the extension is still using 7?
Workaround
For now I've just been patching the Dart-Code extension manually :)
Please complete the following information:
The text was updated successfully, but these errors were encountered: