Refactor struct names for old commands (ls, cd, pwd) (#1133)

This commit is contained in:
Kevin DCR 2019-12-28 16:33:31 -05:00 committed by Jonathan Turner
parent a9317d939f
commit 21e508009f
5 changed files with 12 additions and 12 deletions

View file

@ -232,9 +232,9 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
context.add_commands(vec![ context.add_commands(vec![
// System/file operations // System/file operations
whole_stream_command(PWD), whole_stream_command(Pwd),
whole_stream_command(LS), whole_stream_command(Ls),
whole_stream_command(CD), whole_stream_command(Cd),
whole_stream_command(Env), whole_stream_command(Env),
per_item_command(Remove), per_item_command(Remove),
per_item_command(Open), per_item_command(Open),

View file

@ -97,7 +97,7 @@ pub(crate) mod which_;
pub(crate) mod wrap; pub(crate) mod wrap;
pub(crate) use autoview::Autoview; pub(crate) use autoview::Autoview;
pub(crate) use cd::CD; pub(crate) use cd::Cd;
pub(crate) use command::{ pub(crate) use command::{
per_item_command, whole_stream_command, Command, PerItemCommand, RawCommandArgs, per_item_command, whole_stream_command, Command, PerItemCommand, RawCommandArgs,
UnevaluatedCallInfo, WholeStreamCommand, UnevaluatedCallInfo, WholeStreamCommand,
@ -142,7 +142,7 @@ pub(crate) use history::History;
pub(crate) use insert::Insert; pub(crate) use insert::Insert;
pub(crate) use last::Last; pub(crate) use last::Last;
pub(crate) use lines::Lines; pub(crate) use lines::Lines;
pub(crate) use ls::LS; pub(crate) use ls::Ls;
#[allow(unused)] #[allow(unused)]
pub(crate) use map_max_by::MapMaxBy; pub(crate) use map_max_by::MapMaxBy;
pub(crate) use mkdir::Mkdir; pub(crate) use mkdir::Mkdir;
@ -155,7 +155,7 @@ pub(crate) use pick::Pick;
pub(crate) use pivot::Pivot; pub(crate) use pivot::Pivot;
pub(crate) use prepend::Prepend; pub(crate) use prepend::Prepend;
pub(crate) use prev::Previous; pub(crate) use prev::Previous;
pub(crate) use pwd::PWD; pub(crate) use pwd::Pwd;
pub(crate) use range::Range; pub(crate) use range::Range;
#[allow(unused)] #[allow(unused)]
pub(crate) use reduce_by::ReduceBy; pub(crate) use reduce_by::ReduceBy;

View file

@ -4,9 +4,9 @@ use nu_errors::ShellError;
use nu_macros::signature; use nu_macros::signature;
use nu_protocol::{Signature, SyntaxShape}; use nu_protocol::{Signature, SyntaxShape};
pub struct CD; pub struct Cd;
impl WholeStreamCommand for CD { impl WholeStreamCommand for Cd {
fn name(&self) -> &str { fn name(&self) -> &str {
"cd" "cd"
} }

View file

@ -5,7 +5,7 @@ use nu_protocol::{Signature, SyntaxShape};
use nu_source::Tagged; use nu_source::Tagged;
use std::path::PathBuf; use std::path::PathBuf;
pub struct LS; pub struct Ls;
#[derive(Deserialize)] #[derive(Deserialize)]
pub struct LsArgs { pub struct LsArgs {
@ -13,7 +13,7 @@ pub struct LsArgs {
full: bool, full: bool,
} }
impl WholeStreamCommand for LS { impl WholeStreamCommand for Ls {
fn name(&self) -> &str { fn name(&self) -> &str {
"ls" "ls"
} }

View file

@ -3,9 +3,9 @@ use crate::prelude::*;
use nu_errors::ShellError; use nu_errors::ShellError;
use nu_protocol::Signature; use nu_protocol::Signature;
pub struct PWD; pub struct Pwd;
impl WholeStreamCommand for PWD { impl WholeStreamCommand for Pwd {
fn name(&self) -> &str { fn name(&self) -> &str {
"pwd" "pwd"
} }