Fix: incorrect icons for some buffers.

This commit is contained in:
Vincent Zhang 2019-04-10 01:26:46 +08:00
parent 4c734d7f3e
commit a6814ac4e3

View file

@ -202,7 +202,8 @@ buffer where knowing the current project directory is important."
(when (and doom-modeline-icon doom-modeline-major-mode-icon) (when (and doom-modeline-icon doom-modeline-major-mode-icon)
(let* ((height (/ all-the-icons-scale-factor 1.3)) (let* ((height (/ all-the-icons-scale-factor 1.3))
(icon (if (and buffer-file-name (icon (if (and buffer-file-name
(all-the-icons-auto-mode-match?)) (all-the-icons-match-to-alist buffer-file-name
all-the-icons-icon-alist))
(doom-modeline-icon-for-file (file-name-nondirectory buffer-file-name) (doom-modeline-icon-for-file (file-name-nondirectory buffer-file-name)
:height height) :height height)
(doom-modeline-icon-for-mode major-mode :height height)))) (doom-modeline-icon-for-mode major-mode :height height))))