help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Color of new window C-x 5 2?


From: Stephen Berman
Subject: Re: Color of new window C-x 5 2?
Date: Tue, 17 Mar 2020 23:17:14 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

On Tue, 17 Mar 2020 17:33:16 -0400 Nicholas Papadonis 
<nick.papadonis.ml@gmail.com> wrote:

> Does anyone know how to use (set-foreground-color) commands when the new
> window is created?  At the moment, these settings do not effect the new
> window created with C-x 5 2.  Thank you

Since set-foreground-color only affects the selected frame, you could do this:

(dolist (f (frame-list))
  (select-frame f)
  (set-foreground-color "green"))

Steve Berman



reply via email to

[Prev in Thread] Current Thread [Next in Thread]