Function: org-return-indent

org-return-indent is an interactive and byte-compiled function defined in org-compat.el.

This command is obsolete since 9.4; use org-return with INDENT set to t instead.

Signature

(org-return-indent)

Documentation

Goto next table row or insert a newline and indent.

Calls org-table-next-row or newline-and-indent, depending on context. See the individual commands for more information.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(defun org-return-indent ()
  "Goto next table row or insert a newline and indent.
Calls `org-table-next-row' or `newline-and-indent', depending on
context.  See the individual commands for more information."
  (declare (obsolete "use `org-return' with INDENT set to t instead."
		     "9.4"))
  (interactive)
  (org-return t))