Function: org-mouse-show-headlines
org-mouse-show-headlines is an interactive and byte-compiled function
defined in org-mouse.el.gz.
Signature
(org-mouse-show-headlines)
Documentation
Change the visibility of the current org buffer to only show headlines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-show-headlines ()
"Change the visibility of the current org buffer to only show headlines."
(interactive)
(let ((this-command 'org-cycle)
(last-command 'org-cycle)
(org-cycle-global-status nil))
(org-cycle '(4))
(org-cycle '(4))))