refactoring

This commit is contained in:
Hans Pagel
2020-09-26 11:28:48 +02:00
parent 80d5c54cb7
commit 89a5b18cae
4 changed files with 10 additions and 11 deletions

View File

@@ -2,7 +2,6 @@ import { Extension } from '@tiptap/core'
import {
redo, undo, ySyncPlugin, yUndoPlugin,
} from 'y-prosemirror'
import { keymap } from 'prosemirror-keymap'
export interface CollaborationOptions {
provider: any,
@@ -18,10 +17,12 @@ export default new Extension<CollaborationOptions>()
.plugins(({ options }) => [
ySyncPlugin(options.type),
yUndoPlugin(),
keymap({
])
.keys(() => {
return {
'Mod-z': undo,
'Mod-y': redo,
'Mod-Shift-z': redo,
}),
])
}
})
.create()