File tree Expand file tree Collapse file tree 4 files changed +7
-365
lines changed Expand file tree Collapse file tree 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 {
570570 }
571571
572572 private pickRunspace ( processId ) : Thenable < string > {
573- return this . languageClient . sendRequest ( GetRunspaceRequestType , processId ) . then ( ( response ) => {
573+ return this . languageClient . sendRequest ( GetRunspaceRequestType , { processId } ) . then ( ( response ) => {
574574 const items : IRunspaceItem [ ] = [ ] ;
575575
576576 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";
1616import { PickPSHostProcessFeature } from "./features/DebugSession" ;
1717import { PickRunspaceFeature } from "./features/DebugSession" ;
1818import { SpecifyScriptArgsFeature } from "./features/DebugSession" ;
19- import { DocumentFormatterFeature } from "./features/DocumentFormatter" ;
2019import { ExamplesFeature } from "./features/Examples" ;
2120import { ExpandAliasFeature } from "./features/ExpandAlias" ;
2221import { ExtensionCommandsFeature } from "./features/ExtensionCommands" ;
@@ -155,7 +154,6 @@ export function activate(context: vscode.ExtensionContext): void {
155154 new SelectPSSARulesFeature ( logger ) ,
156155 new CodeActionsFeature ( logger ) ,
157156 new NewFileOrProjectFeature ( ) ,
158- new DocumentFormatterFeature ( logger , documentSelector ) ,
159157 new RemoteFilesFeature ( ) ,
160158 new DebugSessionFeature ( context , sessionManager ) ,
161159 new PickPSHostProcessFeature ( ) ,
You can’t perform that action at this time.
0 commit comments