diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-08-28 16:13:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-28 16:13:49 +0000 |
commit | b6c5f6918c2e4b02ebf78b359fe0a2bde15c21fb (patch) | |
tree | 7683cf0c489b8a106a0e7c3b63c0a3a9b7befb73 /alacritty_terminal/src/grid/mod.rs | |
parent | 06e52a62660a0604498d8c11bdc621ac9c218606 (diff) | |
parent | 5f7fb4c3e27fc352f161a152fdcf2805cdbf2158 (diff) | |
download | r-alacritty-b6c5f6918c2e4b02ebf78b359fe0a2bde15c21fb.tar.gz r-alacritty-b6c5f6918c2e4b02ebf78b359fe0a2bde15c21fb.tar.bz2 r-alacritty-b6c5f6918c2e4b02ebf78b359fe0a2bde15c21fb.zip |
Fix url highlight not showing with required modifiers
Diffstat (limited to 'alacritty_terminal/src/grid/mod.rs')
-rw-r--r-- | alacritty_terminal/src/grid/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/grid/mod.rs b/alacritty_terminal/src/grid/mod.rs index 2d191d20..01c17152 100644 --- a/alacritty_terminal/src/grid/mod.rs +++ b/alacritty_terminal/src/grid/mod.rs @@ -280,7 +280,7 @@ impl<T: GridCell + Copy + Clone> Grid<T> { last_row.append(&mut cells); if row.is_empty() { - let raw_len = i + 1 + new_raw.len();; + let raw_len = i + 1 + new_raw.len(); if raw_len < self.lines.0 || self.scroll_limit == 0 { // Add new line and move lines up if we can't pull from history cursor_pos.line = Line(cursor_pos.line.saturating_sub(1)); |