fmtview 0.3.0

Fast CLI viewer for highlighting, search, and diffs across JSON, JSONL, markup, text, and Jinja
Documentation
mod cache;
mod line;
mod metrics;
mod prewarm;
mod search;
mod tail;
mod text;
mod types;
mod viewport;
mod wrap;

pub(super) use cache::*;
pub(super) use line::{rendered_row_count, wrapped_row_count};
pub(super) use metrics::*;
pub(super) use prewarm::*;
pub(super) use tail::*;
pub(super) use text::*;
pub(super) use types::*;
pub(super) use viewport::*;
pub(super) use wrap::{continuation_indent, next_wrap_end, wrap_ranges_window_indexed};

#[cfg(test)]
pub(super) use line::*;
#[cfg(test)]
pub(super) use search::*;
#[cfg(test)]
pub(super) use wrap::*;