mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Replace current file when loading in background from picker (#12605)
This commit is contained in:
parent
430414979d
commit
d123193902
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
key!(Esc) | ctrl!('c') => return close_fn(self),
|
||||||
alt!(Enter) => {
|
alt!(Enter) => {
|
||||||
if let Some(option) = self.selection() {
|
if let Some(option) = self.selection() {
|
||||||
(self.callback_fn)(ctx, option, Action::Load);
|
(self.callback_fn)(ctx, option, Action::Replace);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
key!(Enter) => {
|
key!(Enter) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue