@@ -217,7 +217,7 @@ export class ArrowOutUpAction extends AbstractInlineChatAction {
217
217
precondition : ContextKeyExpr . and ( CTX_INLINE_CHAT_FOCUSED , CTX_INLINE_CHAT_INNER_CURSOR_FIRST , EditorContextKeys . isEmbeddedDiffEditor . negate ( ) , CONTEXT_ACCESSIBILITY_MODE_ENABLED . negate ( ) ) ,
218
218
keybinding : {
219
219
weight : KeybindingWeight . EditorCore ,
220
- primary : KeyCode . UpArrow
220
+ primary : KeyMod . CtrlCmd | KeyCode . UpArrow
221
221
}
222
222
} ) ;
223
223
}
@@ -235,7 +235,7 @@ export class ArrowOutDownAction extends AbstractInlineChatAction {
235
235
precondition : ContextKeyExpr . and ( CTX_INLINE_CHAT_FOCUSED , CTX_INLINE_CHAT_INNER_CURSOR_LAST , EditorContextKeys . isEmbeddedDiffEditor . negate ( ) , CONTEXT_ACCESSIBILITY_MODE_ENABLED . negate ( ) ) ,
236
236
keybinding : {
237
237
weight : KeybindingWeight . EditorCore ,
238
- primary : KeyCode . DownArrow
238
+ primary : KeyMod . CtrlCmd | KeyCode . DownArrow
239
239
}
240
240
} ) ;
241
241
}
@@ -257,11 +257,11 @@ export class FocusInlineChat extends EditorAction2 {
257
257
keybinding : [ {
258
258
weight : KeybindingWeight . EditorCore + 10 , // win against core_command
259
259
when : ContextKeyExpr . and ( CTX_INLINE_CHAT_OUTER_CURSOR_POSITION . isEqualTo ( 'above' ) , EditorContextKeys . isEmbeddedDiffEditor . negate ( ) ) ,
260
- primary : KeyCode . DownArrow ,
260
+ primary : KeyMod . CtrlCmd | KeyCode . DownArrow ,
261
261
} , {
262
262
weight : KeybindingWeight . EditorCore + 10 , // win against core_command
263
263
when : ContextKeyExpr . and ( CTX_INLINE_CHAT_OUTER_CURSOR_POSITION . isEqualTo ( 'below' ) , EditorContextKeys . isEmbeddedDiffEditor . negate ( ) ) ,
264
- primary : KeyCode . UpArrow ,
264
+ primary : KeyMod . CtrlCmd | KeyCode . UpArrow ,
265
265
} ]
266
266
} ) ;
267
267
}
@@ -280,7 +280,7 @@ export class PreviousFromHistory extends AbstractInlineChatAction {
280
280
precondition : ContextKeyExpr . and ( CTX_INLINE_CHAT_FOCUSED , CTX_INLINE_CHAT_INNER_CURSOR_START ) ,
281
281
keybinding : {
282
282
weight : KeybindingWeight . EditorCore + 10 , // win against core_command
283
- primary : KeyMod . CtrlCmd | KeyCode . UpArrow ,
283
+ primary : KeyCode . UpArrow ,
284
284
}
285
285
} ) ;
286
286
}
@@ -299,7 +299,7 @@ export class NextFromHistory extends AbstractInlineChatAction {
299
299
precondition : ContextKeyExpr . and ( CTX_INLINE_CHAT_FOCUSED , CTX_INLINE_CHAT_INNER_CURSOR_END ) ,
300
300
keybinding : {
301
301
weight : KeybindingWeight . EditorCore + 10 , // win against core_command
302
- primary : KeyMod . CtrlCmd | KeyCode . DownArrow ,
302
+ primary : KeyCode . DownArrow ,
303
303
}
304
304
} ) ;
305
305
}
0 commit comments