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

completion: Don't panic on timeout/no result, just do nothing.

This commit is contained in:
Blaž Hrastnik 2021-01-06 13:44:29 +09:00
parent 3cbab20908
commit 6ec0f8e80f

View File

@ -851,31 +851,35 @@ pub fn completion(cx: &mut Context) {
.timeout(Duration::from_secs(2)),
)
.expect("completion failed!")
.expect("completion failed!");
.unwrap_or_default(); // if timeout, just return
let picker = ui::Picker::new(
res,
|item| {
// format_fn
item.label.as_str().into()
// TODO: if no completion, show some message or something
if !res.is_empty() {
let picker = ui::Picker::new(
res,
|item| {
// format_fn
item.label.as_str().into()
// TODO: use item.filter_text for filtering
},
|editor: &mut Editor, item| {
// if item.text_edit is Some we use that, else
// let insert_text = &item.insert_text.unwrap_or(item.label);
// and we insert at position.
//
// merge this with additional_text_edits
},
);
// TODO: use item.filter_text for filtering
},
|editor: &mut Editor, item| {
// if item.text_edit is Some we use that, else
// let insert_text = &item.insert_text.unwrap_or(item.label);
// and we insert at position.
//
// merge this with additional_text_edits
},
);
cx.callback = Some(Box::new(
move |compositor: &mut Compositor, editor: &mut Editor| {
compositor.push(Box::new(picker));
},
));
cx.callback = Some(Box::new(
move |compositor: &mut Compositor, editor: &mut Editor| {
compositor.push(Box::new(picker));
},
));
// TODO: when iterating over items, show the docs in popup
// language server client needs to be accessible via a registry of some sort
// TODO!: when iterating over items, show the docs in popup
// language server client needs to be accessible via a registry of some sort
}
}