Replace current file when loading in background from picker (#12605)

This commit is contained in:
Jose Alvarez 2025-01-23 13:49:20 -05:00 committed by GitHub
parent 430414979d
commit d123193902
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1014,7 +1014,7 @@ impl<I: 'static + Send + Sync, D: 'static + Send + Sync> Component for Picker<I,
key!(Esc) | ctrl!('c') => return close_fn(self),
alt!(Enter) => {
if let Some(option) = self.selection() {
(self.callback_fn)(ctx, option, Action::Load);
(self.callback_fn)(ctx, option, Action::Replace);
}
}
key!(Enter) => {