要使emacs配置正常工作,我遇到了一些(更多)困难。我想使用Flyspell自动拼写检查。当我尝试通过菜单栏启用自动拼写检查时,出现以下错误。
Starting new Ispell process aspell with english dictionary...
Error enabling Flyspell mode:
(Error: The file "/usr/local/lib/aspell-0.60/english" can not be opened
for reading.)
快速浏览/usr/local/lib/aspell-0.60/
显示我没有安装英语词典。更完整的说,这是安装的东西:
Lindsays-MacBook-Pro:lib ljs$ ls aspell-0.60/
ccpp.amf cp1258.cset iso-8859-2.cmap nroff-filter.info
comment.amf dvorak.kbd iso-8859-2.cset nroff-filter.la
context-filter.info email-filter.info iso-8859-3.cmap nroff-
filter.so
context-filter.la email-filter.la iso-8859-3.cset nroff.amf
context-filter.so email-filter.so iso-8859-4.cmap perl.amf
cp1250.cmap email.amf iso-8859-4.cset sgml-filter.info
cp1250.cset html-filter.info iso-8859-5.cmap sgml-filter.la
cp1251.cmap html.amf iso-8859-5.cset sgml-filter.so
cp1251.cset iso-8859-1.cmap iso-8859-6.cmap sgml.amf
cp1252.cmap iso-8859-1.cset iso-8859-6.cset spell
cp1252.cset iso-8859-10.cmap iso-8859-7.cmap split.kbd
cp1253.cmap iso-8859-10.cset iso-8859-7.cset standard.kbd
cp1253.cset iso-8859-11.cmap iso-8859-8.cmap tex-filter.info
cp1254.cmap iso-8859-11.cset iso-8859-8.cset tex-filter.la
cp1254.cset iso-8859-13.cmap iso-8859-9.cmap tex-filter.so
cp1255.cmap iso-8859-13.cset iso-8859-9.cset tex.amf
cp1255.cset iso-8859-14.cmap ispell texinfo-filter.info
cp1256.cmap iso-8859-14.cset koi8-r.cmap texinfo-filter.la
cp1256.cset iso-8859-15.cmap koi8-r.cset texinfo-filter.so
cp1257.cmap iso-8859-15.cset koi8-u.cmap texinfo.amf
cp1257.cset iso-8859-16.cmap koi8-u.cset url.amf
cp1258.cmap iso-8859-16.cset none.amf
任何帮助表示赞赏
答案 0 :(得分:0)
好像您安装的aspell
损坏。假设您使用Homebrew进行安装,只需将其卸载然后重新安装即可。
$ brew uninstall aspell
$ brew update
$ brew install aspell
如果您仍然遇到问题,请注释掉
(starter-kit-load "starter-kit-aspell.org")
来自starter-kit.org
,所以看起来像
;;(starter-kit-load "starter-kit-aspell.org")
这将阻止入门工具包加载其flycheck / aspell设置,使您可以使用默认设置。您将必须在要使用它的缓冲区上手动启用flyspell。 Meta - x flyspell-mode
可以解决问题。