Skip to content

Commit c0bf9c0

Browse files
committed
Remove xterm ligatures addon
Also drops allowProposedApi on Terminal — Ligatures was its only consumer.
1 parent d8b77f5 commit c0bf9c0

3 files changed

Lines changed: 0 additions & 108 deletions

File tree

package-lock.json

Lines changed: 0 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"devDependencies": {
1414
"@xterm/addon-clipboard": "^0.2.0",
1515
"@xterm/addon-fit": "^0.11.0",
16-
"@xterm/addon-ligatures": "^0.10.0",
1716
"@xterm/addon-progress": "^0.2.0",
1817
"@xterm/addon-web-links": "^0.12.0",
1918
"@xterm/xterm": "^6.0.0",

src/linux.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Terminal } from "@xterm/xterm";
22
import { FitAddon } from "@xterm/addon-fit";
33
import { ClipboardAddon } from "@xterm/addon-clipboard";
4-
import { LigaturesAddon } from "@xterm/addon-ligatures";
54
import { ProgressAddon } from "@xterm/addon-progress";
65
import { WebLinksAddon } from "@xterm/addon-web-links";
76
import "@xterm/xterm/css/xterm.css";
@@ -13,7 +12,6 @@ const HOST = import.meta.env.BASE_URL + "v86/";
1312

1413
const term = new Terminal({
1514
cursorBlink: true,
16-
allowProposedApi: true,
1715
fontFamily: "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace",
1816
fontSize: 14,
1917
theme: {
@@ -33,7 +31,6 @@ const host = document.getElementById("term")!;
3331
term.open(host);
3432
term.textarea?.setAttribute("inputmode", "none");
3533
fit.fit();
36-
term.loadAddon(new LigaturesAddon());
3734

3835
const ro = new ResizeObserver(() => {
3936
try {

0 commit comments

Comments
 (0)