added more completions per line
This commit is contained in:
parent
956173bcea
commit
28a1e11fda
1 changed files with 20 additions and 6 deletions
|
@ -251,17 +251,29 @@ impl Renderer {
|
||||||
Rect::new(0, self.size.1 - 6, self.size.0, 4),
|
Rect::new(0, self.size.1 - 6, self.size.0, 4),
|
||||||
view.theme.get("ui.statusline"),
|
view.theme.get("ui.statusline"),
|
||||||
);
|
);
|
||||||
|
let mut row = 0;
|
||||||
|
let mut col = 0;
|
||||||
|
// TODO: this will crash if there are too many cols added
|
||||||
|
// TODO: set char limit
|
||||||
for i in (0..completion.len()) {
|
for i in (0..completion.len()) {
|
||||||
let color;
|
let color = if prompt.completion_selection_index.is_some()
|
||||||
if prompt.completion_selection_index.is_some()
|
|
||||||
&& i == prompt.completion_selection_index.unwrap()
|
&& i == prompt.completion_selection_index.unwrap()
|
||||||
{
|
{
|
||||||
color = Style::default().bg(Color::Rgb(104, 060, 232));
|
Style::default().bg(Color::Rgb(104, 060, 232))
|
||||||
} else {
|
} else {
|
||||||
color = self.text_color;
|
self.text_color
|
||||||
|
};
|
||||||
|
self.surface.set_string(
|
||||||
|
1 + col * 10,
|
||||||
|
self.size.1 - 6 + row as u16,
|
||||||
|
&completion[i],
|
||||||
|
color,
|
||||||
|
);
|
||||||
|
row += 1;
|
||||||
|
if row > 3 {
|
||||||
|
row = 0;
|
||||||
|
col += 1;
|
||||||
}
|
}
|
||||||
self.surface
|
|
||||||
.set_string(1, self.size.1 - 6 + i as u16, &completion[i], color);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// render buffer text
|
// render buffer text
|
||||||
|
@ -422,6 +434,8 @@ impl Application {
|
||||||
String::from("aaa"),
|
String::from("aaa"),
|
||||||
String::from("bbb"),
|
String::from("bbb"),
|
||||||
String::from("ccc"),
|
String::from("ccc"),
|
||||||
|
String::from("ddd"),
|
||||||
|
String::from("eee"),
|
||||||
];
|
];
|
||||||
for command in command_list {
|
for command in command_list {
|
||||||
if command.contains(_input) {
|
if command.contains(_input) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue