mirror of
https://github.com/sharkdp/bat.git
synced 2025-03-03 01:08:35 +00: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
|
||
|
}
|
||
|
}
|