File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/extension/log/vscode-node Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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 {
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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' ) ;
You can’t perform that action at this time.
0 commit comments