मान लीजिए कि आपने पहले से ही en_US-med.dic और en_US-med.aff और इंस्टॉल किए गए hunspell डाउनलोड किए हैं
चरण 1, hunspell -D
शेल में चलाएं , जो उस निर्देशिका को बताएगा जहां हंसेल शब्दकोशों की खोज करता है, उस निर्देशिका में en_US-med.dic और en_US-med.aff कॉपी करें।
चरण 2, ~ / .emacs में नीचे कोड डालें,
(setq ispell-program-name "hunspell")
;; you could set `ispell-dictionary` instead but `ispell-local-dictionary' has higher priority
(setq ispell-local-dictionary "en_US")
(setq ispell-local-dictionary-alist '(("en_US" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-d" "en_US,en_US-med") nil utf-8)))
हम वास्तव में hunspell CLI के लिए "-d en_US, en_US-med" विकल्प पास करते हैं, इसलिए यह एक ही समय में TWO शब्दकोश "en_US" और "en_US-med" का उपयोग कर सकता है ।
"-D" विकल्प hunspell मैनुअल ( man hunspell
शेल में) में प्रलेखित है
यहाँ हंसेल मैनुअल से उद्धृत पाठ दिया गया है:
-d en_US,en_geo,en_med,de_DE,de_med
en_US and de_DE are base dictionaries, they consist of aff and dic
file pairs: en_US.aff, en_US.dic and de_DE.aff, de_DE.dic. En_geo,
en_med, de_med are special dictionaries: dictionaries without affix
file. Special dictionaries are optional extension of the base dictio‐
naries usually with special (medical, law etc.) terms. There is no
naming convention for special dictionaries, only the ".dic" extension:
dictionaries without affix file will be an extension of the preceding
base dictionary (right order of the parameter list needs for good sug‐
gestions). First item of -d parameter list must be a base dictionary.
Emacs पर परीक्षण किया गया 24.3, डेबियन 7 शब्द "फाइब्रोचोन्ड्राइटिस" के साथ।
किसी भी OS पर Emacs 23+ पर काम करना चाहिए ।
कृपया विंडोज़ पर ध्यान दें कि hunspell को निष्पादन योग्य बताने के लिए सबसे आसान तरीका है डिक्शनरी सर्च पथ को पर्यावरण वेरिएबल सेटअप करना है DICTPATH
(यह hunspell मैन्युअल में प्रलेखित है)। यह बहुत संभव है साइगविन / एमएसवाईएस 2 से हंसेल निष्पादन योग्य केवल UNIX प्रारूप में पथ को पहचानता है ।
flyspell
?