diff --git a/src/buffer.rs b/src/buffer.rs index 82633ac..7455214 100644 --- a/src/buffer.rs +++ b/src/buffer.rs @@ -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};