Function: org-agenda-recenter

org-agenda-recenter is an interactive and byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-recenter ARG)

Documentation

Display the Org file which contains the item at point and recenter.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-recenter (arg)
  "Display the Org file which contains the item at point and recenter."
  (interactive "P")
  (let ((win (selected-window)))
    (org-agenda-goto t)
    (recenter arg)
    (select-window win)))