Emacs: Delete frame with C-q.
This commit is contained in:
parent
563fcdc14e
commit
7a2035f283
|
@ -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)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user