KeyboardSpellCheck
A Sublime Text 2/3 plugin that allows you to spell check the word under the cursor from the keyboard (vi style).
Details
Installs
- Total 14K
- Win 6K
- Mac 5K
- Linux 3K
Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 2 |
Linux | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 2 |
Readme
- Source
- raw.githubusercontent.com
KeybardSpellCheck
A Sublime Text 2/3 plugin that allows you to spell check the word under the cursor from the keyboard (vi style).
If the use_google
setting is set to true, Google's best guess for what you meant will also be displayed as the first option.
This package is designed to work in conjunction with Sublime's built in spell check. Thus to utilize this package to its fullest, "spell_check": true
should be in your Preferences.sublime-settings
file.
Usage
Press control+alt+k
(or z=
in command mode) to display spelling suggestions.
Use control+alt+[
and control+alt+]
(or [s
and ]s
in command mode) to step through spelling errors.
When selecting a replacement word from the spelling suggestions fuzzy search is being utilized, so typing the number or some part of the word will select the corresponding replacement.
Installation
- Package Control - First install Package Control from https://sublime.wbond.net/installation then search for the KeybardSpellCheck package.
- From Source - Clone the repo to your Sublime Text packages folder.
This package requires the enchant spell checking package. On Mac this can be installed using brew install enchant
.
For windows there is an executable installer (see http://www.abisource.com/projects/enchant/). Most distributions of Linux come with enchant installed by default.
Credits
Credit for the keyboard triggered code goes to Alex Naspo. Much of this work is almost an exact copy of what he has done. https://github.com/alexnaspo/sublime-spell-check/
Credit for interfacing with Google for spelling suggestions goes to Noah Code. Again, much of his code was used in developing this. https://github.com/noahcoad/google-spell-check