本文介绍了Eclipse拼写检查器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有任何拼写检查插件检查拼写代码?我经常错误地拼写这个世界。
Is there any spell check plug-in that checks spelling for code? I often times mis-spell the world.
例如,
void spllmstake()
=> void spellmistake )
推荐答案
我找到了一个拼写检查器,并证明了(以你的例子)似乎工作执行以下步骤:
I have found a spell checker and proved it (with your example), and it seems to work. Do the following steps:
- 下载如
- 致电
帮助>安装新软件>添加...>存档...
- 插入zip文件的路径和文件名。
- 重新启动正常安装
- 转到
窗口>首选项>拼写>
- 确保选择
检查名称
。
- Download espell checker as zip file
- Call
Help > Install New Software > Add... > Archive...
- Insert the path and file name of the zip file.
- Do the normal installation with restart
- Go to
Window > Preferences > Spelling > AspectJ, Java, ...
- Ensure that
Check Names
is selected.
在您的示例中,单词 spllmstake
被标记为错误, spellmistake
。 spellMistake
(像两个单词)的效果很好。
In your example, the word spllmstake
is marked as wrong, as is spellmistake
. spellMistake
(like two words) works well.
这篇关于Eclipse拼写检查器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!