mirror of
https://github.com/wez/wezterm.git
synced 2024-11-15 01:26:59 +03:00
0597684ebd
As explained in the docs included in this commit, ideally this wouldn't be needed, but due to a long-standing hinting bug in freetype <https://gitlab.freedesktop.org/freetype/freetype/-/issues/761> it seems most expedient to just render our own block glyphs, so that's what this does! refs: #433
13 lines
150 B
Python
Executable File
13 lines
150 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Print out the unicde block range
|
|
|
|
s = ""
|
|
for b in range(0x2580, 0x25A0):
|
|
s += chr(b) + " "
|
|
|
|
print(s)
|
|
print(s)
|
|
print(s)
|
|
|