Emacs: Delete frame with C-q.

This commit is contained in:
tastytea 2020-01-27 09:21:22 +01:00
parent 563fcdc14e
commit 7a2035f283
1 changed files with 4 additions and 1 deletions

View File

@ -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-<delete>" . my/delete-word)
("C-<backspace>" . 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)
)
)