Variable: custom-dirlocals-field-map

custom-dirlocals-field-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-complete
C-c C-c              Custom-set
C-e                  widget-end-of-line
C-k                  widget-kill-line
C-x C-s              Custom-dirlocals-save
RET                  widget-field-activate
S-<tab>              widget-backward
TAB                  widget-forward

Documentation

Keymap for the editable fields in the "*Customize Dirlocals*" buffer .

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defvar custom-dirlocals-field-map
  (let ((map (copy-keymap custom-field-keymap)))
    (define-key map "\C-x\C-s" #'Custom-dirlocals-save)
    (define-key map "\C-m" #'widget-field-activate)
    map)
  "Keymap for the editable fields in the \"*Customize Dirlocals*\" buffer .")