Ethan P.

Results 138 comments of Ethan P.

That is quite the customization, wow. Are those options specifically for `bat`, or are they general options that you use with `less`? If it's the latter, I think you can...

If it's not too much trouble, would you be able to add a screenshot to demonstrate? Line chopping involves some complicated interactions between `bat` and `less`, and either one of...

Hey @TyronSamaroo , Based on the logs you provided, it looks like Homebrew isn't properly installing `openssl` as a dependency of `libgit2`. The `bat` maintainers unfortunately do not maintain the...

I think having an extra opt-in command line flag to disable printing the header for binary and/or empty files would be fine. It would be especially useful when using `bat`...

Hi @marslo Your understanding of both of those is correct, yes. For your issue with `bat` displaying the file name as "STDIN", you can use the `--file-name` argument in `bat`...

I'm with @keith-hall on this. Automatically expanding environment variables will likely cause confusion, even in code. ```php function newTempFile($tmpdir) { $file = fopen("${tmpdir}/file.txt", "w"); if ($file === false) { //...

Thank you for your contribution! From my understanding of the original code, `matcher` is a [`GlobMatcher`](https://github.com/BurntSushi/ripgrep/blob/d922b7ac114c24d6800ae5f79d2967481f380c83/crates/globset/src/glob.rs#L110) from the globset crate, and the first [`glob()`](https://github.com/BurntSushi/ripgrep/blob/d922b7ac114c24d6800ae5f79d2967481f380c83/crates/globset/src/glob.rs#L129-L131) function returns a reference to the...

Converting to a draft until I can figure out why one of the tests is failing when building with the MSRV toolchain.

@einfachIrgendwer0815 Ah, that explains a lot! Thank you so much for pointing that out; it saved me a lot of debugging time. Rebased with your suggestion to fix the failing...

Love the look of your WM. Regarding the issue, @erhhung is correct. Unless asked not to, `bat` will always pipe its output into the pager (which by default, is `less`)....