diff options
author | Christian Duerr <contact@christianduerr.com> | 2018-03-10 12:14:58 +0100 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2018-06-02 09:46:20 -0700 |
commit | d9bd21d33f7f35d1362a581cefb1c897a821fcad (patch) | |
tree | 945089b96fbbad1b153430d1565a410003be30f5 /src/term | |
parent | a238e9ac5832cb9a40f886a3b873728cd7890d01 (diff) | |
download | alacritty-d9bd21d33f7f35d1362a581cefb1c897a821fcad.tar.gz alacritty-d9bd21d33f7f35d1362a581cefb1c897a821fcad.zip |
Fix selection in scrollback
There were a few issues with selection in scrollback that were mainly
off-by-one errors. This aims at fixing these issues.
This also fixes a bug that currently exists in master where the last
cell is not selected when the mouse leaves the window to the right.
Diffstat (limited to 'src/term')
-rw-r--r-- | src/term/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/term/mod.rs b/src/term/mod.rs index fd321fc6..6318c680 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -1060,7 +1060,6 @@ impl Term { let selection = self.grid.selection.as_ref() .and_then(|s| s.to_span(self)) .map(|span| { - // println!("span={:?}, locations={:?}", span, span.to_locations()); span.to_locations() }); let cursor = if window_focused { |