mirror of
https://github.com/nushell/nushell.git
synced 2025-04-23 20:58:19 +02:00
* config get command * config remove command * config set command * config command * config commands
49 lines
1.3 KiB
Rust
49 lines
1.3 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Primitive, Signature, UntaggedValue};
|
|
|
|
pub struct SubCommand;
|
|
|
|
impl WholeStreamCommand for SubCommand {
|
|
fn name(&self) -> &str {
|
|
"config path"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("config path")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"return the path to the config file"
|
|
}
|
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
path(args)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Get the path to the current config file",
|
|
example: "config path",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|
|
|
|
pub fn path(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let name = args.call_info.name_tag.clone();
|
|
|
|
if let Some(global_cfg) = &mut args.configs().lock().global_config {
|
|
let value = UntaggedValue::Primitive(Primitive::FilePath(global_cfg.file_path.clone()))
|
|
.into_value(name);
|
|
|
|
Ok(OutputStream::one(value))
|
|
} else {
|
|
let value = UntaggedValue::Error(crate::commands::config::err_no_global_cfg_present())
|
|
.into_value(name);
|
|
|
|
Ok(OutputStream::one(value))
|
|
}
|
|
}
|