Function: bs-config--files-and-scratch
bs-config--files-and-scratch is a byte-compiled function defined in
bs.el.gz.
Signature
(bs-config--files-and-scratch)
Documentation
Define a configuration for showing buffer *scratch* and file buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-config--files-and-scratch ()
"Define a configuration for showing buffer *scratch* and file buffers."
(bs-config-clear)
(setq ;; I want to see *-buffers at the end
bs-buffer-sort-function 'bs-sort-buffer-interns-are-last
;; Don't show files who don't belong to a file
bs-dont-show-function 'bs-visits-non-file
;; Show *scratch* buffer.
bs-must-show-regexp "^\\*scratch\\*$"))