File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
src/vs/workbench/contrib/chat/browser/actions Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ export function registerClearActions() {
59
59
f1 : true ,
60
60
keybinding : {
61
61
weight : KeybindingWeight . WorkbenchContrib ,
62
- primary : KeyMod . WinCtrl | KeyCode . KeyL ,
62
+ primary : KeyMod . CtrlCmd | KeyCode . KeyL ,
63
+ mac : {
64
+ primary : KeyMod . WinCtrl | KeyCode . KeyL
65
+ } ,
63
66
when : CONTEXT_IN_CHAT_SESSION
64
67
}
65
68
} ) ;
Original file line number Diff line number Diff line change @@ -317,9 +317,9 @@ export function registerChatCodeBlockActions() {
317
317
isHiddenByDefault : true ,
318
318
} ,
319
319
keybinding : {
320
- primary : KeyMod . WinCtrl | KeyCode . Enter ,
321
- win : {
322
- primary : KeyMod . CtrlCmd | KeyMod . Alt | KeyCode . Enter
320
+ primary : KeyMod . CtrlCmd | KeyMod . Alt | KeyCode . Enter ,
321
+ mac : {
322
+ primary : KeyMod . WinCtrl | KeyCode . Enter ,
323
323
} ,
324
324
weight : KeybindingWeight . EditorContrib
325
325
}
You can’t perform that action at this time.
0 commit comments