1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-03-14 14:48:39 +00:00
bat/src/wrapping.rs

12 lines
203 B
Rust
Raw Normal View History

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WrappingMode {
Character,
NoWrapping,
}
impl Default for WrappingMode {
fn default() -> Self {
WrappingMode::NoWrapping
}
}