Function: org-previous-visible-heading
org-previous-visible-heading is an interactive and byte-compiled
function defined in org.el.gz.
Signature
(org-previous-visible-heading ARG)
Documentation
Move to the previous visible heading.
With ARG, repeats or can move forward if negative.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-previous-visible-heading (arg)
"Move to the previous visible heading.
With ARG, repeats or can move forward if negative."
(interactive "p")
(org-next-visible-heading (- arg)))