vs代码。启用内联拼写检查,禁用拼写检查问题

时间:2018-05-12 19:10:12

标签: visual-studio-code spell-checking vscode-extensions

我使用代码拼写检查器来代码。我想在"问题"中禁用拼写检查警告/错误。窗格(标准键盘绑定ctrl + shift + m)其中"更严重"问题出现了。通常有很多拼写检查错误,我必须向下滚动到"真正的"问题:-)

enter image description here

4 个答案:

答案 0 :(得分:5)

issues: don't show in Problems pane。建议尝试:

  "cSpell.diagnosticLevel": "Hint",
在您的settings.json中

。这将从问题窗格中删除它们。但是,在你的文件中,这些“提示”现在由拼写错误开头的三个小点表示,并不是那么明显。您可以使用colorCustomization修改它们:

"workbench.colorCustomizations": {

  // will change the color of three dots to red
  "editorHint.foreground": "#ff0000",

  // will underline the entire word with dots in your chosen color
  "editorHint.border": "#00ff66"
}

这将为您提供两组提示点,您可以通过使它们透明来隐藏内置的三个点:

"editorHint.foreground": "#f000",

答案 1 :(得分:1)

我只是使用正则表达式禁用了所有可能的单词。

  "cSpell.ignoreRegExpList": [
    ".*"
  ]

答案 2 :(得分:0)

右键单击单词,然后从菜单中单击显示拼写检查配置信息。将显示一个拼写检查器选项卡,然后单击文件信息并取消选择已为文件类型启用的拼写检查器(在我的情况下为打字稿)。

答案 3 :(得分:0)

隐藏:

启用字典 命令(使用 F1 或查看 -> 命令面板...):

启用西班牙语拼写检查词典 在工作区中启用西班牙语拼写检查词典 禁用字典 命令(使用 F1 或查看 -> 命令面板...):

禁用西班牙语拼写检查词典 在工作区禁用西班牙语拼写检查词典