Skip to content

Commit c77d5d9

Browse files
committed
chore: update command
1 parent 9e602bd commit c77d5d9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

extensions/copilot/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2488,8 +2488,8 @@
24882488
"category": "Developer"
24892489
},
24902490
{
2491-
"command": "github.copilot.debug.showNodeSystemCertificatesErrors",
2492-
"title": "%github.copilot.command.showNodeSystemCertificatesErrors%",
2491+
"command": "github.copilot.debug.showNodeSystemCertificates",
2492+
"title": "%github.copilot.command.showNodeSystemCertificates%",
24932493
"category": "Developer"
24942494
},
24952495
{

extensions/copilot/package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
"github.copilot.chat.attachFile": "Add File to Chat",
209209
"github.copilot.chat.attachSelection": "Add Selection to Chat",
210210
"github.copilot.command.collectDiagnostics": "Chat Diagnostics",
211-
"github.copilot.command.showNodeSystemCertificatesErrors": "Show Node.js System Certificates Errors",
211+
"github.copilot.command.showNodeSystemCertificates": "Show Node.js System Certificates",
212212
"github.copilot.command.inlineEdit.clearCache": "Clear Inline Suggestion Cache",
213213
"github.copilot.command.inlineEdit.reportNotebookNESIssue": "Report Notebook Inline Suggestion Issue",
214214
"github.copilot.command.showNotebookLog": "Show Chat Log Notebook",

extensions/copilot/src/extension/log/vscode-node/loggingActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ In corporate networks: [Troubleshooting firewall settings for GitHub Copilot](ht
250250
// Internal command is not declared in package.json so it can be used from the welcome views while the extension is being activated.
251251
this._context.subscriptions.push(vscode.commands.registerCommand('github.copilot.debug.collectDiagnostics.internal', collectDiagnostics));
252252
this._context.subscriptions.push(vscode.commands.registerCommand('github.copilot.debug.showOutputChannel.internal', () => outputChannel.show()));
253-
this._context.subscriptions.push(vscode.commands.registerCommand('github.copilot.debug.showNodeSystemCertificatesErrors', async () => {
253+
this._context.subscriptions.push(vscode.commands.registerCommand('github.copilot.debug.showNodeSystemCertificates', async () => {
254254
const result: Record<string, unknown> = {};
255255
try {
256256
const certs = tls.getCACertificates('system');

0 commit comments

Comments
 (0)