mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
use ui.menu instead of ui.statusline for command completion menu theme
This commit is contained in:
parent
776686ab24
commit
82fb217b6a
1 changed files with 2 additions and 2 deletions
|
@ -340,7 +340,7 @@ impl Prompt {
|
|||
pub fn render_prompt(&self, area: Rect, surface: &mut Surface, cx: &mut Context) {
|
||||
let theme = &cx.editor.theme;
|
||||
let prompt_color = theme.get("ui.text");
|
||||
let completion_color = theme.get("ui.statusline");
|
||||
let completion_color = theme.get("ui.menu");
|
||||
let selected_color = theme.get("ui.menu.selected");
|
||||
// completion
|
||||
|
||||
|
@ -368,7 +368,7 @@ impl Prompt {
|
|||
|
||||
if !self.completion.is_empty() {
|
||||
let area = completion_area;
|
||||
let background = theme.get("ui.statusline");
|
||||
let background = theme.get("ui.menu");
|
||||
|
||||
let items = height as usize * cols as usize;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue