I want to open a file that is somewhere deep in my project tree. I know the name of the file, however I don’t want to go searching the tree for it. I would like a way to enter just the file name, and have emacs search for me. I should also be able to enter the base directory I want to start the search from, and emacs should remember that for future searches.
Share
Sounds like you are looking for the equivalent of Textmate’s
Command-Tfunctionality. The closest I have found for emacs isfind-file-in-project. It can be bound toC-tor a similar key for convenience:(global-set-key "\C-t" 'ido-find-file-in-tag-files)