From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stig Brautaset Subject: Re: org-capture does copy selected marked text Date: Wed, 01 Feb 2017 21:17:24 +0000 Message-ID: References: <87r33hsngo.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cZ2HX-0000pO-I0 for emacs-orgmode@gnu.org; Wed, 01 Feb 2017 16:17:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cZ2HS-0001eT-JR for emacs-orgmode@gnu.org; Wed, 01 Feb 2017 16:17:35 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:53296) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cZ2HS-0001du-CB for emacs-orgmode@gnu.org; Wed, 01 Feb 2017 16:17:30 -0500 In-reply-to: <87r33hsngo.fsf@mat.ucm.es> 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: Uwe Brauer Cc: emacs-orgmode@gnu.org Uwe Brauer writes: > > I have used org-capture a long time ago and do not recall the details, > but I thought I could select a text and then org-capture would copy that > selected text to a file of my choice in a format I can customize. A bit > like good old remember does/did. > > For example I have set > > ("j" "Journal Entry" > entry (file+datetree "~/ALLES/journal.org") > "* %?" > :empty-lines 1) Try adding "%i" to the capture template, for example like so: ("j" "Journal Entry" entry (file+datetree "~/ALLES/journal.org") "* %?\n\n %i" :empty-lines 1) Stig