In eclipse (with the emacs keys) i hit ctrl-x-ctrl-f and it searches for filenames containing the word I type. what is the equivalent emacs feature emacs feature?
A:
You have to press Tab to display list of files matching your search, it's like auto-completion in bash.
Edit: of course after pressing ctrl-x ctrl-f
stmi
2010-08-18 02:12:43
That would only search one directory.
Arthur Ulfeldt
2010-08-18 17:28:12
A:
You can autocomplete filenames in the current directory with TAB, but it sounds a little like you are wanting some kind of project management (to find all matching files belonging to a pre-defined project, not just in the current directory).
Is that the case? (If not, which files do you want to search?)
M-x find-dired
is useful for running arbitrary find commands from the current (or specified) directory.
phils
2010-08-18 03:46:16
A:
You probably want ido mode with flex matching:
(ido-mode t)
(setq ido-enable-flex-matching t)
Nils
2010-08-18 12:19:00