繁体   English   中英

如何关闭括号匹配突出显示? (崇高文本 3/4)

[英]How do I turn off bracket match highlight? (Sublime Text 3/4)

我正在尝试关闭括号匹配突出显示(带有黄色下划线的那个)。 我怎么做? 谢谢。

在此处输入图像描述

您想要的设置是match_brackets ,它控制整个功能; 将其设置为false将停止此类型的所有突出显示。

如果您在某些情况下需要,但在其他情况下不需要,您也可以使用这些设置来控制此设置(在下面显示其默认值)。

请注意,以下某些设置可能仅适用于 ST4; 您的问题被标记为 ST3,但在没有意识到的情况下使用 ST4 很常见; 您可以通过检查默认首选项( Preferences > Settings的左侧窗格)来确定您可以使用哪些设置。

    // Set to false to disable underlining the brackets surrounding the caret
    "match_brackets": true,

    // Set to false if you'd rather only highlight the brackets when the caret is
    // next to one
    "match_brackets_content": true,

    // Set to false to not highlight square brackets. This only takes effect if
    // match_brackets is true
    "match_brackets_square": true,

    // Set to false to not highlight curly brackets. This only takes effect if
    // match_brackets is true
    "match_brackets_braces": true,

    // Set to false to not highlight angle brackets. This only takes effect if
    // match_brackets is true
    "match_brackets_angle": false,

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM