【发布时间】:2019-08-27 02:45:00
【问题描述】:
如何从 IntelliJ 中的功能文件中删除下划线,指示拼写错误?
注意,我说的不是带下划线的变量,而是 Cucumber .feature 文件不是用英文写的。
【问题讨论】:
标签: intellij-idea ide cucumber editor
如何从 IntelliJ 中的功能文件中删除下划线,指示拼写错误?
注意,我说的不是带下划线的变量,而是 Cucumber .feature 文件不是用英文写的。
【问题讨论】:
标签: intellij-idea ide cucumber editor
您需要将它们添加到 .idea/dictionaries 中
例子:
<component name="ProjectDictionaryState">
<dictionary name="yourName">
<words>
<w>yourWord</w>
</words>
</dictionary>
</component>
【讨论】:
你必须有插件:'Substeps IntelliJ Plugin';安装在你的 intellij 中。从首选项中卸载或禁用 intellig 中的此插件。并且只保留插件:'cucumber for java'。
【讨论】: