Questions tagged [hunspell]

An open source spell checker, used by OpenOffice, Firefox, Google Chrome and Mac OS X.

Hunspell is a spell checker and morphological analyzer designed for languages with rich morphology and complex word compounding and character encoding, originally designed for the Hungarian language.

http://en.wikipedia.org/wiki/Hunspell

238 questions
0
votes
1 answer

Linking hunspell with Visual Studio 2022

I managed to compile hunspell with Visual Studio and I'm having dificulties making it work. Here's what I have done: Project Properties -> C/C++ -> General -> Additional Include Directories and added this line: C:\src\hunspell\src\hunspell Project…
NeoFahrenheit
  • 347
  • 5
  • 16
0
votes
1 answer

How to export or get a copy of the dictionary with the new words added there. I am using hunspell in terminal

I have create a spanish dictionary or called private dictionary too, and the affix file which is a copy of es_EC.aff echo -e '2\nWordPress\ne-commerce\n' > ~/.hunspell_default/es_GUAYACO.dic cp /usr/share/hunspell/es_EC.aff…
christianbueno.1
  • 516
  • 1
  • 8
  • 12
0
votes
2 answers

I'm looking forward to install the hunspell package using pip, but it throws the following error:

Collecting hunspell Using cached hunspell-0.5.5.tar.gz (34 kB) Building wheels for collected packages: hunspell Building wheel for hunspell (setup.py) ... error ERROR: Command errored out with exit status 1: command:…
samropi
  • 1
  • 1
0
votes
4 answers

Using Hunspell With Heroku

I'm building a Rails app that uses Hunspell and the hunspell-ffi gem so that Ruby can interface with it. I'm deploying the app to heroku, but unfortunately it needs Hunspell to be installed on the server in order for the gem to work. Is there any…
dshipper
  • 3,489
  • 4
  • 30
  • 41
0
votes
1 answer

What does /M meaning in a hunspell dictionary

I added a word "isoceles" to the hunspell dictionary and it worked OK. I noticed that many entries have a flag /M (and there are other flags), but I couldn't find documentation of the flags anywhere. Are these flags something I need to know just to…
Moti
  • 53
  • 1
  • 7
0
votes
0 answers

Hunspell python detects words as english only if first letter is capitalised

For example "India" is detected as true but "india" is false d = Hunspell() d.spell('india') Out[59]: False d.spell('India') Out[60]: True How do i get hunspell to detect both as true
Whereismywall
  • 188
  • 1
  • 12
0
votes
1 answer

How to install Hunspell for C# application?

I want to implement spell check and dictionary in my C# windows-based application. From Google, I found that hunspell is one of the best options to implement this functionality. I have installed nhunspell using visual studio NuGet as per the…
Tech Learner
  • 1,227
  • 6
  • 24
  • 59
0
votes
1 answer

hunspell accept possessive with word ending with s (trailing apostrophe after s)

How to have hunspell accept possessive (trailing apostrophe) with a plural? E.g. users' It took me a long time to figure this out (not an expert in this; just want to have decent spell check when using atom linter-spell for writing latex documents),…
0
votes
0 answers

How to use Hunspell in GitHub Actions

I made a pull request at GitHub (isocpp/CppCoreGuidelines#1688) to replace Travis CI with GitHub Actions. Currently, the repository has Hunspell configured using Travis CI, but it doesn't work in GitHub Actions. It all works fine except for…
David Leal
  • 301
  • 1
  • 7
0
votes
1 answer

Using a Windows DLL in Go with cgo

I'm trying to use the hunspell library in a Go project on Windows. I have the compiled Windows DLL (x64) and the corresponding header file (which is written in C), but I can't link it to the Go program. What I've tried so far: package main //#cgo…
Fenistil
  • 3,734
  • 1
  • 27
  • 31
0
votes
1 answer

what is the meaning of hunspell_spell

I am working on text classifications and faced misspelling problem. I am trying to solve it with spacy_hunspell but can`t get what is the point of hunspell_spell property, cause it always returns None. for token in nlp('I can haz cheezeburger.'): …
maruo95
  • 13
  • 4
0
votes
1 answer

Similar Package like Enchant in R

I have a query. There is a package in python called "Enchant" Enchant is a module in python which is used to check the spelling of a word, gives suggestions to correct words. Also, gives antonym and synonym of words. It checks whether a word exists…
0
votes
1 answer

issue installing hunspell on the command line

I installed hunspell because it's required for lint on atom. Though when I run hunspell on the command line I get: Can't open affix or dictionary files for dictionary named "en_US". When I run hunspell -D I get: SEARCH…
jibaro
  • 103
  • 1
  • 12
0
votes
0 answers

R: hunspell always returns false

I have just started diving into NLP and want to use hunspell in order to perform tokenization. However, until now I was not able to use hunspell properly, since it returns "false" everytime I use the function "hunspell_check". I installed hunspell…
avrFreak
  • 9
  • 1
0
votes
1 answer

Elasticsearch can't find hunspell

I'm running elasticsearch from a docker-compose.yml file: version: '3' services: mongo: image: mongo container_name: mongo-cust-mycom ports: - 27017:27017 volumes: - cust-mycom-mongo:/data/db networks: - cust-mycom …
Sahand
  • 7,980
  • 23
  • 69
  • 137