Function: embark-dired-jump

embark-dired-jump is an interactive and byte-compiled function defined in embark.el.

Signature

(embark-dired-jump FILE &optional OTHER-WINDOW)

Documentation

Open Dired buffer in directory containing FILE and move to its line.

When called with a prefix argument OTHER-WINDOW, open Dired in other window.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark-dired-jump (file &optional other-window)
  "Open Dired buffer in directory containing FILE and move to its line.
When called with a prefix argument OTHER-WINDOW, open Dired in other window."
  (interactive "fJump to Dired file: \nP")
  (dired-jump other-window file))