From a77da12d1a4629f622f04f1aef85b505989daa70 Mon Sep 17 00:00:00 2001 From: mattwparas Date: Tue, 20 Feb 2024 08:49:24 -0800 Subject: [PATCH] remove unnecessary import --- helix-term/src/ui/document.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/document.rs b/helix-term/src/ui/document.rs index 074fb6625..a13e9428b 100644 --- a/helix-term/src/ui/document.rs +++ b/helix-term/src/ui/document.rs @@ -6,7 +6,7 @@ use helix_core::str_utils::char_to_byte_idx; use helix_core::syntax::Highlight; use helix_core::syntax::HighlightEvent; use helix_core::text_annotations::TextAnnotations; -use helix_core::{visual_offset_from_block, Position, Range, RopeSlice}; +use helix_core::{visual_offset_from_block, Position, RopeSlice}; use helix_view::editor::{WhitespaceConfig, WhitespaceRenderValue}; use helix_view::graphics::Rect; use helix_view::theme::Style;