parent
be428a295a
commit
2c0468ffd1
2 changed files with 12 additions and 0 deletions
|
@ -215,6 +215,10 @@ impl Completion {
|
||||||
let text = Cow::from(fragment);
|
let text = Cow::from(fragment);
|
||||||
// TODO: logic is same as ui/picker
|
// TODO: logic is same as ui/picker
|
||||||
menu.score(&text);
|
menu.score(&text);
|
||||||
|
} else {
|
||||||
|
// we backspaced before the start offset, clear the menu
|
||||||
|
// this will cause the editor to remove the completion popup
|
||||||
|
menu.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -90,6 +90,14 @@ impl<T: Item> Menu<T> {
|
||||||
self.recalculate = true;
|
self.recalculate = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn clear(&mut self) {
|
||||||
|
self.matches.clear();
|
||||||
|
|
||||||
|
// reset cursor position
|
||||||
|
self.cursor = None;
|
||||||
|
self.scroll = 0;
|
||||||
|
}
|
||||||
|
|
||||||
pub fn move_up(&mut self) {
|
pub fn move_up(&mut self) {
|
||||||
let len = self.matches.len();
|
let len = self.matches.len();
|
||||||
let pos = self.cursor.map_or(0, |i| (i + len.saturating_sub(1)) % len) % len;
|
let pos = self.cursor.map_or(0, |i| (i + len.saturating_sub(1)) % len) % len;
|
||||||
|
|
Loading…
Reference in a new issue