Function: bs-up

bs-up is an interactive and byte-compiled function defined in bs.el.gz.

Signature

(bs-up ARG)

Documentation

Move point vertically up ARG lines in Buffer Selection Menu.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-up (arg)
  "Move point vertically up ARG lines in Buffer Selection Menu."
  (interactive "p")
  (if (and arg (numberp arg) (< arg 0))
      (bs--nth-wrapper (- arg) 'bs--down)
    (bs--nth-wrapper arg 'bs--up)))