Function: org-beginning-of-item
org-beginning-of-item is an interactive and byte-compiled function
defined in org-list.el.gz.
Signature
(org-beginning-of-item)
Documentation
Go to the beginning of the current item.
Throw an error when not in a list.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-beginning-of-item ()
"Go to the beginning of the current item.
Throw an error when not in a list."
(interactive)
(let ((begin (org-in-item-p)))
(if begin (goto-char begin) (error "Not in an item"))))