mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Fix URLs getting incorrectly extended to next line
If a URL ends right at the end of the terminal, it would sometimes incorrectly include the characters from the following line when launching the URL. Similar to the semantic search function, the URL parsing iterator will now stop if it encounters a cell at the end of the line which does not contain the `WRAPLINE` flag. This fixes #1906.
This commit is contained in:
parent
a672f7d553
commit
c6ab2a8867
2 changed files with 13 additions and 5 deletions
|
@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- The AltGr key no longer sends escapes (like Alt)
|
||||
- Fixes increase/decrease font-size keybindings on international keyboards
|
||||
- On Wayland, the `--title` flag will set the Window title now
|
||||
- Parsing issues with URLs starting in the first or ending in the last column
|
||||
|
||||
## Version 0.2.9
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ impl Search for Term {
|
|||
point.line = min(point.line, self.grid.len() - 1);
|
||||
|
||||
let mut iter = self.grid.iter_from(point);
|
||||
let last_col = self.grid.num_cols() - Column(1);
|
||||
let last_col = self.grid.num_cols() - 1;
|
||||
|
||||
while let Some(cell) = iter.next() {
|
||||
if self.semantic_escape_chars.contains(cell.c) {
|
||||
|
@ -103,6 +103,8 @@ impl Search for Term {
|
|||
}
|
||||
|
||||
fn url_search(&self, mut point: Point<usize>) -> Option<Url> {
|
||||
let last_col = self.grid.num_cols() - 1;
|
||||
|
||||
// Switch first line from top to bottom
|
||||
point.line = self.grid.num_lines().0 - point.line - 1;
|
||||
|
||||
|
@ -110,19 +112,24 @@ impl Search for Term {
|
|||
point.line += self.grid.display_offset();
|
||||
|
||||
// Create forwards and backwards iterators
|
||||
let iterf = self.grid.iter_from(point);
|
||||
let mut iterf = self.grid.iter_from(point);
|
||||
point.col += 1;
|
||||
let mut iterb = self.grid.iter_from(point);
|
||||
|
||||
// Find URLs
|
||||
let mut url_parser = UrlParser::new();
|
||||
while let Some(cell) = iterb.prev() {
|
||||
if url_parser.advance_left(cell.c) {
|
||||
if (iterb.cur().col == last_col && !cell.flags.contains(cell::Flags::WRAPLINE))
|
||||
|| url_parser.advance_left(cell.c)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
for cell in iterf {
|
||||
if url_parser.advance_right(cell.c) {
|
||||
|
||||
while let Some(cell) = iterf.next() {
|
||||
if url_parser.advance_right(cell.c)
|
||||
|| (iterf.cur().col == last_col && !cell.flags.contains(cell::Flags::WRAPLINE))
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue