John Higgins

Results 13 comments of John Higgins

Made commits with suggested changes, ready for further review.

Added to change log and altered match expression.

I would really like to implement this. I was looking through the code base and I found this reference to [non-posix shells](https://github.com/rust-lang/rustup/blob/4c1289b2c3f3702783900934a38d7c5f912af787/src/cli/self_update/shell.rs#L72). Does a potential solution need to be discussed...

I would like to work on this one. What should the single letter abbreviation be for setting wrapping to off? Should it be implemented with -S or would a different...

Sounds good. I made a pull request (#2309) for adding `-S` and the `--chop-long-lines` option.

I figured out the problem here. You can see it on line 261 of [`src/input.rs`](https://github.com/sharkdp/bat/blob/00b7e3b864a49762d7f666ac970f992386392e33/src/input.rs) The input is being read in one line at a time or until the `EOT`...

After reading a the source code of the `cat` commands from FreeBSD source and GNU coreutils I understand why they can handle reading from `/dev/zero` and `bat` cannot. The `cat`...