pub struct Text { /* private fields */ }Expand description
The text in a given Area
Implementations§
Source§impl Text
impl Text
pub fn search_fwd<R: RegexPattern>( &mut self, pat: R, range: impl TextRange, ) -> Result<impl Iterator<Item = R::Match> + '_, Box<Error>>
Sourcepub fn search_rev<R: RegexPattern>(
&mut self,
pat: R,
range: impl TextRange,
) -> Result<impl Iterator<Item = R::Match> + '_, Box<Error>>
pub fn search_rev<R: RegexPattern>( &mut self, pat: R, range: impl TextRange, ) -> Result<impl Iterator<Item = R::Match> + '_, Box<Error>>
Returns an iterator over the reverse matches of the regex
Source§impl Text
impl Text
pub fn new_with_cursors() -> Self
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Whether or not there are any characters in the Text
§Note
This does not check for tags, so with a Tag::GhostText,
there could actually be a “string” of characters on the
Text, it just wouldn’t be considered real “text”.
Sourcepub fn strs(&self) -> [&str; 2]
pub fn strs(&self) -> [&str; 2]
The two &strs that compose the buffer
In order to iterate over them, I recommend using the
flat_map method:
let text = Text::new();
text.strs().into_iter().flat_map(str::chars);Do note that you should avoid iterators like str::lines,
as they will separate the line that is partially owned by each
&str:
let broken_up_line = [
"This is line 1, business as usual This is line 2, but it",
"is broken into two separate strings So 4 lines would be counted, \
instead of 3",
];Sourcepub fn strs_in(&self, range: impl TextRange) -> IntoIter<&str, 2>
pub fn strs_in(&self, range: impl TextRange) -> IntoIter<&str, 2>
Returns 2 &strs in the given range
§Note
The reason why this function returns two strings is that the
contents of the text are stored in a GapBuffer, which
works with two strings.
If you want to iterate over them, you can do the following:
let text = Text::new();
text.strs_in((p1, p2)).flat_map(str::bytes);Do note that you should avoid iterators like str::lines,
as they will separate the line that is partially owned by each
&str:
let broken_up_line = [
"This is line 1, business as usual.\nThis is line 2, but it",
"is broken into two separate strings.\nSo 4 lines would be counted, \
instead of 3",
];§TextRange behavior:
If you give a single usize/Point, it will be
interpreted as a range from.
Sourcepub fn lines_in(
&mut self,
range: impl TextRange,
) -> impl DoubleEndedIterator<Item = (usize, &str)>
pub fn lines_in( &mut self, range: impl TextRange, ) -> impl DoubleEndedIterator<Item = (usize, &str)>
Returns an iterator over the lines in a given range
The lines are inclusive, that is, it will iterate over the whole line, not just the parts within the range.
Sourcepub fn ts_parser(&self) -> Option<&TsParser>
pub fn ts_parser(&self) -> Option<&TsParser>
Returns the TsParser, if there is one
This parser uses tree-sitter internally for things like syntax highlighing and indentation, but it have all sorts of utilities in user code as well.
Sourcepub fn point_at(&self, at: usize) -> Point
pub fn point_at(&self, at: usize) -> Point
The Point corresponding to the byte position, 0 indexed
If the byte position would fall in between two characters
(because the first one comprises more than one byte), the
first character is chosen as the Point where the byte is
located.
§Panics
Will panic if at is greater than the length of the text
Sourcepub fn point_at_char(&self, at: usize) -> Point
pub fn point_at_char(&self, at: usize) -> Point
Sourcepub fn point_at_line(&self, at: usize) -> Point
pub fn point_at_line(&self, at: usize) -> Point
Sourcepub fn points_of_line(&self, at: usize) -> (Point, Point)
pub fn points_of_line(&self, at: usize) -> (Point, Point)
Sourcepub fn len_points(&self) -> (Point, Option<Point>)
pub fn len_points(&self) -> (Point, Option<Point>)
The points at the end of the text
This will essentially return the last point of the text,
alongside the last possible Point of any
Tag::GhostText at the end of the text.
Sourcepub fn last_point(&self) -> Option<Point>
pub fn last_point(&self) -> Option<Point>
Sourcepub fn ghost_max_points_at(&self, at: usize) -> (Point, Option<Point>)
pub fn ghost_max_points_at(&self, at: usize) -> (Point, Option<Point>)
The maximum points in the atth byte
This point is essentially the point at that byte, plus the
last possible Point of any Tag::GhostTexts in that
position.
Sourcepub fn points_after(&self, tp: impl TwoPoints) -> Option<(Point, Option<Point>)>
pub fn points_after(&self, tp: impl TwoPoints) -> Option<(Point, Option<Point>)>
Points visually after the TwoPoints
If the TwoPoints in question is concealed, treats the
next visible character as the first character, and returns
the points of the next visible character.
This method is useful if you want to iterator reversibly right after a certain point, thus including the character of said point.
Sourcepub fn replace_range(&mut self, range: impl TextRange, edit: impl ToString)
pub fn replace_range(&mut self, range: impl TextRange, edit: impl ToString)
pub fn apply_change( &mut self, guess_i: Option<usize>, change: Change<String>, ) -> Option<usize>
Sourcepub fn update_range(&mut self, range: (Point, Point))
pub fn update_range(&mut self, range: (Point, Point))
This is used by Areas in order to update visible text
In order to not update too much, an Area will request that
a region of the Text (usually roughly what is shown on
screen) to be updated, rather than the whole Text.
This should be done within the Area::print and
Area::print_with functions.
pub fn needs_update(&self) -> bool
Sourcepub fn undo(&mut self, area: &impl Area, cfg: PrintCfg)
pub fn undo(&mut self, area: &impl Area, cfg: PrintCfg)
Undoes the last moment, if there was one
Sourcepub fn redo(&mut self, area: &impl Area, cfg: PrintCfg)
pub fn redo(&mut self, area: &impl Area, cfg: PrintCfg)
Redoes the last moment in the history, if there is one
pub fn apply_and_process_changes( &mut self, changes: &[Change<&str>], cursors_to_remake: Option<(&impl Area, &mut Cursors, PrintCfg)>, )
Sourcepub fn new_moment(&mut self)
pub fn new_moment(&mut self)
Finishes the current moment and adds a new one to the history
Sourcepub fn has_unsaved_changes(&self) -> bool
pub fn has_unsaved_changes(&self) -> bool
Sourcepub fn insert_tag(&mut self, at: usize, tag: Tag, key: Key)
pub fn insert_tag(&mut self, at: usize, tag: Tag, key: Key)
Inserts a Tag at the given position
Removes the Tags of a key from a region
§Caution
While it is fine to do this on your own widgets, you should
refrain from using this function in a Files Text, as
it must iterate over all tags in the file, so if there are a
lot of other tags, this operation may be slow.
§TextRange behavior
If you give it a Point or usize, it will be treated as
a one byte range.
Sourcepub fn enable_cursors(&mut self)
pub fn enable_cursors(&mut self)
Enables the usage of Cursors in this Text
This is automatically done whenever you use the EditHelper
struct.
Sourcepub fn iter_fwd(&self, at: impl TwoPoints) -> Iter<'_> ⓘ
pub fn iter_fwd(&self, at: impl TwoPoints) -> Iter<'_> ⓘ
A forward iterator of the chars and tags of the Text
Sourcepub fn iter_rev(&self, at: impl TwoPoints) -> RevIter<'_> ⓘ
pub fn iter_rev(&self, at: impl TwoPoints) -> RevIter<'_> ⓘ
A reverse iterator of the chars and tags of the Text
Sourcepub fn chars_fwd(&self, p: Point) -> impl Iterator<Item = (Point, char)> + '_
pub fn chars_fwd(&self, p: Point) -> impl Iterator<Item = (Point, char)> + '_
A forward iterator of the chars of the Text
Each char will be accompanied by a Point, which is the
position where said character starts, e.g.
Point::default() for the first character
Sourcepub fn chars_rev(&self, p: Point) -> impl Iterator<Item = (Point, char)> + '_
pub fn chars_rev(&self, p: Point) -> impl Iterator<Item = (Point, char)> + '_
A reverse iterator of the chars of the Text
Each char will be accompanied by a Point, which is the
position where said character starts, e.g.
Point::default() for the first character