Something like e io.esc_filter option would be nice. If true - it will filter escape sequences from the piping and redirecting output, if false - obviously not.
Maybe with || or something like this. I remember piping colors was really problematic in the past. Maybe we can enable it back and it will work fine now.
Need to test, but probably disabled by default and slowly testing it
On 23 May 2016, at 03:16, Anton Kochkov [email protected] wrote:
Something like e io.esc_filter option would be nice. If true - it will filter escape sequences from the piping and redirecting output, if false - obviously not.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
just use this var. it's documented in the source
if (!r_config_get_i (core->config, "scr.pipecolor")) {
pipecolor = r_config_get_i (core->config, "scr.color");
r_config_set_i (core->config, "scr.color", 0);
}
Most helpful comment
just use this var. it's documented in the source