From 7a2035f283427d631318abe02c04aef750853e39 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 27 Jan 2020 09:21:22 +0100 Subject: [PATCH] Emacs: Delete frame with C-q. --- init.d/basics/input.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) ) )