Emacs Windows spellcheck - aspell or hunspell

半城伤御伤魂 提交于 2019-12-21 04:08:16

问题


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.


回答1:


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.




回答2:


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




回答3:


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.



来源:https://stackoverflow.com/questions/2012361/emacs-windows-spellcheck-aspell-or-hunspell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!