File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed
src/vs/workbench/contrib/chat/browser/actions Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change 55
66import { alert } from '../../../../../base/browser/ui/aria/aria.js' ;
77import { localize } from '../../../../../nls.js' ;
8- import { Action2 , MenuId , registerAction2 } from '../../../../../platform/actions/common/actions.js' ;
8+ import { Action2 , registerAction2 } from '../../../../../platform/actions/common/actions.js' ;
99import { ContextKeyExpr } from '../../../../../platform/contextkey/common/contextkey.js' ;
1010import { ServicesAccessor } from '../../../../../platform/instantiation/common/instantiation.js' ;
1111import { KeybindingWeight } from '../../../../../platform/keybinding/common/keybindingsRegistry.js' ;
@@ -28,20 +28,13 @@ class AnnounceChatConfirmationAction extends Action2 {
2828 f1 : true ,
2929 keybinding : {
3030 weight : KeybindingWeight . WorkbenchContrib ,
31- primary : KeyMod . Alt | KeyCode . KeyA ,
31+ primary : KeyMod . CtrlCmd | KeyCode . KeyA | KeyMod . Shift ,
3232 when : ContextKeyExpr . and (
3333 ChatContextKeys . location . isEqualTo ( ChatAgentLocation . Panel ) ,
3434 ChatContextKeys . inChatSession ,
3535 CONTEXT_ACCESSIBILITY_MODE_ENABLED
3636 )
37- } ,
38- menu : [
39- {
40- id : MenuId . ChatConfirmationMenu ,
41- when : ChatContextKeys . inChatSession ,
42- group : '0_main'
43- }
44- ]
37+ }
4538 } ) ;
4639 }
4740
You can’t perform that action at this time.
0 commit comments