Emacs: Make M-<delete> synonym to C-<delete>.

This commit is contained in:
tastytea 2020-05-17 19:46:40 +02:00
parent da3eb9202a
commit 79f61ba47b
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-04-27T14:45:35+0200>
;; Time-stamp: <2020-05-17T19:43:47+0200>
;;; Commentary:
;; * Setup mouse & keyboard behaviour.
@ -55,6 +55,7 @@ With ARG, do it that many times."
("M-<up>" . scroll-down-line)
;; Delete words without storing them in the kill buffer.
("C-<delete>" . my/delete-word)
("M-<delete>" . my/delete-word)
("C-<backspace>" . my/backward-delete-word)
("C-DEL" . my/backward-delete-word)
("C-q" . delete-frame)