We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 849015e commit f4fbcf1Copy full SHA for f4fbcf1
src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs
@@ -1453,6 +1453,9 @@ protected Task HandleEvaluateRequestAsync(
1453
executeTask.ContinueWith(
1454
(task) =>
1455
{
1456
+ // This is the equivalent of hitting ENTER in the Integrated Console
1457
+ // so we need to activate the RunspaceSynchronizer for completions.
1458
+ RunspaceSynchronizer.Activate();
1459
// Return an empty result since the result value is irrelevant
1460
// for this request in the LanguageServer
1461
return
0 commit comments