spell

hunspell spell check

I had a specific question regrading ordering the suggested words returned by hunspell on a typo. The words seems to be returned in an alpha order. I want to order the suggestions by relevance, that is the closest match should show up first. I couldn't find any way to do that via hunspell apis. How can this be achieved? ...

highlight parent window text when spell checking from child window

I'm working on a simple spell checking app for a lecture that I'm giving. I've got the basic spell checking code working just fine using a child form and NHunspell - great lib, by the way. However, I'd like for the parent textbox to show the highlighted text for reference, and while I'm setting the SelectedText properties accordingly, ...

javascript spell checker

Hi, I am integrating Pure spell checker on my rich text box. The way it currently works is that it puts the cylinder object on the page in an Iframe. I want that to read from a file and the file will be located at server side. Anyone with any clue please help Thanks ...

hunspell spell checker

Hi, Is there any spell checker with suggestions also for asp.Net with: Dictionary should be a file (not online spell check) Dictionary can be updated by downloading latest file from internet. ...

Windows spell check and delphi 7?

Is there a spell check in Windows (like in Mac OS X)? If yes, is there any way to use on a richedit on delphi 7? I've been trying to find that answer on the internet but so far no answer. code is appreciated. thanks! ...

How to turn off auto spell checking in QtCreator?

I'm currently using QtCreator 2.0, it seems that an auto spell checking feature is enabled by default, you known, sometimes it's really annoying. So I looked around in the options, but find no switcher exists for me to turn it off. How can I disable it? Thanks in advance. ...

truncate size of all files in folders (binary and text files)

I am looking for a way to truncate all the files in several folders recursively. I need this because I am working on an installer where I want to keep all the files that will ship in the installer, but I want to truncate all of them so I can build my installer packages faster for testing purposes. Any batch script or tools to do this? T...

Vim using the wrong spell file?

I've been using vim for a long time, but recently I built a new server, and when I opened vim, I found it wasn't using my spell file. Historically vim would load ~/.vim/spell/en.utf-8.add as it's spell file, but when I tried adding a word to the dictionary, it added it to en.latin1.add instead. ls ~/.vim/spell en.latin1.add en.latin1...

Detecting syllables in a word containing non-alphabetical characters

I'm implementing readability test and have implemented simple algorithm of detecting sylables. Detecting sequences of vowels I'm counting them in words, for example word "shoud" contains one sequence of vowels which is 'ou'. Before I'm counting them i'm removing suffixes like -les, -e, -ed (for example word "like" contains one syllable b...