Add `bat::PrettyPrinter::clear_highlights` (fixes #1919)

pull/1920/head
rhysd 3 years ago
parent 113276a62b
commit abd69f2deb

@ -229,6 +229,14 @@ impl<'a> PrettyPrinter<'a> {
self
}
/// Clear highlighted lines added by [`PrettyPrinter::highlight`] and
/// [`PrettyPrinter::highlight_range`]. This is useful when reusing a
/// `PrettyPrinter` instance for multiple different ranges.
pub fn clear_highlights(&mut self) -> &mut Self {
self.highlighted_lines.clear();
self
}
/// Specify the highlighting theme
pub fn theme(&mut self, theme: impl AsRef<str>) -> &mut Self {
self.config.theme = theme.as_ref().to_owned();

Loading…
Cancel
Save