From 768a64646825eedf4252d899b46acb2bb38bf389 Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Mon, 27 Jan 2025 22:34:05 +0000 Subject: [PATCH] chore: remove unused imports --- helix-term/src/ui/markdown.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/ui/markdown.rs b/helix-term/src/ui/markdown.rs index 98dfff8ea..c26265496 100644 --- a/helix-term/src/ui/markdown.rs +++ b/helix-term/src/ui/markdown.rs @@ -5,14 +5,14 @@ use tui::{ text::{Span, Spans, Text}, }; -use std::{cmp::Ordering, collections::HashSet, sync::Arc}; +use std::{collections::HashSet, sync::Arc}; use pulldown_cmark::{CodeBlockKind, Event, HeadingLevel, Options, Parser, Tag, TagEnd}; use helix_core::{ syntax::{self, HighlightEvent, InjectionLanguageMarker, Syntax}, test::print, - Rope, RopeSlice, + RopeSlice, }; use helix_view::{ graphics::{Margin, Rect, Style},