Skip to content

Instantly share code, notes, and snippets.

@bkyle
Created February 25, 2009 16:07
Show Gist options
  • Save bkyle/70249 to your computer and use it in GitHub Desktop.
Save bkyle/70249 to your computer and use it in GitHub Desktop.
find-file-in-project
(defun find-file-in-project ()
(interactive)
(let (files filename)
(visit-tags-table-buffer)
(setq files (tags-table-files))
(setq filename (ido-completing-read "Find File: " files nil))
(find-file (concat (file-name-directory tags-file-name) filename))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment