Variable: Custom-dirlocals-mode-map

Custom-dirlocals-mode-map is a variable defined in cus-edit.el.gz.

Value

<backtab>            widget-backward
<down-mouse-1>       widget-button-click
<down-mouse-2>       widget-button-click
<touchscreen-begin>  widget-button-click
C-M-i                widget-backward
C-x C-s              Custom-dirlocals-save
DEL                  scroll-down-command
RET                  widget-button-press
S-<tab>              widget-backward
S-SPC                scroll-down-command
SPC                  scroll-up-command
TAB                  widget-forward
n                    widget-forward
p                    widget-backward
q                    Custom-buffer-done

Documentation

Keymap used in the "*Customize Dirlocals*" buffer.

Aliases

custom-dirlocals-map (obsolete since 31.1)

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defvar-keymap Custom-dirlocals-mode-map
  :doc "Keymap used in the \"*Customize Dirlocals*\" buffer."
  :full t
  :parent widget-keymap
  "SPC"     #'scroll-up-command
  "S-SPC"   #'scroll-down-command
  "DEL"     #'scroll-down-command
  "C-x C-s" #'Custom-dirlocals-save
  "q"       #'Custom-buffer-done
  "n"       #'widget-forward
  "p"       #'widget-backward)