From: Ihor Radchenko <yantar92@gmail.com>
To: Tor Kringeland <tor.kringeland@ntnu.no>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: [PATCH] Re: Change in `org-cycle-hook' breaks behavior
Date: Sat, 28 May 2022 11:31:42 +0800 [thread overview]
Message-ID: <87sfoucoyp.fsf@localhost> (raw)
In-Reply-To: <m2r14f407q.fsf@ntnu.no>
Tor Kringeland <tor.kringeland@ntnu.no> writes:
>> A more efficient way could be introducing a new customization similar to
>> org-cycle-hide-block-startup. Say, it can be
>> org-cycle-hide-drawer-startup. See the attached patch.
>
> I can always hide the
> drawers by adding `org-cycle-hide-drawers' to `org-cycle-hook' when I
> call my custom function, but I cannot replicate the behavior of
> `org-cycle' without `org-cycle-hide-drawers' in the hook, which would
> uncoditionally open all the drawers (AFAIK).)
Sure. Now, you need to call a different function to open all the drawers
unconditionally. That function is:
(let* ((headline (save-excursion (org-back-to-heading) (org-element-at-point)))
(section (org-element-lineage
(org-element-at-point
(org-element-property :contents-begin headline))
'(section))))
(when section
(org-fold-region
(org-element-property :begin section)
(org-element-property :end section)
nil 'drawer)))
Though we might also modify org-fold-show-entry to allow what you wish.
I am not sure here.
Best,
Ihor
next prev parent reply other threads:[~2022-05-28 3:31 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-26 16:33 Change in `org-cycle-hook' breaks behavior Tor Kringeland
2022-05-27 7:10 ` [PATCH] " Ihor Radchenko
2022-05-27 12:41 ` Tor Kringeland
2022-05-28 3:31 ` Ihor Radchenko [this message]
2022-05-28 12:06 ` Tor Kringeland
2022-05-28 12:10 ` Tor Kringeland
2022-05-28 12:40 ` Ihor Radchenko
2022-05-28 14:14 ` Tor Kringeland
2022-05-29 12:19 ` Ihor Radchenko
2022-06-25 5:18 ` Ihor Radchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87sfoucoyp.fsf@localhost \
--to=yantar92@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=tor.kringeland@ntnu.no \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).