Ethan P.

Results 146 comments of Ethan P.

> It would be great if bat could have an option to pre-filter out all color ANSI codes. I could actually make a PR for this once #2544 is merged....

I investigated this issue a bit to see if it's something that we can fix on our end, or if it's a problem with `man`. I set `MANPAGER` to `sh...

Further developments on my investigation into this: 1. @sharkdp found out that the backspaces are inserted by `MANROFFOPT='-c'` in a process known as "overtyping." Basically, when printing to an automated...

Seeing this issue, I wanted to see how musl (Alpine's libc implementation) stacked up against glibc. ## Testing Methodolgy Unfortunately, I don't have a non-64-bit x86 machine laying around. I...

Good catch! I suspect what's happening here is that the "tmux" there is actually: ``` ^[[33m tmux ^[[0m ~~~~~~ ~~~~~ yellow reset ``` The reset (SGR RESET) clears all the...

Hey @nkh, if it's not too much trouble, would you be able to provide me with a text file and theme to reproduce this issue? I'm using your example above,...

Unfortunately, this isn't natively possible through `bat`. It is possible, though! For a bit of context, the way that `bat` currently works is by pre-processing the source file into something...

Just to clarify, when you mean the line is wrapped, do you mean like the screenshot on the left, or the screenshot on the right? The wrapping on the left...

Does this issue still occur? Unfortunately, I'm not able to reproduce it on either MacOS or Arch Linux using the latest version of `nushell`. If it does, are you able...

This is already possible through the `--pager` option :) The only caveat is that you need to have `$LESS` set to support ANSI colour codes by default (e.g. `export LESS="-R"`),...