Skip to content

Commit

Permalink
everything needed so far (#2118)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt committed Oct 1, 2019
1 parent 325a00d commit 1ece440
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 365 deletions.
2 changes: 1 addition & 1 deletion src/features/DebugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ export class PickRunspaceFeature implements IFeature {
}

private pickRunspace(processId): Thenable<string> {
return this.languageClient.sendRequest(GetRunspaceRequestType, processId).then((response) => {
return this.languageClient.sendRequest(GetRunspaceRequestType, { processId }).then((response) => {
const items: IRunspaceItem[] = [];

for (const runspace of response) {
Expand Down
356 changes: 0 additions & 356 deletions src/features/DocumentFormatter.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { DebugSessionFeature } from "./features/DebugSession";
import { PickPSHostProcessFeature } from "./features/DebugSession";
import { PickRunspaceFeature } from "./features/DebugSession";
import { SpecifyScriptArgsFeature } from "./features/DebugSession";
import { DocumentFormatterFeature } from "./features/DocumentFormatter";
import { ExamplesFeature } from "./features/Examples";
import { ExpandAliasFeature } from "./features/ExpandAlias";
import { ExtensionCommandsFeature } from "./features/ExtensionCommands";
Expand Down Expand Up @@ -155,7 +154,6 @@ export function activate(context: vscode.ExtensionContext): void {
new SelectPSSARulesFeature(logger),
new CodeActionsFeature(logger),
new NewFileOrProjectFeature(),
new DocumentFormatterFeature(logger, documentSelector),
new RemoteFilesFeature(),
new DebugSessionFeature(context, sessionManager),
new PickPSHostProcessFeature(),
Expand Down
Loading

0 comments on commit 1ece440

Please sign in to comment.