diff --git a/crates/nu-cmd-extra/src/extra/bits/into.rs b/crates/nu-cmd-extra/src/extra/bits/into.rs index 7f8ce4910..1c466f718 100644 --- a/crates/nu-cmd-extra/src/extra/bits/into.rs +++ b/crates/nu-cmd-extra/src/extra/bits/into.rs @@ -36,6 +36,7 @@ impl Command for BitsInto { (Type::String, Type::String), (Type::Bool, Type::String), (Type::Date, Type::String), + (Type::Table(vec![]), Type::Table(vec![])), ]) .allow_variants_without_examples(true) // TODO: supply exhaustive examples .rest( diff --git a/crates/nu-cmd-extra/src/extra/bytes/add.rs b/crates/nu-cmd-extra/src/extra/bytes/add.rs index 00c9a960f..f5689e78f 100644 --- a/crates/nu-cmd-extra/src/extra/bytes/add.rs +++ b/crates/nu-cmd-extra/src/extra/bytes/add.rs @@ -36,6 +36,7 @@ impl Command for BytesAdd { Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .vectorizes_over_list(true) .allow_variants_without_examples(true) diff --git a/crates/nu-cmd-extra/src/extra/bytes/at.rs b/crates/nu-cmd-extra/src/extra/bytes/at.rs index 0e83d2712..f588d9eb9 100644 --- a/crates/nu-cmd-extra/src/extra/bytes/at.rs +++ b/crates/nu-cmd-extra/src/extra/bytes/at.rs @@ -43,6 +43,7 @@ impl Command for BytesAt { Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .vectorizes_over_list(true) .required("range", SyntaxShape::Range, "the range to get bytes") diff --git a/crates/nu-cmd-extra/src/extra/bytes/ends_with.rs b/crates/nu-cmd-extra/src/extra/bytes/ends_with.rs index 68719caf7..cb16435aa 100644 --- a/crates/nu-cmd-extra/src/extra/bytes/ends_with.rs +++ b/crates/nu-cmd-extra/src/extra/bytes/ends_with.rs @@ -28,7 +28,10 @@ impl Command for BytesEndsWith { fn signature(&self) -> Signature { Signature::build("bytes ends-with") - .input_output_types(vec![(Type::Binary, Type::Bool)]) + .input_output_types(vec![(Type::Binary, Type::Bool), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .required("pattern", SyntaxShape::Binary, "the pattern to match") .rest( "rest", diff --git a/crates/nu-cmd-extra/src/extra/bytes/length.rs b/crates/nu-cmd-extra/src/extra/bytes/length.rs index 3f8caaf72..f672387cb 100644 --- a/crates/nu-cmd-extra/src/extra/bytes/length.rs +++ b/crates/nu-cmd-extra/src/extra/bytes/length.rs @@ -22,7 +22,9 @@ impl Command for BytesLen { Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Int)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) + .allow_variants_without_examples(true) .vectorizes_over_list(true) .rest( "rest", diff --git a/crates/nu-cmd-extra/src/extra/bytes/reverse.rs b/crates/nu-cmd-extra/src/extra/bytes/reverse.rs index f6e58d72b..08d0b700c 100644 --- a/crates/nu-cmd-extra/src/extra/bytes/reverse.rs +++ b/crates/nu-cmd-extra/src/extra/bytes/reverse.rs @@ -17,7 +17,11 @@ impl Command for BytesReverse { fn signature(&self) -> Signature { Signature::build("bytes reverse") - .input_output_types(vec![(Type::Binary, Type::Binary)]) + .input_output_types(vec![ + (Type::Binary, Type::Binary), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .rest( "rest", SyntaxShape::CellPath, diff --git a/crates/nu-cmd-extra/src/extra/bytes/starts_with.rs b/crates/nu-cmd-extra/src/extra/bytes/starts_with.rs index 7c2c251aa..85e64f137 100644 --- a/crates/nu-cmd-extra/src/extra/bytes/starts_with.rs +++ b/crates/nu-cmd-extra/src/extra/bytes/starts_with.rs @@ -29,7 +29,11 @@ impl Command for BytesStartsWith { fn signature(&self) -> Signature { Signature::build("bytes starts-with") - .input_output_types(vec![(Type::Binary, Type::Bool)]) + .input_output_types(vec![ + (Type::Binary, Type::Bool), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .required("pattern", SyntaxShape::Binary, "the pattern to match") .rest( "rest", diff --git a/crates/nu-cmd-extra/src/extra/strings/encode_decode/decode_hex.rs b/crates/nu-cmd-extra/src/extra/strings/encode_decode/decode_hex.rs index 61cd1b5d4..d4916bade 100644 --- a/crates/nu-cmd-extra/src/extra/strings/encode_decode/decode_hex.rs +++ b/crates/nu-cmd-extra/src/extra/strings/encode_decode/decode_hex.rs @@ -21,6 +21,7 @@ impl Command for DecodeHex { Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Binary)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .allow_variants_without_examples(true) .vectorizes_over_list(true) diff --git a/crates/nu-cmd-extra/src/extra/strings/encode_decode/encode_hex.rs b/crates/nu-cmd-extra/src/extra/strings/encode_decode/encode_hex.rs index 13158bcfc..2be8ab5c5 100644 --- a/crates/nu-cmd-extra/src/extra/strings/encode_decode/encode_hex.rs +++ b/crates/nu-cmd-extra/src/extra/strings/encode_decode/encode_hex.rs @@ -21,6 +21,7 @@ impl Command for EncodeHex { Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::String)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .allow_variants_without_examples(true) .vectorizes_over_list(true) diff --git a/crates/nu-cmd-extra/src/extra/strings/format/filesize.rs b/crates/nu-cmd-extra/src/extra/strings/format/filesize.rs index df3b2bb94..99f50299c 100644 --- a/crates/nu-cmd-extra/src/extra/strings/format/filesize.rs +++ b/crates/nu-cmd-extra/src/extra/strings/format/filesize.rs @@ -28,7 +28,11 @@ impl Command for FileSize { fn signature(&self) -> Signature { Signature::build("format filesize") - .input_output_types(vec![(Type::Filesize, Type::String)]) + .input_output_types(vec![ + (Type::Filesize, Type::String), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .required( "format value", SyntaxShape::String, diff --git a/crates/nu-command/src/conversions/into/binary.rs b/crates/nu-command/src/conversions/into/binary.rs index fa5ccac20..7ca011aab 100644 --- a/crates/nu-command/src/conversions/into/binary.rs +++ b/crates/nu-command/src/conversions/into/binary.rs @@ -35,6 +35,7 @@ impl Command for SubCommand { (Type::Bool, Type::Binary), (Type::Filesize, Type::Binary), (Type::Date, Type::Binary), + (Type::Table(vec![]), Type::Table(vec![])), ]) .allow_variants_without_examples(true) // TODO: supply exhaustive examples .rest( diff --git a/crates/nu-command/src/conversions/into/bool.rs b/crates/nu-command/src/conversions/into/bool.rs index 1e13e2e4a..e572ae54c 100644 --- a/crates/nu-command/src/conversions/into/bool.rs +++ b/crates/nu-command/src/conversions/into/bool.rs @@ -22,7 +22,9 @@ impl Command for SubCommand { (Type::String, Type::Bool), (Type::Bool, Type::Bool), (Type::List(Box::new(Type::Any)), Type::Table(vec![])), + (Type::Table(vec![]), Type::Table(vec![])), ]) + .allow_variants_without_examples(true) .rest( "rest", SyntaxShape::CellPath, diff --git a/crates/nu-command/src/conversions/into/string.rs b/crates/nu-command/src/conversions/into/string.rs index 699c74f8c..09b7402e2 100644 --- a/crates/nu-command/src/conversions/into/string.rs +++ b/crates/nu-command/src/conversions/into/string.rs @@ -44,6 +44,7 @@ impl Command for SubCommand { Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::String)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032 .rest( diff --git a/crates/nu-command/src/hash/generic_digest.rs b/crates/nu-command/src/hash/generic_digest.rs index b56f25c40..5387642c8 100644 --- a/crates/nu-command/src/hash/generic_digest.rs +++ b/crates/nu-command/src/hash/generic_digest.rs @@ -56,7 +56,9 @@ where .input_output_types(vec![ (Type::String, Type::String), (Type::String, Type::Binary), + (Type::Table(vec![]), Type::Table(vec![])), ]) + .allow_variants_without_examples(true) .switch( "binary", "Output binary instead of hexadecimal representation", diff --git a/crates/nu-command/src/network/url/encode.rs b/crates/nu-command/src/network/url/encode.rs index 0555fabe4..92c33e5d2 100644 --- a/crates/nu-command/src/network/url/encode.rs +++ b/crates/nu-command/src/network/url/encode.rs @@ -17,7 +17,12 @@ impl Command for SubCommand { fn signature(&self) -> Signature { Signature::build("url encode") - .input_output_types(vec![(Type::String, Type::String), (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)))]) + .input_output_types(vec![ + (Type::String, Type::String), + (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String))), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .vectorizes_over_list(true) .switch( "all", diff --git a/crates/nu-command/src/network/url/parse.rs b/crates/nu-command/src/network/url/parse.rs index 1676a6c6b..a83f6087a 100644 --- a/crates/nu-command/src/network/url/parse.rs +++ b/crates/nu-command/src/network/url/parse.rs @@ -17,7 +17,11 @@ impl Command for SubCommand { fn signature(&self) -> Signature { Signature::build("url parse") - .input_output_types(vec![(Type::String, Type::Record(vec![]))]) + .input_output_types(vec![ + (Type::String, Type::Record(vec![])), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .rest( "rest", SyntaxShape::CellPath, diff --git a/crates/nu-command/src/platform/ansi/strip.rs b/crates/nu-command/src/platform/ansi/strip.rs index 9c38e832a..c1922c26e 100644 --- a/crates/nu-command/src/platform/ansi/strip.rs +++ b/crates/nu-command/src/platform/ansi/strip.rs @@ -15,7 +15,11 @@ impl Command for SubCommand { fn signature(&self) -> Signature { Signature::build("ansi strip") - .input_output_types(vec![(Type::String, Type::String), (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)))]) + .input_output_types(vec![ + (Type::String, Type::String), + (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String))), + (Type::Table(vec![]), Type::Table(vec![])), + ]) .rest( "cell path", SyntaxShape::CellPath, diff --git a/crates/nu-command/src/strings/encode_decode/decode_base64.rs b/crates/nu-command/src/strings/encode_decode/decode_base64.rs index b255d09ec..19dd55e23 100644 --- a/crates/nu-command/src/strings/encode_decode/decode_base64.rs +++ b/crates/nu-command/src/strings/encode_decode/decode_base64.rs @@ -26,6 +26,7 @@ impl Command for DecodeBase64 { Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Binary)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .vectorizes_over_list(true) .allow_variants_without_examples(true) diff --git a/crates/nu-command/src/strings/encode_decode/encode_base64.rs b/crates/nu-command/src/strings/encode_decode/encode_base64.rs index fd06cede5..4b5dafea1 100644 --- a/crates/nu-command/src/strings/encode_decode/encode_base64.rs +++ b/crates/nu-command/src/strings/encode_decode/encode_base64.rs @@ -32,6 +32,7 @@ impl Command for EncodeBase64 { Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::String)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) .vectorizes_over_list(true) .allow_variants_without_examples(true) diff --git a/crates/nu-command/src/strings/str_/ends_with.rs b/crates/nu-command/src/strings/str_/ends_with.rs index 97d0b5bfb..309f08464 100644 --- a/crates/nu-command/src/strings/str_/ends_with.rs +++ b/crates/nu-command/src/strings/str_/ends_with.rs @@ -31,7 +31,9 @@ impl Command for SubCommand { .input_output_types(vec![ (Type::String, Type::Bool), (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Bool))), + (Type::Table(vec![]), Type::Table(vec![])), ]) + .allow_variants_without_examples(true) .vectorizes_over_list(true) .required("string", SyntaxShape::String, "the string to match") .rest( diff --git a/crates/nu-command/src/strings/str_/index_of.rs b/crates/nu-command/src/strings/str_/index_of.rs index 1bd50bfda..4f7e0c353 100644 --- a/crates/nu-command/src/strings/str_/index_of.rs +++ b/crates/nu-command/src/strings/str_/index_of.rs @@ -37,7 +37,11 @@ impl Command for SubCommand { fn signature(&self) -> Signature { Signature::build("str index-of") - .input_output_types(vec![(Type::String, Type::Int),(Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Int)))]) + .input_output_types(vec![ + (Type::String, Type::Int), + (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Int))), + (Type::Table(vec![]), Type::Table(vec![])), + ]) .vectorizes_over_list(true) // TODO: no test coverage .allow_variants_without_examples(true) .required("string", SyntaxShape::String, "the string to find in the input") diff --git a/crates/nu-command/src/strings/str_/length.rs b/crates/nu-command/src/strings/str_/length.rs index 8f6c7c6db..c95294a33 100644 --- a/crates/nu-command/src/strings/str_/length.rs +++ b/crates/nu-command/src/strings/str_/length.rs @@ -29,7 +29,12 @@ impl Command for SubCommand { fn signature(&self) -> Signature { Signature::build("str length") - .input_output_types(vec![(Type::String, Type::Int), (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Int)))]) + .input_output_types(vec![ + (Type::String, Type::Int), + (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Int))), + (Type::Table(vec![]), Type::Table(vec![])), + ]) + .allow_variants_without_examples(true) .vectorizes_over_list(true) .switch( "grapheme-clusters", diff --git a/crates/nu-command/src/strings/str_/reverse.rs b/crates/nu-command/src/strings/str_/reverse.rs index 89209d502..be055f492 100644 --- a/crates/nu-command/src/strings/str_/reverse.rs +++ b/crates/nu-command/src/strings/str_/reverse.rs @@ -22,7 +22,9 @@ impl Command for SubCommand { Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)), ), + (Type::Table(vec![]), Type::Table(vec![])), ]) + .allow_variants_without_examples(true) .vectorizes_over_list(true) .rest( "rest", diff --git a/crates/nu-command/src/strings/str_/starts_with.rs b/crates/nu-command/src/strings/str_/starts_with.rs index e0fc1e77c..9fded9778 100644 --- a/crates/nu-command/src/strings/str_/starts_with.rs +++ b/crates/nu-command/src/strings/str_/starts_with.rs @@ -30,7 +30,11 @@ impl Command for SubCommand { fn signature(&self) -> Signature { Signature::build("str starts-with") - .input_output_types(vec![(Type::String, Type::Bool),(Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Bool)))]) + .input_output_types(vec![ + (Type::String, Type::Bool), + (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Bool))), + (Type::Table(vec![]), Type::Table(vec![])), + ]) .vectorizes_over_list(true) .allow_variants_without_examples(true) .required("string", SyntaxShape::String, "the string to match")