emacs-wiki-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [emacs-wiki-discuss] Re: Fine-tuning adaptive-fill-mode for use with


From: Allen Halsey
Subject: Re: [emacs-wiki-discuss] Re: Fine-tuning adaptive-fill-mode for use with emacs-wiki/muse
Date: Thu, 23 Jun 2005 10:05:53 -1000
User-agent: Mozilla Thunderbird 1.0.2-6 (X11/20050513)

Michael Olson wrote:
The following might do the trick if you want only "-" and numbers to
be considered as list item markers.

(setq adaptive-fill-regexp
      "[ \t]*\\(-+[ \t]*\\|[0-9]+[.)][ \t]*\\)*")

If this works well for you, perhaps I could have Muse and emacs-wiki
set this in a buffer-local fashion so that it only takes effect on
Muse/emacs-wiki buffers.


That works! Thanks!

I googled around for info on buffer-local variables and came up with this:

;; Make adaptive fill mode consistent with emacs-wiki markup
(add-to-list
 'emacs-wiki-mode-hook
 (lambda ()
   (set (make-local-variable 'adaptive-fill-regexp)
        "[ \t]*\\(-+[ \t]*\\|[0-9]+[.)][ \t]*\\)*")))

Does that look right? It seems to work.

Allen





reply via email to

[Prev in Thread] Current Thread [Next in Thread]