Function: org-backward-heading-same-level
org-backward-heading-same-level is an interactive and byte-compiled
function defined in org.el.gz.
Signature
(org-backward-heading-same-level ARG &optional INVISIBLE-OK)
Documentation
Move backward to the ARG'th subheading at same level as this one.
Stop at the first and last subheadings of a superior heading.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-backward-heading-same-level (arg &optional invisible-ok)
"Move backward to the ARG'th subheading at same level as this one.
Stop at the first and last subheadings of a superior heading."
(interactive "p")
(org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))