mirror of
https://github.com/sharkdp/bat.git
synced 2025-06-22 00:05:45 +01:00
Add a Default implementation for PrettyPrinter
This commit is contained in:
@ -320,6 +320,12 @@ impl<'a> PrettyPrinter<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for PrettyPrinter<'_> {
|
||||
fn default() -> Self {
|
||||
Self::new()
|
||||
}
|
||||
}
|
||||
|
||||
/// An input source for the pretty printer.
|
||||
pub struct Input<'a> {
|
||||
input: input::Input<'a>,
|
||||
|
Reference in New Issue
Block a user