mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Address nightly clippy warnings
This commit is contained in:
parent
ed1a745442
commit
cad14c6b46
5 changed files with 6 additions and 13 deletions
|
@ -10,10 +10,7 @@ use cassowary::{
|
|||
{Expression, Solver},
|
||||
};
|
||||
use helix_view::graphics::{Rect, Style};
|
||||
use std::{
|
||||
collections::HashMap,
|
||||
iter::{self, Iterator},
|
||||
};
|
||||
use std::collections::HashMap;
|
||||
use unicode_width::UnicodeWidthStr;
|
||||
|
||||
/// A [`Cell`] contains the [`Text`] to be displayed in a [`Row`] of a [`Table`].
|
||||
|
@ -415,9 +412,7 @@ impl<'a> Table<'a> {
|
|||
let has_selection = state.selected.is_some();
|
||||
let columns_widths = self.get_columns_widths(table_area.width, has_selection);
|
||||
let highlight_symbol = self.highlight_symbol.unwrap_or("");
|
||||
let blank_symbol = iter::repeat(" ")
|
||||
.take(highlight_symbol.width())
|
||||
.collect::<String>();
|
||||
let blank_symbol = " ".repeat(highlight_symbol.width());
|
||||
let mut current_height = 0;
|
||||
let mut rows_height = table_area.height;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue