繁体   English   中英

Emacs找不到flyspell / ispell

[英]Emacs cannot find flyspell/ispell

在我的Mac(Snow Leopard,10.6.8)上,我使用此处提供的Emacs 24.2的修改版本来从下载页面使用Emacs Speaks Statistics(ESS)。 Emacs有效,但我还没有能够使用拼写检查器。

为了解决这个问题,我按照本页的说明下载了flyspell。 我将flyspell.el文件复制到我的/Applications/Emacs.app/Contents/Resources/site-lisp目录中,该目录显然是我的emacs加载路径的目录(请注意,例如, auctex.el文件位于那个目录)。

然后,我通过添加以下内容修改了我的.emacs文件:

(autoload 'flyspell-mode "flyspell" "On-the-fly spelling checker." t)
(autoload 'flyspell-delay-command "flyspell" "Delay on command." t)
(autoload 'tex-mode-flyspell-verify "flyspell" "" t)
(add-hook 'LaTeX-mode-hook 'turn-on-flyspell)

当我打开一个.tex文件,并使用Mx flyspell-mode ,我可以“自动完成”它(即通过按Tab键给我正确的flyspell选项)但是当我按下RET我得到:

Searching for program: no such file or directory, ispell

这个问题这个问题中提出的解决方案都没有起作用,所以我不确定这里的问题是什么。 有没有人有想法或之前遇到过这个问题?

在尝试随机网站的任意指令之前,请阅读 Emacs自己提供的文档。

Emacs 24.2包括Flyspell。 不能明确安装它。 如果这样做,请撤消此操作,即从/Applications/Emacs.app/Contents/Resources/site-lisp删除flyspell.el 充其量,完全删除/Applications/Emacs.app并重新安装它,从头开始。

但是,Flyspell需要一个拼写检查工具,它不包含在Emacs中。 错误消息告诉您没有安装此类工具。

您需要安装ASpell拼写检查程序。 您可以使用brew install aspell安装自制软件

我用homebrew来安装ispell和apsell,并且会在〜/ .emacs中设置哪一个

[iMac ~]$ cat .emacs
(setq ispell-program-name "/usr/local/bin/aspell")

有这种类似的讨论在这里

在Windows上我必须执行以下操作才能启动Ispell进程:

  1. 下载了ispell( http://www.ssc.wisc.edu/~dvanness/ispell.htm
  2. 解压缩我路径中的文件夹中的内容(即Windows或c:\\ windows \\ system
  3. 下载aspell( http://aspell.net/win32/) -获取完整下载。 看到页面上的链接。 (无论你是否需要ispell,我不确定)
  4. 将下面显示的代码添加到init.el文件中

  5. 运行aspell安装程序

  6. 再次启动emacs,错误不应该出现。

     (require 'package) (add-to-list 'package-archives '("MELPA Stable" . "http://stable.melpa.org/packages/") t) (package-initialize) (package-refresh-contents) (package-install 'flycheck) (global-flycheck-mode) (use-package flycheck :ensure t :init (global-flycheck-mode t)) (setq ispell-program-name "C:\\\\Program Files (x86)\\\\Aspell\\\\bin\\\\aspell.exe" 

你们很多人不必完成上述所有工作,但这对我在Windows 7上运行的Emacs起了作用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM