[−][src]Trait alacritty::term::Search
A type that can expand a given point to a region
Usually this is implemented for some 2-D array type since points are two dimensional indices.
Required methods
fn semantic_search_left(&self, _: Point<usize>) -> Point<usize>
Find the nearest semantic boundary to the left of provided point.
fn semantic_search_right(&self, _: Point<usize>) -> Point<usize>
Find the nearest semantic boundary to the point of provided point.
fn url_search(&self, _: Point<usize>) -> Option<Url>
Find the nearest URL boundary in both directions.