diff options
Diffstat (limited to 'helix-core/src/movement.rs')
-rw-r--r-- | helix-core/src/movement.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/movement.rs b/helix-core/src/movement.rs index 74307636..5d080545 100644 --- a/helix-core/src/movement.rs +++ b/helix-core/src/movement.rs @@ -245,6 +245,7 @@ impl CharHelpers for Chars<'_> { // Find our target position(s). let head_start = head; + #[allow(clippy::while_let_on_iterator)] // Clippy's suggestion to fix doesn't work here. while let Some(next_ch) = self.next() { if prev_ch.is_none() || reached_target(target, prev_ch.unwrap(), next_ch) { if head == head_start { |