From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Feature in org-move-item-down Date: Sun, 18 Mar 2007 08:11:08 +0100 Message-ID: References: <20070316231503.1ad23ec5@newmanfamily.me.uk> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HSpZ9-0008V3-82 for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 03:12:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HSpZ6-0008Ua-U9 for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 03:12:30 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HSpZ6-0008UX-O2 for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 02:12:28 -0500 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HSpXm-0006Ql-1N for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 03:11:06 -0400 In-Reply-To: <20070316231503.1ad23ec5@newmanfamily.me.uk> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Mike Newman Cc: emacs-orgmode@gnu.org On Mar 17, 2007, at 4:15, Mike Newman wrote: > It appears org-move-item-down treats blank lines as part of the > preceding list item (whereas I use them to separate a list from > subsequent text). > > So given > > - a test > - b test > - c test > > test > > with point on line b, M-x org-move-item-down gives > - a test > - c test > > - b test > test The problem with is this is following. Suppose I made the item end before the empty line, as you suggest. Then consider the following case: - a test - b test - c test If I now move "b" up, I get - b test - a test - c test I don't think there is a good solution to this problem - if you know one, I would be interested. - Carsten