Answers:
您要查找的变量是ispell-program-name
。将其塞入您的某处.emacs
:
(setq ispell-program-name "/path/to/ispell")
或使用M-x set-variable
等
参考文献:
从来源到 ispell.el
(defcustom ispell-program-name
(or (locate-file "aspell" exec-path exec-suffixes 'file-executable-p)
(locate-file "ispell" exec-path exec-suffixes 'file-executable-p)
(locate-file "hunspell" exec-path exec-suffixes 'file-executable-p)
"ispell")
"Program invoked by \\[ispell-word] and \\[ispell-region] commands."
:type 'string
:group 'ispell)
每当找不到Emacs函数时,请记住C-h f
(或变量:)C-h v
。ispell
在Describe function
提示符下输入时ispell is an interactive compiled Lisp function in 'ispell.el'.
,您通常可以从中找到所需的内容。
即使您仅使用brew进行ispell安装,并且已经通过这种类型的dmg安装了emacs ,并且通过扩展坞中的图标运行了emacs,您仍要注销并再次登录,因为OS X会在路径和路径中缓存项目。不会立即看到ispell。如果此信息对您而言不是新闻,那么您可能仍可以解决此问题。