Function: org-goto-right
org-goto-right is an interactive and byte-compiled function defined in
org-goto.el.gz.
Signature
(org-goto-right)
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-right ()
"Finish `org-goto' by going to the new location."
(interactive)
(if (org-at-heading-p)
(progn
(setq org-goto-selected-point (point)
org-goto-exit-command 'right)
(throw 'exit nil))
(user-error "Not on a heading")))