Stéphane Marks <[email protected]> writes:
>
> 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)
Note that you can also use (default . (:height 1.5)), which
is equivalent to (default :height 1.5), but more explicitly
shows that (:height 1.5) is a property list that is distinct
from the face ‘default’. If you wanted to add more changes
to the property list, those changes would belong inside the
property list, for example,
(default . (:height 1.5 :weight bold :underline t))
or
(default . (:height 1.5
:weight bold
:underline t))
--
The lyf so short, the craft so long to lerne.
- Geoffrey Chaucer, The Parliament of Birds.
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.