From mboxrd@z Thu Jan 1 00:00:00 1970 From: pinkanon pinkanon Subject: org-show-context-detail and tree expansion Date: Tue, 26 Mar 2019 22:01:42 +0200 Message-ID: <10741401553630502@iva6-628714d786b2.qloud-c.yandex.net> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:44061) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8sGa-0005oS-Td for emacs-orgmode@gnu.org; Tue, 26 Mar 2019 16:01:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8sGZ-0003Uo-Qi for emacs-orgmode@gnu.org; Tue, 26 Mar 2019 16:01:48 -0400 Received: from forward400j.mail.yandex.net ([5.45.198.245]:42328) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h8sGZ-0003Ti-3G for emacs-orgmode@gnu.org; Tue, 26 Mar 2019 16:01:47 -0400 Received: from mxback9g.mail.yandex.net (mxback9g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:170]) by forward400j.mail.yandex.net (Yandex) with ESMTP id 4E0786E106E for ; Tue, 26 Mar 2019 23:01:43 +0300 (MSK) 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 Hi! I use helm, which can list all headings using helm-org-in-buffer-headings, and lets you choose one to jump to. When I jump to a heading, the tree is expanded. My problem is as follows. When I expand this tree on "(2) Downers" (when it is collapsed): * (1) Uppers ** (2) Downers screamers *** laughers ...and also a quart of tequila ** (3) a quart of rum, a case of Budweiser, ** (4) a pint of raw ether and two dozen amyls. I get: * (1) Uppers ** (2) Downers screamers ... ** (3) a quart of rum,... ** (4) a pint of raw ether and two dozen amyls.... Instead of: * (1) Uppers ** (2) Downers screamers *** laughers... ** (3) a quart of rum,... ** (4) a pint of raw ether and two dozen amyls. I was advised to modify 'org-show-context-detail, as helm uses org-show-context function. But none of the possible values fixed the behaviour for me. I used 'canonical for the example above: (setf (alist-get 'default org-show-context-detail) 'canonical) Is there a workaround?