Skip to content

Commit dbf1084

Browse files
committed
Change the expanded/collapsed icons
1 parent 3adf416 commit dbf1084

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

lsp-treemacs.el

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,7 @@
422422
(concat
423423
(if (seq-empty-p children)
424424
" "
425-
(treemacs-get-icon-value
426-
(if expanded 'expanded 'collapsed)
427-
nil
428-
lsp-treemacs-theme))
425+
(if expanded "" ""))
429426
(treemacs-get-icon-value
430427
(cl-case kind
431428
(1 'document)
@@ -642,10 +639,7 @@
642639
"Get the symbol for the the kind."
643640
(-let (((&hash "uri" "name" "kind" "entryKind" entry-kind) dep))
644641
(concat
645-
(treemacs-get-icon-value
646-
(if expanded 'expanded 'collapsed)
647-
nil
648-
lsp-treemacs-theme)
642+
(if expanded "" "")
649643
(if (or (= kind 8)
650644
(= kind 6))
651645
(treemacs-icon-for-file uri)

0 commit comments

Comments
 (0)