emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 6a132f9b52: Bind "DEL" in dictionary-mode


From: Eli Zaretskii
Subject: master 6a132f9b52: Bind "DEL" in dictionary-mode
Date: Sun, 6 Nov 2022 03:14:36 -0500 (EST)

branch: master
commit 6a132f9b52fd5e53298264ec89652be1a130a472
Author: Davide Masserut <dm@mssdvd.com>
Commit: Eli Zaretskii <eliz@gnu.org>

    Bind "DEL" in dictionary-mode
    
    * lisp/net/dictionary.el (dictionary-mode-map): Bind DEL to
    'scroll-down-command'.  (Bug#58986)
---
 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 d381750eb0..315f7e5f52 100644
--- a/lisp/net/dictionary.el
+++ b/lisp/net/dictionary.el
@@ -341,7 +341,8 @@ is utf-8"
   "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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]