From mboxrd@z Thu Jan 1 00:00:00 1970 From: Amos Bird Subject: make org-capture honor org-blank-before-new-entry settings Date: Tue, 19 Sep 2017 14:40:44 +0800 Message-ID: <87lglb8a37.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55287) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1duCDD-0007EV-3u for emacs-orgmode@gnu.org; Tue, 19 Sep 2017 02:40:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1duCDB-0004YN-Nt for emacs-orgmode@gnu.org; Tue, 19 Sep 2017 02:40:51 -0400 Received: from mail-pg0-x233.google.com ([2607:f8b0:400e:c05::233]:56445) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1duCDB-0004Xr-G5 for emacs-orgmode@gnu.org; Tue, 19 Sep 2017 02:40:49 -0400 Received: by mail-pg0-x233.google.com with SMTP id 7so1508977pgd.13 for ; Mon, 18 Sep 2017 23:40:49 -0700 (PDT) Received: from localhost ([2604:180:3:28::c542]) by smtp.gmail.com with ESMTPSA id u12sm1700889pfa.153.2017.09.18.23.40.47 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 18 Sep 2017 23:40:47 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Org Mode Mailing List --=-=-= Content-Type: text/plain #+OPTIONS: latex:t toc:nil H:3 Hi, I'm starting to use org-capture to create todo items. I set up a template like this #+BEGIN_SRC elisp '(org-capture-templates (quote (("t" "todo" checkitem (file+headline "~/org/todo.org" "Work") "")))) #+END_SRC and it generates new items next to the previous one without any blank line, neither one after it. #+BEGIN_EXAMPLE * Work [0/4] - [ ] test1 - [ ] test2 - [ ] test3 - [ ] captured * Life [0/3] #+END_EXAMPLE how can I make it generate like this #+BEGIN_EXAMPLE * Work [0/4] - [ ] test1 - [ ] test2 - [ ] test3 - [ ] captured * Life [0/3] #+END_EXAMPLE regards, -- Amos Bird amosbird@gmail.com --=-=-= Content-Type: multipart/related; boundary="==-=-=" --==-=-= Content-Type: text/html

Hi,

I'm starting to use org-capture to create todo items. I set up a template like this

'(org-capture-templates
  (quote
   (("t" "todo" checkitem
     (file+headline "~/org/todo.org" "Work")
     ""))))

and it generates new items next to the previous one without any blank line, neither one after it.

#+BEGINEXAMPLE

1 Work [0/4]

  • [ ] test1
  • [ ] test2
  • [ ] test3
  • [ ] captured

2 Life [0/3]

#+ENDEXAMPLE

how can I make it generate like this

#+BEGINEXAMPLE

3 Work [0/4]

  • [ ] test1
  • [ ] test2
  • [ ] test3
  • [ ] captured

4 Life [0/3]

#+ENDEXAMPLE

regards,


Amos Bird
amosbird@gmail.com

--==-=-=-- --=-=-=--