Function: org-fold--advice-edit-commands

org-fold--advice-edit-commands is a byte-compiled function defined in org-fold.el.gz.

Signature

(org-fold--advice-edit-commands)

Documentation

Advice editing commands according to org-fold-catch-invisible-edits-commands.

The advices are installed in current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-fold.el.gz
(defun org-fold--advice-edit-commands ()
  "Advice editing commands according to `org-fold-catch-invisible-edits-commands'.
The advices are installed in current buffer."
  (dolist (command (mapcar #'car org-fold-catch-invisible-edits-commands))
    (advice-add command :before #'org-fold-check-before-invisible-edit-maybe)))