forked from extern/nushell
Merge branch 'main' of github.com:jonathandturner/engine-q
This commit is contained in:
commit
40004e64a6
@ -6,7 +6,7 @@ edition = "2018"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
reedline = {git = "https://github.com/jntrnr/reedline"}
|
||||
reedline = { git = "https://github.com/jntrnr/reedline", branch = "main" }
|
||||
nu-ansi-term = "0.32.0"
|
||||
# mimalloc = { version = "*", default-features = false }
|
||||
|
||||
|
13
src/main.rs
13
src/main.rs
@ -172,9 +172,9 @@ fn main() -> std::io::Result<()> {
|
||||
let stack = Stack::new();
|
||||
|
||||
loop {
|
||||
let input = line_editor.read_line(&prompt)?;
|
||||
let input = line_editor.read_line(&prompt);
|
||||
match input {
|
||||
Signal::Success(s) => {
|
||||
Ok(Signal::Success(s)) => {
|
||||
if s.trim() == "exit" {
|
||||
break;
|
||||
}
|
||||
@ -210,15 +210,18 @@ fn main() -> std::io::Result<()> {
|
||||
}
|
||||
}
|
||||
}
|
||||
Signal::CtrlC => {
|
||||
Ok(Signal::CtrlC) => {
|
||||
println!("Ctrl-c");
|
||||
}
|
||||
Signal::CtrlD => {
|
||||
Ok(Signal::CtrlD) => {
|
||||
break;
|
||||
}
|
||||
Signal::CtrlL => {
|
||||
Ok(Signal::CtrlL) => {
|
||||
line_editor.clear_screen()?;
|
||||
}
|
||||
Err(err) => {
|
||||
println!("Error: {:?}", err);
|
||||
}
|
||||
}
|
||||
current_line += 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user