Variable: dired-x-hands-off-my-keys

dired-x-hands-off-my-keys is a customizable variable defined in dired-x.el.gz.

Value

t

Documentation

Non-nil means don't remap find-file to dired-x-find-file.

Similarly for find-file-other-window and dired-x-find-file-other-window. If you change this variable without using M-x customize (customize) after dired-x.el is loaded then call M-x dired-x-bind-find-file (dired-x-bind-find-file).

Source Code

;; Defined in /usr/src/emacs/lisp/dired-x.el.gz
;;; Find file at point

(defcustom dired-x-hands-off-my-keys t
  "Non-nil means don't remap `find-file' to `dired-x-find-file'.
Similarly for `find-file-other-window' and `dired-x-find-file-other-window'.
If you change this variable without using \\[customize] after `dired-x.el'
is loaded then call \\[dired-x-bind-find-file]."
  :type 'boolean
  :initialize 'custom-initialize-default
  :set (lambda (symbol value)
         (set symbol value)
         (dired-x-bind-find-file))
  :group 'dired-x)