Function: speedbar-restricted-prev

speedbar-restricted-prev is an interactive and byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-restricted-prev ARG)

Documentation

Move to the previous ARGth line in a speedbar buffer at the same depth.

This means that movement is restricted to a subnode, and that siblings of intermediate nodes are skipped.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-restricted-prev (arg)
  "Move to the previous ARGth line in a speedbar buffer at the same depth.
This means that movement is restricted to a subnode, and that siblings
of intermediate nodes are skipped."
  (interactive "p")
  (speedbar-restricted-move (if arg (- arg) -1))
  (speedbar-item-info))