Variable: woman-dired-keys

woman-dired-keys is a customizable variable defined in woman.el.gz.

Value

t

Documentation

List of dired mode keys to define to run WoMan on current file.

E.g. ("w" "W"), or any non-null atom to automatically define
"w" and "W" if they are unbound, or nil to do nothing.
Default is t.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defcustom woman-dired-keys t
  "List of `dired' mode keys to define to run WoMan on current file.
E.g. (\"w\" \"W\"), or any non-null atom to automatically define
\"w\" and \"W\" if they are unbound, or nil to do nothing.
Default is t."
  :type '(choice (const :tag "None" nil)
		 (repeat string)
		 (other :tag "Auto" t))
  :group 'woman-interface)