1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 19:02:22 +01:00

Move PagingMode to separate module

This commit is contained in:
sharkdp
2020-04-22 22:54:33 +02:00
committed by David Peter
parent 17f3a3b95d
commit 8961f7aef8
7 changed files with 24 additions and 22 deletions

View File

@@ -29,6 +29,8 @@ pub mod input;
mod less;
pub mod line_range;
mod output;
#[cfg(feature = "paging")]
pub mod paging;
mod preprocessor;
mod pretty_printer;
pub(crate) mod printer;
@@ -42,4 +44,4 @@ pub use syntax_mapping::{MappingTarget, SyntaxMapping};
pub use wrapping::WrappingMode;
#[cfg(feature = "paging")]
pub use config::PagingMode;
pub use paging::PagingMode;