helix-term: allow to backspace out-of the command prompt (#9828)
This commit is contained in:
parent
e3c6c82828
commit
0dc67ff885
1 changed files with 4 additions and 0 deletions
|
@ -544,6 +544,10 @@ impl Component for Prompt {
|
|||
(self.callback_fn)(cx, &self.line, PromptEvent::Update);
|
||||
}
|
||||
ctrl!('h') | key!(Backspace) | shift!(Backspace) => {
|
||||
if self.line.is_empty() {
|
||||
(self.callback_fn)(cx, &self.line, PromptEvent::Abort);
|
||||
return close_fn;
|
||||
}
|
||||
self.delete_char_backwards(cx.editor);
|
||||
(self.callback_fn)(cx, &self.line, PromptEvent::Update);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue