Add config command (#5607)

* Add config command

* Format code

Co-authored-by: Frank Zhang <v-frankz@microsoft.com>
This commit is contained in:
Kangaxx-0 2022-05-21 20:13:58 -07:00 committed by GitHub
parent 9e5e9819d6
commit 06f5199570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 187 additions and 0 deletions

View File

@ -315,6 +315,8 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
LetEnv,
LoadEnv,
WithEnv,
ConfigNu,
ConfigEnv,
};
// Math

View File

@ -0,0 +1,80 @@
use nu_engine::env_to_strings;
use nu_protocol::{
ast::Call,
engine::{Command, EngineState, Stack},
Category, Example, PipelineData, ShellError, Signature, Span, Spanned,
};
use crate::ExternalCommand;
use super::utils::get_editor;
#[derive(Clone)]
pub struct ConfigEnv;
impl Command for ConfigEnv {
fn name(&self) -> &str {
"config env"
}
fn signature(&self) -> Signature {
Signature::build(self.name()).category(Category::Env)
}
fn usage(&self) -> &str {
"Edit nu environment configurations"
}
fn examples(&self) -> Vec<Example> {
vec![Example {
description: "allow user to open and update nu env",
example: "config env",
result: None,
}]
}
fn run(
&self,
engine_state: &EngineState,
stack: &mut Stack,
_call: &Call,
input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
let env_vars_str = env_to_strings(engine_state, stack)?;
let mut config_path = match nu_path::config_dir() {
Some(path) => path,
None => {
return Err(ShellError::GenericError(
"Could not find nu env path".to_string(),
"Could not find nu env path".to_string(),
None,
None,
Vec::new(),
));
}
};
config_path.push("nushell");
let mut nu_config = config_path.clone();
nu_config.push("env.nu");
let name = Spanned {
item: get_editor(engine_state, stack),
span: Span { start: 0, end: 0 },
};
let args = vec![Spanned {
item: nu_config.to_string_lossy().to_string(),
span: Span { start: 0, end: 0 },
}];
let command = ExternalCommand {
name,
args,
redirect_stdout: false,
redirect_stderr: false,
env_vars: env_vars_str,
};
command.run_with_input(engine_state, stack, input)
}
}

View File

@ -0,0 +1,80 @@
use nu_engine::env_to_strings;
use nu_protocol::{
ast::Call,
engine::{Command, EngineState, Stack},
Category, Example, PipelineData, ShellError, Signature, Span, Spanned,
};
use crate::ExternalCommand;
use super::utils::get_editor;
#[derive(Clone)]
pub struct ConfigNu;
impl Command for ConfigNu {
fn name(&self) -> &str {
"config nu"
}
fn signature(&self) -> Signature {
Signature::build(self.name()).category(Category::Env)
}
fn usage(&self) -> &str {
"Edit nu configurations"
}
fn examples(&self) -> Vec<Example> {
vec![Example {
description: "allow user to open and update nu config",
example: "config nu",
result: None,
}]
}
fn run(
&self,
engine_state: &EngineState,
stack: &mut Stack,
_call: &Call,
input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
let env_vars_str = env_to_strings(engine_state, stack)?;
let mut config_path = match nu_path::config_dir() {
Some(path) => path,
None => {
return Err(ShellError::GenericError(
"Could not find nu config path".to_string(),
"Could not find nu config path".to_string(),
None,
None,
Vec::new(),
));
}
};
config_path.push("nushell");
let mut nu_config = config_path.clone();
nu_config.push("config.nu");
let name = Spanned {
item: get_editor(engine_state, stack),
span: Span { start: 0, end: 0 },
};
let args = vec![Spanned {
item: nu_config.to_string_lossy().to_string(),
span: Span { start: 0, end: 0 },
}];
let command = ExternalCommand {
name,
args,
redirect_stdout: false,
redirect_stderr: false,
env_vars: env_vars_str,
};
command.run_with_input(engine_state, stack, input)
}
}

View File

@ -0,0 +1,5 @@
mod config_env;
mod config_nu;
mod utils;
pub use config_env::ConfigEnv;
pub use config_nu::ConfigNu;

View File

@ -0,0 +1,17 @@
use nu_protocol::engine::{EngineState, Stack};
pub(crate) fn get_editor(engine_state: &EngineState, stack: &mut Stack) -> String {
let config = engine_state.get_config();
let env_vars = stack.get_env_vars(engine_state);
if !config.buffer_editor.is_empty() {
config.buffer_editor.clone()
} else if let Some(value) = env_vars.get("EDITOR") {
value.as_string().expect("Unknown type")
} else if let Some(value) = env_vars.get("VISUAL") {
value.as_string().expect("Unknown type")
} else if cfg!(target_os = "windows") {
"notepad".to_string()
} else {
"nano".to_string()
}
}

View File

@ -1,8 +1,11 @@
mod config;
mod env_command;
mod let_env;
mod load_env;
mod with_env;
pub use config::ConfigEnv;
pub use config::ConfigNu;
pub use env_command::Env;
pub use let_env::LetEnv;
pub use load_env::LoadEnv;