From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.help Subject: Re: paragraph definition problems Date: Mon, 15 Sep 2003 05:39:50 +0200 Organization: http://purl.org/harder/ Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <3f62b25c@news.unimelb.edu.au> <3f63f87e@news.unimelb.edu.au> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1063597941 16140 80.91.224.253 (15 Sep 2003 03:52:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 15 Sep 2003 03:52:21 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Sep 15 05:52:19 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19ykPT-0003RW-00 for ; Mon, 15 Sep 2003 05:52:19 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 19ykJl-0005uD-Nn for geh-help-gnu-emacs@m.gmane.org; Sun, 14 Sep 2003 23:46:25 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsfeed.berkeley.edu!ucberkeley!news.tele.dk!not-for-mail Original-Newsgroups: gnu.emacs.help X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:12517 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:12517 Joerg writes: > Jesper Harder wrote: >> >> I think `paragraph-indent-text-mode' does what you want: > > Exactly! Thank you very much! I still don't understand why altering > paragraph-start and paragraph-separate doesn't work, but who cares? Well, if you wan't to know, you can just do `C-h v paragraph-start' and `C-h v paragraph-separate' in paragraph-indent-text-mode and text-mode respectively and compare the values. Then you'll know which values give you the desired effect. > One more thing: Do you also know a text-/minor-mode which is the > opposite of paragraph-indent-text-mode, i.e. every line NOT starting > with an indentation is considered as a new paragraph? > > This would be useful for text like the following: > > Topic1: This should be > one paragraph. > Topic2: This should be > one paragraph. `C-x .' (set-fill-prefix) is useful for this kind of situation. If you place point at "one" and press `C-x .', I think you'll get something close to what you want. Also read the chapter about filling in the Emacs manual -- there are lots of options and commands related to this.