I was not the only one who thought ido
is very inconvenient when trying to write a new file. The emacs wiki has a section dedicated to disabling ido
for write-file
:
Disable ido mode for particular commands, e.g. write-file
Their suggestion is to turn off ido
for write file using:
(define-key (cdr ido-minor-mode-map-entry) [remap write-file] nil)
This does not seem to work for me. ido
still runs when I hit C-x C-w
. Any suggestions?