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.
相关问题
- How does the setup bootstrapper detect if prerequi
- Symbol's function definition is void: declare-
- Inheritance impossible in Windows Runtime Componen
- how to get running process information in java?
- Is TWebBrowser dependant on IE version?
相关文章
- 如何让cmd.exe 执行 UNICODE 文本格式的批处理?
- 怎么把Windows开机按钮通过修改注册表指向我自己的程序
- Warning : HTML 1300 Navigation occured?
- Getting errors / failing tests when installing Pyt
- ess-rdired: I get this error “no ESS process is as
- How do you make an installer for your python progr
- Bundling the Windows Mono runtime with an applicat
- Windows 8.1 How to fix this obsolete code?
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.
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:
HTH
I use aspell for spellchecking with emacs on Windows. Looking at my
.emacs
file I can see these configuration variables.I installed aspell with the installation wizard.
M-S-$
ispell-buffer
flyspell-mode
and the like all work correctly for me.