diff options
author | Nathan Vegdahl | 2021-06-21 17:29:29 +0000 |
---|---|---|
committer | Nathan Vegdahl | 2021-06-21 17:29:29 +0000 |
commit | 07e28802f6b61a17e839d05b2a031575f323b9c9 (patch) | |
tree | cf28b772ad9b43a125a27dc3018ac09ba1bb2e16 /helix-core/src/movement.rs | |
parent | 714002048cc9601bf0981435c6d3ad43d1c765e8 (diff) |
Add function to get the line ending of a str slice.
This is needed in some places.
Diffstat (limited to 'helix-core/src/movement.rs')
-rw-r--r-- | helix-core/src/movement.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-core/src/movement.rs b/helix-core/src/movement.rs index d0023e9f..bfceb4ef 100644 --- a/helix-core/src/movement.rs +++ b/helix-core/src/movement.rs @@ -7,9 +7,10 @@ use crate::{ categorize_char, char_is_line_ending, char_is_punctuation, char_is_whitespace, char_is_word, CharCategory, }, - coords_at_pos, get_line_ending, + coords_at_pos, graphemes::{nth_next_grapheme_boundary, nth_prev_grapheme_boundary}, - line_end_char_index, pos_at_coords, Position, Range, RopeSlice, + line_ending::{get_line_ending, line_end_char_index}, + pos_at_coords, Position, Range, RopeSlice, }; #[derive(Debug, Copy, Clone, PartialEq, Eq)] |