summaryrefslogtreecommitdiff
path: root/src/event.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2018-03-10 20:24:10 +0100
committerJoe Wilm <joe@jwilm.com>2018-06-02 09:56:50 -0700
commit2c7bb9a4d3ce3ead6de4ca6485ca67c44c0bd1c1 (patch)
tree68616e8f2d0c2018d766d8462dc122bea1d70923 /src/event.rs
parente20aa550cbcf7b3f7be6757c007960b3f9b1ac08 (diff)
downloadalacritty-2c7bb9a4d3ce3ead6de4ca6485ca67c44c0bd1c1.tar.gz
alacritty-2c7bb9a4d3ce3ead6de4ca6485ca67c44c0bd1c1.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/event.rs')
-rw-r--r--src/event.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/event.rs b/src/event.rs
index b0987d58..4823d824 100644
--- a/src/event.rs
+++ b/src/event.rs
@@ -61,6 +61,18 @@ impl<'a, N: Notify + 'a> input::ActionContext for ActionContext<'a, N> {
self.terminal.reset_scroll();
}
+ fn scroll_to_top(&mut self) {
+ self.terminal.scroll_to_top();
+ }
+
+ fn scroll_page_up(&mut self) {
+ self.terminal.scroll_page_up();
+ }
+
+ fn scroll_page_down(&mut self) {
+ self.terminal.scroll_page_down();
+ }
+
fn copy_selection(&self, buffer: ::copypasta::Buffer) {
self.terminal
.selection_to_string()