Variable: allout-command-prefix

allout-command-prefix is a customizable variable defined in allout.el.gz.

Value

" "

Documentation

Key sequence to be used as prefix for outline mode command key bindings.

Default is \C-c SPC; just \C-c is more short-and-sweet, if you're willing to let allout use a bunch of \C-c keybindings.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   = allout-command-prefix
(defcustom allout-command-prefix "\C-c "
  "Key sequence to be used as prefix for outline mode command key bindings.

Default is \\`C-c SPC'; just \\`C-c' is more short-and-sweet, if you're
willing to let allout use a bunch of \\`C-c' keybindings."
  :type 'key-sequence
  :group 'allout-keybindings
  :set #'allout-compose-and-institute-keymap)