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

Aspell won't build on OS X 10.9 (Mavericks)

It fails thus: ./common/errors.hpp:17:36: error: redefinition of 'aerror_other' with a different type: 'const acommon::ErrorInfo *const' vs 'const struct AspellErrorInfo *const' I've seen this error mentioned several times, but I've not seen any…
garyp
  • 967
  • 7
  • 36
3
votes
1 answer

How do I add more words to an existing Aspell dictionary?

I have installed Aspell dictionary to spell check my document. But in the document there are some words which are spelled incorrectly but I do not want aspell to detect those as incorrect. So, basically I want to add those words to the existing…
user3710832
  • 415
  • 3
  • 6
  • 15
3
votes
1 answer

Pspell use only custom dictionary

question like this post: How to disable default English dictionary in Pspell and use only Custom dictionary? I create my custom dictionary. And test in console - all work fine. Console query like this: echo Engenier | aspell -a -d…
DedMorozzz
  • 342
  • 2
  • 15
3
votes
2 answers

Can I use GNU Aspell for English in my asp.net application?

Aspell-net is a port of the GNU Aspell for .Net Framework. The library itself is open source, and is under the LGPL license, but the english dictionary for aspell is mentioned as copyrighted on the sourceforge.net project home page at…
Socratees
3
votes
1 answer

aspell dict make on windows: iso-8859-1.cset can not be opened for reading

I've compilled the aspell with mingw64 and msys on windows to use with enchant and pyenchant, but i still doesn't have any dicts: "aspell dump dicts" returns nothing. What i'm trying now is do a ./configure, make and make install with a en dict got…
Diogo Paschoal
  • 1,507
  • 1
  • 14
  • 16
3
votes
0 answers

Is there a way to make emacs ispell/aspell ignore shoft hyphens in HTML?

I write mostly my documentation in HTML using emacs as my main editor. Emacs let you interactively spell-check the current buffer with the command ispell-buffer. (I think the underlying program used for doing the spell-check is named aspell.) When…
Free Radical
  • 2,052
  • 1
  • 21
  • 35
3
votes
0 answers

how import ispell dictionary into hunspell?

I downloaded the dictionary : american-huge for ispell, and I'm trying to extract the words list from it. I tough of importing it into aspell and use aspell to dump it, but I want't able to :( I read that hunspell I could use hunspell in my…
Sebastien Dionne
  • 757
  • 2
  • 19
  • 34
3
votes
2 answers

Emacs, how to auto turn on flyspell for LaTeX file

I use Emacs only for \LaTeX and python programming. Is there a way to automatically turn on flyspell-mode when I work on a .tex file, and turn on flyspell-prog-mode when I work on a .py file? How can I do this in my .emacs file?
LWZ
  • 11,670
  • 22
  • 61
  • 79
3
votes
0 answers

Automatic documentation verification with Aspell before Commit

I am using GitHub repository for my project.The GUI I am utilizing is SmartGit and I would have a script that,before committing and pull it on the remote rep,verify with aspell if its orthograpically correct.By now I have to do every time aspell…
Tcz
  • 661
  • 5
  • 18
3
votes
1 answer

Install raspell gem on Heroku using Vulcan

I would like to use the thinking-sphinx-raspell gem to allow did-you-mean suggestions for searches on our website. It works on my development machine (Mountain Lion), but I'm having difficulty deploying it on Heroku Cedar. The gem depends on the…
Sjors Provoost
  • 1,921
  • 1
  • 19
  • 34
2
votes
1 answer

Aspell with CKEditor

When i use 'spellchecker.pl' as the server script for spell check with Aspell in CKEditor, the source code is displayed in the Spell Check Dialog Box instead of the text with mispelled words. Can someone help please?
2
votes
0 answers

Check spelling of words containing a period (dot) character on the command line

I'm trying to get our CI/CD pipeline to spell check a website. To make it work we need a custom dictionary of correct words e.g. names of products. I tried Aspell and Hunspell, but in both cases I've ran into the same problem - names with period in…
2
votes
2 answers

Perl interface with Aspell

I am trying to identify misspelled words with Aspell via Perl. I am working on a Linux server without administrator privileges which means I have access to Perl and Aspell but not, for example, Text::Aspell which is a Perl interface for Aspell. I…
elci
  • 55
  • 3
2
votes
3 answers

Spellcheck each line

I'd like to write a bash filter that will take a file of newline-separated sentences and return sentences that are not misspelled. I've been thinking about aspell but I'm not sure what to do with it. Any ideas?
Xarnite
  • 87
  • 3
2
votes
1 answer

adding many dictionaries to aspell

I have a tex document spanning several files that I want to check with aspell. The command I use is: cat $f | aspell list --extra-dicts="./names.spl" --mode=tex -l en |sort -u for every file name f. Some files that concern pronunciation have…
Nailo
  • 59
  • 6