about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2021-05-23 23:30:18 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2021-05-23 23:30:18 +0200
commit02ebcc5aedf7163e1f9999245eb4ac3ddbe7a6fb (patch)
treef628a6760a7195115f7123ffa4dcb4bcbcd42ee8
parent9ee833a669137e5b2f750960ba5ef571676de127 (diff)
Unbind ctrl+v
-rw-r--r--saneterm/keys.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/saneterm/keys.py b/saneterm/keys.py
index 00d5ac1..05ad05e 100644
--- a/saneterm/keys.py
+++ b/saneterm/keys.py
@@ -21,6 +21,9 @@ class Bindings():
             bind "<ctrl>e" { "move-input-end" () };
             bind "<ctrl>h" { "backspace" () };
             bind "<ctrl>j" { "insert-at-cursor" ("\\n") };
+
+            /* Since <ctrl>c is used for VINTR, unbind <ctrl>v */
+            unbind "<ctrl>v";
         }
 
         * {