emacs-devel
[Top][All Lists]
Advanced

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

Re: use-hard-newlines


From: Philipp Stephani
Subject: Re: use-hard-newlines
Date: Sat, 29 Aug 2015 20:23:28 +0000



Andreas Röhler <address@hidden> schrieb am Fr., 28. Aug. 2015 um 08:47 Uhr:
Hi all,

is the concept of use-hard-newlines still considered useful?

Just looking how to simplify fill-paragraph.

AFAICS it introduces complexity which doesn't contribute, not reallly.

I think the concept of hard newlines is useful, just like the concept of non-breaking spaces. Especially in code comments I often want a line break that is unaffected by fill-paragraph without requiring an empty line. However the current implementation is not optimal because hard newlines rely on a text property instead of a distinct character, so IIUC hard newlines will be lost when saving (except for enriched mode, which seems mostly unused these days). Instead I'd suggest that Emacs observe the LINE SEPARATOR (U+2028) and PARAGRAPH SEPARATOR (U+2029) characters: currently they are displayed as horizontal whitespace instead of line breaks, and fill-paragraph treats both like no-break spaces. Instead, fill-paragraph should treat U+2028 like a soft newline and U+2029 like a hard newline.

reply via email to

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