branch: externals/kind-icon
commit 0d92763c79ca08debd65da8790bcc8c0684eaca9
Author: JD Smith <[email protected]>
Commit: JD Smith <[email protected]>
add kinds constructor, event, reference, typeparameter
---
kind-icon.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/kind-icon.el b/kind-icon.el
index 7d8439c..03e675c 100644
--- a/kind-icon.el
+++ b/kind-icon.el
@@ -72,8 +72,10 @@
(class "c" :icon "view-grid-plus-outline" :face font-lock-type-face)
(color "#" :icon "palette" :face success)
(constant "co" :icon "lock-remove-outline" :face font-lock-constant-face)
+ (constructor "cn" :icon "table-column-plus-after" :face
font-lock-function-name-face)
(enum-member "em" :icon "format-list-checks" :face font-lock-builtin-face)
(enum "e" :icon "format-list-bulleted-square" :face font-lock-builtin-face)
+ (event "ev" :icon "lightning-bolt-outline" :face font-lock-warning-face)
(field "fd" :icon "application-braces-outline" :face
font-lock-variable-name-face)
(file "f" :face :icon "file-document-outline" font-lock-string-face)
(folder "d" :icon "folder" :face font-lock-doc-face)
@@ -87,10 +89,12 @@
(parameter "pa" :icon "application-variable-outline" :face
font-lock-builtin-face)
(property "pr" :icon "application-parentheses-outline" :face
font-lock-variable-name-face)
(ruler "r" :icon "ruler" :face shadow)
+ (reference "rf" :icon "variable-box" :face font-lock-variable-name-face)
(snippet "S" :icon "note-text-outline" :face font-lock-string-face)
(string "s" :icon "sticker-text-outline" :face font-lock-string-face)
(struct "%" :icon "code-braces" :face font-lock-variable-name-face)
(text "tx" :icon "script-text-outline" :face shadow)
+ (typeparameter "tp" :icon "format-list-bulleted-type" :face
font-lock-type-face)
(value "v" :icon "plus-circle-outline" :face font-lock-builtin-face)
(variable "va" :icon "variable" :face font-lock-variable-name-face)
(t "." :icon "crosshairs-question" :face shadow))