vote up 0 vote down star

Is this possible to configure different background color for active window ?

flag

2 Answers

vote up 4 vote down

If by "window" you mean Emacs' definition of windows, i.e., panes, not really.

If by "window" you mean everyone else's conception of windows, which Emacs calls frames, then yes. Here's an example:

(defadvice handle-switch-frame (around switch-frame-set-background)
  (set-background-color "white")
  ad-do-it
  (set-background-color "yellow"))
(ad-activate 'handle-switch-frame)

(defadvice delete-frame (after delete-frame-set-background)
  (set-background-color "yellow"))
(ad-activate 'delete-frame)
link|flag
And if he wants it per-window, I would just recommend a reverse-video modeline. If you need more of a visual cue than that, open fewer windows. – jrockway Oct 4 at 20:38
Uh, active modeline, that is. – jrockway Oct 4 at 20:38
vote up 0 vote down

If what you are trying to achieve is to highlight the current buffer/frame, the way I do that is through Highlight-Current-Line. It shows you the line where the cursor is, but a side effect of that is that it also shows you which buffer/frame you are in. You could configure it to highlight the entire buffer, or look into the code to see how they do it.

link|flag
Yeah, what I meant by "not really" was that you can't highlight a window, just a buffer, because any modifications to the buffer contents will affect every view of the buffer. For me, the modeline color + cursor flashing do fine. – Nicholas Riley Oct 5 at 18:03

Your Answer

Get an OpenID
or

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