all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Alekseyev <dnquark@gmail.com>
To: Tassilo Horn <tassilo@member.fsf.org>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Narrow/widen in folding.el
Date: Fri, 24 Dec 2010 20:45:38 -0800	[thread overview]
Message-ID: <AANLkTikdWtfhUw6U=HBHV8STYRhtSH_ik2sCwK10=q8r@mail.gmail.com> (raw)
In-Reply-To: <87mxnz9dd1.fsf@member.fsf.org>

On Tue, Dec 21, 2010 at 10:42 AM, Tassilo Horn <tassilo@member.fsf.org> wrote:
> --8<---------------cut here---------------start------------->8---
> (require 'outline)
>
> (defvar th-outline-minor-mode-font-lock-keywords
>  '((eval . (list (concat "^\\(?:" outline-regexp "\\).*")
>                  0 '(outline-font-lock-face) t t)))
>  "Additional expressions to highlight in Orgstruct Mode and Outline minor mode.
> The difference to `outline-font-lock-keywords' is that this will
> overwrite other highlighting.")
>
> (defun th-outline-regexp ()
>  "Calculate the outline regexp for the current mode."
>  (let ((comment-starter (replace-regexp-in-string
>                          "[[:space:]]+" "" comment-start)))
>    (when (string= comment-starter ";")
>      (setq comment-starter ";;"))
>    (concat comment-starter "[*]+ ")))
>
> (defun th-outline-minor-mode-init ()
>  (interactive)
>  (unless (eq major-mode 'latex-mode)
>    (setq outline-regexp (th-outline-regexp))
>    (font-lock-add-keywords
>     nil
>     th-outline-minor-mode-font-lock-keywords)))
>
> (add-hook 'outline-minor-mode-hook
>          'th-outline-minor-mode-init)
> --8<---------------cut here---------------end--------------->8---

Sincerest apologies for the spam, and please disregard the previous
two messages.  The problem with the above snippet still exists for me,
but only for certain modes.  In particular, for sql-mode, when
th-outline-minor-mode-init is invoked via a hook when loading a file,
as in Tassilo's code above, the font-lock-keywords variable does not
appear to be set correctly.  However, when th-outline-minor-mode-init
is called interactively (either via M-x th-outline-minor-mode-init, or
evaluating (outline-minor-mode t)), everything starts working.  In
other modes (e.g. shell and R), font-lock-keywords are set correctly,
it seems, but the font-lock for first level heading doesn't seem to
work.  In elisp mode, everything works :)

It's pretty hard to nail down the problem exactly, since it tends to
be (a) mode-specific and (b) depends on whether the code is being
called via a hook or interactively.  Still, if there's a quick obvious
fix, I'd like to know :)



  parent reply	other threads:[~2010-12-25  4:45 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-20 21:41 Narrow/widen in folding.el Leo Alekseyev
2010-12-21 17:24 ` Andrea Crotti
2010-12-21 18:42   ` Tassilo Horn
2010-12-21 22:00     ` Andrea Crotti
2010-12-22  8:16       ` Tassilo Horn
2010-12-22  9:01         ` Andrea Crotti
2010-12-22  9:14         ` Leo Alekseyev
2010-12-22 11:02           ` Tassilo Horn
2010-12-22 12:26             ` Leo Alekseyev
     [not found]         ` <mailman.7.1293008512.15562.help-gnu-emacs@gnu.org>
2010-12-23 23:49           ` Tim X
2010-12-25  2:18     ` Leo Alekseyev
2010-12-25  3:08       ` Leo Alekseyev
2010-12-25  4:45     ` Leo Alekseyev [this message]
     [not found]     ` <mailman.9.1293252343.14161.help-gnu-emacs@gnu.org>
2010-12-25 22:48       ` Tim X
2010-12-27  9:19         ` Tassilo Horn
     [not found]         ` <mailman.0.1293441599.18751.help-gnu-emacs@gnu.org>
2010-12-27 22:37           ` Tim X

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='AANLkTikdWtfhUw6U=HBHV8STYRhtSH_ik2sCwK10=q8r@mail.gmail.com' \
    --to=dnquark@gmail.com \
    --cc=help-gnu-emacs@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.