fmt

Mikayla created

Change summary

crates/vim/src/visual.rs | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

Detailed changes

crates/vim/src/visual.rs 🔗

@@ -206,10 +206,8 @@ pub fn visual_block_motion(
                 row,
                 laid_out_line.closest_index_for_x(positions.start) as u32,
             );
-            let mut end = DisplayPoint::new(
-                row,
-                laid_out_line.closest_index_for_x(positions.end) as u32,
-            );
+            let mut end =
+                DisplayPoint::new(row, laid_out_line.closest_index_for_x(positions.end) as u32);
             if end <= start {
                 if start.column() == map.line_len(start.row()) {
                     end = start;