picker: open file on Enter.
This commit is contained in:
parent
edfd3933db
commit
8b263ef04b
1 changed files with 10 additions and 0 deletions
|
@ -159,6 +159,16 @@ impl Component for Picker {
|
||||||
} => {
|
} => {
|
||||||
return close_fn;
|
return close_fn;
|
||||||
}
|
}
|
||||||
|
KeyEvent {
|
||||||
|
code: KeyCode::Enter,
|
||||||
|
..
|
||||||
|
} => {
|
||||||
|
let size = cx.editor.view().unwrap().size;
|
||||||
|
if let Some(path) = self.selection() {
|
||||||
|
cx.editor.open(path.into(), size);
|
||||||
|
}
|
||||||
|
return close_fn;
|
||||||
|
}
|
||||||
_ => {
|
_ => {
|
||||||
match self.prompt.handle_event(event, cx) {
|
match self.prompt.handle_event(event, cx) {
|
||||||
EventResult::Consumed(_) => {
|
EventResult::Consumed(_) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue