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 cf7de8e commit c5084c2Copy full SHA for c5084c2
src/terminal/adapter/charsets.hpp
@@ -43,6 +43,11 @@ namespace Microsoft::Console::VirtualTerminal
43
return rhs == lhs;
44
}
45
46
+ // Note that the 94-character sets are deliberately defined with a size of
47
+ // 95 to avoid having to test the lower bound. We just alway leave the first
48
+ // entry - which is not meant to be mapped - as a SPACE or NBSP, which is at
49
+ // least visually equivalent to leaving it untranslated.
50
+
51
typedef CharSet<L'\x20', 95> AsciiBasedCharSet;
52
typedef CharSet<L'\xa0', 95> Latin1BasedCharSet94;
53
typedef CharSet<L'\xa0', 96> Latin1BasedCharSet96;
0 commit comments