mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
608b6f3634
* updated to reedline generic menus * help menu with examples * generic menus in the engine * description menu template * list of menus in config * default value for menu * menu from block * generic menus examples * change to reedline git path * cargo fmt * menu name typo * remove commas from default file * added error message
36 lines
894 B
Rust
36 lines
894 B
Rust
mod commands;
|
|
mod completions;
|
|
mod config_files;
|
|
mod errors;
|
|
mod eval_file;
|
|
mod menus;
|
|
mod nu_highlight;
|
|
mod print;
|
|
mod prompt;
|
|
mod prompt_update;
|
|
mod reedline_config;
|
|
mod repl;
|
|
mod syntax_highlight;
|
|
mod util;
|
|
mod validation;
|
|
|
|
pub use commands::evaluate_commands;
|
|
pub use completions::NuCompleter;
|
|
pub use config_files::eval_config_contents;
|
|
pub use errors::CliError;
|
|
pub use eval_file::evaluate_file;
|
|
pub use menus::{DescriptionMenu, NuHelpCompleter};
|
|
pub use nu_highlight::NuHighlight;
|
|
pub use print::Print;
|
|
pub use prompt::NushellPrompt;
|
|
pub use repl::evaluate_repl;
|
|
pub use syntax_highlight::NuHighlighter;
|
|
pub use util::print_pipeline_data;
|
|
pub use util::{eval_source, gather_parent_env_vars, get_init_cwd, report_error};
|
|
pub use validation::NuValidator;
|
|
|
|
#[cfg(feature = "plugin")]
|
|
pub use config_files::add_plugin_file;
|
|
#[cfg(feature = "plugin")]
|
|
pub use config_files::read_plugin_file;
|