Sergey Semushin
Sergey Semushin
Yeah that's the disadvantage I was talking about in the beginning. I'll probably try to do firefox like system (it looks like chrome but without bugs :) ) and add...
From the looks of it Hunspell allows removal of word from its dictionary in run-time so blacklist may possibly be implemented. And removal of words from user dictionaries without editing...
Yeah I think that's good idea too. I'll see what I can do.
So I think I will add ability to convert dictionary to UTF-8 in this message box with warning that it may increase size/ load time of the dictionary.
Most likely it will be sufficient to place .aff and .dic files with the same name to `%appdata%\Notepad++\plugins\config\Hunspell` or into `%NOTEPAD++_DIR%\plugins\config\Hunspell`. And you should restart Notepad++ after that. Maybe I...
Yeah .lst is something for OpenOffice, it's unneeded. Ok. About displayed name, I just use custom names for predefined set of dictionaries (which could be found on FTPs), for other...
Yeah these files are not needed for spell checking I think. OpenOffice still uses Hunspell if I remember correctly but repacks dictionaries in their own format so it's hard to...
Sorry for late response but I do think that `v.try_emplace(i, v[0]);` is enough actually, since it will be sort of analogous to `v.push_back(v[0])` for vector. While original case might still...
@Meth962 My calculations for `GetItemPower` (correct me if I'm wrong): > pre==0 - means prefix is generated (which is weird but whatever) > post!=0 - means suffix is generated >...
Well, as it turns out, apparently generating list of all possible word forms from .aff/.dic is a bit of a mess right now in hunspell (see https://github.com/hunspell/hunspell/issues/404). So even without...