mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Fixes #5593 (OOM introduced with #5587 when no config was present and an attempt was made to allocate all memory in advance) Includes also other changes to reedline: - Vi word definition fixed and `w` and `e` work as expected
This commit is contained in:
committed by
GitHub
parent
0ba86d7eb8
commit
06199d731b
@ -18,7 +18,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.62.1" }
|
||||
nu-utils = { path = "../nu-utils", version = "0.62.1" }
|
||||
nu-ansi-term = "0.45.1"
|
||||
nu-color-config = { path = "../nu-color-config", version = "0.62.1" }
|
||||
reedline = { version = "0.5.0", features = ["bashisms"]}
|
||||
reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]}
|
||||
crossterm = "0.23.0"
|
||||
miette = { version = "4.5.0", features = ["fancy"] }
|
||||
thiserror = "1.0.29"
|
||||
|
@ -82,7 +82,7 @@ unicode-segmentation = "1.8.0"
|
||||
url = "2.2.1"
|
||||
uuid = { version = "0.8.2", features = ["v4"] }
|
||||
which = { version = "4.2.2", optional = true }
|
||||
reedline = { version = "0.5.0", features = ["bashisms"]}
|
||||
reedline = { git = "https://github.com/nushell/reedline", branch = "main", features = ["bashisms"]}
|
||||
wax = { version = "0.4.0", features = ["diagnostics"] }
|
||||
rusqlite = { version = "0.27.0", features = ["bundled"], optional = true }
|
||||
sqlparser = { version = "0.16.0", features = ["serde"], optional = true }
|
||||
|
Reference in New Issue
Block a user