mirror of
https://github.com/nushell/nushell
synced 2025-01-15 22:54:16 +00:00
Add config command (#5607)
* Add config command * Format code Co-authored-by: Frank Zhang <v-frankz@microsoft.com>
This commit is contained in:
parent
9e5e9819d6
commit
06f5199570
6 changed files with 187 additions and 0 deletions
|
@ -315,6 +315,8 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
|
||||||
LetEnv,
|
LetEnv,
|
||||||
LoadEnv,
|
LoadEnv,
|
||||||
WithEnv,
|
WithEnv,
|
||||||
|
ConfigNu,
|
||||||
|
ConfigEnv,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Math
|
// Math
|
||||||
|
|
80
crates/nu-command/src/env/config/config_env.rs
vendored
Normal file
80
crates/nu-command/src/env/config/config_env.rs
vendored
Normal 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)
|
||||||
|
}
|
||||||
|
}
|
80
crates/nu-command/src/env/config/config_nu.rs
vendored
Normal file
80
crates/nu-command/src/env/config/config_nu.rs
vendored
Normal 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)
|
||||||
|
}
|
||||||
|
}
|
5
crates/nu-command/src/env/config/mod.rs
vendored
Normal file
5
crates/nu-command/src/env/config/mod.rs
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
mod config_env;
|
||||||
|
mod config_nu;
|
||||||
|
mod utils;
|
||||||
|
pub use config_env::ConfigEnv;
|
||||||
|
pub use config_nu::ConfigNu;
|
17
crates/nu-command/src/env/config/utils.rs
vendored
Normal file
17
crates/nu-command/src/env/config/utils.rs
vendored
Normal 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()
|
||||||
|
}
|
||||||
|
}
|
3
crates/nu-command/src/env/mod.rs
vendored
3
crates/nu-command/src/env/mod.rs
vendored
|
@ -1,8 +1,11 @@
|
||||||
|
mod config;
|
||||||
mod env_command;
|
mod env_command;
|
||||||
mod let_env;
|
mod let_env;
|
||||||
mod load_env;
|
mod load_env;
|
||||||
mod with_env;
|
mod with_env;
|
||||||
|
|
||||||
|
pub use config::ConfigEnv;
|
||||||
|
pub use config::ConfigNu;
|
||||||
pub use env_command::Env;
|
pub use env_command::Env;
|
||||||
pub use let_env::LetEnv;
|
pub use let_env::LetEnv;
|
||||||
pub use load_env::LoadEnv;
|
pub use load_env::LoadEnv;
|
||||||
|
|
Loading…
Reference in a new issue