mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Disable scroll buffer for "alt" Grid
The scroll history size for the alternative grid (used by fullscreen apps such as vim and tmux) is now forced to zero. There are two motivations for this change: 1. According to the literature, the alt screen should not have scroll history. 2. Reduce memory consumption by only allocating the single scroll history. In the future, it may be desirable to support a configuration option to enable a scroll buffer for the alt screen. By launching without this feature, we can delay a decision about whether to officially support this or not.
This commit is contained in:
parent
cde1d8d1ed
commit
e1895a16ff
1 changed files with 1 additions and 1 deletions
|
@ -849,13 +849,13 @@ impl Term {
|
|||
|
||||
let history_size = config.scrolling().history as usize;
|
||||
let grid = Grid::new(num_lines, num_cols, history_size, Cell::default());
|
||||
let alt = Grid::new(num_lines, num_cols, 0 /* scroll history */, Cell::default());
|
||||
|
||||
let tabspaces = config.tabspaces();
|
||||
let tabs = IndexRange::from(Column(0)..grid.num_cols())
|
||||
.map(|i| (*i as usize) % tabspaces == 0)
|
||||
.collect::<Vec<bool>>();
|
||||
|
||||
let alt = grid.clone();
|
||||
let scroll_region = Line(0)..grid.num_lines();
|
||||
|
||||
Term {
|
||||
|
|
Loading…
Reference in a new issue