Then in genKeywordSuggestions it calls this.makeUniquePattern("ABCDEFGH", 1); to get the index for the 8 character keywords.
From there you can find all the keywords with that pattern by referencing this.Frequent[lang][pat][slot][0];
In this case
lang will be 'en' for english
pat is the pattern generated by makeUniquePattern
slot is one of the keywords chosen
0 is the first entry in the slot which is the actual keyword. The other entries are the ordinal, frequency and stratum which you won't need.
Look at the fixes in #451
It loads in the English dictionary with
Then in
genKeywordSuggestions
it callsthis.makeUniquePattern("ABCDEFGH", 1);
to get the index for the 8 character keywords.From there you can find all the keywords with that pattern by referencing
this.Frequent[lang][pat][slot][0];
In this case
lang
will be'en'
for englishpat
is the pattern generated bymakeUniquePattern
slot
is one of the keywords chosen0
is the first entry in the slot which is the actual keyword. The other entries are theordinal
,frequency
andstratum
which you won't need.