diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-08-26 18:09:20 +0200 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-08-26 18:11:36 +0200 |
commit | 5f7fb4c3e27fc352f161a152fdcf2805cdbf2158 (patch) | |
tree | 7683cf0c489b8a106a0e7c3b63c0a3a9b7befb73 /alacritty_terminal/src/grid/mod.rs | |
parent | 06e52a62660a0604498d8c11bdc621ac9c218606 (diff) | |
download | alacritty-5f7fb4c3e27fc352f161a152fdcf2805cdbf2158.tar.gz alacritty-5f7fb4c3e27fc352f161a152fdcf2805cdbf2158.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)); |