aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2018-04-28 14:14:45 +0000
committerGitHub <noreply@github.com>2018-04-28 14:14:45 +0000
commitcf23f56999bee9884de81cd7e046e9a53ebb1632 (patch)
tree557919888cefe0b065edc96ad0deec7f6bd574d2
parent88305677f520f5884297e594ff2469cb948c7bef (diff)
downloadalacritty-cf23f56999bee9884de81cd7e046e9a53ebb1632.tar.gz
alacritty-cf23f56999bee9884de81cd7e046e9a53ebb1632.zip
Reset grid when running `reset`
In the current scrollback PR the `reset` command does not affect the scrollback history. To make sure the terminal is properly reset, it should clear the scrollback history. To make resetting efficient, instead of resetting the history, the scrollback history is hidden by setting `grid.scroll_limit` to `0`. This will not clear the history but instead just make it inaccessible, which should have the same effect. The visible area is reset by the shell itself, so in combination this clears the complete terminal grid from a user perspective. This fixes #1242.
-rw-r--r--src/grid/mod.rs4
-rw-r--r--src/term/mod.rs5
2 files changed, 6 insertions, 3 deletions
diff --git a/src/grid/mod.rs b/src/grid/mod.rs
index 313973a3..ac54f580 100644
--- a/src/grid/mod.rs
+++ b/src/grid/mod.rs
@@ -403,6 +403,10 @@ impl<T> Grid<T> {
self.cols
}
+ pub fn reset(&mut self) {
+ self.scroll_limit = 0;
+ }
+
pub fn iter_from(&self, point: Point<usize>) -> GridIterator<T> {
GridIterator {
grid: self,
diff --git a/src/term/mod.rs b/src/term/mod.rs
index 3f8929b6..3160e86b 100644
--- a/src/term/mod.rs
+++ b/src/term/mod.rs
@@ -837,13 +837,11 @@ impl Term {
}
pub fn new(config: &Config, size: SizeInfo) -> Term {
- let template = Cell::default();
-
let num_cols = size.cols();
let num_lines = size.lines();
let history_size = config.scrolling().history as usize;
- let grid = Grid::new(num_lines, num_cols, history_size, template);
+ let grid = Grid::new(num_lines, num_cols, history_size, Cell::default());
let tabspaces = config.tabspaces();
let tabs = IndexRange::from(Column(0)..grid.num_cols())
@@ -1818,6 +1816,7 @@ impl ansi::Handler for Term {
self.colors = self.original_colors;
self.color_modified = [false; color::COUNT];
self.cursor_style = None;
+ self.grid.reset();
}
#[inline]