diff options
author | Blaž Hrastnik | 2021-01-08 07:31:19 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-01-08 07:37:36 +0000 |
commit | 777a80917db01e658139da11a20ff08256667cfe (patch) | |
tree | be813dfd5f59a6f4c4db937c12769927d8d42c13 /helix-term/src/ui/prompt.rs | |
parent | 7d41550a23fc3506a37016d5bc362144fb00c080 (diff) |
Address clippy lints.
Diffstat (limited to 'helix-term/src/ui/prompt.rs')
-rw-r--r-- | helix-term/src/ui/prompt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs index 7abc08c2..5a47bf12 100644 --- a/helix-term/src/ui/prompt.rs +++ b/helix-term/src/ui/prompt.rs @@ -126,7 +126,7 @@ impl Prompt { let color = if self.completion_selection_index.is_some() && i == self.completion_selection_index.unwrap() { - Style::default().bg(Color::Rgb(104, 060, 232)) + Style::default().bg(Color::Rgb(104, 60, 232)) } else { text_color }; |