add replaceRange command

This commit is contained in:
Philipp Kühn
2021-01-20 20:37:53 +01:00
parent 1880b43e37
commit 55d767d94c
5 changed files with 34 additions and 20 deletions

View File

@@ -18,6 +18,7 @@ import * as liftEmptyBlock from '../commands/liftEmptyBlock'
import * as liftListItem from '../commands/liftListItem'
import * as newlineInCode from '../commands/newlineInCode'
import * as replace from '../commands/replace'
import * as replaceRange from '../commands/replaceRange'
import * as resetNodeAttributes from '../commands/resetNodeAttributes'
import * as scrollIntoView from '../commands/scrollIntoView'
import * as selectAll from '../commands/selectAll'
@@ -65,6 +66,7 @@ export const Commands = Extension.create({
...liftListItem,
...newlineInCode,
...replace,
...replaceRange,
...resetNodeAttributes,
...scrollIntoView,
...selectAll,