File tree 4 files changed +7
-365
lines changed
4 files changed +7
-365
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ export class PickRunspaceFeature implements IFeature {
570
570
}
571
571
572
572
private pickRunspace ( processId ) : Thenable < string > {
573
- return this . languageClient . sendRequest ( GetRunspaceRequestType , processId ) . then ( ( response ) => {
573
+ return this . languageClient . sendRequest ( GetRunspaceRequestType , { processId } ) . then ( ( response ) => {
574
574
const items : IRunspaceItem [ ] = [ ] ;
575
575
576
576
for ( const runspace of response ) {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import { DebugSessionFeature } from "./features/DebugSession";
16
16
import { PickPSHostProcessFeature } from "./features/DebugSession" ;
17
17
import { PickRunspaceFeature } from "./features/DebugSession" ;
18
18
import { SpecifyScriptArgsFeature } from "./features/DebugSession" ;
19
- import { DocumentFormatterFeature } from "./features/DocumentFormatter" ;
20
19
import { ExamplesFeature } from "./features/Examples" ;
21
20
import { ExpandAliasFeature } from "./features/ExpandAlias" ;
22
21
import { ExtensionCommandsFeature } from "./features/ExtensionCommands" ;
@@ -155,7 +154,6 @@ export function activate(context: vscode.ExtensionContext): void {
155
154
new SelectPSSARulesFeature ( logger ) ,
156
155
new CodeActionsFeature ( logger ) ,
157
156
new NewFileOrProjectFeature ( ) ,
158
- new DocumentFormatterFeature ( logger , documentSelector ) ,
159
157
new RemoteFilesFeature ( ) ,
160
158
new DebugSessionFeature ( context , sessionManager ) ,
161
159
new PickPSHostProcessFeature ( ) ,
You can’t perform that action at this time.
0 commit comments