Add missing block elements from Unicode Symbols for Legacy Computing Supplement

Agent-Logs-Url: https://github.com/kovidgoyal/kitty/sessions/0e5a33d1-c34e-4e8a-b161-7469ab770c05

Co-authored-by: kovidgoyal <1308621+kovidgoyal@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-11 04:24:29 +00:00
committed by GitHub
parent 564c964ed0
commit 76c76381b8
4 changed files with 84 additions and 0 deletions

View File

@@ -1216,3 +1216,7 @@ box_chars = { # {{{
} # }}}
for ch in range(0x1cd00, 0x1cde5+1): # octants
box_chars.add(chr(ch))
for ch in range(0x1cc21, 0x1cc30): # separated block quadrants (supplement)
box_chars.add(chr(ch))
for ch in range(0x1ce51, 0x1ceb0): # separated block sextants, sixteenth blocks, quarter parts (supplement)
box_chars.add(chr(ch))