G4143
G4143

Reputation: 2829

Ido-mode and similair named files

I'm having a problem on my Linux(Mint) box with ido-mode and similar named files. If I have a file name myseq.ml~ and I want to create a file named myseq.ml(myseq.ml doesn't exist) with C-x C-f, I can't find a way to ignore ido-mode's choices. The ido-mode keeps choosing myseq.ml~.

My .emacs file's entry for ido-mode:

(setq ido-enable-flex-matching t)
(setq ido-everywhere t)
(ido-mode 1)

Upvotes: 0

Views: 46

Answers (1)

amalloy
amalloy

Reputation: 91897

Once ido-mode has suggested a filename that is close to what you want, you can use C-f to exit ido-mode and edit the filename normally.

Upvotes: 1

Related Questions