[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Enlarging minibuffer prompt
From: |
Stephen Berman |
Subject: |
Re: Enlarging minibuffer prompt |
Date: |
Thu, 24 Oct 2024 09:34:01 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
On Thu, 24 Oct 2024 09:11:33 +0300 Jean Louis <bugs@gnu.support> wrote:
> I would like minibuffer to be significantly larger.
>
> There is face `minibuffer-prompt' which I could customize:
>
> [X] Height: Value Menu Scale: 1.5
>
> So that gives me more readable, visible prompt.
>
> But then the text in the prompt, the actual text I am entering is
> `default' face.
>
> And I was thinking that text I am entering in the minibuffer prompt
> should be something like `minibuffer-default-face', some face that is
> customized especially for minibuffer.
>
> Is there a way that I can customize the `default' face but only within
> the minibuffer?
>
> My final goal would be to enlarge the minibuffer only from my program,
> based on variables that user customizes within my software.
How about something like this:
(add-hook 'minibuffer-setup-hook (lambda () (text-scale-adjust 2)))
Steve Berman