summaryrefslogtreecommitdiffstats
path: root/alacritty.yml
diff options
context:
space:
mode:
authorRonan Jouchet <ronan.jouchet@imagia.com>2017-05-10 12:51:41 -0400
committerJoe Wilm <jwilm@users.noreply.github.com>2017-05-10 11:02:45 -0700
commitf6d7f7cdb15834f977871a8e43670f6001f139a5 (patch)
tree03169dbe146f17babf700028b5ff250fa9be0288 /alacritty.yml
parent6b485e415808a2b915464f6bd12d33408b45bb1d (diff)
Add Shift+PageUp and Shift+PageDown to default key bindings
Diffstat (limited to 'alacritty.yml')
-rw-r--r--alacritty.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml
index 30ab9df0..d7025f84 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -189,8 +189,10 @@ key_bindings:
- { key: Home, chars: "\x1b[1~", mode: ~AppCursor }
- { key: End, chars: "\x1bOF", mode: AppCursor }
- { key: End, chars: "\x1b[4~", mode: ~AppCursor }
+ - { key: PageUp, mods: Shift, chars: "\x1b[5;2~" }
- { key: PageUp, mods: Control, chars: "\x1b[5;5~" }
- { key: PageUp, chars: "\x1b[5~" }
+ - { key: PageDown, mods: Shift, chars: "\x1b[6;2~" }
- { key: PageDown, mods: Control, chars: "\x1b[6;5~" }
- { key: PageDown, chars: "\x1b[6~" }
- { key: Left, mods: Shift, chars: "\x1b[1;2D" }