Function: speedbar-restricted-next

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

Signature

(speedbar-restricted-next ARG)

Documentation

Move to the next 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-next (arg)
  "Move to the next 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 (or arg 1))
  (speedbar-item-info))