Fix backspacing in middle of line for REPL
This commit is contained in:
parent
166fef2400
commit
9f37a6558a
2 changed files with 43 additions and 13 deletions
|
@ -182,7 +182,6 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
fn current_column(&self) -> usize {
|
fn current_column(&self) -> usize {
|
||||||
println!("Current column: {}", self.column);
|
|
||||||
self.column
|
self.column
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
31
src/repl.rs
31
src/repl.rs
|
@ -168,6 +168,7 @@ fn read_loop<F: FnMut()>(args: &CliArgs, state: &mut ReplState, mut execute: F)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Key::Backspace => {
|
Key::Backspace => {
|
||||||
|
if state.cursor_rightward_position == 0 {
|
||||||
if let Some(c) = state.statement_buf.pop() {
|
if let Some(c) = state.statement_buf.pop() {
|
||||||
match c {
|
match c {
|
||||||
'\n' | '\r' => {
|
'\n' | '\r' => {
|
||||||
|
@ -183,6 +184,36 @@ fn read_loop<F: FnMut()>(args: &CliArgs, state: &mut ReplState, mut execute: F)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if state.current_line.len() != state.cursor_rightward_position {
|
||||||
|
// if not at start of line
|
||||||
|
let removed_char = state.current_line.remove(state.current_line.len()-state.cursor_rightward_position-1);
|
||||||
|
state.statement_buf.remove(state.statement_buf.len()-state.cursor_rightward_position-1);
|
||||||
|
// re-sync unclosed syntax tracking
|
||||||
|
match removed_char {
|
||||||
|
'"' | '`' => {
|
||||||
|
if let Some(c) = state.in_literal {
|
||||||
|
if c == removed_char {
|
||||||
|
state.in_literal = None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'(' => if state.bracket_depth != 0 { state.bracket_depth -= 1 },
|
||||||
|
')' => state.bracket_depth += 1,
|
||||||
|
'{' => if state.curly_depth != 0 { state.curly_depth -= 1 },
|
||||||
|
'}' => state.curly_depth += 1,
|
||||||
|
_ => {},
|
||||||
|
}
|
||||||
|
// re-print end of line to remove character in middle
|
||||||
|
state.terminal.move_cursor_left(1).expect("Failed to write to terminal output");
|
||||||
|
for i in state.current_line.len() - state.cursor_rightward_position .. state.current_line.len() {
|
||||||
|
write!(state.terminal, "{}", state.current_line[i]).expect("Failed to write to terminal output");
|
||||||
|
}
|
||||||
|
write!(state.terminal, " ").expect("Failed to write to terminal output");
|
||||||
|
state.terminal.move_cursor_left(state.cursor_rightward_position + 1).expect("Failed to write to terminal output");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
Key::Enter => {
|
Key::Enter => {
|
||||||
state.terminal.write_line("").expect("Failed to write to terminal output");
|
state.terminal.write_line("").expect("Failed to write to terminal output");
|
||||||
|
|
Loading…
Reference in a new issue