Function: viper-prev-heading
viper-prev-heading is an interactive and byte-compiled function
defined in viper-cmd.el.gz.
Signature
(viper-prev-heading ARG)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-cmd.el.gz
;; should be mode-specific
(defun viper-prev-heading (arg)
(interactive "P")
(let ((val (viper-p-val arg))
(com (viper-getCom arg)))
(if com (viper-move-marker-locally 'viper-com-point (point)))
(re-search-backward viper-heading-start nil t val)
(goto-char (match-beginning 0))
(if com (viper-execute-com 'viper-prev-heading nil com))))