diff --git a/crates/editor/src/movement.rs b/crates/editor/src/movement.rs index eba1f26dcc..75645bbaa2 100644 --- a/crates/editor/src/movement.rs +++ b/crates/editor/src/movement.rs @@ -58,8 +58,8 @@ pub fn saturating_left(map: &DisplaySnapshot, mut point: DisplayPoint) -> Displa map.clip_point(point, Bias::Left) } -/// Returns a column to the right of the current point, doing nothing -// if that point is at the end of the line. +/// Returns a column to the right of the current point, wrapping +/// to the next line if that point is at the end of line. pub fn right(map: &DisplaySnapshot, mut point: DisplayPoint) -> DisplayPoint { if point.column() < map.line_len(point.row()) { *point.column_mut() += 1;