> Is there a script (or a quicker way built-in) that allows one to use
> partial file names in find-file ? For instance, if I C-x C-f and start
> typing the beginning of a filename, then I can TAB to see possible
> completions. But I'd like something similar when using a partial
> filename that isn't the beginning... for instance, if I remember that
> the filename includes blog but the file might be named edblog or
> comblog, then these would show as completions?
Since Emacs-23, the default completion includes so-called
"partial-completion", which lets you do C-x C-f ~/e/e/e TAB and have it
expand to ~/etc/emacs/emacs.el (for example).
It also lets you add "globbing stars", e.g. C-x C-f ~/src/*glob TAB will
complete to any file in ~/src whose name includes "glob".
Stefan