forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathligatures.js
More file actions
102 lines (98 loc) · 1.82 KB
/
ligatures.js
File metadata and controls
102 lines (98 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// pretty basic ligature implementation for webview
export default class LigaturesAddon {
constructor(options = {}) {
// fallback ligatures if a font does not support ligatures natively
this._fallbackLigatures =
options.fallbackLigatures ||
[
"<--",
"<---",
"<<-",
"<-",
"->",
"->>",
"-->",
"--->",
"<==",
"<===",
"<<=",
"<=",
"=>",
"=>>",
"==>",
"===>",
">=",
">>=",
"<->",
"<-->",
"<--->",
"<---->",
"<=>",
"<==>",
"<===>",
"<====>",
"<~~",
"<~",
"~>",
"~~>",
"::",
":::",
"==",
"!=",
"===",
"!==",
":=",
":-",
":+",
"<*",
"<*>",
"*>",
"<|",
"<|>",
"|>",
"+:",
"-:",
"=:",
":>",
"++",
"+++",
"<!--",
"<!---",
"<***>",
].sort((a, b) => b.length - a.length);
this._characterJoinerId = undefined;
this._terminal = undefined;
}
activate(terminal) {
this._terminal = terminal;
this._characterJoinerId = terminal.registerCharacterJoiner(
this._joinCharacters.bind(this),
);
terminal.element.style.fontFeatureSettings = `"liga" on, "calt" on`;
}
dispose() {
if (this._characterJoinerId !== undefined) {
this._terminal?.deregisterCharacterJoiner(this._characterJoinerId);
this._characterJoinerId = undefined;
}
if (this._terminal?.element) {
this._terminal.element.style.fontFeatureSettings = "";
}
}
_joinCharacters(text) {
return this._findLigatureRanges(text, this._fallbackLigatures);
}
_findLigatureRanges(text, ligatures) {
const ranges = [];
for (let i = 0; i < text.length; i++) {
for (const ligature of ligatures) {
if (text.startsWith(ligature, i)) {
ranges.push([i, i + ligature.length]);
i += ligature.length - 1;
break;
}
}
}
return ranges;
}
}