From c05511f6c1b7c603a84303de181d636e306b208f Mon Sep 17 00:00:00 2001 From: Sam Hedin Date: Fri, 27 Mar 2020 21:02:48 +0100 Subject: [PATCH] Add non-functioning headers command --- crates/nu-cli/src/cli.rs | 1 + crates/nu-cli/src/commands.rs | 2 ++ crates/nu-cli/src/commands/headers.rs | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/crates/nu-cli/src/cli.rs b/crates/nu-cli/src/cli.rs index ff8df1ea60..b62df23c6b 100644 --- a/crates/nu-cli/src/cli.rs +++ b/crates/nu-cli/src/cli.rs @@ -276,6 +276,7 @@ pub fn create_default_context( whole_stream_command(Autoview), whole_stream_command(Table), // Text manipulation + whole_stream_command(Headers), whole_stream_command(SplitColumn), whole_stream_command(SplitRow), whole_stream_command(Lines), diff --git a/crates/nu-cli/src/commands.rs b/crates/nu-cli/src/commands.rs index 9afd76f455..4f311ff98b 100644 --- a/crates/nu-cli/src/commands.rs +++ b/crates/nu-cli/src/commands.rs @@ -25,6 +25,7 @@ pub(crate) mod edit; pub(crate) mod enter; #[allow(unused)] pub(crate) mod evaluate_by; +pub(crate) mod headers; pub(crate) mod exit; pub(crate) mod first; pub(crate) mod format; @@ -216,3 +217,4 @@ pub(crate) use what::What; pub(crate) use where_::Where; pub(crate) use which_::Which; pub(crate) use wrap::Wrap; +pub(crate) use headers::Headers; \ No newline at end of file diff --git a/crates/nu-cli/src/commands/headers.rs b/crates/nu-cli/src/commands/headers.rs index f75dad1c1f..c7c9ab0db2 100644 --- a/crates/nu-cli/src/commands/headers.rs +++ b/crates/nu-cli/src/commands/headers.rs @@ -6,6 +6,8 @@ use nu_errors::ShellError; use nu_protocol::{ReturnSuccess, Signature, UntaggedValue, Value}; pub struct Headers; +#[derive(Deserialize)] +pub struct HeadersArgs {} impl WholeStreamCommand for Headers { fn name(&self) -> &str { @@ -26,7 +28,7 @@ impl WholeStreamCommand for Headers { } } pub fn count( - CountArgs {}: CountArgs, + HeadersArgs {}: HeadersArgs, RunnableContext { input, name, .. }: RunnableContext, ) -> Result { let stream = async_stream! {