Add default redo cmd that works on all Platforms. Mod+Shift+Z

This commit is contained in:
Cris 2024-07-08 13:00:31 -07:00 committed by Jonatan Heyman
parent a6746167d6
commit e8971a6733
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import { keymap } from "@codemirror/view"
//import { EditorSelection, EditorState } from "@codemirror/state"
import {
indentLess, indentMore,
indentLess, indentMore, redo,
} from "@codemirror/commands"
import {
@ -61,6 +61,7 @@ export function heynoteKeymap(editor) {
["Mod-Alt-ArrowDown", newCursorBelow],
["Mod-Alt-ArrowUp", newCursorAbove],
["Mod-Shift-k", deleteLine],
["Mod-Shift-z", redo],
{key:"Mod-ArrowUp", run:gotoPreviousBlock, shift:selectPreviousBlock},
{key:"Mod-ArrowDown", run:gotoNextBlock, shift:selectNextBlock},
{key:"Ctrl-ArrowUp", run:gotoPreviousParagraph, shift:selectPreviousParagraph},