1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-14 09:12:24 +01:00

Rename wrap => wrapping

This commit is contained in:
sharkdp
2020-04-22 20:34:40 +02:00
committed by David Peter
parent f034be71e7
commit a8f759c080
4 changed files with 4 additions and 4 deletions

11
src/wrapping.rs Normal file
View File

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