Function: bs-show-sorted
bs-show-sorted is an interactive and byte-compiled function defined in
bs.el.gz.
Signature
(bs-show-sorted)
Documentation
Show buffer list sorted by next sort aspect.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-show-sorted ()
"Show buffer list sorted by next sort aspect."
(interactive)
(setq bs--current-sort-function
(bs-next-config-aux (car bs--current-sort-function)
bs-sort-functions))
(bs--redisplay)
(bs--goto-current-buffer)
(bs-message-without-log "Sorted %s" (car bs--current-sort-function)))