all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: John Mastro <john.b.mastro@gmail.com>
To: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Cc: Nick Helm <nick@tenpoint.co.nz>
Subject: Re: line-spacing in the minibuffer/echo area
Date: Mon, 12 Oct 2015 12:48:14 -0700	[thread overview]
Message-ID: <CAOj2CQRA=iwTbdAh-XD6eDrLEpWvADqzvkAnczPgGAAOZYmmwg@mail.gmail.com> (raw)
In-Reply-To: <m2a8rohnul.fsf@tenpoint.co.nz>

Nick Helm <nick@tenpoint.co.nz> wrote:
> How do I change the line-spacing in the minibuffer/echo area? And
> then, how do I make that change persistent?
>
> I have this in my init.el
>
> (setq-default line-spacing 2)
>
> which works well for most windows and buffers, but not the minibuffer or
> echo area.

That works for me on Emacs 25 (and I see Michael Heerdegen tested on
23.4 and 24.5 as well).

I'm not sure why it doesn't work for you, but you could try this, which
is also how you would do it if you only wanted it to affect the
minibuffer:

    (defun my-minibuffer-line-spacing ()
      (setq-local line-spacing 2))

    (add-hook 'minibuffer-setup-hook #'my-minibuffer-line-spacing)

-- 
john



      parent reply	other threads:[~2015-10-12 19:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-12  1:33 line-spacing in the minibuffer/echo area Nick Helm
2015-10-12 10:14 ` Michael Heerdegen
2015-10-15  4:04   ` Nick Helm
2015-10-12 19:48 ` John Mastro [this message]

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='CAOj2CQRA=iwTbdAh-XD6eDrLEpWvADqzvkAnczPgGAAOZYmmwg@mail.gmail.com' \
    --to=john.b.mastro@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=nick@tenpoint.co.nz \
    /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.