all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Clément Pit--Claudel" <clement.pit@gmail.com>
To: Emacs developers <emacs-devel@gnu.org>
Subject: How do I give an overlay a priority lower to that of hl-line-mode?
Date: Tue, 31 May 2016 00:46:55 -0400	[thread overview]
Message-ID: <574D173F.2070502@gmail.com> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 996 bytes --]

Hi emacs-dev,

A mode that I contribute to uses overlays to highlight certain lines. The added overlays typically cover (point-at-bol) .. (1+ (point-at-eol)), which unfortunately does not play nicely with hl-line-mode: my overlays hide the one added by hl-line-mode.

Demo:

(with-current-buffer (get-buffer-create "*hl*")
  (erase-buffer)
  (fundamental-mode)
  (hl-line-mode)
  (dotimes (_ 5) (insert "AAAAAAAAAA\n"))
  (goto-char 25)
  (let ((ov (make-overlay (point-at-bol) (1+ (point-at-eol)))))
    (overlay-put ov 'face '(:background "red")))
  (pop-to-buffer (current-buffer)))

Of course, the temptation is great to add a little (overlay-put ov 'priority -100), but it's explicitly a bad idea:

> This property’s value determines the priority of the overlay. If you
> want to specify a priority value, use either nil (or zero), or a
> positive integer. Any other value has undefined behavior.

What alternatives do I have? (In fact, do I have any?)

Thanks!


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

             reply	other threads:[~2016-05-31  4:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-31  4:46 Clément Pit--Claudel [this message]
2016-05-31 20:28 ` How do I give an overlay a priority lower to that of hl-line-mode? Stefan Monnier
2016-05-31 20:46   ` Clément Pit--Claudel
2016-06-01  2:29     ` Stefan Monnier

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=574D173F.2070502@gmail.com \
    --to=clement.pit@gmail.com \
    --cc=emacs-devel@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.