From mboxrd@z Thu Jan 1 00:00:00 1970 From: Markus Heller Subject: org-capture: Formatting of entries Date: Tue, 29 Jun 2010 16:38:43 -0700 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=53857 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTkOL-0006QC-CC for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 19:39:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTkOK-0003aD-A5 for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 19:39:01 -0400 Received: from lo.gmane.org ([80.91.229.12]:51175) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTkOK-0003Zz-17 for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 19:39:00 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OTkOE-0004R5-9j for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 01:38:54 +0200 Received: from 142.103.191.98 ([142.103.191.98]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 30 Jun 2010 01:38:54 +0200 Received: from hellerm2 by 142.103.191.98 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 30 Jun 2010 01:38:54 +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: emacs-orgmode@gnu.org Hello, I'm starting to sue (wow, bad typo, should read "use" of course) org-capture instead of org-remember, as probably a lot of other users do :) Using an org-capture template [1], I end up with the following: ============================================= * TODO Proper Formatting :CLOCK: CLOCK: [2010-06-29 Tue 16:33] :END: :PROPERTIES: :Created: [2010-06-29 Tue 16:33] :END: ============================================= What I would like to see is this: ============================================= * TODO Proper Formatting :CLOCK: CLOCK: [2010-06-29 Tue 16:33] :END: :PROPERTIES: :Created: [2010-06-29 Tue 16:33] :END: ============================================= that is, I'd love to see the :PROPERTIES: indented appropriately for the corresponding headline level. Is this possible, and if so, how? M-x org-version yields: Org-mode version 6.36trans (release_6.36.457.g025a9) Thanks and Cheers Markus [1] My org-capture template: (setq org-capture-templates '(("t" "Task" entry (file "h:/org/refile.org") "* TODO %^{Todo} \n:PROPERTIES:\n:Created: %U\n:END:\n\n%?" :clock-in :clock-resume)))