From a67c9958be0898409a0e5fa0344ee2256fb677b7 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 29 Mar 2020 21:49:54 +0200 Subject: [PATCH] =?UTF-8?q?Emacs:=20Add=20keybinding=20C-DEL=20=E2=86=92?= =?UTF-8?q?=20my/backward-delete-word.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It doesn't work in the terminal because of ancient UNIX bullshit. --- 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 03cc1cc..30ffb3c 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-03-27T17:06:27+0100> +;; Time-stamp: <2020-03-29T21:49:39+0200> ;;; Commentary: ;; * Setup mouse & keyboard behaviour. @@ -59,6 +59,7 @@ With ARG, do it that many times." ;; Delete words without storing them in the kill buffer. ("C-" . my/delete-word) ("C-" . my/backward-delete-word) + ("C-DEL" . my/backward-delete-word) ("C-q" . delete-frame) ;; Insert next character with control characters. ("C-S-v" . quoted-insert)