Variable: toggle-window-dedicated-flag

toggle-window-dedicated-flag is a customizable variable defined in window.el.gz.

Value

interactive

Documentation

What dedicated flag should toggle-window-dedicated use by default.

If toggle-window-dedicated does not receive a flag argument, the value of this variable is used and passed to set-window-dedicated-p. Setting this to t will make toggle-window-dedicated use strong dedication by default. Any other non-nil value will result in the same kind of non-strong dedication.

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

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defcustom toggle-window-dedicated-flag 'interactive
  "What dedicated flag should `toggle-window-dedicated' use by default.

If `toggle-window-dedicated' does not receive a flag argument,
the value of this variable is used and passed to
`set-window-dedicated-p'.  Setting this to t will make
`toggle-window-dedicated' use strong dedication by default.  Any
other non-nil value will result in the same kind of non-strong
dedication."
  :type '(choice (const :tag "Strongly dedicated" t)
                 (const :tag "Dedicated" interactive))
  :version "30.0"
  :group 'windows)