tiptap/packages/core/src/extensions
Scott Sidwell d270419ad8 fix: don't override behaviour of Home / End in pc keymap
Similarly removed in Prosemirror at ProseMirror/prosemirror-commands@20371c58

For users who wish to preserve this behaviour, they can achieve this via:

```javascript
const CustomKeyboardBehaviour = Extension.create({
  addKeyboardShortcuts() {
    return {
      ['Home']: () => this.editor.commands.selectTextblockStart(),
      ['End']: () => this.editor.commands.selectTextblockEnd(),
    }
  }
})

const editor = new Editor({
  extensions: [
    // Register your custom extension with the editor.
    CustomKeyboardBehaviour,
  ]
});
```
2022-04-08 11:06:37 +10:00
..
clipboardTextSerializer.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
commands.ts feat: add selectTextblockStart and selectTextblockEnd commands 2022-01-25 10:35:39 +01:00
editable.ts add Commands interface 2021-02-10 09:59:35 +01:00
focusEvents.ts refactoring 2021-09-22 22:45:27 +02:00
index.ts refactoring 2021-09-22 22:45:27 +02:00
keymap.ts fix: don't override behaviour of Home / End in pc keymap 2022-04-08 11:06:37 +10:00
tabindex.ts fix: don’t add tabindex when readonly, fix #2458 2022-02-03 14:54:37 +01:00