I often use dired-mode, and I recently started using ido:
(ido-mode 1); enable ido-mode
(setq ido-enable-flex-matching t); flexibly match names via fuzzy matching
(setq ido-everywhere t); use ido-mode everywhere, in buffers and for finding files
(setq ido-use-filename-at-point 'guess); for find-file-at-point
(setq ido-use-url-at-point t); look for URLs at point
(setq ffap-require-prefix t); get find-file-at-point with C-u C-x C-f
When I copy file (s C) in a fading buffer, I still have to use the "standard method" to provide a new location where the file will be copied. This means that I have to use standard TAB termination, but there is no ido-set. The same applies to Rmoving files, etc. So I wonder if it is also possible to get idoacting on Cor Rin buffers with support?
source
share