Emacs24 - 不区分大小写的自动完成 M-x 加载文件

Emacs24 - Case insensitive auto-complete M-x load-file

必须在 Emacs24 中设置什么设置才能使 load-file 命令不区分大小写?

我不认为有任何直接内置的东西,但所有标准 Elisp 文件都有小写名称,所以如果这就是你需要处理的全部,你可以做类似的事情

(defadvice load-file (around lowercase-argument activate compile)
  "Call `downcase' on the FILE argument to `load-file'."
  (let ((file (downcase file)))  
    ad-do-it))