From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: Adding an item to the agenda from the agenda view Date: Tue, 06 Mar 2018 15:06:34 -0800 Message-ID: <87muzk3ith.fsf@ericabrahamsen.net> References: <20180304222205.GA32697@pema> <87fu5fko93.fsf@gmail.com> <87a7vmke4f.fsf@gmail.com> <877eqq9vnf.fsf@biologica.mercovich.net> <20180306211512.GA4916@pema> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1etLi3-00023M-9e for emacs-orgmode@gnu.org; Tue, 06 Mar 2018 18:09:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1etLhz-0002ax-6z for emacs-orgmode@gnu.org; Tue, 06 Mar 2018 18:09:27 -0500 Received: from [195.159.176.226] (port=45324 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1etLhz-0002a3-0a for emacs-orgmode@gnu.org; Tue, 06 Mar 2018 18:09:23 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1etLfi-0008MS-A0 for emacs-orgmode@gnu.org; Wed, 07 Mar 2018 00:07:02 +0100 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: emacs-orgmode@gnu.org Shérab writes: > Dear all, [...] > When I want to schedule a dinner with John, what I currently do is: > > 1. C-c a a > > 2. Look for a date > > 3. (say I find that April 1st isalright) > > 4. quit the agenda view > > 5. Visit the buffer corresponding to ~/gtd/agenda.org > > 6. Go to the end of that buffer with M-> > > 7. Add a heading like > * Dinner with John > > 8. Use C-c . to add the date, 1 apr Yup, it's "k" in the Agenda that you want. First, set up your org-capture templates appropriately. I've got one for exactly this purpose that looks like: ("e" "Event" entry (file "~/org/schedule.org") "* %?\n%^T") Any capture template that has one of the "t/T" expansion elements will default to the date under point in the Agenda. So after step 3 above, hit "k", choose this template, and it will help you fill in the correct information. "C-c C-c", and you're done. You actually never have to look at the agenda.org file. Eric