Function: bs-select-next-configuration

bs-select-next-configuration is an interactive and byte-compiled function defined in bs.el.gz.

Signature

(bs-select-next-configuration &optional START-NAME)

Documentation

Apply next configuration START-NAME and refresh buffer list.

If START-NAME is nil the current configuration bs-current-configuration will be used.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-select-next-configuration (&optional start-name)
  "Apply next configuration START-NAME and refresh buffer list.
If START-NAME is nil the current configuration `bs-current-configuration'
will be used."
  (interactive)
  (let ((config (bs-next-config (or start-name bs-current-configuration))))
    (bs-set-configuration (car config))
    (setq bs-default-configuration bs-current-configuration)
    (bs--redisplay t)
    (bs--set-window-height)
    (bs-message-without-log "Selected configuration: %s" (car config))))