Leonard Hecker
Leonard Hecker
Can you please post the C++ code here that you're using to test this issue? Edit: Also, you didn't say whether you're using Preview or not. Can you please tell...
Here's my test code based on your original description: ```cpp #include #include #include int main() { std::setlocale(LC_CTYPE, ".UTF8"); SetConsoleOutputCP(CP_UTF8); SetConsoleCP(CP_UTF8); std::string str; std::getline(std::cin, str); std::cout
I honestly don't even know how to begin working on this. 😄 We don't really control this - we just tell WinUI our set of localized strings and it picks...
I think that's an acceptable risk.
I still don't quite understand how `_addOrMergeUserColorScheme` works without returning a `bool fixup` flag. It potentially renames the user's scheme, so why don't we need to trigger a save of...
It may take a while longer for work on #1553 to be started, and I'd be happy to implement a hotfix for this (for instance with an experimental setting). But...
> * [ ] The only way to hide the icon becomes `"icon": " "`. That's weird. but passable? Why can't we make it so that there's a differentiation between...
I believe it's this one: https://developercommunity.visualstudio.com/t/Bad-ARM64-codegen--maybe-during-constant/10583372
Hey! I work on Windows Terminal. The reason this occurs is because elvish needs to set `ENABLE_VIRTUAL_TERMINAL_INPUT` on the input handle, as otherwise we don't send VT escape sequences to...
Yes, the document you found describes our primary way of doing it right now. It's the win32-input-mode introduced here: https://github.com/microsoft/terminal/pull/6309 It's essentially a lossless 1:1 translation of `KEY_EVENT`s as VT...