Jen*_*sen 4 spell-checking visual-studio-code vscode-extensions
我将代码拼写检查器用于VS Code。我想在显示“更严重”问题的“问题”面板(标准键盘绑定Ctrl+ Shift+ M)中禁用拼写检查器警告/错误。
通常,拼写检查器错误太多,我不得不向下滚动到“真正的”问题:-)
Mar*_*ark 11
查看问题:不显示在“问题”窗格中。建议尝试:
"cSpell.diagnosticLevel": "Hint",
Run Code Online (Sandbox Code Playgroud)
在您的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"
}
Run Code Online (Sandbox Code Playgroud)
这将为您提供两组提示点,您可以通过使它们透明来隐藏内置的三个点:
"editorHint.foreground": "#f000",
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
3532 次 |
最近记录: |