mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-23 16:58:38 +02:00
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { Extension } from "@tiptap/core"
|
|
|
|
export const UnsetAllMarks = Extension.create({
|
|
addKeyboardShortcuts() {
|
|
return {
|
|
"Mod-\\": () => this.editor.commands.unsetAllMarks(),
|
|
}
|
|
},
|
|
})
|