在 VS Code 中禁用波浪下划线

2023-11-25


I'm using Visual Studio Code (v1.11.2).
Is there any way to disable wavy underline at all?

enter image description here


To disablevscode 中的波浪/波浪下划线,转到设置.json(Ctrl + Shift + P 访问命令面板并输入“settings.json”)并将下划线颜色设置为完全透明:

{
    "workbench.colorCustomizations": {
        "editorError.foreground":   "#00000000",
        "editorWarning.foreground": "#00000000",
        "editorInfo.foreground":    "#00000000"
    }
}

尽管将下划线颜色设置为更好不太有活力:

{
    "workbench.colorCustomizations": {
        "editorError.foreground":   "#ff000088",
        "editorWarning.foreground": "#ffe60033",
        "editorInfo.foreground":    "#00ff0088"
    }
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

在 VS Code 中禁用波浪下划线 的相关文章

随机推荐