mirror of
https://github.com/helix-editor/helix
synced 2024-11-10 10:34:45 +01:00
helix-term: allow to backspace out-of the command prompt (#9828)
This commit is contained in:
parent
e3c6c82828
commit
0dc67ff885
@ -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 New Issue
Block a user