Questions tagged [spell-checking]

Flagging words in a document that may not be spelled correctly.

In computing, a spell checker (or spell check) is an application program that flags words in a document that may not be spelled correctly. Spell checkers may be stand-alone, capable of operating on a block of text, or as part of a larger application like the following:

1435 questions
464
votes
18 answers

How does the Google "Did you mean?" Algorithm work?

I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines ability to very quickly respond to queries with "Did you mean: xxxx". I…
Andrew Harry
  • 13,773
  • 18
  • 67
  • 102
271
votes
13 answers

Disable spell checking on IntelliJ IDEA

I'm trying to disable spell checking in MacOS's IntelliJ IDEA version 8.1. How can I disable it?
cl123
156
votes
17 answers

Detecting syllables in a word

I need to find a fairly efficient way to detect syllables in a word. E.g., Invisible -> in-vi-sib-le There are some syllabification rules that could be used: V CV VC CVC CCV CCCV CVCC *where V is a vowel and C is a consonant. E.g., Pronunciation…
user50705
  • 1,623
  • 2
  • 11
  • 6
132
votes
5 answers

Turn off Chrome/Safari spell checking by HTML/css

Is there a way for a web developer to turn off Chrome/Safari/WebKit's spellchecking on particular input or textarea elements? I mean either by special tag attribute or a proprietary CSS instruction. There is a CSS instruction for turning off…
tillda
  • 18,150
  • 16
  • 51
  • 70
121
votes
6 answers

What algorithm gives suggestions in a spell checker?

What algorithm is typically used when implementing a spell checker that is accompanied with word suggestions? At first I thought it might make sense to check each new word typed (if not found in the dictionary) against it's Levenshtein distance from…
Mithrax
  • 7,603
  • 18
  • 55
  • 60
106
votes
3 answers

How to change the highlight style in Vim spellcheck?

Right now, when I do :set spell in my Vim, I get spelling errors highlighted as if they are selected text. What I want is an MS-Word like underlining of spelling errors. I tried to lookup :help spell but could not find a clue. Any help is…
Ketan Maheshwari
  • 2,002
  • 3
  • 25
  • 31
94
votes
9 answers

Where to find dictionaries for other languages for IntelliJ?

IntelliJ spellchecker comes with only English and Arabic bundled (strange, I think it is made in east Europe, they didn't even bundle their language?). My customer is German so all my code is mixed English (code)/German (interface) and I can't find…
nraynaud
  • 4,924
  • 7
  • 39
  • 54
81
votes
12 answers

VS Code: enable inline spell checker, but disable spell check in the "Problems" panel

I use the code spell checker for VS Code. I would like to disable the spell checker warnings/errors in the "PROBLEMS" panel (standard keyboard binding Ctrl+Shift+M) where "more serious" problems show up. Often there are so many spell checker errors…
Jens Madsen
  • 1,154
  • 1
  • 10
  • 18
78
votes
4 answers

IntelliJ: Move to next typo

IntelliJ IDEA has an inspection that checks for spelling. In the analysis overview, I can see how many spelling mistakes were found, e.g. 12 typos found. In the code they are highlighted using a wavy green line. However, I find it very hard to look…
0__
  • 66,707
  • 21
  • 171
  • 266
69
votes
11 answers

Where can I learn more about the Google search "did you mean" algorithm?

Possible Duplicate: How do you implement a “Did you mean”? I am writing an application where I require functionality similar to Google's "did you mean?" feature used by their search engine: Is there source code available for such a thing or…
vidhi
  • 753
  • 1
  • 6
  • 7
69
votes
5 answers

How to add a dictionary for spell check in Android Studio / IntelliJ Idea

I have been using Android Studio in Spanish, and it bothers me that it highlights as incorrect words which are spelt correctly. Can I add a Spanish dictionary to Android Studio or to my IntelliJ Idea?
65
votes
12 answers

Spell Checker for Python

I'm fairly new to Python and NLTK. I am busy with an application that can perform spell checks (replaces an incorrectly spelled word with the correct one). I'm currently using the Enchant library on Python 2.7, PyEnchant and the NLTK library. The…
Mike Barnes
  • 4,217
  • 18
  • 40
  • 64
59
votes
4 answers

How can I spellcheck in gVim?

What is the best way to spellcheck in gVim? Is there an add-on or something? I would like it to offer corrections as well.
Sasha
58
votes
4 answers

How to access Chrome spell-check suggestions in JavaScript

How does one detect a spelling mistake inside a textarea in JavaScript? Is there an event associated with this? How do I access Chrome's spell-check suggestions for a misspelled word?
user4985407
55
votes
2 answers

How can I disable the spell checker on text inputs on the iPhone

Sometimes the spell checker is unnecessary, captchas, usernames, emails, etc. Is there a way disable it on some text inputs/text areas?
Ben Shelock
  • 20,154
  • 26
  • 92
  • 125
1
2 3
95 96