Function: bs-set-current-buffer-to-show-always
bs-set-current-buffer-to-show-always is an interactive and
byte-compiled function defined in bs.el.gz.
Signature
(bs-set-current-buffer-to-show-always &optional NOT-TO-SHOW-P)
Documentation
Toggle status of buffer on line to always shown.
With prefix argument NOT-TO-SHOW-P, the buffer on current line is marked to never show instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-set-current-buffer-to-show-always (&optional not-to-show-p)
"Toggle status of buffer on line to `always shown'.
With prefix argument NOT-TO-SHOW-P, the buffer on current line
is marked to never show instead."
(interactive "P")
(if not-to-show-p
(bs-set-current-buffer-to-show-never)
(bs--set-toggle-to-show (bs--current-buffer) 'always)))