Function: org-mark-jump-unhide

org-mark-jump-unhide is a byte-compiled function defined in org-compat.el.

Signature

(org-mark-jump-unhide &rest _)

Documentation

Make the point visible with org-fold-show-context after jumping to the mark.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
;;;; Simple

(defun org-mark-jump-unhide (&rest _)
  "Make the point visible with `org-fold-show-context' after jumping to the mark."
  (when (and (derived-mode-p 'org-mode)
	     (org-invisible-p))
    (org-fold-show-context 'mark-goto)))