nu-explore 0.112.0

Nushell table pager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Explore regex TUI - an interactive regular expression explorer.
//!
//! This module provides the `explore regex` command which launches a TUI
//! for creating and testing regular expressions interactively.

mod app;
mod colors;
mod command;
pub mod quick_ref;
mod ui;

pub use command::ExploreRegex;