Skip to content

Commit f4fbcf1

Browse files
handle F8
1 parent 849015e commit f4fbcf1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1453,6 +1453,9 @@ protected Task HandleEvaluateRequestAsync(
14531453
executeTask.ContinueWith(
14541454
(task) =>
14551455
{
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();
14561459
// Return an empty result since the result value is irrelevant
14571460
// for this request in the LanguageServer
14581461
return

0 commit comments

Comments
 (0)