diff options
author | Christian Duerr <contact@christianduerr.com> | 2018-03-10 20:24:10 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-03-15 12:27:12 -0700 |
commit | e7a32b589f6701667bb7c0135491b6800f8716e6 (patch) | |
tree | 754efd9bf97f8fc13abc36af8722b2c2cfddd221 /src/term | |
parent | d9be2d2d88689d31d08f9218f8493635d0724860 (diff) | |
download | alacritty-e7a32b589f6701667bb7c0135491b6800f8716e6.tar.gz alacritty-e7a32b589f6701667bb7c0135491b6800f8716e6.zip |
Add scrollback hotkeys
This offers a few additional hotkeys that can be used in combination
with scrollback. None of these are used by default yet.
This implements the following bindings:
- ScrollPageUp: Scroll exactly one screen height up
- ScrollPageDown: Scroll exactly one screen height down
- ScrollToTop: Scroll as far up as possible
- ScrollToBottom: Scroll as far down as possible
This fixes #1151.
Diffstat (limited to 'src/term')
-rw-r--r-- | src/term/mod.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/term/mod.rs b/src/term/mod.rs index 8d378247..8f9fee1b 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -830,6 +830,22 @@ impl Term { pub fn reset_scroll(&mut self) { self.grid.reset_scroll_display(); + self.dirty = true; + } + + pub fn scroll_to_top(&mut self) { + self.grid.scroll_to_top(); + self.dirty = true; + } + + pub fn scroll_page_up(&mut self) { + self.grid.scroll_page_up(); + self.dirty = true; + } + + pub fn scroll_page_down(&mut self) { + self.grid.scroll_page_down(); + self.dirty = true; } #[inline] |