From: "Óscar Fuentes" <ofv@wanadoo.es>
To: help-gnu-emacs@gnu.org
Subject: Re: Setting the background color of the minibuffer
Date: Wed, 10 Dec 2014 17:24:22 +0100 [thread overview]
Message-ID: <87k31zscax.fsf@wanadoo.es> (raw)
In-Reply-To: 83r3w7v6da.fsf@gnu.org
Eli Zaretskii <eliz@gnu.org> writes:
>> Is it possible to set the background color (the face, in general terms)
>> of the minibuffer (and only of the minibuffer) without using a dedicated
>> frame for it?
>
> Did you try face-remapping?
Yes. Something like this:
Starting from
http://stackoverflow.com/questions/12654592/change-the-background-color-of-the-minibuffer-when-input-is-needed
where the solution is:
(add-hook 'minibuffer-setup-hook
(lambda ()
(make-local-variable 'face-remapping-alist)
(add-to-list 'face-remapping-alist
'(default (:background "green")))))
That works as advertised: the background changes when you are working on
the minibuffer.
However, I want the background changed permanently. So I tried:
(dolist (b (buffer-list))
(when (minibufferp b)
(with-current-buffer b
(make-local-variable 'face-remapping-alist)))
(add-to-list 'face-remapping-alist
'(default (:background "black"))))
but that changes the background of all buffers. And the minibuffer, when
it is empty, eventually comes back to the original background.
next prev parent reply other threads:[~2014-12-10 16:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-10 4:07 Setting the background color of the minibuffer Óscar Fuentes
2014-12-10 16:04 ` Eli Zaretskii
2014-12-10 16:24 ` Óscar Fuentes [this message]
2014-12-10 16:30 ` Stefan Monnier
2014-12-10 17:08 ` Óscar Fuentes
2014-12-10 17:03 ` Eli Zaretskii
2014-12-10 17:17 ` Óscar Fuentes
2014-12-10 18:06 ` Eli Zaretskii
2014-12-10 18:29 ` Óscar Fuentes
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87k31zscax.fsf@wanadoo.es \
--to=ofv@wanadoo.es \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.