Emacs Windows 拼写检查 - aspell 或 hunspell

发布于 2024-08-17 03:24:20 字数 127 浏览 5 评论 0原文

我在Windows XP操作系统上使用emacs 23.1.50版本。我无法使用 emacs wiki 提供的示例将 hunspell 或 aspell 设置为 emacs 的一部分。任何人都有 Windows XP 的工作配置,请帮助我。

I use emacs 23.1.50 version on Windows XP operation system. I could not setup hunspell or aspell as part of emacs with the example provided by the emacs wiki. Anyone has working confiugration for windows xp and please help me out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

空宴 2024-08-24 03:24:20

我在 Windows 上的 emacs 中使用 aspell 进行拼写检查。查看我的 .emacs 文件,我可以看到这些配置变量。

(custom-set-variables
    '(ispell-dictionary "british")
    '(ispell-program-name "H:\\bin\\aspell\\bin\\aspell.exe"))

我用安装向导安装了aspell。 MS-$ ispell-buffer flyspell-mode 等对我来说都可以正常工作。

I use aspell for spellchecking with emacs on Windows. Looking at my .emacs file I can see these configuration variables.

(custom-set-variables
    '(ispell-dictionary "british")
    '(ispell-program-name "H:\\bin\\aspell\\bin\\aspell.exe"))

I installed aspell with the installation wizard. M-S-$ ispell-buffer flyspell-mode and the like all work correctly for me.

无尽的现实 2024-08-24 03:24:20

使用 cygwin 可以轻松地将 aspell 安装在 Windows 上。在cygwin安装中,在搜索栏中搜索aspell并选择进行安装。请记住还要选择您要安装的词典(对于英语 - aspell-en)。将 cygwin/bin 目录添加到 emacs 的加载路径中,以便 emacs 在需要时可以找到可执行文件。最后,将以下行添加到您的 .emacs 文件中:

(setq-default ispell-program-name "aspell")

HTH

aspell can be easily installed on windows using cygwin. In the cygwin setup, search for aspell in the search bar and select it for installation. Remember to also select the dictionary you want to install (for the english language - aspell-en). Add the cygwin/bin directory to the load-path in emacs, so that emacs can find the executable when it needs it. Finally, add the following line to your .emacs file:

(setq-default ispell-program-name "aspell")

HTH

遇见了你 2024-08-24 03:24:20

请参阅 http:// blog.binchen.org/posts/what-s-the-best-spell-check-set-up-in-emacs.html

它解释了为什么 aspell 对程序员来说更好。

See http://blog.binchen.org/posts/what-s-the-best-spell-check-set-up-in-emacs.html

It explains why aspell is better for programmers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文