diff options
Diffstat (limited to 'helix-core/src/range.rs')
-rw-r--r-- | helix-core/src/range.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/helix-core/src/range.rs b/helix-core/src/range.rs deleted file mode 100644 index 46411664..00000000 --- a/helix-core/src/range.rs +++ /dev/null @@ -1,9 +0,0 @@ -use crate::Position; - -#[derive(Clone, Copy, PartialEq, Eq)] -pub struct Range { - pub start: Position, - pub end: Position, -} - -// range traversal iters |