emacs-diffs
[Top][All Lists]
Advanced

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

master ed42afd: Allow TAB to go to a key in EPA key buffers


From: Lars Ingebrigtsen
Subject: master ed42afd: Allow TAB to go to a key in EPA key buffers
Date: Tue, 4 May 2021 05:25:40 -0400 (EDT)

branch: master
commit ed42afd403f69c2e29e4c09b9e7fd6cd6d7e68b1
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Allow TAB to go to a key in EPA key buffers
    
    * lisp/epa.el (epa--insert-keys): Allow TAB to go to the keys
    (bug#47876).
---
 lisp/epa.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lisp/epa.el b/lisp/epa.el
index bbfa2c1..2698b39 100644
--- a/lisp/epa.el
+++ b/lisp/epa.el
@@ -333,7 +333,10 @@ If ARG is non-nil, mark the key."
     (insert
      (propertize
       (concat "  " (epa--button-key-text key))
-      'epa-key key))
+      'epa-key key
+      ;; Allow TAB to tab to the key.
+      'button t
+      'category t))
     (insert "\n")))
 
 (defun epa--list-keys (name secret &optional doc)



reply via email to

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