Variable: allout-item-body-keymap

allout-item-body-keymap is a buffer-local variable defined in allout-widgets.el.gz.

Documentation

General key bindings for the text content of outline items.

Source Code

;; Defined in /usr/src/emacs/lisp/allout-widgets.el.gz
;;;_    = allout-item-body-keymap
(defvar-local allout-item-body-keymap
  (let ((km (make-sparse-keymap))
        (as-parent (if (current-local-map)
                       (make-composed-keymap (current-local-map)
                                             (current-global-map))
                     (current-global-map))))
    ;; The keymap parent is reset on the each local var when mode starts.
    (set-keymap-parent km as-parent)
    km)
  "General key bindings for the text content of outline items.")