Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using zenburn from here:

https://github.com/djcb/elisp/blob/master/themes/zenburn-theme.el

It uses a lot of :inherit settings. However, I'm noticing that when I switch to another theme x and then back, x's foreground would remain along with zenburn's :inherit.

What to do?

share|improve this question

1 Answer

:inherit works weirdly in Emacs 24... it is unclear whether the current behavior is a "feature" or bug. I usually load themes with:

(load-theme 'zenburn t)
(load "zenburn-theme")

at the end of my init.el; the explicit load should reset inheritance. This is the advice given by the author of that theme, and it works fine for me on other themes as well (such as solarized).

share|improve this answer
Hey thanks, that solved an issue I had with my own theme! Had to re-eval it once Emacs was loaded to correct some colors that should have been set by the theme. Definitely a bug to me :-) – aerique Oct 16 '12 at 11:56
I have similar problems with emacs 24. Your solution helped me, but first should be (load... and then (load-theme... – avp Nov 30 '12 at 15:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.