aboutsummaryrefslogtreecommitdiff
path: root/src/selection.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/selection.rs')
-rw-r--r--src/selection.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/selection.rs b/src/selection.rs
index 868ded7b..a81a9fe6 100644
--- a/src/selection.rs
+++ b/src/selection.rs
@@ -18,13 +18,10 @@
//! finalized when the button is released. The selection should be cleared
//! when text is added/removed/scrolled on the screen. The selection should
//! also be cleared if the user clicks off of the selection.
-use std::mem;
-use std::cmp::min;
-use std::cmp::max;
+use std::cmp::{min, max};
use index::{Point, Column, RangeInclusive, Side, Linear, Line};
-use grid::{Grid, ToRange};
-use term::Cell;
+use grid::ToRange;
/// Describes a region of a 2-dimensional area
///