mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
0866e5d213
This commit annotates fonts with a boolean that indicates whether we think it contains glyphs with emoji presentation, and then passes the cluster.presentation field down to the shaper. If the presentation doesn't match the current font in the fallback, then it will be skipped until we exhaust its options. `wezterm ls-fonts` also shows whether we think a font has emoji presentation. refs: #997
10 lines
396 B
Bash
Executable File
10 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "\u270c Victory hand, text presentation by default"
|
|
echo -e "\u270c\ufe0e Victory hand, explicit text presentation"
|
|
echo -e "\u270c\ufe0f Victory hand, explicit emoji presentation"
|
|
|
|
echo -e "\u270a Raised fist, emoji presentation by default"
|
|
echo -e "\u270a\ufe0e Raised fist, explicit text presentation"
|
|
echo -e "\u270a\ufe0f Raised fist, explicit emoji presentation"
|