UNPKG

@tiptap/core

Version:

headless rich text editor

40 lines (32 loc) 727 B
import { joinPoint } from '@tiptap/pm/transform' import { RawCommands } from '../types.js' declare module '@tiptap/core' { interface Commands<ReturnType> { joinItemForward: { /** * Join two items Forwards. * @example editor.commands.joinItemForward() */ joinItemForward: () => ReturnType } } } export const joinItemForward: RawCommands['joinItemForward'] = () => ({ state, dispatch, tr, }) => { try { const point = joinPoint(state.doc, state.selection.$from.pos, +1) if (point === null || point === undefined) { return false } tr.join(point, 2) if (dispatch) { dispatch(tr) } return true } catch (e) { return false } }