UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

7 lines 235 B
import { GapCursorSelection } from '../selection'; export function setGapCursorSelection(view, pos, side) { const { state } = view; view.dispatch(state.tr.setSelection(new GapCursorSelection(state.doc.resolve(pos), side))); }