unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Face text property for `minor-mode-alist` item.
@ 2020-12-27 15:13 Narendra Joshi
  2020-12-27 22:09 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 5+ messages in thread
From: Narendra Joshi @ 2020-12-27 15:13 UTC (permalink / raw)
  To: Emacs Devel


Hi everyone,

I am trying to understand the following behaviour regarding
`mode-line-format' rendering the `:lighter` for `flycheck-mode'. I
wanted to have the flycheck lighter display different colors for the
error count and the warning count as `flymake` does.

The following doesn't work. The face property of the first character of
the string returned by `flycheck-mode-line-status-text' is used for the
whole string in this case.  

--8<---------------cut here---------------start------------->8---

(setq flycheck-mode-line '(:eval (flycheck-mode-line-status-text))
(defun flycheck-mode-line-status-text ()
    ... returns a single string with substrings propertized,
    e.g. #("some string" 1 2 ('face 'error) 2 3 ('face 'warning)))

--8<---------------cut here---------------end--------------->8---

If I change it to something like this: 

--8<---------------cut here---------------start------------->8---

(setq flycheck-mode-line '(:eval (flycheck-mode-line-status-text))
(defun flycheck-mode-line-status-text ()
    ... returns a (list ... part_1_with_face_1  part_2_with_face_2 ...))

--8<---------------cut here---------------end--------------->8---

This seems to work as expected and the parts have their respective faces
applied to them in the mode-line. 

Is this a bug in Emacs or is this expected behaviour?

Best regards,
-- 
Narendra Joshi



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-12-28  1:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-27 15:13 Face text property for `minor-mode-alist` item Narendra Joshi
2020-12-27 22:09 ` Lars Ingebrigtsen
2020-12-27 23:46   ` Narendra Joshi
2020-12-28  1:19     ` Lars Ingebrigtsen
2020-12-28  1:46       ` Narendra Joshi

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).