From 79f61ba47b390fd615634021ac339f015e09d32c Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 17 May 2020 19:46:40 +0200 Subject: [PATCH] Emacs: Make M- synonym to C-. --- init.d/basics/input.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.d/basics/input.el b/init.d/basics/input.el index c6351db..67141ce 100644 --- a/init.d/basics/input.el +++ b/init.d/basics/input.el @@ -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-" . scroll-down-line) ;; Delete words without storing them in the kill buffer. ("C-" . my/delete-word) + ("M-" . my/delete-word) ("C-" . my/backward-delete-word) ("C-DEL" . my/backward-delete-word) ("C-q" . delete-frame)