nu-explore 0.113.0

Nushell table pager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Explore config TUI - an interactive configuration viewer and editor.
//!
//! This module provides the `explore config` command which launches a TUI
//! for viewing and editing nushell configuration interactively.

mod app;
mod command;
mod conversion;
mod example_data;
mod input;
mod syntax_highlight;
mod tree;
mod tui;
mod types;

pub use command::ExploreConfigCommand;