all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tassilo Horn <tassilo@member.fsf.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Font-Locking for Allout Mode
Date: Thu, 08 Mar 2007 17:42:18 +0100	[thread overview]
Message-ID: <87tzwvlmad.fsf@baldur.tsdh.de> (raw)
In-Reply-To: mailman.663.1173370034.7795.help-gnu-emacs@gnu.org

Stephen Berman <Stephen.Berman@gmx.net> writes:

Hi Stehen,

> You cannot see the fontified allout headings in emacs lisp mode
> because the emacs lisp comment fontification overrides it.

No, I don't think so. I fontify TODO and FIXME, too, even though they're
fontified with camment-face by default. And I add the new allout
keywords with

,----[ ~/.emacs ]
| (defun th-font-lock-allout ()
|   (interactive)
|   (font-lock-add-keywords nil th-allout-font-lock-keywords))
`----

and calling `font-lock-add-keywords' with omitted optional variable HOW
should add the new keywords to the beginning of the fontification list,
which normally should overwrite mode-specific fontification. At least
that's my understanding of the docs.

,----[ C-h f font-lock-add-keywords RET ]
| font-lock-add-keywords is a compiled Lisp function in `font-lock.el'.
| (font-lock-add-keywords MODE KEYWORDS &optional HOW)

[...]

| By default they are added at the beginning of the current highlighting list.
| If optional argument HOW is `set', they are used to replace the current
| highlighting list.  If HOW is any other non-nil value, they are added at the
| end of the current highlighting list.
`----

> If you use allout with a text-mode file, then you'll see the
> fontification.

Nope, I changed the first line of my .emacs to 

  ;;; -*- mode: text -*-  -*-coding: utf-8 -*-

but when I opened it no fontification was done, although allout was
activated automatically.

> I don't know if it's possible to see it in emacs lisp mode; perhaps by
> modifying font-locking of lisp comments to exclude lines beginning
> with `;;;_'.

It has to work. I highlight TODO and FIXME in all programming modes I
use with

,----[ ~/.emacs ]
| (defvar th-font-lock-modes
|   '(c-mode c++-mode emacs-lisp-mode lisp-mode ruby-mode haskell-mode))
| 
| (eval-at-startup
|  (dolist (mode th-font-lock-modes)
|    (font-lock-add-keywords
|     mode
|     '(("\\<\\(FIXME\\|TODO\\):" 1 font-lock-warning-face t)))))
`----

and that works flawlessly.

>>> I don't know if this indicates a bug in that code.
>>
>> I don't get you here. Does that mean that you use a different code
>> snippet for allout fontification? If yes, could you post your working
>> snippet?
>
> I use the same code you do (I had also found it on emacswiki and
> modified it as you did).  What I meant is that I don't know why it's
> necessary to add the file local variable for allout-mode (or
> alternatively, invoke font-lock-fontify-buffer) to see the
> fontification using that code, so maybe the code isn't quite right.

Hm, maybe. But I think the "mode: allout" can be omitted nowadays. I
guess I use a newer allout-version than you and it switches on if it
finds the local variable "allout-layout".

,----
| allout-version is a variable defined in `allout.el'.
| Its value is "2.2.1"
`----

,----[ C-h f allout-init RET ]
| allout-init is an interactive compiled Lisp function in `allout.el'.
| (allout-init &optional MODE)
| 
| Prime `allout-mode' to enable/disable auto-activation, wrt
| `allout-layout'.
| ^^^^^^^^^^^^^^^
`----

> BTW, when I add ";;mode: allout" to an the Local Variables section of
> an Emacs lisp file with an allout-layout specification, I still get
> the expected hiding, so it puzzles me that you don't.  Did you eval
> (allout-init t) before visiting the file?

That's in my .emacs. I think that's omitted in the new allout version
with respect to allout-layout.

Bye,
Tassilo
-- 
       People say that if you play Microsoft CD's backwards, you
        hear satanic things, but that's nothing, because if you
               play them forwards, they install Windows.

  parent reply	other threads:[~2007-03-08 16:42 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-07 20:07 Font-Locking for Allout Mode Tassilo Horn
2007-03-08 13:23 ` Stephen Berman
     [not found] ` <mailman.654.1173360249.7795.help-gnu-emacs@gnu.org>
2007-03-08 14:03   ` Tassilo Horn
2007-03-08 16:06     ` Stephen Berman
     [not found]     ` <mailman.663.1173370034.7795.help-gnu-emacs@gnu.org>
2007-03-08 16:42       ` Tassilo Horn [this message]
2007-03-08 22:38         ` Peter Dyballa
2007-03-08 22:45         ` Stephen Berman
     [not found]         ` <mailman.686.1173393546.7795.help-gnu-emacs@gnu.org>
2007-03-08 22:49           ` Tassilo Horn
     [not found]         ` <mailman.687.1173393945.7795.help-gnu-emacs@gnu.org>
2007-03-08 23:18           ` Tassilo Horn
2007-03-09 11:28             ` Stephen Berman
     [not found]             ` <mailman.704.1173439750.7795.help-gnu-emacs@gnu.org>
2007-03-09 14:27               ` Tassilo Horn
2007-03-09 16:50                 ` Stephen Berman
2007-03-11 15:07                   ` Stephen Berman
2007-03-09 20:36               ` Stefan Monnier
2007-03-09 21:44                 ` Tassilo Horn
2007-03-09 23:34                 ` Stephen Berman
2007-03-09 23:47                   ` Stephen Berman
2007-03-11 15:07                   ` Stephen Berman

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=87tzwvlmad.fsf@baldur.tsdh.de \
    --to=tassilo@member.fsf.org \
    --cc=help-gnu-emacs@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.