mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Fix warnings from clippy (#7013)
* Fix warnings from clippy * revert MAIN_SEPARATOR_STR
This commit is contained in:
parent
1e5997dc98
commit
3b8c15618f
7 changed files with 29 additions and 32 deletions
|
@ -442,7 +442,7 @@ impl Buffer {
|
|||
let mut x_offset = x as usize;
|
||||
let max_offset = min(self.area.right(), width.saturating_add(x));
|
||||
let mut start_index = self.index_of(x, y);
|
||||
let mut index = self.index_of(max_offset as u16, y);
|
||||
let mut index = self.index_of(max_offset, y);
|
||||
|
||||
let content_width = spans.width();
|
||||
let truncated = content_width > width as usize;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue