Emacs: Add keybinding C-DEL → my/backward-delete-word.

It doesn't work in the terminal because of ancient UNIX bullshit.
This commit is contained in:
tastytea 2020-03-29 21:49:54 +02:00
parent e6391e1ff9
commit a67c9958be
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-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-<delete>" . my/delete-word)
("C-<backspace>" . 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)