diff --git a/init.d/basics/input.el b/init.d/basics/input.el index 88b54cc..98aef53 100644 --- a/init.d/basics/input.el +++ b/init.d/basics/input.el @@ -1,6 +1,6 @@ ;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-01-27T09:11:43+0100> +;; Time-stamp: <2020-01-27T09:21:13+0100> ;;; Commentary: ;; * Setup mouse & keyboard behaviour. @@ -61,6 +61,9 @@ With argument, do this that many times." ;; Delete words without storing them in the kill buffer. ("C-" . my/delete-word) ("C-" . my/backward-delete-word) + ("C-q" . delete-frame) + ;; Insert next character with control characters. Like C-V in the shell. + ("C-S-v" . quoted-insert) ) )