From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Gaspard Subject: Re: Making an agenda that includes scheduled-for-later tasks? Date: Fri, 25 Jan 2019 20:26:03 +0100 Message-ID: <87lg381qus.fsf@llwynog.ekleog.org> References: <87pnsw7ozv.fsf@llwynog.ekleog.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:38108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gn7Av-0006A3-EG for emacs-orgmode@gnu.org; Fri, 25 Jan 2019 14:30:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gn77C-0004nC-1U for emacs-orgmode@gnu.org; Fri, 25 Jan 2019 14:26:10 -0500 Received: from grym.ekleog.org ([94.23.42.210]:39616 helo=smtp.gaspard.ninja) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gn77B-0004mU-FW for emacs-orgmode@gnu.org; Fri, 25 Jan 2019 14:26:09 -0500 Received: by smtp.gaspard.ninja (OpenSMTPD) with ESMTP id 6db42769 for ; Fri, 25 Jan 2019 19:26:03 +0000 (UTC) Received: by smtp.gaspard.ninja (OpenSMTPD) with ESMTP id c09e2e08 for ; Fri, 25 Jan 2019 19:26:03 +0000 (UTC) Received: from localhost (llwynog [local]) by llwynog (OpenSMTPD) with ESMTPA id 3cc793b8 for ; Fri, 25 Jan 2019 19:26:03 +0000 (UTC) In-Reply-To: <87pnsw7ozv.fsf@llwynog.ekleog.org> 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 Hello all! Just trying to bump this question: How does one make an agenda view that includes tasks that are already scheduled for later? (more details in the quoted mail below) Cheers, Leo Leo Gaspard writes: > Hello all! > > I am trying to make an agenda view of all tasks that don't have the > :Effort: property set, including tasks that are scheduled for later. > > My init.el files includes the following lines (of interest is the "E" > agenda): > ``` > (setq org-agenda-custom-commands > '(("U" "Unscheduled tasks" > todo '("TODO" "WAITING") > ((org-agenda-overriding-header "Unscheduled tasks") > (org-agenda-skip-function '(org-agenda-skip-entry-if 'scheduled)))) > ("E" "Effortless tasks" > todo '("TODO" "WAITING") > ((org-agenda-overriding-header "Effortless tasks") > (org-agenda-skip-function '(org-agenda-skip-entry-if 'regexp ":Effort:= " 'todo '("APPT"))))))) > ``` > > However, for some reason only tasks that are either not scheduled or > scheduled for some time in the past show up in this agenda. This makes > it useless, as the point is to remember to put in efforts for every > task *before* they are scheduled (and thus started) > > Do you have an idea what I could have missed? > > Thanking you in advance, > Leo > > PS: Also, I've noticed setting =3Dtodo '("TODO" "WAITING")=3D is apparent= ly > not enough to get it to ignore the APPT-tagged items, so I've added the > filter to =3Dorg-agenda-skip-entry-if=3D. If you have an idea what I'm do= ing > wrong=E2=80=A6