ui: Paginate prompt completion
This commit is contained in:
parent
3606d8bd24
commit
39dc09e6c4
1 changed files with 9 additions and 5 deletions
|
@ -292,17 +292,21 @@ impl Prompt {
|
|||
let area = completion_area;
|
||||
let background = theme.get("ui.statusline");
|
||||
|
||||
let items = height as usize * cols as usize;
|
||||
|
||||
let offset = self
|
||||
.selection
|
||||
.map(|selection| selection / items * items)
|
||||
.unwrap_or_default();
|
||||
|
||||
surface.clear_with(area, background);
|
||||
|
||||
let mut row = 0;
|
||||
let mut col = 0;
|
||||
|
||||
// TODO: paginate
|
||||
for (i, (_range, completion)) in self
|
||||
.completion
|
||||
.iter()
|
||||
.enumerate()
|
||||
.take(height as usize * cols as usize)
|
||||
for (i, (_range, completion)) in
|
||||
self.completion.iter().enumerate().skip(offset).take(items)
|
||||
{
|
||||
let color = if Some(i) == self.selection {
|
||||
// Style::default().bg(Color::Rgb(104, 60, 232))
|
||||
|
|
Loading…
Add table
Reference in a new issue