fix: fix End key handler, fix #2446

This commit is contained in:
Philipp Kühn 2022-01-27 09:07:03 +01:00
parent 31efb0802e
commit b584920ea1

View File

@ -61,7 +61,7 @@ export const Keymap = Extension.create({
const pcKeymap = {
...baseKeymap,
Home: () => this.editor.commands.selectTextblockStart(),
End: () => this.editor.commands.selectTextblockStart(),
End: () => this.editor.commands.selectTextblockEnd(),
}
const macKeymap = {