From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: stop results drawers from folding? Date: Wed, 14 Feb 2018 23:05:42 +0100 Message-ID: <87d117ns5l.fsf@nicolasgoaziou.fr> References: <87inbgwcrj.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34881) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1em5BX-0002K5-Jg for emacs-orgmode@gnu.org; Wed, 14 Feb 2018 17:05:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1em5BU-0005Jy-Cw for emacs-orgmode@gnu.org; Wed, 14 Feb 2018 17:05:51 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:53275) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1em5BU-0005JU-5w for emacs-orgmode@gnu.org; Wed, 14 Feb 2018 17:05:48 -0500 In-Reply-To: (John Kitchin's message of "Wed, 14 Feb 2018 10:29:16 -0800") 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: John Kitchin Cc: org-mode-email Hello, John Kitchin writes: > I have tracked this issue down to the last line of this function: > > (defun org-show-entry () > "Show the body directly following this heading. > Show the heading too, if it is currently invisible." > (interactive) > (save-excursion > (ignore-errors > (org-back-to-heading t) > (outline-flag-region > (max (point-min) (1- (point))) > (save-excursion > (if (re-search-forward > (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t) > (match-beginning 1) > (point-max))) > nil) > (org-cycle-hide-drawers 'children)))) > > This command gets called in many places, e.g. org-next-block, which is > called by org-babel-next-src-block. It is inconvenient when you use results > drawers, as it closes them when you navigate around. > > It isn't obvious how to suppress that behavior. Any thoughts? I see. There are some changes with drawers visibility on master. You may want to test that branch. Regards, -- Nicolas Goaziou 0x80A93738