forked from extern/nushell
5077242892
* Move CliError to nu-protocol clean up comment * Enable printing errors instead of just returning them * Nicer Miette error printing in watch command
33 lines
839 B
Rust
33 lines
839 B
Rust
mod commands;
|
|
mod completions;
|
|
mod config_files;
|
|
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::{FileCompletion, NuCompleter};
|
|
pub use config_files::eval_config_contents;
|
|
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::{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;
|