Variable: custom-dirlocals-commands

custom-dirlocals-commands is a variable defined in cus-edit.el.gz.

Value

((" Save Settings " Custom-dirlocals-save t
  "Save Settings to the dir-locals file." "save" "Save" t)
 (" Undo Edits " Custom-dirlocals-revert-buffer t
  "Revert buffer, undoing any editions." "refresh" "Undo" t)
 (" Help for Customize " Custom-help t "Get help for using Customize."
  "help" "Help" t)
 (" Exit " Custom-buffer-done t "Exit Customize." "exit" "Exit" t))

Documentation

Alist of specifications for Customize menu items, tool bar icons and buttons.

See custom-commands for further explanation.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defvar custom-dirlocals-commands
  '((" Save Settings " Custom-dirlocals-save t
     "Save Settings to the dir-locals file." "save" "Save" t)
    (" Undo Edits " Custom-dirlocals-revert-buffer t
     "Revert buffer, undoing any editions."
     "refresh" "Undo" t)
    (" Help for Customize " Custom-help t "Get help for using Customize."
     "help" "Help" t)
    (" Exit " Custom-buffer-done t "Exit Customize." "exit" "Exit" t))
  "Alist of specifications for Customize menu items, tool bar icons and buttons.
See `custom-commands' for further explanation.")