From 02ebcc5aedf7163e1f9999245eb4ac3ddbe7a6fb Mon Sep 17 00:00:00 2001 From: Sören Tempel Date: Sun, 23 May 2021 23:30:18 +0200 Subject: Unbind ctrl+v --- saneterm/keys.py | 3 +++ 1 file changed, 3 insertions(+) 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 "e" { "move-input-end" () }; bind "h" { "backspace" () }; bind "j" { "insert-at-cursor" ("\\n") }; + + /* Since c is used for VINTR, unbind v */ + unbind "v"; } * { -- cgit 1.4.1