aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/selection.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-core/src/selection.rs')
-rw-r--r--helix-core/src/selection.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/helix-core/src/selection.rs b/helix-core/src/selection.rs
index 0eb2b755..8e93c633 100644
--- a/helix-core/src/selection.rs
+++ b/helix-core/src/selection.rs
@@ -661,6 +661,15 @@ impl<'a> IntoIterator for &'a Selection {
}
}
+impl IntoIterator for Selection {
+ type Item = Range;
+ type IntoIter = smallvec::IntoIter<[Range; 1]>;
+
+ fn into_iter(self) -> smallvec::IntoIter<[Range; 1]> {
+ self.ranges.into_iter()
+ }
+}
+
// TODO: checkSelection -> check if valid for doc length && sorted
pub fn keep_or_remove_matches(