Remove unused imports

This commit is contained in:
mars 2023-04-14 15:34:54 -04:00
parent 5fd2620121
commit 9558cdadb4
1 changed files with 2 additions and 2 deletions

View File

@ -21,11 +21,11 @@ use std::io::Write;
use std::ops::Range;
use std::sync::Arc;
use crossterm::{cursor, ExecutableCommand, QueueableCommand};
use crossterm::{cursor, QueueableCommand};
use parking_lot::Mutex;
use ropey::Rope;
use syntect::easy::ScopeRangeIterator;
use syntect::parsing::{BasicScopeStackOp, ParseState, Scope, ScopeStack, SyntaxSet};
use syntect::parsing::{BasicScopeStackOp, ParseState, ScopeStack, SyntaxSet};
use crate::theme::{Style, StyleStore};
use crate::{Cursor, Direction};