mirror of
https://github.com/sharkdp/bat.git
synced 2025-01-28 08:28:37 +01:00
13 lines
201 B
Rust
13 lines
201 B
Rust
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub enum PagingMode {
|
|
Always,
|
|
QuitIfOneScreen,
|
|
Never,
|
|
}
|
|
|
|
impl Default for PagingMode {
|
|
fn default() -> Self {
|
|
PagingMode::Never
|
|
}
|
|
}
|