Skip to content

Commit

Permalink
fix: fix End key handler, fix #2446
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Kühn authored and Philipp Kühn committed Jan 27, 2022
1 parent 31efb08 commit b584920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/extensions/keymap.ts
Expand Up @@ -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 = {
Expand Down

0 comments on commit b584920

Please sign in to comment.