aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helix-core/src/history.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/helix-core/src/history.rs b/helix-core/src/history.rs
index bf2624e2..9fe7e530 100644
--- a/helix-core/src/history.rs
+++ b/helix-core/src/history.rs
@@ -1,4 +1,4 @@
-use crate::{Assoc, ChangeSet, Rope, State, Transaction};
+use crate::{Assoc, ChangeSet, Range, Rope, State, Transaction};
use once_cell::sync::Lazy;
use regex::Regex;
use std::num::NonZeroUsize;
@@ -148,9 +148,7 @@ impl History {
.transaction
.changes_iter()
// find a change that matches the primary selection
- .find(|(from, to, _fragment)| {
- crate::Range::new(*from, *to).overlaps(&primary_selection)
- })
+ .find(|(from, to, _fragment)| Range::new(*from, *to).overlaps(&primary_selection))
// or use the first change
.or_else(|| current_revision.transaction.changes_iter().next())
.unwrap();