键盘拼写检查
一款Sublime Text 2/3插件,允许您通过键盘(vi风格)对光标下的单词进行拼写检查。
详细信息
安装次数
- 总计 14K
- Win 6K
- Mac 5K
- Linux 3K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 1 | 0 | 2 |
Mac | 2 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 |
Linux | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
读我文件
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.
使用方法
按 control+alt+k
(或在命令模式下按 z=
)显示拼写建议。使用 control+alt+[
和 control+alt+]
(或在命令模式下按 [s
和 ]s
)遍历拼写错误。
选择拼写建议中的替换单词时,将利用模糊搜索,因此键入数字或单词的部分即可选择相应的替换。
安装
- 包控制 - 首先从https://sublime.wbond.net/installation安装Package Control,然后搜索KeybardSpellCheck软件包。
- 从源代码 - 将repo克隆到Sublime Text软件包文件夹中。
此软件包需要enchant拼写检查包。在Mac上,可以使用以下命令安装:brew install enchant
。对于Windows,有一个可执行安装程序(参见http://www.abisource.com/projects/enchant/)。大多数Linux发行版默认已安装enchant。
致谢
键盘触发的代码归功于Alex Naspo。此工作中很大一部分几乎是他所做的精确复制。https://github.com/alexnaspo/sublime-spell-check/
界面化的谷歌拼写建议归功于Noah Code。同样,他的代码在开发中得到了大量使用。https://github.com/noahcoad/google-spell-check