all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Lennart Borgman <lennart.borgman@gmail.com>
To: Tassilo Horn <tassilo@member.fsf.org>
Cc: emacs-devel@gnu.org
Subject: Re: Need help with search based font-locking
Date: Tue, 22 Dec 2009 23:43:27 +0100	[thread overview]
Message-ID: <e01d8a50912221443i726874c0u83b540b7101f6b36@mail.gmail.com> (raw)
In-Reply-To: <877hsen0na.fsf@thinkpad.tsdh.de>

On Tue, Dec 22, 2009 at 10:45 PM, Tassilo Horn <tassilo@member.fsf.org> wrote:
> Hi all,
>
> in my greql-mode [1], I setup font-locking like that:
>
> --8<---------------cut here---------------start------------->8---
> (define-derived-mode greql-mode text-mode "GReQL"
>  "A major mode for GReQL2."
>  [...]
>  (setq font-lock-defaults
>        '((greql-fontlock-keywords-1
>           greql-fontlock-keywords-2
>           greql-fontlock-keywords-3)))
>  (add-hook 'after-save-hook 'greql-set-fontlock-keywords-3 t t)
>  [...]
>  (define-key greql-mode-map (kbd "C-c C-f") 'greql-format))
> --8<---------------cut here---------------end--------------->8---
>
> `greql-fontlock-keywords-3's value is not static, it frequently changes.
> So I update it after saving (as you can see), and at several other
> places.  The updating of the variable works, but how do I tell font-lock
> that it should use the new value and re-fontify the current buffer?
>
> As a brute-force workaround, I can do
>
>   (set (make-local-variable 'font-lock-keywords)
>        greql-fontlock-keywords-3)
>   (redisplay t)
>
> but I guess this is very bad style.  And even then some things that
> should be highlighted are not.  For those, I need to delete a char and
> add it back to apply the new fontification.
>
> I really tried to dig into the elisp manual, but I couldn't find any
> help with font-lock-defaults KEYWORDS that aren't fixed.


Maybe you can use jit-lock-refontify?




  reply	other threads:[~2009-12-22 22:43 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-22 21:45 Need help with search based font-locking Tassilo Horn
2009-12-22 22:43 ` Lennart Borgman [this message]
2009-12-23 11:13   ` Tassilo Horn
2009-12-23 11:38     ` Tassilo Horn
2009-12-24  3:07     ` Stefan Monnier
2009-12-24  3:45       ` Lennart Borgman
2009-12-24  4:46         ` Stefan Monnier
2009-12-24 13:48           ` Lennart Borgman
2009-12-28 13:20             ` Tassilo Horn
2009-12-28 13:54               ` Lennart Borgman
2009-12-28 18:18                 ` Tassilo Horn
2009-12-30 13:56       ` Tassilo Horn
2009-12-30 15: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=e01d8a50912221443i726874c0u83b540b7101f6b36@mail.gmail.com \
    --to=lennart.borgman@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=tassilo@member.fsf.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.