Function: dired-x-find-file

dired-x-find-file is an interactive and byte-compiled function defined in dired-x.el.gz.

Signature

(dired-x-find-file FILENAME)

Documentation

Edit file FILENAME.

Like find-file, except that when called interactively with a prefix argument, it offers the filename near point as a default.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired-x.el.gz
(defun dired-x-find-file (filename)
  "Edit file FILENAME.
Like `find-file', except that when called interactively with a
prefix argument, it offers the filename near point as a default."
  (interactive (list (dired-x-read-filename-at-point "Find file: ")))
  (find-file filename))