mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 19:59:02 +08:00
894c732d29
* chore(pm): update all prosemirror package dependencies * rchore(core): remove filterTransaction from state * fix(demo): fix typings in vue demo * feat(core): add missing prosemirror commands for joining textblocks * adoc: added documentation for missing commands --------- Co-authored-by: bdbch <dominik@bdbch.com>
9 lines
305 B
Markdown
9 lines
305 B
Markdown
# joinTextblockForward
|
|
A more limited form of joinForward that only tries to join the current textblock to the one after it, if the cursor is at the end of a textblock. [See also](https://prosemirror.net/docs/ref/#commands.joinTextblockForward)
|
|
|
|
## Usage
|
|
```js
|
|
editor.commands.joinTextblockForward()
|
|
```
|
|
|