summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2017-12-11 21:12:07 +0200
committerCyril Plisko <cyril.plisko@mountall.com>2017-12-11 21:33:12 +0200
commit177ddf19770c7453f8e4de16d1b39e610faf248a (patch)
tree11ddc4c149a338f1315e63e1269e7b42a549bdeb /src/lib.rs
parente540854e602b80363031e2a26251c7e71eae17cd (diff)
Deprecate 'Pager::skip_on_notty()'
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index fd2ee78..2887603 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -126,6 +126,7 @@ impl Pager {
}
/// Instructs `Pager` to bypass invoking pager if output is not a `tty`
+ #[deprecated(since = "0.14.0", note = "'skip_on_notty' is default now")]
pub fn skip_on_notty(self) -> Self {
Self {
skip_on_notty: true,
@@ -133,6 +134,15 @@ impl Pager {
}
}
+ /// Instructs `Pager` to force invoking pager even if output is not a `tty`
+ #[doc(hidden)]
+ pub fn force_on_notty(self) -> Self {
+ Self {
+ skip_on_notty: false,
+ ..self
+ }
+ }
+
/// Gives quick assessment of successful `Pager` setup
pub fn is_on(&self) -> bool {
self.on