Emacs: Delete frame with C-q.

This commit is contained in:
tastytea 2020-01-27 09:21:22 +01:00
parent 563fcdc14e
commit 7a2035f283

View File

@ -1,6 +1,6 @@
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*- ;;; 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: ;;; Commentary:
;; * Setup mouse & keyboard behaviour. ;; * Setup mouse & keyboard behaviour.
@ -61,6 +61,9 @@ With argument, do this that many times."
;; Delete words without storing them in the kill buffer. ;; Delete words without storing them in the kill buffer.
("C-<delete>" . my/delete-word) ("C-<delete>" . my/delete-word)
("C-<backspace>" . my/backward-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)
) )
) )