help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: texinfo-fill-workaround.el -- no break after @: when filling


From: Stefan Monnier
Subject: Re: texinfo-fill-workaround.el -- no break after @: when filling
Date: Thu, 01 Sep 2005 00:00:54 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

> and a similarly tiny function for no break after <a in html "<a href",
> which I think much improves human readability
>       http://www.emacswiki.org/cgi-bin/wiki/HtmlMode

In Emacs-22, this is already done for all tags:

   (defun sgml-fill-nobreak ()
     ;; Don't break between a tag name and its first argument.
     (save-excursion
       (skip-chars-backward " \t")
       (and (not (zerop (skip-syntax-backward "w_")))
            (skip-chars-backward "/?!")
            (eq (char-before) ?<))))

Only problem is that with <a href="..." the URL is often so long that the
space between <a and href is the only space on the line so fill.el ignores
fill-nobreak-predicate.


        Stefan


reply via email to

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