首页 > 解决方案 > 如何删除 VS Code 中的编辑器匹配括号行?

问题描述

我想删除下面分散注意力的匹配括号线。

在此处输入图像描述

到目前为止我使用的设置是:

{
    "editor.renderLineHighlight": "none",
    "editor.matchBrackets": "never"
}

标签: visual-studio-code

解决方案


在类似的问题上:

以下是我正在寻找的内容(删除左侧的垂直线):

文件:settings.json

环境:

"editor.guides.indentation": false

旧的不再起作用了:

"editor.renderIndentGuides": false

更多细节:https ://code.visualstudio.com/docs/getstarted/userinterface#_indent-guides


推荐阅读