1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-17 02:32:26 +01:00

remove all matches

This commit is contained in:
MarcoIeni
2020-11-15 13:29:09 +01:00
committed by David Peter
parent 2ccff145ed
commit f5531cc7fa
2 changed files with 10 additions and 2 deletions

View File

@@ -150,7 +150,11 @@ impl OutputType {
#[cfg(feature = "paging")]
pub(crate) fn is_pager(&self) -> bool {
matches!(self, OutputType::Pager(_))
if let OutputType::Pager(_) = self {
true
} else {
false
}
}
#[cfg(not(feature = "paging"))]