From c14a5e295d72d7a88d0454d17a6c96a6738b680e Mon Sep 17 00:00:00 2001 From: Davide Masserut Date: Thu, 3 Nov 2022 15:16:21 +0100 Subject: [PATCH] Bind "DEL" in dictionary-mode * lisp/net/dictionary.el (dictionary-mode-map): Bind it to scroll-down-command. --- lisp/net/dictionary.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el index b8f5018005..572eecab5a 100644 --- a/lisp/net/dictionary.el +++ b/lisp/net/dictionary.el @@ -341,7 +341,8 @@ dictionary-mode-map "p" #'backward-button "SPC" #'scroll-up-command "S-SPC" #'scroll-down-command - "M-SPC" #'scroll-down-command) + "M-SPC" #'scroll-down-command + "DEL" #'scroll-down-command) (defvar dictionary-connection nil -- 2.38.1