Variable: allout-structure-shifted-functions
allout-structure-shifted-functions is a customizable variable defined
in allout.el.gz.
Value
nil
Documentation
Abnormal hook run after shifting items in an Allout outline.
Functions on the hook should take two arguments:
- DEPTH-CHANGE -- integer indicating depth increase, negative for decrease
- START -- integer indicating the start point of the shifted parent item.
Some edits that shift items can be missed by this hook: specifically edits that native allout routines do not control.
This hook might be invoked multiple times by a single command.
This variable was added, or its default value changed, in Emacs 24.3.
Aliases
allout-structure-shifted-hook (obsolete since 24.3)
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
(defcustom allout-structure-shifted-functions nil
"Abnormal hook run after shifting items in an Allout outline.
Functions on the hook should take two arguments:
- DEPTH-CHANGE -- integer indicating depth increase, negative for decrease
- START -- integer indicating the start point of the shifted parent item.
Some edits that shift items can be missed by this hook: specifically edits
that native allout routines do not control.
This hook might be invoked multiple times by a single command."
:type 'hook
:group 'allout
:version "24.3")