From: Lars Ingebrigtsen Date: Tue, 4 May 2021 09:25:33 +0000 (+0200) Subject: Allow TAB to go to a key in EPA key buffers X-Git-Tag: emacs-28.0.90~2622 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed42afd403f69c2e29e4c09b9e7fd6cd6d7e68b1;p=emacs.git 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). --- diff --git a/lisp/epa.el b/lisp/epa.el index bbfa2c188cc..2698b39ffe3 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)