1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-08 19:41:45 +00:00

Add -pp for plain styling and no pager

This commit is contained in:
Ethan P
2019-05-08 18:56:02 -07:00
committed by David Peter
parent bb6594e691
commit fde00eec98
2 changed files with 7 additions and 3 deletions
+4 -1
View File
@@ -143,7 +143,10 @@ impl App {
Some("always") => PagingMode::Always,
Some("never") => PagingMode::Never,
Some("auto") | _ => {
if files.contains(&InputFile::StdIn) {
if self.matches.occurrences_of("plain") > 1 {
// If we have -pp as an option when in auto mode, the pager should be disabled.
PagingMode::Never
} else if files.contains(&InputFile::StdIn) {
// If we are reading from stdin, only enable paging if we write to an
// interactive terminal and if we do not *read* from an interactive
// terminal.