Function: eshell-occur-mode-goto-occurrence

eshell-occur-mode-goto-occurrence is an interactive and byte-compiled function defined in em-unix.el.gz.

Signature

(eshell-occur-mode-goto-occurrence)

Documentation

Go to the occurrence the current line describes.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-unix.el.gz
(defun eshell-occur-mode-goto-occurrence ()
  "Go to the occurrence the current line describes."
  (interactive)
  (let ((pos (occur-mode-find-occurrence)))
    (pop-to-buffer (marker-buffer pos))
    (goto-char (marker-position pos))))