branch: master
commit b39f409cb3ac6afc1f7ae1c3ea9c836bd1643ae3
Author: Oleh Krehel <ohwoeo...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>
    counsel.el (counsel-unicode-char): Display hex codes in left column
---
 counsel.el |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index ddf3d4f..9a3adcc 100644
--- a/counsel.el
+++ b/counsel.el
@@ -290,7 +290,7 @@
     (ivy-read "Unicode name: "
               (mapcar (lambda (x)
                         (propertize
-                         (format "% -60s%c" (car x) (cdr x))
+                         (format "% -6X% -60s%c" (cdr x) (car x) (cdr x))
                          'result (cdr x)))
                       (ucs-names))
               :action (lambda (char)

Reply via email to