回答:
探している変数はです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'.
、そこから、あなたは通常、あなたが探しているものを見つけることができます。
ispellインストールのみにbrewを使用し、このタイプのdmgから emacsをインストールし、ドック内のアイコンからemacsを実行した場合でも、OS Xはパス内のアイテムをキャッシュし、 ispellはすぐには表示されません。この情報があなたにとってニュースでない場合は、おそらくこの問題を回避することができます。