Because DISABLE_NEWLINE_AUTO_RETURN is set on Windows systems the behaviour of \n is changed so it no longer outputs Carriage Return characters and only outputs Line Feeds. I suspect this is unintended behaviour for Pastel as code such as
Console.WriteLine(Output.BrightGreen("Hello World!\nThis is an example of a bug!"));
renders as
There's a good discussion of this property here which seems to suggest it's only intended for us on some very specific (emacs) circumstances.
Because
DISABLE_NEWLINE_AUTO_RETURN
is set on Windows systems the behaviour of\n
is changed so it no longer outputs Carriage Return characters and only outputs Line Feeds. I suspect this is unintended behaviour for Pastel as code such asrenders as There's a good discussion of this property here which seems to suggest it's only intended for us on some very specific (emacs) circumstances.
Cheers!