Function: org-insert-todo-heading-respect-content

org-insert-todo-heading-respect-content is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-insert-todo-heading-respect-content &optional _)

Documentation

Insert TODO heading with org-insert-heading-respect-content(var)/org-insert-heading-respect-content(fun) set to t.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-insert-todo-heading-respect-content (&optional _)
  "Insert TODO heading with `org-insert-heading-respect-content' set to t."
  (interactive)
  (let ((org-insert-heading-respect-content t))
    (org-insert-todo-heading '(4) t)))