about summary refs log tree commit diff
path: root/saneterm/keys.py
diff options
context:
space:
mode:
Diffstat (limited to 'saneterm/keys.py')
-rw-r--r--saneterm/keys.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/saneterm/keys.py b/saneterm/keys.py
index 47058f6..5572f71 100644
--- a/saneterm/keys.py
+++ b/saneterm/keys.py
@@ -24,6 +24,9 @@ class Bindings():
             bind "<ctrl>w" { "delete-from-cursor" (word-ends, -1) };
             bind "<ctrl>h" { "backspace" () };
 
+            bind "Up" { "history-entry" (1) };
+            bind "Down" { "history-entry" (-1) };
+
             /* Since <ctrl>c is used for VINTR, unbind <ctrl>v */
             unbind "<ctrl>v";
         }