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

时间:2015-11-13 18:04:08

标签: emacs autocomplete elisp emacs24 dotfiles

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

1 个答案:

答案 0 :(得分:1)

我不认为有任何直接内置的东西,但所有标准的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))