Skip to content

Commit

Permalink
Update reedline to report the available space
Browse files Browse the repository at this point in the history
  • Loading branch information
sholderbach committed Sep 20, 2022
1 parent 4427822 commit bb42fd1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions Cargo.toml
Expand Up @@ -53,8 +53,7 @@ nu-system = { path = "./crates/nu-system", version = "0.68.2" }
nu-table = { path = "./crates/nu-table", version = "0.68.2" }
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.68.2" }
nu-utils = { path = "./crates/nu-utils", version = "0.68.2" }
# reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}
reedline = { git = "http://github.com/nushell/reedline", rev = "9a6fdd7", features = ["bashisms", "sqlite"]}
reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}

rayon = "1.5.1"
is_executable = "1.0.1"
Expand Down Expand Up @@ -124,5 +123,5 @@ debug = false
name = "nu"
path = "src/main.rs"

# [patch.crates-io]
# reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
[patch.crates-io]
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
3 changes: 1 addition & 2 deletions crates/nu-cli/Cargo.toml
Expand Up @@ -20,8 +20,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.68.2" }
nu-utils = { path = "../nu-utils", version = "0.68.2" }
nu-ansi-term = "0.46.0"
nu-color-config = { path = "../nu-color-config", version = "0.68.2" }
# reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}
reedline = { git = "http://github.com/nushell/reedline", rev = "9a6fdd7", features = ["bashisms", "sqlite"]}
reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}

atty = "0.2.14"
chrono = "0.4.21"
Expand Down
3 changes: 1 addition & 2 deletions crates/nu-command/Cargo.toml
Expand Up @@ -87,8 +87,7 @@ unicode-segmentation = "1.8.0"
url = "2.2.1"
uuid = { version = "1.1.2", features = ["v4"] }
which = { version = "4.3.0", optional = true }
# reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}
reedline = { git = "http://github.com/nushell/reedline", rev = "9a6fdd7", features = ["bashisms", "sqlite"]}
reedline = { version = "0.11.0", features = ["bashisms", "sqlite"]}
wax = { version = "0.5.0", features = ["diagnostics"] }
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
sqlparser = { version = "0.23.0", features = ["serde"], optional = true }
Expand Down

0 comments on commit bb42fd1

Please sign in to comment.