Guest User

disable ido caching for problem directorieson windows

a guest
Jun 3rd, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  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
Advertisement
Add Comment
Please, Sign In to add comment