From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Problem with org-agenda-goto and inline tasks Date: Thu, 18 Feb 2010 22:46:08 -0500 Message-ID: <87d401evlr.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NiJoV-0005Uk-5U for emacs-orgmode@gnu.org; Thu, 18 Feb 2010 22:45:59 -0500 Received: from [140.186.70.92] (port=40986 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NiJoQ-0005Sh-96 for emacs-orgmode@gnu.org; Thu, 18 Feb 2010 22:45:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NiJoL-0003jF-LW for emacs-orgmode@gnu.org; Thu, 18 Feb 2010 22:45:54 -0500 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:56401) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NiJoL-0003ip-JW for emacs-orgmode@gnu.org; Thu, 18 Feb 2010 22:45:49 -0500 Received: from compute1.internal (compute1 [10.202.2.41]) by gateway1.messagingengine.com (Postfix) with ESMTP id 13605E0F51 for ; Thu, 18 Feb 2010 22:45:46 -0500 (EST) Received: from archdesk (adsl-99-19-45-119.dsl.klmzmi.sbcglobal.net [99.19.45.119]) by mail.messagingengine.com (Postfix) with ESMTPSA id 68A364B443C for ; Thu, 18 Feb 2010 22:45:45 -0500 (EST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode Hi Carsten, I'd like to report a minor issue with org-agenda-goto and inline tasks. Let's say one has the following file: --8<---------------cut here---------------start------------->8--- * Here is an entry. Blah blah blah blah. *************** Here is an inline task. *************** END Blah blah blah blah blah. *************** TODO Here is a second inline task. *************** END Blah blah blah blah blah. *************** Here is a third inline task *************** END Blah blah blah blah blah. --8<---------------cut here---------------end--------------->8--- Let's say one also has the following settings: --8<---------------cut here---------------start------------->8--- (setq org-show-hierarchy-above t) (setq org-show-siblings '((default . nil) (isearch . t) (agenda . t))) (setq org-show-entry-below '((default . nil) (isearch . t) (agenda . t))) --8<---------------cut here---------------end--------------->8--- If 1) one tries to jump to the TODO from the agenda and 2) the entry is currently folded, org-show-context reveals only the headlines. E.g., --8<---------------cut here---------------start------------->8--- * Here is an entry. *************** Here is an inline task. *************** END... *************** TODO Here is a second inline task. *************** END... *************** Here is a third inline task *************** END... --8<---------------cut here---------------end--------------->8--- Invoking org-cycle on the END headline does nothing, since all headlines deeper than org-inlinetask-min-level are exempted from cycling. As a result, the only way to reveal the text in the entry is to cycle the parent twice (first to close, then to reveal). Thanks, Matt