Skip to content

Commit 87376c3

Browse files
stdio should only launch language service not debug (#710)
1 parent 5a371f3 commit 87376c3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

module/PowerShellEditorServices/PowerShellEditorServices.psm1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ function Start-EditorServicesHost {
116116

117117
if ($DebugServiceOnly.IsPresent) {
118118
$editorServicesHost.StartDebugService($debugServiceConfig, $profilePaths, $false);
119+
} elseif($Stdio.IsPresent) {
120+
$editorServicesHost.StartLanguageService($languageServiceConfig, $profilePaths);
119121
} else {
120122
$editorServicesHost.StartLanguageService($languageServiceConfig, $profilePaths);
121123
$editorServicesHost.StartDebugService($debugServiceConfig, $profilePaths, $true);

0 commit comments

Comments
 (0)