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
0 answers

Is the fifth column in affix rule optional?

For e.g. this is an example of correct rule. PFX A Y 1 PFX A 0 a . Can I omit the fifth column (dot means any character) and still get the same results? For e.g. PFX A Y 1 PFX A 0 a
shantanuo
  • 31,689
  • 78
  • 245
  • 403
0
votes
0 answers

I want to change the txt file without " " from java to json format and then POST

package com.example.spell.controller; import org.json.simple.parser.JSONParser; import org.springframework.web.bind.annotation.*; import org.json.simple.JSONObject; import org.springframework.stereotype.Controller; import…
pky
  • 9
  • 2
0
votes
0 answers

Is there a way to ignore all acronyms or patterns with JetBrains' spellcheck?

Similar to http://www.panozzaj.com/blog/2016/03/21/ignore-urls-and-acroynms-while-spell-checking-vim/ for vim, where you can mark a pattern for the spellcheck to ignore. I tried adding something like [A-Z]+ in the dictionary but it didn't seem to…
Wayne He
  • 3
  • 1
  • 2
0
votes
0 answers

my android kotlin activity is not finding libhunspell.so

I want to write a activity for my android app that spell-checks words in my language (Czech). I included the .dic and .aff that I need. The app runs normally but when I try to proceed to this activity package com.example.mainscreen import…
0
votes
1 answer

Generate Permutations using Hunspell affix rules

let's assure there is a new language where a combination of 3 letters in any order are valid. For e.g. abc, acb, bac, bca, cba, bab all are valid. How do I write a hunspell affix file for this? affix file: PFX A Y 1 PFX A 0 a . PFX B Y 1 PFX B 0 b…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
0
votes
1 answer

Hunspell Workaround Empty Suggestion out of bounds error in R

I am trying to automatically spell-check a string column of a data.table/data.frame. Looking around, I found several approaches that all give an "out of bounds" error in the case hunspell.suggest returns no suggestions (that is, an empty list, e.g.…
Magasinus
  • 83
  • 11
0
votes
0 answers

Hunspell installing through pip showing error

I get this error when I try to install hunspell. I have tried all the suggestions on stackoverflow including: pip install cyhunspell Installing Viusal Studio Build tools withh MSVC v143 and Windows 11 sdk. downloaded hunspell from ezwinports and…
Abim
  • 1
  • 1
0
votes
0 answers

Hunspell Dictionary Config for AWS Elasticsearch

I am trying to install Hunspell Stemming Dictionaries for AWS ElasticSearch v7.10 I have done this previously for a classic unix install of ElasticSearch, which involved unzipping the latest .oxt dictionary…
James McGuigan
  • 7,542
  • 4
  • 26
  • 29
0
votes
0 answers

all child nodes of ServiceManager

When I checked the source code of some of the dictionary extensions, I found that ServiceManager node is followed by other nodes like Dictionaries, GrammerCheckers etc. in .xcu file like dictionaries.xcu
shantanuo
  • 31,689
  • 78
  • 245
  • 403
0
votes
1 answer

ignore zero width non joiner in hunspell affix file

I added this line to my affix file. But it has no effect on spell checker. IGNORE where is the UTF-8 encoded U-200C ZWNJ I found this suggestion here... https://bugs.documentfoundation.org/show_bug.cgi?id=60427 What is the correct way to…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
0
votes
0 answers

pip install cyhunspell: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out

It appears that PyHunspell (pip install hunspell or conda install hunspell) is no longer maintained, so I tried using CyHunspell but this is also not working. used pip install cyhunspell Got error: pip._vendor.urllib3.exceptions.ReadTimeoutError:…
0
votes
1 answer

Getting error: subprocess-exited-with-error while installing hunspell

Getting following error while installing hunspell:- PS C:\Users\SHREYA ANANYA> pip install hunspell WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection…
Shreya
  • 1
0
votes
0 answers

Could not initiate Hunspellx64.dll in Delphi

I need to call Hunspell on 64 bit Delphi application. Hunspellx64.dllI is successfully loaded, but it fails to create a Hunspell instance: procedure TForm5.Button1Click(Sender: TObject); var HunLibHandle: THandle; fHunHandle: Pointer; Aff,…
Rati2019
  • 91
  • 9
0
votes
0 answers

All possible words from a specific dic-file (Hunspell format) using the ProofingToolGUI

Please tell me, is it possible to get all possible words from a specific dic-file (Hunspell format) using the ProofingToolGUI program? enter link description here
Dziglo Dz
  • 21
  • 2
0
votes
0 answers

hunspell suggestions are comming up with the wrong encoding

I started working on a text app using wxRichTextCtrl (wxWidgets) and hunspell. My problem is the suggestions are coming messed up when there is a punctuation. I used the hunspell function to return the dictionary encoding and it was reporting ISO…
NeoFahrenheit
  • 347
  • 5
  • 16