minad / consult

:mag: consult.el - Consulting completing-read
GNU General Public License v3.0
1.12k stars 98 forks source link

How to add advice to achieve for org buffer like to collapse all the headings after executing 'consult-org-heading'? #942

Closed IceAsteroid closed 2 months ago

IceAsteroid commented 2 months ago

Hi, guys, thank you for the great effort!

I wish to have all other headings collapsed after selecting a heading via 'consult-org-heading'.

I wrote a snippet like follows, but it didn't seem to work

  (defun my/outline-collapse-all-other-headings
      (save-excursion
    (outline-hide-other)))
  (advice-add 'consult-org-heading :after 'my/outline-collapse-all-other-headings)

What's wrong?