Re: Increase text size of the minibuffer
Heime <[email protected]>
| Newsgroups | gmane.emacs.help |
|---|---|
| Message-ID | <m3YbJvyUzy4oYNwL5R4AXYiJWnOefkAFthrHFsSrUM17vCceV0JwPUVUnkb9mRvL5tKJG2GafLVJEPrbQL090xSYjv-G10qCadPojrxV64Y=@protonmail.com> |
On Wednesday, March 25th, 2026 at 4:39 AM, Stéphane Marks <[email protected]> wrote: > On Tue, Mar 24, 2026 at 12:36 PM Heime <[email protected]> wrote: > > > > > On Wednesday, March 25th, 2026 at 3:55 AM, Stéphane Marks < > > [email protected]> wrote: > > > > > On Tue, Mar 24, 2026 at 11:52 AM Heime <[email protected]> > > wrote: > > > > > > > > > > > > > > > > > > > > > > > Sent with Proton Mail secure email. > > > > > > > > On Wednesday, March 25th, 2026 at 3:40 AM, Heime < > > > > [email protected]> wrote: > > > > > > > > > On Wednesday, March 25th, 2026 at 3:26 AM, Stéphane Marks < > > > > [email protected]> wrote: > > > > > > > > > > > On Tue, Mar 24, 2026 at 11:24 AM Heime <[email protected] > > > > > > > wrote: > > > > > > > > > > > > > On Wednesday, March 25th, 2026 at 2:57 AM, Stéphane Marks < > > > > > > > [email protected]> wrote: > > > > > > > > > > > > > > > On Mon, Mar 23, 2026 at 10:42 PM <[email protected]> wrote: > > > > > > > > > > > > > > > > > Heime <[email protected]> writes: > > > > > > > > > > > > > > > > > > > How can I increase the size of text in the minibuffer, > > because > > > > I am > > > > > > > > > > finding it too small for me. > > > > > > > > > > > > > > > > > > > > > > > > > > > > Until someone can answer your question, you can increase the > > > > > > > > > size of the font that you are using in Emacs. > > > > > > > > > > > > > > > > > > Emacs menu -> Options -> Set Default Font... > > > > > > > > > > > > > > > > > > > > > > > > > Try something like this which will scale up your default font > > by > > > > 150%. > > > > > > > Use > > > > > > > > an integer to specify a hard-coded height. See > > > > > > > > > > > > > > > > > > > > > https://www.gnu.org/software/emacs/manual/html_node/elisp/Face-Attributes.html > > > > > > > > for > > > > > > > > details on :height specification. > > > > > > > > > > > > > > > > (defun my/minibuffer-setup-hook () > > > > > > > > (set (make-local-variable 'face-remapping-alist) > > > > > > > > '((default :height 1.5)))) > > > > > > > > (add-hook 'minibuffer-setup-hook #'my/minibuffer-setup-hook) > > > > > > > > Can one use (setq-local face-remapping-alist '((default :height 1.5))) > > > > > > > > > > Why not give it a try and find out? > > > > (make-local-variable VARIABLE) states that it makes VARIABLE > > have a separate value in the current buffer. But that other > > buffers will continue to share a common default value. > > > > I want to have the minibuffer always using the changed value. > > > > You have the source code. If you read the definition of defvar-local you > will see it does the same thing. Did you try it? > > (defmacro defvar-local (var val &optional docstring) > (list 'progn (list 'defvar var val docstring) > (list 'make-variable-buffer-local (list 'quote var)))) There are so many names containing `local' and `make-local' that one wonders whether they are intended for different things.