Function: bs-mark-current
bs-mark-current is an interactive and byte-compiled function defined
in bs.el.gz.
Signature
(bs-mark-current COUNT)
Documentation
Mark buffers.
COUNT is the number of buffers to mark. Move point vertically down COUNT lines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-mark-current (count)
"Mark buffers.
COUNT is the number of buffers to mark.
Move point vertically down COUNT lines."
(interactive "p")
(bs--mark-unmark count
(lambda (buf)
(add-to-list 'bs--marked-buffers buf))))