如何关闭"匹配"突出

时间:2016-09-29 16:21:06

标签: visual-studio-code

我不希望Visual Studio代码突出显示匹配的括号,所有出现的相同变量等等。我发现它非常分散注意力。但是,我找不到禁用此功能的方法。

我似乎能够改变的唯一突出选项是" editor.selectionHighlight"和" editor.renderLineHighlight",并且都不起作用。

是否可以禁用"匹配突出显示"?或者也许要编辑我的主题,以便高亮颜色和高亮边框与背景颜色相同?

5 个答案:

答案 0 :(得分:22)

有不同类型的突出显示:

  1. 语法highliting(将游标置于变量内) enter image description here
  2. "editor.occurrencesHighlight": false
    
    1. 选择突出显示(文档中的类似块) enter image description here
    2. "editor.selectionHighlight": false
      
      1. 匹配括号突出显示
      2. "editor.matchBrackets": false
        

        还有第二种方式 - 让它们不那么突兀(或完全透明):

        "workbench.colorCustomizations": {
            "editor.selectionHighlightBackground": "#0000", // similar selection
            "editor.selectionHighlightBorder ": "#0000",
        
            "editor.wordHighlightStrongBackground": "#0000", // syntax variable assignment
            "editor.wordHighlightStrongBorder": "#0000",
        
            "editor.wordHighlightBackground": "#0000", // syntax variable
            "editor.wordHighlightBorder": "#0000",
        
            "editorBracketMatch.border": "#0000",// brackets
            "editorBracketMatch.background": "#0000",
        }
        

答案 1 :(得分:8)

我终于弄明白了,

在首选项 - 用户/工作区设置

中尝试使用此@media (min-width: 300px) { .myCanvas{ width:300px; height:533px; } } /*Large phone Size*/ @media (min-width: 600px) { .myCanvas{ width:600px; height: 1066px; } } /*Tablet and Standard Size*/ @media (min-width: 1920px) { .myCanvas{ width:1920px; height:1080px; } }

image here

希望它有所帮助。

答案 2 :(得分:4)

尝试转到偏好设置 - >用户设置
settings.json右边添加:

"editor.selectionHighlight": false

答案 3 :(得分:0)

可以通过VSCode设置来实现@Alex的回答。

转到首选项-> 设置,然后在其中搜索突出显示
将会出现很多选项,但有用的选项将在文本编辑器部分下。 另外,您可以决定是全局更改(通过“用户设置”)还是仅针对该窗口进行更改(“工作区设置”)。

答案 4 :(得分:-1)

“出现突出显示”是您要查找的设置。