forked from extern/nushell
26f31da711
* Remove comment * Split delta and environment merging * Move table mode to a more logical place * Cleanup * Merge environment after reading default_env.nu * Fmt
34 lines
906 B
Rust
34 lines
906 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 repl::{eval_env_change_hook, eval_hook};
|
|
pub use syntax_highlight::NuHighlighter;
|
|
pub use util::{eval_source, gather_parent_env_vars, get_init_cwd, report_error, report_error_new};
|
|
pub use validation::NuValidator;
|
|
|
|
#[cfg(feature = "plugin")]
|
|
pub use config_files::add_plugin_file;
|
|
#[cfg(feature = "plugin")]
|
|
pub use config_files::read_plugin_file;
|