terminal-vga: handle bim's indent line character specially

This commit is contained in:
K. Lange 2019-07-05 16:47:59 +09:00
parent f4e7a13efe
commit 7305001ac9

View File

@ -570,6 +570,8 @@ uint32_t ununicode(uint32_t c) {
case L'': return 252;
case L'²': return 253;
case L'': return 254;
/* Special cases */
case L'': return 179; /* Replace with vertical bar to support bim better */
}
return 4;
}