27 lines
1.2 KiB
Markdown
27 lines
1.2 KiB
Markdown
---
|
||
description: The gapcursor makes sure the cursor doesn’t get stuck … in a gap.
|
||
---
|
||
|
||
# Gapcursor
|
||
[](https://www.npmjs.com/package/@tiptap/extension-gapcursor)
|
||
[](https://npmcharts.com/compare/@tiptap/extension-gapcursor?minimal=true)
|
||
|
||
This extension loads the [ProseMirror Gapcursor plugin](https://github.com/ProseMirror/prosemirror-gapcursor) by Marijn Haverbeke, which adds a gap for the cursor in places that don’t allow regular selection. For example, after a table at the end of a document.
|
||
|
||
Note that tiptap is headless, but the gapcursor needs CSS for its appearance. The [default CSS](https://github.com/ueberdosis/tiptap/tree/main/packages/core/src/style.ts) is loaded through the Editor class.
|
||
|
||
## Installation
|
||
```bash
|
||
# with npm
|
||
npm install @tiptap/extension-gapcursor
|
||
|
||
# with Yarn
|
||
yarn add @tiptap/extension-gapcursor
|
||
```
|
||
|
||
## Source code
|
||
[packages/extension-gapcursor/](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-gapcursor/)
|
||
|
||
## Usage
|
||
<tiptap-demo name="Extensions/Gapcursor"></tiptap-demo>
|