提交 4d2350a8 编写于 作者: B Benjamin Pasero

Keybinding conflict (scrollPageDown, scrollPageUp) (fixes #7047)

上级 d808ba31
......@@ -231,10 +231,12 @@ registerCoreCommand(H.ScrollLineDown, {
});
registerCoreCommand(H.ScrollPageUp, {
primary: KeyMod.CtrlCmd | KeyCode.PageUp
primary: KeyMod.CtrlCmd | KeyCode.PageUp,
win: { primary: KeyMod.Alt | KeyCode.PageUp }
});
registerCoreCommand(H.ScrollPageDown, {
primary: KeyMod.CtrlCmd | KeyCode.PageDown
primary: KeyMod.CtrlCmd | KeyCode.PageDown,
win: { primary: KeyMod.Alt | KeyCode.PageDown }
});
registerCoreCommand(H.CursorColumnSelectLeft, {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册