FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Replace `GenerateBugReport` by andyleejordan · Pull Request #5334 · PowerShell/vscode-powershell · GitHub

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .json  (1) .ts  (3) All 2 file types selected
Only manifest files
Deleted files Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
11 changes: 0 additions & 11 deletions package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,6 @@
"title": "Open PowerShell Extension Logs Folder",
"category": "PowerShell"
},
{
"command": "PowerShell.GenerateBugReport",
"title": "Upload Bug Report to GitHub",
"category": "PowerShell"
},
{
"command": "PowerShell.OpenInISE",
"title": "Open Current File in PowerShell ISE",
Expand Down Expand Up @@ -1150,12 +1145,6 @@
"type": "number",
"default": 240,
"markdownDescription": "Specifies how many seconds the extension will wait for the LSP server, PowerShell Editor Services, to connect. The default is four minutes; try increasing this value if your computer is particularly slow (often caused by overactive anti-malware programs)."
},
"powershell.bugReporting.project": {
"type": "string",
"default": "https://github.com/PowerShell/vscode-powershell",
"markdownDescription": "**Deprecated:** Specifies the URL of the GitHub project in which to generate bug reports.",
"markdownDeprecationMessage": "**Deprecated:** This setting was never meant to be changed!"
}
}
}
Expand Down
2 changes: 0 additions & 2 deletions src/extension.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
ExternalApiFeature,
type IPowerShellExtensionClient,
} from "./features/ExternalApi";
import { GenerateBugReportFeature } from "./features/GenerateBugReport";
import { GetCommandsFeature } from "./features/GetCommands";
import { HelpCompletionFeature } from "./features/HelpCompletion";
import { ISECompatibilityFeature } from "./features/ISECompatibility";
Expand Down Expand Up @@ -162,7 +161,6 @@ export async function activate(
// Register commands that do not require Language client
commandRegistrations = [
new ExamplesFeature(),
new GenerateBugReportFeature(sessionManager),
new ISECompatibilityFeature(),
new OpenInISEFeature(),
new PesterTestsFeature(sessionManager, logger),
Expand Down
57 changes: 0 additions & 57 deletions src/features/GenerateBugReport.ts

This file was deleted.

6 changes: 4 additions & 2 deletions src/session.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -1270,8 +1270,10 @@ Type 'help' to get help.
{
prompt: "Open an Issue",
action: async (): Promise<void> => {
await vscode.commands.executeCommand(
"PowerShell.GenerateBugReport",
await vscode.env.openExternal(
vscode.Uri.parse(
"https://github.com/PowerShell/vscode-powershell/issues/new/choose",
),
);
},
},
Expand Down
Loading

Back | FazBrowse Home | New Git URL