-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some icons like read-only indicator don't work in daemon mode #78
Comments
I think the bug is related to e29ab28 Before that they work but scale weird (https://user-images.githubusercontent.com/1747359/102846453-aef30c80-4418-11eb-83df-4053db8d9f17.png) |
Hi! Thanks for reporting this issue. Sorry I haven't been able to get to helping you yet. Is this still a problem for you? I've been trying to reproduce this and I don't seem to be able to. I just have |
I've looking into this again when reworking my init.el (now init.org). This the fragment of my emacs config that sets up mode-icons: ** Smart-Mode-Line
#+begin_src emacs-lisp
(use-package smart-mode-line
;; :after powerline
:init
(setq sml/no-confirm-load-theme t)
(setq sml/theme 'respectful)
(sml/setup)
(sml/apply-theme 'powerline))
#+end_src
** Mode-icons: Show icon instead of mode name if aviable
#+begin_src emacs-lisp
(use-package mode-icons
:after smart-mode-line
:config
;;
(mode-icons-mode))
#+end_src
`` |
Hello again! Great find! Ok... What I think is happening is that Do you know of a way to hook in to smart-mode-line so that you can alter the display of its read-only indicator? If so you might be able to add something from mode-icons into it. |
When starting emacs as --daemon vs. normal some icons are not displayed.
Emacs:28.x
Mode-icons: latest melpa
See this screenshot (left daemon, right regular):
![Screenshot_20201226_064623](https://user-images.githubusercontent.com/1747359/103145607-16c19400-4746-11eb-8e50-3298384eb265.png)
The text was updated successfully, but these errors were encountered: