1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! Stream Pager
//!
//! A pager for streams.
#![warn(missing_docs)]
#![recursion_limit = "1024"]
#![allow(clippy::comparison_chain)]

pub mod action;
mod bar;
pub mod bindings;
mod buffer;
mod buffer_cache;
mod command;
pub mod config;
pub mod control;
mod direct;
mod display;
pub mod error;
mod event;
pub mod file;
mod help;
mod keymap_error;
#[cfg(feature = "keymap-file")]
mod keymap_file;
#[macro_use]
mod keymap_macro;
mod keymaps;
mod line;
mod line_cache;
mod line_drawing;
mod loaded_file;
mod overstrike;
pub mod pager;
mod progress;
mod prompt;
mod prompt_history;
mod refresh;
mod ruler;
mod screen;
mod search;
mod util;

pub use error::{Error, Result};
pub use file::FileIndex;
pub use pager::Pager;