mirror of
https://github.com/nushell/nushell.git
synced 2024-11-15 13:04:34 +01:00
More shell fixes (#673)
This commit is contained in:
parent
affb9696c7
commit
058738c48c
@ -1,7 +1,7 @@
|
|||||||
use nu_engine::CallExt;
|
use nu_engine::{current_dir, CallExt};
|
||||||
use nu_protocol::ast::Call;
|
use nu_protocol::ast::Call;
|
||||||
use nu_protocol::engine::{Command, EngineState, Stack};
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
||||||
use nu_protocol::{Category, PipelineData, Signature, SyntaxShape, Value};
|
use nu_protocol::{Category, PipelineData, ShellError, Signature, SyntaxShape, Value};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Cd;
|
pub struct Cd;
|
||||||
@ -29,18 +29,66 @@ impl Command for Cd {
|
|||||||
_input: PipelineData,
|
_input: PipelineData,
|
||||||
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
||||||
let path_val: Option<Value> = call.opt(engine_state, stack, 0)?;
|
let path_val: Option<Value> = call.opt(engine_state, stack, 0)?;
|
||||||
|
let cwd = current_dir(engine_state, stack)?;
|
||||||
|
|
||||||
let (path, span) = match path_val {
|
let (path, span) = match path_val {
|
||||||
Some(v) => (v.as_string()?, v.span()?),
|
Some(v) => {
|
||||||
|
let path = v.as_path()?;
|
||||||
|
if !path.exists() {
|
||||||
|
return Err(ShellError::DirectoryNotFound(v.span()?));
|
||||||
|
}
|
||||||
|
|
||||||
|
let path = nu_path::canonicalize_with(path, &cwd)?;
|
||||||
|
(path.to_string_lossy().to_string(), v.span()?)
|
||||||
|
}
|
||||||
None => {
|
None => {
|
||||||
let path = nu_path::expand_tilde("~");
|
let path = nu_path::expand_tilde("~");
|
||||||
(path.to_string_lossy().to_string(), call.head)
|
(path.to_string_lossy().to_string(), call.head)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let path_value = Value::String { val: path, span };
|
||||||
|
let cwd = Value::String {
|
||||||
|
val: cwd.to_string_lossy().to_string(),
|
||||||
|
span: call.head,
|
||||||
|
};
|
||||||
|
|
||||||
|
let shells = stack.get_env_var(engine_state, "NUSHELL_SHELLS");
|
||||||
|
let mut shells = if let Some(v) = shells {
|
||||||
|
v.as_list()
|
||||||
|
.map(|x| x.to_vec())
|
||||||
|
.unwrap_or_else(|_| vec![cwd])
|
||||||
|
} else {
|
||||||
|
vec![cwd]
|
||||||
|
};
|
||||||
|
|
||||||
|
let current_shell = stack.get_env_var(engine_state, "NUSHELL_CURRENT_SHELL");
|
||||||
|
let current_shell = if let Some(v) = current_shell {
|
||||||
|
v.as_integer().unwrap_or_default() as usize
|
||||||
|
} else {
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
|
shells[current_shell] = path_value.clone();
|
||||||
|
|
||||||
|
stack.add_env_var(
|
||||||
|
"NUSHELL_SHELLS".into(),
|
||||||
|
Value::List {
|
||||||
|
vals: shells,
|
||||||
|
span: call.head,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
stack.add_env_var(
|
||||||
|
"NUSHELL_CURRENT_SHELL".into(),
|
||||||
|
Value::Int {
|
||||||
|
val: current_shell as i64,
|
||||||
|
span: call.head,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
//FIXME: this only changes the current scope, but instead this environment variable
|
//FIXME: this only changes the current scope, but instead this environment variable
|
||||||
//should probably be a block that loads the information from the state in the overlay
|
//should probably be a block that loads the information from the state in the overlay
|
||||||
stack.add_env_var("PWD".into(), Value::String { val: path, span });
|
stack.add_env_var("PWD".into(), path_value);
|
||||||
Ok(PipelineData::new(call.head))
|
Ok(PipelineData::new(call.head))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,14 +34,20 @@ impl Command for Enter {
|
|||||||
_input: PipelineData,
|
_input: PipelineData,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
let new_path: Value = call.req(engine_state, stack, 0)?;
|
let new_path: Value = call.req(engine_state, stack, 0)?;
|
||||||
|
let path_span = new_path.span()?;
|
||||||
|
|
||||||
|
let new_path = new_path.as_path()?;
|
||||||
|
if !new_path.exists() {
|
||||||
|
return Err(ShellError::DirectoryNotFound(path_span));
|
||||||
|
}
|
||||||
|
|
||||||
let cwd = current_dir(engine_state, stack)?;
|
let cwd = current_dir(engine_state, stack)?;
|
||||||
|
let new_path = nu_path::canonicalize_with(new_path, &cwd)?;
|
||||||
|
|
||||||
if let Ok(s) = new_path.as_path() {
|
let new_path = Value::String {
|
||||||
if !s.exists() {
|
val: new_path.to_string_lossy().to_string(),
|
||||||
return Err(ShellError::DirectoryNotFound(new_path.span()?));
|
span: call.head,
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
let cwd = Value::String {
|
let cwd = Value::String {
|
||||||
val: cwd.to_string_lossy().to_string(),
|
val: cwd.to_string_lossy().to_string(),
|
||||||
|
Loading…
Reference in New Issue
Block a user