From 8536c12bd9554699020f7b76e7d35e18939a9eaa Mon Sep 17 00:00:00 2001 From: Michael Angerman Date: Tue, 5 Oct 2021 12:59:17 -0700 Subject: [PATCH 1/3] change signature name to get, it was (I believe) incorrectly named wrap --- crates/nu-command/src/filters/get.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filters/get.rs b/crates/nu-command/src/filters/get.rs index c06badbb2..7ad1c1282 100644 --- a/crates/nu-command/src/filters/get.rs +++ b/crates/nu-command/src/filters/get.rs @@ -15,7 +15,7 @@ impl Command for Get { } fn signature(&self) -> nu_protocol::Signature { - Signature::build("wrap").required( + Signature::build("get").required( "cell_path", SyntaxShape::CellPath, "the cell path to the data", From 48f534cd3b93b3f915202635400061784bd892d0 Mon Sep 17 00:00:00 2001 From: Michael Angerman Date: Tue, 5 Oct 2021 13:02:56 -0700 Subject: [PATCH 2/3] change location of reedline to nushell from the jt repo --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5aa2a2c69..5ff65ec7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -827,7 +827,7 @@ dependencies = [ [[package]] name = "reedline" version = "0.2.0" -source = "git+https://github.com/jntrnr/reedline?branch=main#88bded3417e7f6c1242b444f403448de583357f0" +source = "git+https://github.com/nushell/reedline?branch=main#88bded3417e7f6c1242b444f403448de583357f0" dependencies = [ "chrono", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 826e3d542..01c94b401 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" members = ["crates/nu-cli", "crates/nu-engine", "crates/nu-parser", "crates/nu-command", "crates/nu-protocol"] [dependencies] -reedline = { git = "https://github.com/jntrnr/reedline", branch = "main" } +reedline = { git = "https://github.com/nushell/reedline", branch = "main" } crossterm = "0.21.*" nu-cli = { path="./crates/nu-cli" } nu-command = { path="./crates/nu-command" } From 5cc7fbcde7e1c81b21c4fad55e6c78cabef6370e Mon Sep 17 00:00:00 2001 From: Michael Angerman Date: Tue, 5 Oct 2021 13:03:43 -0700 Subject: [PATCH 3/3] jntrnr to nushell --- crates/nu-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 5b4718919..3f2f90c7c 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -12,4 +12,4 @@ nu-protocol = { path = "../nu-protocol" } miette = { version = "3.0.0", features = ["fancy"] } thiserror = "1.0.29" nu-ansi-term = "0.36.0" -reedline = { git = "https://github.com/jntrnr/reedline", branch = "main" } +reedline = { git = "https://github.com/nushell/reedline", branch = "main" }