Questions tagged [aspell]

GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell. It can either be used as a library or as an independent spell checker.

From aspell.net:

GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell. It can either be used as a library or as an independent spell checker. Its main feature is that it does a superior job of suggesting possible replacements for a misspelled word than just about any other spell checker out there for the English language. Unlike Ispell, Aspell can also easily check documents in UTF-8 without having to use a special dictionary. Aspell will also do its best to respect the current locale setting. Other advantages over Ispell include support for using multiple dictionaries at once and intelligently handling personal dictionaries when more than one Aspell process is open at once.

154 questions
4
votes
2 answers

Aspell error: no suitable spell-checker program found

Although the function aspell comes standard with the utils package, it doesn't seem to work for me. I keep on getting the same error: aspell("love") Error in aspell("love") : No suitable spell-checker program found Any thoughts? > sessionInfo() R…
OB83
  • 476
  • 2
  • 10
4
votes
1 answer

Hunspell/Aspell data conversion to human-readable inflection list

Is there an easy way to generate a human-readable inflection list from Hunspell/Aspell dictionary data files? For example, I'd like to generate the following outputs (for different languages): ... book, books book, books, booked, booking ... go,…
Nemo XXX
  • 644
  • 2
  • 14
  • 35
4
votes
1 answer

Interactive Spell Checking Programs Available for emacs

I recently switched to emacs24 and upgraded to Ubuntu 12.04. I can't seem to get hunspell working correctly again. I find hunspell to be better than aspell generally. Hunspell only wants to use the Australian dictionary and not English US dictionary…
J Spen
  • 2,614
  • 4
  • 26
  • 41
4
votes
2 answers

pspell and aspell with php for german language

I am trying to use the pspell in combination with aspell for PHP. I have installed it on this way: sudo apt-get install libpspell-dev sudo apt-get install php5-pspell sudo apt-get install aspell-de After that, here is an example code: $pspell_link…
Mutatos
  • 1,675
  • 4
  • 25
  • 55
3
votes
0 answers

Installing Aspell on Windows using emacs

I'm using Emacs23.3 on Windows7 and I tried to install Aspell. Installation worked, but when I tried to install the English dictionary I got: "The extended atributes are inconsistent." (I have no problems installing all sorts of other programs).…
user757141
  • 61
  • 4
3
votes
2 answers

How to use Perl's Text::Aspell to spellcheck a text?

I want to add spell checking to my Perl program. Looks like Text::Aspell should do what I need, but it only offers a function to check single words. use strict; use warnings; use Text::Aspell; my $input = "This doesn't look too bad. Me&you.…
Robert
  • 7,394
  • 40
  • 45
  • 64
3
votes
1 answer

pyenchant error "DictNotFoundError: Dictionary for language 'en_US' could not be found"

I am running Python 3.6 in Spyder/Anaconda, I am trying to use enchant. I installed pyenchant using pip install pyenchant I also installed aspell using sudo apt-get install aspell-en I am executing in Python: import enchant print("The dict is",…
3
votes
1 answer

Use aspell in emacs for editing HTML pages

I am using the ispell-buffer command in emacs (with aspell as the backend spell checker) to check for typos in the content of HTML pages, but aspell complains at every HTML tag. Is there any way to configure it to ignore HTML tags? Thanks in…
Arthur
  • 115
  • 9
3
votes
0 answers

How to ignore certain LaTeX commands and options with aspell?

I use the following command to make a spell check on my thesis: cat thesis.tex | aspell list --mode=tex -d en_US -p ./wordlist.txt | sort | uniq -u It uses my custom word list file and reduces all spelling mistakes to unique entries. Unfortunately,…
Baradé
  • 1,290
  • 1
  • 15
  • 35
3
votes
2 answers

Git Hook Spellchecker Ignore Indented Lines

I am writing a git hook that spell checks my commit messages. This is what I have so far: #!/bin/sh ASPELL=$(which aspell) WORDS=$($ASPELL list < "$1") if [ -n "$WORDS" ]; then echo -e "Possible spelling errors found in commit message.…
melkoth
  • 178
  • 7
3
votes
0 answers

Comment in aspell .dic files?

They look like this: abaft abbreviation/M abdicate/DNGSn Abelard/M abider/M Abidjan ablaze abloom I am using this kind of dictionary with Node.js application, but I will need it to be smarter. Specifically, I want to remember occurrence probability…
Tomáš Zato
  • 50,171
  • 52
  • 268
  • 778
3
votes
1 answer

makefile for latex aspell with multiple files

I neeed to run aspell on all tex files within a directory using a makefile spellcheck: @aspell --lang=en -t -c sections/*tex does not work as aspell cannot handle multiple files. How can I run multiple runs of aspell one after another?
hlitz
  • 635
  • 6
  • 24
3
votes
1 answer

How would I find common misspellings of a given word using aspell or another tool

For a given word I'd like to find the n closest misspellings. I was wondering if an open source spell checker like aspell would be useful in that context unless you have other suggestions. For example: 'health' would give me: ealth, halth, heallth,…
ferik
  • 531
  • 3
  • 11
3
votes
1 answer

How to enable Norwegian spelling check in emacs?

I want to run ispell for Norwegian and possibly other languages in emacs (Ubuntu 14.04). I've installed the aspell-no package, do a ispell-change-dictionary, set it to no, upon which it says "using norsk dictionary", then I run ispell. This leads…
untill
  • 1,513
  • 16
  • 20
3
votes
2 answers

Count misspelled words in R

Row<-c(1,2,3,4,5) Content<-c("I love cheese", "whre is the fish", "Final Countdow", "show me your s", "where is what") Data<-cbind(Row, Content) View(Data) I wanted to create a function which tells me how many words are wrong per Row. A…
Carlo
  • 397
  • 1
  • 3
  • 14
1 2
3
10 11