Clip right when moving to next word in case we land on a block line

This commit is contained in:
Antonio Scandurra 2022-01-03 16:26:42 +01:00
parent ed361f2d1a
commit 2b31a48ef9

View file

@ -172,7 +172,7 @@ pub fn next_word_boundary(map: &DisplaySnapshot, mut point: DisplayPoint) -> Dis
} }
prev_char_kind = Some(char_kind); prev_char_kind = Some(char_kind);
} }
point map.clip_point(point, Bias::Right)
} }
pub fn is_inside_word(map: &DisplaySnapshot, point: DisplayPoint) -> bool { pub fn is_inside_word(map: &DisplaySnapshot, point: DisplayPoint) -> bool {