Results 6 comments of Henry Hoff

I have a script to export themes from Emacs, I plan on doing the counterpart Modus Operandi (light), but I could do other popular themes maybe.

I think the Modus themes are the most prominent themes that were designed for Emacs, instead of being ported to it. If I come up with any other themes I'll...

The terminal emulator is responsible for the replacement behavior of carriage returns. This means that the expected behavior is to print out the whole string, including the carriage return.

You can see this with the following commands: ```sh # Replacement happens python -c 'print("This text will be replaced\rWith this text")' # No replacement, file is 42 bytes python -c...

As for the second issue, the carriage return is interpreted before being sent to Piston so python sees a carriage return (functionally a new line) instead of `\r`. You can...

If you want to keep the escape code intact you should escape the escape character, like so: `string = """\\r"""`