.aspell.org.conf 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Aspell configuration for proof reading Org documentation.
  2. # Org documentation is written in American...
  3. master en_US-w_accents
  4. lang en_US
  5. # Assume the Org specific word and replacement lists are in the doc
  6. # directory and that any spell check is also run from there. Specify
  7. # this file when running aspell by some command like:
  8. #
  9. # $ aspell check --per-conf=".aspell.org.conf" org.texi
  10. personal ./.aspell.org.pws
  11. repl ./.aspell.org.prepl
  12. # Checking options. See man aspell.
  13. save-repl true
  14. sug-mode normal
  15. ignore-case false
  16. ignore-accents false
  17. # Filters
  18. # For some reason the following doesn't seem to work which stuffs up
  19. # trying to use Ispell mode from an Emacs buffer (at least I cannot
  20. # make it work) but aspell seems abot to recognise texinfo files
  21. # automatically when checking from the command line so it doesn't
  22. # matter much.
  23. # mode texinfo
  24. lset-filter tex:url
  25. # Let's be clear about what we choose to ignore.
  26. clear-f-texinfo-ignore
  27. add-f-texinfo-ignore c
  28. add-f-texinfo-ignore code
  29. add-f-texinfo-ignore command
  30. add-f-texinfo-ignore documentencoding
  31. add-f-texinfo-ignore email
  32. add-f-texinfo-ignore env
  33. add-f-texinfo-ignore file
  34. add-f-texinfo-ignore kbd
  35. add-f-texinfo-ignore macro
  36. add-f-texinfo-ignore option
  37. add-f-texinfo-ignore printindex
  38. add-f-texinfo-ignore samp
  39. add-f-texinfo-ignore set
  40. add-f-texinfo-ignore setfilename
  41. add-f-texinfo-ignore syncode
  42. add-f-texinfo-ignore url
  43. add-f-texinfo-ignore value
  44. add-f-texinfo-ignore var
  45. add-f-texinfo-ignore verb
  46. add-f-texinfo-ignore verbatiminclude
  47. add-f-texinfo-ignore vskip
  48. # Utility options
  49. backup true
  50. guess true
  51. suggest true
  52. # Miscellaneous
  53. #
  54. # Org documentation uses a lot of compound words. Try and ignore them
  55. # rather than including them in a specific word list.
  56. run-together-limit 2
  57. run-together-min 2
  58. #
  59. # Local variables:
  60. # fill-column: 72
  61. # mode: conf
  62. # End: