From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Leduc Subject: Re: Simple copy/paste of an agenda TODO list Date: Fri, 8 Jan 2016 15:47:42 -0500 Message-ID: References: <87r3hskrkp.fsf@alphaville.usersys.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42144) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHdx5-0001sc-2D for emacs-orgmode@gnu.org; Fri, 08 Jan 2016 15:48:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHdx1-0007Vu-SM for emacs-orgmode@gnu.org; Fri, 08 Jan 2016 15:48:03 -0500 Received: from plane.gmane.org ([80.91.229.3]:58213) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHdx1-0007Vq-M8 for emacs-orgmode@gnu.org; Fri, 08 Jan 2016 15:47:59 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aHdwy-0002A8-Ns for emacs-orgmode@gnu.org; Fri, 08 Jan 2016 21:47:56 +0100 Received: from modemcable038.50-161-184.mc.videotron.ca ([184.161.50.38]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 08 Jan 2016 21:47:56 +0100 Received: from ldcmrtn by modemcable038.50-161-184.mc.videotron.ca with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 08 Jan 2016 21:47:56 +0100 In-Reply-To: <87r3hskrkp.fsf@alphaville.usersys.redhat.com> 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On 2016-01-08 10:40 AM, Nick Dokos wrote: > Martin Leduc writes: > >> Hello orgers, >> >> I'm wondering how to do a simple copy/paste of a todo list from >> org-mode. For instance, when I'm producing the list of all my TODOs >> with C-c a t, and then filtering it using a given tag, how can I >> simply copy and paste the resulting TODO list from the "Org Agenda" >> buffer into another one (e.g. scratch) ? I tried to simply select and >> copy, but then yanking into another buffer results in an un-filtered >> list of many TODOs (which is nearly the same as the first one >> constructed from C-c a t, but excludes all TODOs that appear before >> the first entry retained by the filter). I also tried with >> org-copy-visible, but still no success. >> >> Anybody could explain me how to do this simple task ? >> > > C-x C-w (bound to org-agenda-write). > > -- > Nick > > > > > Thanks for your response Nick, with the new org 8.3.3, org-agenda-write does nearly the what I want: it selects the right filtered list of TODOs. However, it exports all TODO's subtrees, while I want to copy only the list of TODOs as it appears in the agenda view. Any other ideas ?