Emacs: M-DEL synonymous with C-DEL.

Needed for terminal emulator workarounds.
This commit is contained in:
tastytea 2020-11-25 06:41:35 +01:00
parent 692e4b23f9
commit 920d2c29b5
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-11-18T18:38:12+0100>
;; Time-stamp: <2020-11-25T06:29:01+0100>
;;; Commentary:
;; * Setup mouse & keyboard behaviour.
@ -59,6 +59,7 @@ With ARG, do it that many times."
("M-<delete>" . my/delete-word)
("C-<backspace>" . my/backward-delete-word)
("C-DEL" . my/backward-delete-word)
("M-DEL" . my/backward-delete-word)
("C-q" . delete-frame)
;; Insert next character with control characters.
("C-S-v" . quoted-insert)