From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Scherbanov Subject: project definition issue Date: Sun, 21 Sep 2014 02:51:28 +0400 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVTVL-0006Wg-Al for emacs-orgmode@gnu.org; Sat, 20 Sep 2014 18:51:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XVTVD-0003L4-Sm for emacs-orgmode@gnu.org; Sat, 20 Sep 2014 18:51:47 -0400 Received: from mail-lb0-f179.google.com ([209.85.217.179]:60569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVTVD-0003Kd-LZ for emacs-orgmode@gnu.org; Sat, 20 Sep 2014 18:51:39 -0400 Received: by mail-lb0-f179.google.com with SMTP id 10so4357696lbg.24 for ; Sat, 20 Sep 2014 15:51:32 -0700 (PDT) Received: from [192.168.1.105] ([176.195.162.136]) by mx.google.com with ESMTPSA id uj2sm2076614lbc.28.2014.09.20.15.51.30 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 20 Sep 2014 15:51:31 -0700 (PDT) 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 Hi. I'm trying to write a simple definition of project: (setq org-stuck-projects '("PROJECT" ("NEXT") nil nil)) This means that everything with a tag :PROJECT: without NEXT task is = stuck. But my stuck project is not shown in the list if it is a nested project = and it has a todo state. * unstuck 1 -- because has next = :test:PROJECT: ** NEXT next in 1 ** this stuck project _without_ todo state is shown in the list = :PROJECT: *** TODO whatever 1 * unstuck 2 = :test:PROJECT: ** NEXT next in 2 ** TODO stuck project is not shown = :PROJECT: *** TODO whatever 2 Next actions: Test: NEXT next in 1 = :test:: Test: NEXT next in 2 = :test:: Stuck projects: Test: this stuck project _without_ todo state is shown in the = list :test::PROJECT: And what is interesting: when I=92m trying to copy the whole line above, = it actually copies two lines: Test: this stuck project _without_ todo state is shown in the = list :test::PROJECT: Test: TODO stuck project is not shown = :test::PROJECT: I tried, but I didn=92t find out why it works this way. Could you help me?