diff --git a/crates/vim/src/helix/boundary.rs b/crates/vim/src/helix/boundary.rs index ccaefc072b..e07d2cffe5 100644 --- a/crates/vim/src/helix/boundary.rs +++ b/crates/vim/src/helix/boundary.rs @@ -94,13 +94,13 @@ trait BoundedObject { let inner_start = self .next_start(map, outer_range.start, false) .unwrap_or_else(|| { - todo!(); + log::warn!("The motion might not have found the text object correctly"); outer_range.start }); let inner_end = self .previous_end(map, outer_range.end, false) .unwrap_or_else(|| { - todo!(); + log::warn!("The motion might not have found the text object correctly"); outer_range.end }); inner_start..inner_end