emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/cape e8b6a8a5f8: Improve cape--symbol-annotation


From: ELPA Syncer
Subject: [elpa] externals/cape e8b6a8a5f8: Improve cape--symbol-annotation
Date: Wed, 19 Oct 2022 08:57:21 -0400 (EDT)

branch: externals/cape
commit e8b6a8a5f807b1a597202b0e7b43ce35794c4206
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Improve cape--symbol-annotation
---
 cape.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/cape.el b/cape.el
index b3d96dd06a..34c7f49368 100644
--- a/cape.el
+++ b/cape.el
@@ -308,8 +308,11 @@ STATUS is the exit status."
   "Return kind of SYM."
   (setq sym (intern-soft sym))
   (cond
-   ((or (macrop sym) (special-form-p sym)) " Macro")
+   ((special-form-p sym) " Special")
+   ((macrop sym) " Macro")
+   ((commandp sym) " Command")
    ((fboundp sym) " Function")
+   ((custom-variable-p sym) " Custom")
    ((boundp sym) " Variable")
    ((featurep sym) " Feature")
    ((facep sym) " Face")



reply via email to

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