From 282598761948048f2d352e9cf913dc3a7b68ce52 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 28 Nov 2017 20:58:04 -0800 Subject: [PATCH] Print map keys in describe-personal-keybindings Fixes https://github.com/jwiegley/use-package/issues/406 --- lisp/use-package/bind-key.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index e5002d4ee17..eb24d2396e3 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -374,8 +374,8 @@ function symbol (unquoted)." (car (compare-keybindings l r)))))) (if (not (eq (cdar last-binding) (cdar binding))) - (princ (format "\n\n%s\n%s\n\n" - (cdar binding) + (princ (format "\n\n%s: %s\n%s\n\n" + (cdar binding) (caar binding) (make-string (+ 21 (car bind-key-column-widths) (cdr bind-key-column-widths)) ?-))) (if (and last-binding -- 2.39.2