提交 a4b96a02 编写于 作者: D Daniel Imms

Use editor.next/prevChange keybinding for diff navigation

Fixes #53062
上级 65991760
......@@ -224,7 +224,7 @@ function registerDiffEditorCommands(): void {
id: 'workbench.action.compareEditor.nextChange',
weight: KeybindingWeight.WorkbenchContrib,
when: TextCompareEditorVisibleContext,
primary: null,
primary: KeyMod.Alt | KeyCode.F5,
handler: accessor => navigateInDiffEditor(accessor, true)
});
......@@ -232,7 +232,7 @@ function registerDiffEditorCommands(): void {
id: 'workbench.action.compareEditor.previousChange',
weight: KeybindingWeight.WorkbenchContrib,
when: TextCompareEditorVisibleContext,
primary: null,
primary: KeyMod.Alt | KeyMod.Shift | KeyCode.F5,
handler: accessor => navigateInDiffEditor(accessor, false)
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册