SublimeText 括号插件 Bracket Highlighter高亮设置

1. ctrl + shift + p,打开命令面板,输入install,在菜单中选择Package Control:Install Package如图

2. 步骤1后弹出的命令输入框中 输入:BracketHighlighter, 同样选择BracketHighlighter项,回车即可安装

3. 安装完成后,点击菜单栏的【Preferences】->【Package Settings】->【BracketHighlighter】->【Bracket Settings】

4. 在弹出的窗口中, 全选左侧的文件并复制粘贴到右侧的user文件中,保存

5.  大概在661行,将"bracket_styles"中的style改为hightlight,如下:

  

    "bracket_styles": {
        // `default` and `unmatched` styles are special
        // styles. If they are not defined here,
        // they will be generated internally with
        // internal defaults.

        // `default` style defines attributes that
        // will be used for any style that does not
        // explicitly define that attribute.  So if
        // a style does not define a color, it will
        // use the color from the "default" style.
        "default": {
            "icon": "dot",
            // Support the old convention of `brackethighlighter.default`
            // for themes that already provide something.
            // As this has always been the only one we've provided
            // by default, all the others will use region-ish colors.
            "color": "region.yellowish brackethighlighter.default",
            "style": "highlight"  这里修改该值。
        },

6. 高亮的颜色默认是白色的,修改右侧的default->entity.name.class,默认的Monokai主题下会变成绿色  ,这个步骤可以省略

7.  步骤6保存后,回到编辑器中,输入{} [] ()进行测试

原文地址:https://www.cnblogs.com/Knowledge-is-infinite/p/11387309.html