OLD | NEW |
1 # new suggestion methods of Hunspell 1.5: | 1 # new suggestion methods of Hunspell 1.5: |
2 # capitalization: nasa -> NASA | 2 # capitalization: nasa -> NASA |
3 # long swap: permenant -> permanent | 3 # long swap: permenant -> permanent |
4 # long mov: Ghandi -> Gandhi | 4 # long mov: Ghandi -> Gandhi |
5 # double two characters: vacacation -> vacation | 5 # double two characters: vacacation -> vacation |
6 # space with REP: "alot" -> "a lot" ("a lot" need to be in the dic file.) | 6 # space with REP: "alot" -> "a lot" ("a lot" need to be in the dic file.) |
7 | 7 |
8 # switch off ngram suggestion for testing | 8 # switch off ngram suggestion for testing |
9 MAXNGRAMSUGS 0 | 9 MAXNGRAMSUGS 0 |
10 REP 1 | 10 REP 1 |
11 REP alot a_lot | 11 REP alot a_lot |
12 KEY qwertzuiop|asdfghjkl|yxcvbnm|aq | 12 KEY qwertzuiop|asdfghjkl|yxcvbnm|aq |
13 WORDCHARS . | 13 WORDCHARS . |
14 FORBIDDENWORD ? | 14 FORBIDDENWORD ? |
15 | 15 |
OLD | NEW |