1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-21 04:06:06 +02:00

helix-term: allow to backspace out-of the command prompt (#9828)

This commit is contained in:
Markus F.X.J. Oberhumer 2024-03-09 09:02:43 +01:00 committed by GitHub
parent e3c6c82828
commit 0dc67ff885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -544,6 +544,10 @@ fn handle_event(&mut self, event: &Event, cx: &mut Context) -> EventResult {
(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);
}