tiptap/packages/core/src
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
..
commands fix: revert changes to selectAll command, fix #2491 2022-02-07 10:19:46 +01:00
extensions fix: don't override behaviour of Home / End in pc keymap 2022-04-08 11:06:37 +10:00
helpers fix: revert changes to selectAll command, fix #2491 2022-02-07 10:19:46 +01:00
inputRules dont return tr in input rules and pasterules 2022-01-10 14:55:53 +01:00
pasteRules dont return tr in input rules and pasterules 2022-01-10 14:55:53 +01:00
utilities fix: add correct windows and px keymap 2022-01-25 10:52:36 +01:00
CommandManager.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
Editor.ts feat: add some improvements to CharacterCount extension (#2256), fix #1049, fix #1550, fix #1839, fix #2245 2021-12-08 21:26:30 +01:00
EventEmitter.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
Extension.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
ExtensionManager.ts fix: add way to cancel inputrules and pasterules (#2368) 2022-01-10 14:43:56 +01:00
index.ts fix: support all characters for suggestion char, fix #2385 2022-01-13 13:57:33 +01:00
InputRule.ts dont return tr in input rules and pasterules 2022-01-10 14:55:53 +01:00
Mark.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
Node.ts dependencies: update 2022-01-04 10:02:24 +01:00
NodeView.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
PasteRule.ts fix: run pasterules for pasted content, fix #2408 2022-01-20 15:04:34 +01:00
style.ts refactor: Use named exports instead of default exports (#2238) 2021-12-06 12:00:09 +01:00
Tracker.ts feat: add Tracker class 2021-06-04 23:57:41 +02:00
types.ts feat: add 'all' option to focus command, fix #2181 2021-11-22 10:17:06 +01:00