SHOW:
|
|
- or go back to the newest paste.
| 1 | ;;disable ido caching for problem directories on windows | |
| 2 | (require 'ido) | |
| 3 | (when (equal system-type 'windows-nt) | |
| 4 | (setq ido-max-dir-file-cache 0) | |
| 5 | (add-to-list 'ido-work-directory-list-ignore-regexps | |
| 6 | "Local Settings") | |
| 7 | (add-to-list 'ido-work-directory-list-ignore-regexps | |
| 8 | "Application Data")) | |
| 9 | ||
| 10 | ; caching unreliable |