Function: org-goto-left
org-goto-left is an interactive and byte-compiled function defined in
org-goto.el.gz.
Signature
(org-goto-left)
Documentation
Finish org-goto by going to the new location.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-goto.el.gz
(defun org-goto-left ()
"Finish `org-goto' by going to the new location."
(interactive)
(if (org-at-heading-p)
(progn
(beginning-of-line 1)
(setq org-goto-selected-point (point)
org-goto-exit-command 'left)
(throw 'exit nil))
(user-error "Not on a heading")))