I suggest adding the \e escape sequence that is equal to \u{1b}. It was recently also added to C# (dotnet/csharplang#7400), where it is currently a preview feature. It is mainly used for ANSI escape codes which allow you to use full 24-bit color in the terminal as well as a few formatting options. More information is in the C# issue.
I suggest adding the
\e
escape sequence that is equal to\u{1b}
. It was recently also added to C# (dotnet/csharplang#7400), where it is currently a preview feature. It is mainly used for ANSI escape codes which allow you to use full 24-bit color in the terminal as well as a few formatting options. More information is in the C# issue.