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

How to run bashscript?

I have downloaded the source code from here : https://github.com/hunspell/hunspell Extracted it into a folder in ubuntu Then compiled by following the instructions autoreconf -vfi ./configure make make install #if neccesary prefix with…
Furkan Gözükara
  • 22,964
  • 77
  • 205
  • 342
0
votes
1 answer

exact match in elasticSearch after incorporating hunspell filter

We have added the hunspell filter to our elastic search instance. Nothing fancy... { "index" : { "analysis" : { "tokenizer" : { "comma" : { "type" : "pattern", "pattern" : "," } …
gringogordo
  • 1,990
  • 6
  • 24
  • 60
0
votes
1 answer

Running Hunspell in all subdirectories

I want to run Hunspell in all subdirectories and check all the markdown files in there. Easy right? So I wrote: find ./ -type f -exec hunspell -l *.md {} \; When I run this command it shows much more than only the three test markdown files. What is…
Bob van Luijt
  • 7,153
  • 12
  • 58
  • 101
0
votes
1 answer

Flyspell not loading automatically with LaTeX file

Trying to use Flyspell with LaTeX files. Setup looks like this: (require 'ispell) (setq ispell-program-name "/usr/local/bin/hunspell") ;; From Homebrew, version 1.4.1 (add-to-list 'ispell-local-dictionary-alist '("de_DE_OLDSPELL" "[[:alpha:]]"…
Adam Khan
  • 13
  • 3
0
votes
1 answer

Elasticsearch issue with creating index (Rails)

I am experiencing an issue with creating an index for my Product model class. This happens since I added hunspell filter and am not able to figure out what's wrong. I will appreciate any hint. Thank you, Miroslav Configuration: settings index:…
Miroslav
  • 158
  • 2
  • 22
0
votes
1 answer

How can I make CMake find my libhunspell?

I'm trying to build an app which (sort of) requires libhunspell-dev. I'm not root, so I downloaded hunspell: $ wget -c http://downloads.sourceforge.net/hunspell/hunspell-1.3.3.tar.gz built and installed it under $HOME/opt/hunspell. I also…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
0
votes
1 answer

Elasticsearch hunspell cuts words too much

Consider the following mappings as an example: PUT /test { "settings": { "analysis": { "filter": { "my_hunspell": { "type": "hunspell", "language": "en_GB" } }, "analyzer": { …
Evaldas Buinauskas
  • 13,739
  • 11
  • 55
  • 107
0
votes
1 answer

ElasticSearch with hunspell analyzer

I'd like to create an index in ElasticSearch which stores a specific type of data which has some string fields. The language is hungarian. I ran a HTTP PUT command with the following body: { "settings" : { "analysis" : { …
maestro
  • 671
  • 1
  • 13
  • 27
0
votes
2 answers

NHunspell package on NuGet not referencing and being able to use on Xamarin Studio

So i'm kind of new to programming but i started using Xamarin and i tried to add NHunspell package from NuGet on Xamarin Studio, it downloads it and the .dlls appear in Resources and NHunspell appear in Packets, but it doesn't appear in References…
0
votes
1 answer

VB.NET - Error with Spell Checker (NHunspell)

Basically I'm using NHunspell to check for spelling errors and I've come across an error and problem. The Error is that whenever the NHunspell is added to a textbox or richtextbox, it simply cannot be docked to a container or resized while docked.…
Zer0
  • 1,002
  • 1
  • 19
  • 40
0
votes
0 answers

solr - sunspot: Error when reindexing (Errno::ECONNREFUSED: Connection refused)

World. I'm new in rais. I have the problem: After I use class for steamming in "schema.xml"
Stas
  • 3
  • 5
0
votes
1 answer

Building pyhunspell on Windows

I'm on Windows with 64bit Python 2.7 I downloaded hunspell and pyhunspell. Using 64bit MinGW system I successfully compiled hunspell project - resulting in working executable hunspell tools and hunspell library. After the build this is my folder…
theta
  • 24,593
  • 37
  • 119
  • 159
0
votes
1 answer

compiling hunspell-1.3.2 with cygwin in win 7 ultimate

I need hunspell. I am a windows user. I am using win 7 ultimate English. OS Name Microsoft Windows 7 Ultimate Version 6.1.7601 Service Pack 1 Build 7601 Other OS Description Not Available OS Manufacturer Microsoft Corporation System Name…
0
votes
1 answer

How do I install Aspell package/library in Windows?

I would like to install Aspell package in R in Windows but there is no binary file available of Aspell package. Please suggest some way around. Following is the message i get on trying to install it. > install.packages("Aspell", repos =…
user2409011
0
votes
0 answers

A Meteor-Friendly Spellchecker

Is there a spellchecker that plays nice with Meteor? I'm looking for something open-source and that cooperates in a purely JS environment.
user592419
  • 5,103
  • 9
  • 42
  • 67
1 2 3
15
16