use simpler reedline (#6016)

This commit is contained in:
JT
2022-07-12 13:25:31 +12:00
committed by GitHub
parent c1bf9fd897
commit a5470b2362
8 changed files with 6 additions and 20 deletions

View File

@ -18,7 +18,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.65.1" }
nu-utils = { path = "../nu-utils", version = "0.65.1" }
nu-ansi-term = "0.46.0"
nu-color-config = { path = "../nu-color-config", version = "0.65.1" }
reedline = { version = "0.8.0", features = ["bashisms", "sqlite"]}
reedline = { git = "https://github.com/nushell/reedline.git", features = ["bashisms", "sqlite"]}
crossterm = "0.23.0"
miette = { version = "5.1.0", features = ["fancy"] }
thiserror = "1.0.31"

View File

@ -148,7 +148,6 @@ pub fn evaluate_repl(
engine_state: engine_state.clone(),
config: config.clone(),
}))
.with_animation(config.animate_prompt)
.with_validator(Box::new(NuValidator {
engine_state: engine_state.clone(),
}))