Function: org-beginning-of-item-list
org-beginning-of-item-list is an interactive and byte-compiled
function defined in org-list.el.gz.
Signature
(org-beginning-of-item-list)
Documentation
Go to the beginning item of the current list or sublist.
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-list ()
"Go to the beginning item of the current list or sublist.
Throw an error when not in a list."
(interactive)
(let ((begin (org-in-item-p)))
(if (not begin)
(error "Not in an item")
(goto-char begin)
(let* ((struct (org-list-struct))
(prevs (org-list-prevs-alist struct)))
(goto-char (org-list-get-list-begin begin struct prevs))))))