1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
use crate::prelude::*; use nu_engine::CommandArgs; use nu_engine::WholeStreamCommand; use nu_errors::ShellError; use nu_protocol::{ReturnSuccess, Signature, UntaggedValue}; use nu_stream::ActionStream; pub struct Command; impl WholeStreamCommand for Command { fn name(&self) -> &str { "config" } fn signature(&self) -> Signature { Signature::build("config") } fn usage(&self) -> &str { "Configuration management." } fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> { let name = args.call_info.name_tag; if let Some(global_cfg) = &args.configs.lock().global_config { let result = global_cfg.vars.clone(); Ok(vec![ReturnSuccess::value( UntaggedValue::Row(result.into()).into_value(name), )] .into_iter() .to_action_stream()) } else { Ok(vec![ReturnSuccess::value(UntaggedValue::Error( crate::commands::config::err_no_global_cfg_present(), ))] .into_iter() .to_action_stream()) } } }