Ethan P.

Results 160 comments of Ethan P.
trafficstars

Just a small tip: although this isn't supported right now, `bat -A`/`--show-all` can be used to achieve something similar. The `-A` option will replace invisible characters with symbols like `␛`...

Updated `batpipe` to print instructions for nushell in https://github.com/eth-p/bat-extras/commit/a0d3a9bd63b14f606497b7ab02b53a84113283e4.

What tmux version are you using, and do you have any pane styles set? If I recall correctly, the older versions didn't support background color querying at all, while the...

I was able to reproduce the behavior, and [the upstream tmux issue you mentioned](https://github.com/tmux/tmux/issues/3582) appears to be the underlying cause. Using tmux 3.5a, it will return the original terminal background...

Is it possible to provide an example of what you mean? With `batgrep`, `bat` is given the the full file name and should be able to correctly detect the syntax...

It could just be a different text color, yeah. There's a couple of things we can do to check if the bold attribute is involved, though: 1. Is it still...

Thanks for the info. Yeah, the extra bright white is just the text color used by the theme. It's using color 231 from the 256-color palette: ![](https://raw.githubusercontent.com/fidian/ansi/master/images/color-codes.png)

Good catch. I'd like some more opinions on this before making a change to the default behavior, though. The current implementation is more consistent with `bat`, but that comes at...

> - Explicitness for users > - Controllability for users > - Readability for us; developers Following those project goals, what do you think about this? - Start off from...

To respond to your answers, > ```go > func main() { > xxx := func(s, d string) error { > // handle FS > // do what users want >...