We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 767e1cc commit 93c7df7Copy full SHA for 93c7df7
src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs
@@ -1441,6 +1441,9 @@ protected Task HandleEvaluateRequestAsync(
1441
executeTask.ContinueWith(
1442
(task) =>
1443
{
1444
+ // This is the equivalent of hitting ENTER in the Integrated Console
1445
+ // so we need to activate the RunspaceSynchronizer for completions.
1446
+ RunspaceSynchronizer.Activate();
1447
// Return an empty result since the result value is irrelevant
1448
// for this request in the LanguageServer
1449
return
0 commit comments