mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
feat: add unalias to deprecated command (#4440)
This commit is contained in:
parent
cc171b6ad4
commit
baf6348e66
3 changed files with 39 additions and 0 deletions
|
@ -357,6 +357,7 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
|
||||||
StrDecimalDeprecated,
|
StrDecimalDeprecated,
|
||||||
StrIntDeprecated,
|
StrIntDeprecated,
|
||||||
NthDeprecated,
|
NthDeprecated,
|
||||||
|
UnaliasDeprecated,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(feature = "dataframe")]
|
#[cfg(feature = "dataframe")]
|
||||||
|
|
|
@ -3,12 +3,14 @@ mod nth;
|
||||||
mod pivot;
|
mod pivot;
|
||||||
mod str_decimal;
|
mod str_decimal;
|
||||||
mod str_int;
|
mod str_int;
|
||||||
|
mod unalias;
|
||||||
|
|
||||||
pub use insert::InsertDeprecated;
|
pub use insert::InsertDeprecated;
|
||||||
pub use nth::NthDeprecated;
|
pub use nth::NthDeprecated;
|
||||||
pub use pivot::PivotDeprecated;
|
pub use pivot::PivotDeprecated;
|
||||||
pub use str_decimal::StrDecimalDeprecated;
|
pub use str_decimal::StrDecimalDeprecated;
|
||||||
pub use str_int::StrIntDeprecated;
|
pub use str_int::StrIntDeprecated;
|
||||||
|
pub use unalias::UnaliasDeprecated;
|
||||||
|
|
||||||
#[cfg(feature = "dataframe")]
|
#[cfg(feature = "dataframe")]
|
||||||
mod dataframe;
|
mod dataframe;
|
||||||
|
|
36
crates/nu-command/src/deprecated/unalias.rs
Normal file
36
crates/nu-command/src/deprecated/unalias.rs
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
use nu_protocol::{
|
||||||
|
ast::Call,
|
||||||
|
engine::{Command, EngineState, Stack},
|
||||||
|
Category, PipelineData, Signature,
|
||||||
|
};
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct UnaliasDeprecated;
|
||||||
|
|
||||||
|
impl Command for UnaliasDeprecated {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"unalias"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build(self.name()).category(Category::Deprecated)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Deprecated command"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(
|
||||||
|
&self,
|
||||||
|
_engine_state: &EngineState,
|
||||||
|
_stack: &mut Stack,
|
||||||
|
call: &Call,
|
||||||
|
_input: PipelineData,
|
||||||
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
||||||
|
Err(nu_protocol::ShellError::DeprecatedCommand(
|
||||||
|
self.name().to_string(),
|
||||||
|
"hide".to_string(),
|
||||||
|
call.head,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue