Function: outline-previous-visible-heading

outline-previous-visible-heading is an interactive and byte-compiled function defined in outline.el.gz.

Signature

(outline-previous-visible-heading ARG)

Documentation

Move to the previous heading line.

With ARG, repeats or can move forward if negative. A heading line is one that starts with a * (or that outline-regexp matches).

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-previous-visible-heading (arg)
  "Move to the previous heading line.
With ARG, repeats or can move forward if negative.
A heading line is one that starts with a `*' (or that
`outline-regexp' matches)."
  (interactive "p")
  (outline-next-visible-heading (- arg)))