emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Font-lock-add-keywords disables Org headline highlighting
@ 2012-11-21  8:40 Sebastien Vauban
  2012-12-23  8:54 ` Bastien
  0 siblings, 1 reply; 2+ messages in thread
From: Sebastien Vauban @ 2012-11-21  8:40 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hello,

With the following code, I can highlight special words such as `error' and
`warning' in any part of a buffer.

--8<---------------cut here---------------start------------->8---
(message "Minimal Emacs config file...")

(defface org-todo
  '((t (:weight bold :box (:line-width 1 :color "#89C58F")
                :foreground "#89C58F" :background "#E2FEDE")))
  "Face used to display state TODO.")

(defface org-level-1
  '((t (:weight bold :box (:line-width 1 :color "#42B5FF")
                :foreground "#42B5FF" :background "#D3EEFF")))
  "Outline level 1.")

(defface my/highlight-face
  '((t (:weight normal :slant normal :box '(:line-width 1 :color "#CC0000")
                :foreground "#CC0000" :background "#FFFF88")))
  "Face for making FIXME and other warnings stand out.")

(defvar my/highlight-org-regexps
  "\\(FIXME\\|BUG\\|XXX\\|[Ee]rror\\|[Ww]arning\\|WARNING\\)"
  "Patterns to highlight (for Org mode only, to ensure no conflict with the
  Org mode TODO keyword).")

;; set up highlighting of special patterns for Org mode only
(dolist (mode '(org-mode))
  (font-lock-add-keywords mode
                          `((,my/highlight-org-regexps 1 'my/highlight-face prepend))))

(message "Minimal Emacs config file... Done")
--8<---------------cut here---------------end--------------->8---

However, as you can see on the screencast at
http://screencast.com/t/RfMrD1IUBPZ, that conflicts with normal regular
highlighting of headlines.

In this MCE ("Minimal Complete Example"):

--8<---------------cut here---------------start------------->8---
* TODO Fix the warning about that

Bar is wrong.

* TODO Correct this

There is an error when you compile foo.
--8<---------------cut here---------------end--------------->8---

the first headline is not highlighted anymore (in `org-level-1') as soon as we
type one of the font-lock keywords (here: `warning').

Can you give me hints to sort this out?

Best regards,
  Seb

-- 
Sebastien Vauban

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

* Re: Font-lock-add-keywords disables Org headline highlighting
  2012-11-21  8:40 Font-lock-add-keywords disables Org headline highlighting Sebastien Vauban
@ 2012-12-23  8:54 ` Bastien
  0 siblings, 0 replies; 2+ messages in thread
From: Bastien @ 2012-12-23  8:54 UTC (permalink / raw)
  To: Sebastien Vauban; +Cc: public-emacs-orgmode-mXXj517/zsQ



Hi Sébastien,

"Sebastien Vauban"
<wxhgmqzgwmuf-geNee64TY+gS+FvcfC7Uqw@public.gmane.org> writes:

> However, as you can see on the screencast at
> http://screencast.com/t/RfMrD1IUBPZ, that conflicts with normal regular
> highlighting of headlines.

This is a minor issue for me, and won't spend time on it,
but let us know if you make progress on debugging this!

Thanks,

-- 
 Bastien

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

end of thread, other threads:[~2012-12-23  8:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-21  8:40 Font-lock-add-keywords disables Org headline highlighting Sebastien Vauban
2012-12-23  8:54 ` Bastien

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

	https://git.savannah.gnu.org/cgit/emacs/org-mode.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).