Function: bs-down
bs-down is an interactive and byte-compiled function defined in
bs.el.gz.
Signature
(bs-down ARG)
Documentation
Move point vertically down ARG lines in Buffer Selection Menu.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-down (arg)
"Move point vertically down ARG lines in Buffer Selection Menu."
(interactive "p")
(if (and arg (numberp arg) (< arg 0))
(bs--nth-wrapper (- arg) 'bs--up)
(bs--nth-wrapper arg 'bs--down)))