From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sven Bretfeld Subject: Superagenda selector ":priority" matches only deadlines Date: Thu, 19 Jul 2018 12:12:16 +0200 Message-ID: <87tvovjzzz.fsf@ntnu.no> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33921) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fg5v2-00073N-S1 for emacs-orgmode@gnu.org; Thu, 19 Jul 2018 06:12:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fg5v1-0001iX-Ls for emacs-orgmode@gnu.org; Thu, 19 Jul 2018 06:12:20 -0400 Received: from mailgw01.it.ntnu.no ([2001:700:300:3::174]:42312) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fg5v1-0001hN-Ca for emacs-orgmode@gnu.org; Thu, 19 Jul 2018 06:12:19 -0400 Received: from localhost (localhost [127.0.0.1]) by mailgw01.it.ntnu.no (Postfix) with ESMTP id 98FA1242AD5 for ; Thu, 19 Jul 2018 12:12:17 +0200 (CEST) Received: from mailgw01.it.ntnu.no ([127.0.0.1]) by localhost (mailgw01.it.ntnu.no [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CkqC9ewHOCEa for ; Thu, 19 Jul 2018 12:12:17 +0200 (CEST) Received: from relwi-brf (unknown [IPv6:2001:700:300:1302:6600:6aff:fe62:4b39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: svenbre) by mailgw01.it.ntnu.no (Postfix) with ESMTPSA id 46BFE24032E for ; Thu, 19 Jul 2018 12:12:16 +0200 (CEST) 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: org-mode Hi This can't be a feature. The org-super-agenda selector ":priority" matches no entries except those that have a deadline. Example: (setq org-agenda-custom-commands (quote ( (" " "Super Agenda View" ( (agenda "" ((org-agenda-span 'day) (org-super-agenda-groups '((:name "Today " :time-grid t :date today :scheduled today :order 1) (:name "Important " :priority "A" :order 2) )))) <---- more to follow The 2nd block should match every item with "A" priority. Instead, of the group: * TODO [#A] Test 1 DEADLINE: <2018-07-23 Mo> * TODO [#A] Test 2 SCHEDULED: <2018-07-20 Fr> * TODO [#A] Test 3 * TODO [#B] Test 4 DEADLINE: <2018-07-21 Sa> ... only the first item (Test 1) is displayed. Bug or weird feature? Todos having top priority without having a deadline is a common use case, right? Sven