From ed42afd403f69c2e29e4c09b9e7fd6cd6d7e68b1 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 4 May 2021 11:25:33 +0200 Subject: [PATCH] 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 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) -- 2.39.2