Results 87 comments of flagarde

Hi, I found back this : https://gist.github.com/mlocati/21a9233ac83f7d3d7837535bc109b3b7 to check version of windows and apply color. It should solve one or two point of @MCWertGaming post https://github.com/adoxa/ansicon seems to do what...

I don't know if I will have time but I could try if I can. Indeed the 'ansicon' needs to be refactored and included but it gives a hints on...

Yes is what I was thinking. Determine the windows version then depending on this turn the raw mode with ANSI handling or not. If windows is too old we need...

Seems ansicon has to do a lot of hacks we don't need to do as we don't need to `injects a DLL into a process, hooking its functions.` . I...

Well correct me if I'm wrong. For now we let windows deals with the ANSI so if we send : `\033[1mHello` windows eat the `\033[1m` interpret it and do all...

I have to check on old windows but I think is not back ported. I was hoping the fmt library which deals with color text too had color support on...

Yes sure the print solution hack is not a good solution but the ANSI parsing done inside could be a hint how to parse ANSI in case it should be...

I have tried to compile on windows 8.1 with latest MSVC and as you mentioned some flags are problematic. Using some code to test the version from https://gist.github.com/mlocati/21a9233ac83f7d3d7837535bc109b3b7 I has...

Hi, yes I can do a PR.. If I understand correctly, on windows, if the terminal support ANSI escape code it support color... For color stufs it should be easy...

Ok I will do the PR for the runtime and we can have cross-check For the color i was thinking to fix the 16 colors first and disable the ANSII...