diff --git a/src/bin/bat/app.rs b/src/bin/bat/app.rs index 4793c4fb..6c61215e 100644 --- a/src/bin/bat/app.rs +++ b/src/bin/bat/app.rs @@ -85,7 +85,7 @@ impl App { 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 self.matches.is_present("disable-paging") { + } else if self.matches.is_present("no-paging") { PagingMode::Never } else if inputs.iter().any(Input::is_stdin) { // If we are reading from stdin, only enable paging if we write to an diff --git a/src/bin/bat/clap_app.rs b/src/bin/bat/clap_app.rs index b7c371fe..f249321e 100644 --- a/src/bin/bat/clap_app.rs +++ b/src/bin/bat/clap_app.rs @@ -276,9 +276,11 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> { ), ) .arg( - Arg::with_name("disable-paging") + Arg::with_name("no-paging") .short("P") - .overrides_with("disable-paging") + .long("no-paging") + .alias("no-pager") + .overrides_with("no-paging") .help("Alias for --paging=never") ) .arg(