Variable: dired-auto-toggle-b-switch

dired-auto-toggle-b-switch is a customizable variable defined in dired.el.gz.

Value

nil

Documentation

Whether to automatically add or remove the b switch.

If non-nil, the function dired--toggle-b-switch (which see) is added to post-command-hook in Dired mode.

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

View in manual

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defcustom dired-auto-toggle-b-switch nil
  "Whether to automatically add or remove the `b' switch.
If non-nil, the function `dired--toggle-b-switch' (which see) is added
to `post-command-hook' in Dired mode."
  :type 'boolean
  :group 'dired
  :initialize #'custom-initialize-default
  :set #'dired--set-auto-toggle-b-switch
  :version "31.1")