We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65d85eb commit 9618c04Copy full SHA for 9618c04
Changes
@@ -1,6 +1,9 @@
1
Revision history for Terminal-Capabilities
2
3
{{$NEXT}}
4
+ [Features]
5
+ - Autodetect emoji fixes expected in VTE 0.84
6
+
7
8
0.0.13 2025-11-09T00:51:34-08:00
9
[Features]
lib/Terminal/Capabilities/Autodetect.rakumod
@@ -149,6 +149,14 @@ sub terminal-env-detect() is export {
149
$emoji-text = True;
150
$emoji-color = True;
151
$emoji-reg = True;
152
153
+ # Planned for VTE 0.84 AKA VTE/8400
154
+ # See https://gitlab.gnome.org/GNOME/vte/-/issues/2909
155
+ if $version >= 8400 {
156
+ $emoji-skin = True;
157
+ $emoji-iso = True;
158
+ $emoji-zwj = True;
159
+ }
160
}
161
162
# Mixed among VTEs:
0 commit comments