jiq 2.21.1

Interactive JSON query tool with real-time output
1
2
3
4
5
6
7
8
9
10
11
//! Search module
//!
//! Provides text search functionality within the results pane.
//! Users can search for text, see matches highlighted, and navigate between matches.

mod matcher;
pub mod search_events;
pub mod search_render;
mod search_state;

pub use search_state::{Match, SearchState};