Variable: facemenu-indentation-menu
facemenu-indentation-menu is a variable defined in facemenu.el.gz.
Value
<decrease-left-margin> decrease-left-margin
<decrease-right-margin> decrease-right-margin
<increase-left-margin> increase-left-margin
<increase-right-margin> increase-right-margin
Documentation
Submenu for indentation commands.
Source Code
;; Defined in /usr/src/emacs/lisp/facemenu.el.gz
(defvar facemenu-indentation-menu
(let ((map (make-sparse-keymap "Indentation")))
(define-key map [decrease-right-margin]
(cons "Indent Right Less" 'decrease-right-margin))
(define-key map [increase-right-margin]
(cons "Indent Right More" 'increase-right-margin))
(define-key map [decrease-left-margin]
(cons "Indent Less" 'decrease-left-margin))
(define-key map [increase-left-margin]
(cons "Indent More" 'increase-left-margin))
map)
"Submenu for indentation commands.")