Variable: window-divider-default-places

window-divider-default-places is a customizable variable defined in frame.el.gz.

Value

right-only

Documentation

Default positions of window dividers.

Possible values are bottom-only (dividers on the bottom of each window only), right-only (dividers on the right of each window only), and t (dividers on the bottom and on the right of each window). The default is right-only.

The value takes effect if and only if dividers are enabled by window-divider-mode(var)/window-divider-mode(fun).

To position dividers on frames individually, use the frame parameters bottom-divider-width and right-divider-width.

This variable was added, or its default value changed, in Emacs 25.1.

Probably introduced at or before Emacs version 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defcustom window-divider-default-places 'right-only
  "Default positions of window dividers.
Possible values are `bottom-only' (dividers on the bottom of each
window only), `right-only' (dividers on the right of each window
only), and t (dividers on the bottom and on the right of each
window).  The default is `right-only'.

The value takes effect if and only if dividers are enabled by
`window-divider-mode'.

To position dividers on frames individually, use the frame
parameters `bottom-divider-width' and `right-divider-width'."
  :type '(choice (const :tag "Bottom only" bottom-only)
		 (const :tag "Right only" right-only)
		 (const :tag "Bottom and right" t))
  :initialize #'custom-initialize-default
  :set (lambda (symbol value)
	 (set-default symbol value)
         (when window-divider-mode
           (window-divider-mode-apply t)))
  :version "25.1")