File tree Expand file tree Collapse file tree
src/vs/workbench/contrib/chat/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1408,6 +1408,16 @@ class ChatSlashStaticSlashCommandsContribution extends Disposable {
14081408 } , async ( ) => {
14091409 await instantiationService . invokeFunction ( showConfigureHooksQuickPick ) ;
14101410 } ) ) ;
1411+ this . _store . add ( slashCommandService . registerSlashCommand ( {
1412+ command : 'debug' ,
1413+ detail : nls . localize ( 'debug' , "Show Chat Debug View" ) ,
1414+ sortText : 'z3_debug' ,
1415+ executeImmediately : true ,
1416+ silent : true ,
1417+ locations : [ ChatAgentLocation . Chat ]
1418+ } , async ( ) => {
1419+ await commandService . executeCommand ( 'github.copilot.debug.showChatLogView' ) ;
1420+ } ) ) ;
14111421 this . _store . add ( slashCommandService . registerSlashCommand ( {
14121422 command : 'agents' ,
14131423 detail : nls . localize ( 'agents' , "Configure custom agents" ) ,
You can’t perform that action at this time.
0 commit comments