summaryrefslogtreecommitdiffstats
path: root/alacritty.yml
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 /alacritty.yml
parente20aa550cbcf7b3f7be6757c007960b3f9b1ac08 (diff)
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 'alacritty.yml')
-rw-r--r--alacritty.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/alacritty.yml b/alacritty.yml
index 711c855f..546d6259 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -281,7 +281,18 @@ live_config_reload: true
# around them.
#
# Either an `action`, `chars`, or `command` field must be present.
-# `action` must be one of `Paste`, `PasteSelection`, `Copy`, or `Quit`.
+# `action` must be one of the following:
+# - `Paste`
+# - `PasteSelection`
+# - `Copy`
+# - `IncreaseFontSize`
+# - `DecreaseFontSize`
+# - `ResetFontSize`
+# - `ScrollPageUp`
+# - `ScrollPageDown`
+# - `ScrollToTop`
+# - `ScrollToBottom`
+# - `Quit`
# `chars` writes the specified string every time that binding is activated.
# These should generally be escape sequences, but they can be configured to
# send arbitrary strings of bytes.