From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: multiline description list, partial patch Date: Sat, 12 Sep 2009 00:12:35 +0200 Message-ID: <87my51871o.fsf@gmx.de> References: <0302D693-7DDF-46A1-A69C-8B850B65534B@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MmEMF-0000Dl-Cs for emacs-orgmode@gnu.org; Fri, 11 Sep 2009 18:12:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MmEMA-0000BK-5q for emacs-orgmode@gnu.org; Fri, 11 Sep 2009 18:12:42 -0400 Received: from [199.232.76.173] (port=47946 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmEM9-0000Ay-UT for emacs-orgmode@gnu.org; Fri, 11 Sep 2009 18:12:37 -0400 Received: from mail.gmx.net ([213.165.64.20]:33745) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MmEM9-0007qg-Bn for emacs-orgmode@gnu.org; Fri, 11 Sep 2009 18:12:37 -0400 In-Reply-To: <0302D693-7DDF-46A1-A69C-8B850B65534B@gmail.com> (Carsten Dominik's message of "Thu, 10 Sep 2009 18:40:36 +0200") 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: Carsten Dominik Cc: Org Mode Hi Eric, I think long descriptions are _very_ unusual (it's called "definition list" (
) in HTML and "definition term" (
). I used to do this here, before those lists were supported directly in Org-mode: - *Bold longish term* \\ Description of the bold longish term. I bound this function to a key: (defun sr-insert-org-dd-item () (interactive) (let ( (in (read-from-minibuffer "Definition list DT item: ")) ) (newline-and-indent) (insert (concat "+ *" in "* \\\\")) (newline-and-indent))) I remember I had to set `org-plain-list-ordered-item-terminator' to `t' to make this work correctly. This was added in 2008-02-25 and removed, when Carsten added the support for the definition lists. And I never missed it. Sebastian