From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Gaspard Subject: Making an agenda that includes scheduled-for-later tasks? Date: Wed, 16 Jan 2019 13:42:28 +0100 Message-ID: <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]:59858) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gjkeV-00056L-N0 for emacs-orgmode@gnu.org; Wed, 16 Jan 2019 07:50:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gjkWk-0005kv-As for emacs-orgmode@gnu.org; Wed, 16 Jan 2019 07:42:40 -0500 Received: from grym.ekleog.org ([94.23.42.210]:36356 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 1gjkWj-0005J9-Je for emacs-orgmode@gnu.org; Wed, 16 Jan 2019 07:42:38 -0500 Received: by smtp.gaspard.ninja (OpenSMTPD) with ESMTP id ef00cb3d for ; Wed, 16 Jan 2019 12:42:30 +0000 (UTC) Received: by smtp.gaspard.ninja (OpenSMTPD) with ESMTP id db578f68 for ; Wed, 16 Jan 2019 12:42:30 +0000 (UTC) Received: from localhost (llwynog [local]) by llwynog (OpenSMTPD) with ESMTPA id 9ec17b3f for ; Wed, 16 Jan 2019 12:42:28 +0000 (UTC) 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! 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 apparently 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 doing wrong=E2=80=A6