I use ido mode. Here is how I set in .emacs
(require 'ido)
(setq ido-enable-flex-matching t)
(setq ido-everywhere t)
(ido-mode t)
When I open a file, I do C-x C-f my_file
and if it doesn't exist in current directory, emacs will try to search for it in other recent used directories in about a second. However, most of the time I was just trying to create new files. I had to type the file name really fast and then C-j to confirm it. How can I stop ido from doing this?
ido-find-file
you can just hitC-x C-f
again to drop down into the traditionalfind-file
interface – assemfind-file
. I needido
but not search in other directories. – woodingsC-f
. – abo-abo