Clear statusline while prompt is visible (#7646)
This commit is contained in:
parent
68a98ac36b
commit
8f1c6456f3
1 changed files with 2 additions and 0 deletions
|
@ -356,6 +356,7 @@ impl Prompt {
|
|||
let completion_color = theme.get("ui.menu");
|
||||
let selected_color = theme.get("ui.menu.selected");
|
||||
let suggestion_color = theme.get("ui.text.inactive");
|
||||
let background = theme.get("ui.background");
|
||||
// completion
|
||||
|
||||
let max_len = self
|
||||
|
@ -451,6 +452,7 @@ impl Prompt {
|
|||
}
|
||||
|
||||
let line = area.height - 1;
|
||||
surface.clear_with(area.clip_top(line), background);
|
||||
// render buffer text
|
||||
surface.set_string(area.x, area.y + line, &self.prompt, prompt_color);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue