branch: elpa/helm
commit c6e23f75af1d656809060310a692e847157b4a9a
Author: Ta Quang Trung <[email protected]>
Commit: Ta Quang Trung <[email protected]>
use shadow face for item-delimiter
---
helm-imenu.el | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/helm-imenu.el b/helm-imenu.el
index 3a7a791811..d205e39f30 100644
--- a/helm-imenu.el
+++ b/helm-imenu.el
@@ -399,11 +399,16 @@ string."
when (string-match p (car types))
return f
finally return 'default))
- for disp1 = (mapconcat 'identity (cdr types) helm-imenu-delimiter)
+ for disp1 = (mapconcat 'identity
+ (cdr types)
+ (propertize helm-imenu-delimiter
+ 'face 'shadow))
for disp = (concat (propertize " " 'display type-icon)
" "
(if helm-imenu-show-item-type-name
- (concat type-name helm-imenu-delimiter)
+ (concat type-name
+ (propertize helm-imenu-delimiter
+ 'face 'shadow))
"")
(propertize disp1 'help-echo bufname 'types
types))
collect