rstha
April 4, 2023, 4:25pm
2
You can tweak the precedence of your keymap using Prec
which is exported by @codemirror /state to tweak the order of execution of your key bindings. To make sure your binding runs earlier than any other bindings for the same key order you can wrap your binding in Prec.highest
import { Prec } from "@codemirror/state";
Prec.highest(
keymap.of([
{ key: "Mod-Enter", run: Command }
])
),
The default key maps can be forund here:
/// - Ctrl-Enter (Cmd-Enter on macOS): [`insertBlankLine`](#commands.insertBlankLine)
/// - Alt-l (Ctrl-l on macOS): [`selectLine`](#commands.selectLine)
/// - Ctrl-i (Cmd-i on macOS): [`selectParentSyntax`](#commands.selectParentSyntax)
/// - Ctrl-[ (Cmd-[ on macOS): [`indentLess`](#commands.indentLess)
/// - Ctrl-] (Cmd-] on macOS): [`indentMore`](#commands.indentMore)
/// - Ctrl-Alt-\\ (Cmd-Alt-\\ on macOS): [`indentSelection`](#commands.indentSelection)
/// - Shift-Ctrl-k (Shift-Cmd-k on macOS): [`deleteLine`](#commands.deleteLine)
/// - Shift-Ctrl-\\ (Shift-Cmd-\\ on macOS): [`cursorMatchingBracket`](#commands.cursorMatchingBracket)
/// - Ctrl-/ (Cmd-/ on macOS): [`toggleComment`](#commands.toggleComment).
/// - Shift-Alt-a: [`toggleBlockComment`](#commands.toggleBlockComment).
export const defaultKeymap: readonly KeyBinding[] = ([
{key: "Alt-ArrowLeft", mac: "Ctrl-ArrowLeft", run: cursorSyntaxLeft, shift: selectSyntaxLeft},
{key: "Alt-ArrowRight", mac: "Ctrl-ArrowRight", run: cursorSyntaxRight, shift: selectSyntaxRight},
{key: "Alt-ArrowUp", run: moveLineUp},
{key: "Shift-Alt-ArrowUp", run: copyLineUp},
{key: "Alt-ArrowDown", run: moveLineDown},
{key: "Shift-Alt-ArrowDown", run: copyLineDown},
{key: "Escape", run: simplifySelection},
5 Likes