Skip to content

Commit 93c7df7

Browse files
handle F8
1 parent 767e1cc commit 93c7df7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/PowerShellEditorServices.Protocol/Server/LanguageServer.cs

+3
Original file line numberDiff line numberDiff line change
@@ -1441,6 +1441,9 @@ protected Task HandleEvaluateRequestAsync(
14411441
executeTask.ContinueWith(
14421442
(task) =>
14431443
{
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();
14441447
// Return an empty result since the result value is irrelevant
14451448
// for this request in the LanguageServer
14461449
return

0 commit comments

Comments
 (0)