Files

23 lines
768 B
Markdown
Raw Permalink Normal View History

2023-11-01 10:35:10 -07:00
## @xterm/addon-unicode-graphemes
2023-05-16 18:31:31 -07:00
2023-09-11 06:06:58 -07:00
⚠️ **This addon is currently experimental and may introduce unexpected and non-standard behavior**
2023-05-16 18:31:31 -07:00
An addon providing enhanced Unicode support (include grapheme clustering) for xterm.js.
The file `src/UnicodeProperties.ts` is generated and depends on the Unicode version. See [the unicode-properties project](https://github.com/PerBothner/unicode-properties) for credits and re-generation instructions.
### Install
2023-10-31 06:18:40 -07:00
This addon is not yet published to npm
2023-05-16 18:31:31 -07:00
### Usage
```ts
2023-11-01 06:50:08 -07:00
import { Terminal } from '@xterm/xterm';
2023-11-01 10:35:10 -07:00
import { UnicodeGraphemesAddon } from '@xterm/addon-unicode-graphemes';
2023-05-16 18:31:31 -07:00
const terminal = new Terminal();
2023-09-16 08:09:22 +00:00
const unicodeGraphemesAddon = new UnicodeGraphemesAddon();
terminal.loadAddon(unicodeGraphemesAddon);
2023-05-16 18:31:31 -07:00
```