We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a165c4d + f551e22 commit 4da2238Copy full SHA for 4da2238
src/plugin/operationHistory.ts
@@ -81,7 +81,7 @@ export default function (mei: MindElixirInstance) {
81
}
82
83
mei.map.addEventListener('keydown', (e: KeyboardEvent) => {
84
- if ((e.metaKey || e.ctrlKey) && e.shiftKey && e.key === 'Z') mei.redo()
+ if ((e.metaKey || e.ctrlKey) && ((e.shiftKey && e.key === 'Z') || e.key === 'y')) mei.redo()
85
else if ((e.metaKey || e.ctrlKey) && e.key === 'z') mei.undo()
86
})
87
0 commit comments