Added opening files in the background with A-ret shortcut (#4435)
This commit is contained in:
parent
cce19713fb
commit
d3e0f18c89
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
use crate::{
|
||||
alt,
|
||||
compositor::{Component, Compositor, Context, Event, EventResult},
|
||||
ctrl, key, shift,
|
||||
ui::{self, fuzzy_match::FuzzyQuery, EditorView},
|
||||
|
@ -619,6 +620,11 @@ impl<T: Item + 'static> Component for Picker<T> {
|
|||
key!(Esc) | ctrl!('c') => {
|
||||
return close_fn;
|
||||
}
|
||||
alt!(Enter) => {
|
||||
if let Some(option) = self.selection() {
|
||||
(self.callback_fn)(cx, option, Action::Load);
|
||||
}
|
||||
}
|
||||
key!(Enter) => {
|
||||
if let Some(option) = self.selection() {
|
||||
(self.callback_fn)(cx, option, Action::Replace);
|
||||
|
|
Loading…
Add table
Reference in a new issue