-
-
Notifications
You must be signed in to change notification settings - Fork 196
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
emacsclient and modeline/echo-area #118
Comments
Thanks for the report. Do yu know if there's a way to detect if an instance is a client such that we can have specific code for such case? |
After some research, I discovered that I also observed another problem with the echo-area, I noticed that if Here is the init.el file I tried with:
|
Could you try with nano-theme (available on ELPA) to see if it fix things? |
Ok I tried with nano-theme, here is what I noticed :
I have the same behavior as I try with the default package manager instead of straight.el. My init.el file :
Edit:
|
Thanks for the report. Could you try a regular |
No difference with Note that if I use |
I think this means that we have to use an |
Hi,
The appearance of nano-emacs is a bit different when using emacsclient.
The bottom modeline/echo-area is not the right color, with the dark theme the modeline appears white and with the light theme the modeline is black.
Here is an example with the dark theme:
To fix this, I had to add these lines to my init.el file:
(add-hook 'echo-area-clear-hook 'nano-theme--minibuffer)
Another problem concerns nano-face-strong, with emacsclient the font is different because of the condition on display-graphic-p
I added this to my init.el file:
(set-face-attribute 'nano-face-strong nil :weight 'medium)
The text was updated successfully, but these errors were encountered: