Function: org-agenda-do-context-action

org-agenda-do-context-action is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-do-context-action)

Documentation

Show outline path and, maybe, follow mode window.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-do-context-action ()
  "Show outline path and, maybe, follow mode window."
  (let ((m (org-get-at-bol 'org-marker)))
    (when (and (markerp m) (marker-buffer m))
      (and org-agenda-follow-mode
	   (if org-agenda-follow-indirect
               (let ((org-indirect-buffer-display 'other-window))
                 (org-agenda-tree-to-indirect-buffer nil))
	     (org-agenda-show)))
      (and org-agenda-show-outline-path
	   (org-with-point-at m (org-display-outline-path org-agenda-show-outline-path))))))